diff -Nru libreoffice-5.1.1~rc2/accessibility/inc/pch/precompiled_acc.hxx libreoffice-5.1.2~rc2/accessibility/inc/pch/precompiled_acc.hxx --- libreoffice-5.1.1~rc2/accessibility/inc/pch/precompiled_acc.hxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/accessibility/inc/pch/precompiled_acc.hxx 2016-03-29 15:41:04.000000000 +0000 @@ -125,7 +125,7 @@ #include #include #include -#include +#include #include #include #include diff -Nru libreoffice-5.1.1~rc2/avmedia/Library_avmediagst.mk libreoffice-5.1.2~rc2/avmedia/Library_avmediagst.mk --- libreoffice-5.1.1~rc2/avmedia/Library_avmediagst.mk 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/avmedia/Library_avmediagst.mk 2016-03-29 15:41:04.000000000 +0000 @@ -16,7 +16,21 @@ -I$(SRCDIR)/avmedia/source/inc \ $(GSTREAMER_1_0_CFLAGS) \ )) -$(eval $(call gb_Library_add_libs,avmediagst,$(GSTREAMER_1_0_LIBS))) + +$(eval $(call gb_Library_add_libs,avmediagst,\ + $(GSTREAMER_1_0_LIBS) \ +)) + +ifneq ($(ENABLE_GTK3),) +$(eval $(call gb_Library_add_cxxflags,avmediagst,\ + $$(GTK3_CFLAGS) \ + -DENABLE_GTKSINK \ +)) + +$(eval $(call gb_Library_add_libs,avmediagst,\ + $(GTK3_LIBS) \ +)) +endif $(eval $(call gb_Library_use_external,avmediagst,boost_headers)) diff -Nru libreoffice-5.1.1~rc2/avmedia/source/gstreamer/gstframegrabber.cxx libreoffice-5.1.2~rc2/avmedia/source/gstreamer/gstframegrabber.cxx --- libreoffice-5.1.1~rc2/avmedia/source/gstreamer/gstframegrabber.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/avmedia/source/gstreamer/gstframegrabber.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -26,7 +26,7 @@ #include #include -#include +#include #include #include diff -Nru libreoffice-5.1.1~rc2/avmedia/source/gstreamer/gstplayer.cxx libreoffice-5.1.2~rc2/avmedia/source/gstreamer/gstplayer.cxx --- libreoffice-5.1.1~rc2/avmedia/source/gstreamer/gstplayer.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/avmedia/source/gstreamer/gstplayer.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -53,18 +53,11 @@ #include #include -#if !defined DBG -# if OSL_DEBUG_LEVEL > 2 #ifdef AVMEDIA_GST_0_10 # define AVVERSION "gst 0.10: " #else # define AVVERSION "gst 1.0: " #endif -#define DBG(...) do { fprintf (stderr, "%s", AVVERSION); fprintf (stderr, __VA_ARGS__); fprintf (stderr, "\n"); } while (0); -# else -#define DBG(...) -# endif -#endif using namespace ::com::sun::star; @@ -289,6 +282,10 @@ GstPlayer_BASE( m_aMutex ), mxMgr( rxMgr ), mpPlaybin( nullptr ), +#if defined(ENABLE_GTKSINK) + mpGtkWidget( nullptr ), +#endif + mbUseGtkSink( false ), mbFakeVideo (false ), mnUnmutedVolume( 0 ), mbPlayPending ( false ), @@ -312,12 +309,12 @@ mbInitialized = gst_init_check( &argc, &argv, &pError ); - DBG( "%p Player::Player", this ); + SAL_INFO( "avmedia.gstreamer", AVVERSION << this << " Player::Player" ); if (pError != nullptr) { // TODO: throw an exception? - DBG( "%p Player::Player error '%s'", this, pError->message ); + SAL_INFO( "avmedia.gstreamer", AVVERSION << this << " Player::Player error '" << pError->message << "'" ); g_error_free (pError); } } @@ -326,7 +323,7 @@ Player::~Player() { - DBG( "%p Player::~Player", this ); + SAL_INFO( "avmedia.gstreamer", AVVERSION << this << " Player::~Player" ); if( mbInitialized ) disposing(); } @@ -339,11 +336,19 @@ stop(); - DBG( "%p Player::disposing", this ); + SAL_INFO( "avmedia.gstreamer", AVVERSION << this << " Player::disposing" ); // Release the elements and pipeline if( mbInitialized ) { +#if defined(ENABLE_GTKSINK) + if (mpGtkWidget) + { + gtk_widget_destroy(mpGtkWidget); + mpGtkWidget = nullptr; + } +#endif + if( mpPlaybin ) { gst_element_set_state( mpPlaybin, GST_STATE_NULL ); @@ -391,18 +396,20 @@ start(); break; case GST_MESSAGE_STATE_CHANGED: - if( message->src == GST_OBJECT( mpPlaybin ) ) { + if (message->src == GST_OBJECT(mpPlaybin)) + { GstState newstate, pendingstate; gst_message_parse_state_changed (message, nullptr, &newstate, &pendingstate); - if( newstate == GST_STATE_PAUSED && - pendingstate == GST_STATE_VOID_PENDING && - mpXOverlay ) - gst_video_overlay_expose( mpXOverlay ); + if (!mbUseGtkSink && newstate == GST_STATE_PAUSED && + pendingstate == GST_STATE_VOID_PENDING && mpXOverlay) + { + gst_video_overlay_expose(mpXOverlay); + } - if (mbPlayPending) - mbPlayPending = ((newstate == GST_STATE_READY) || (newstate == GST_STATE_PAUSED)); + if (mbPlayPending) + mbPlayPending = ((newstate == GST_STATE_READY) || (newstate == GST_STATE_PAUSED)); } default: break; @@ -431,8 +438,6 @@ GstBusSyncReply Player::processSyncMessage( GstMessage *message ) { -// DBG( "%p processSyncMessage has handle: %s", this, GST_MESSAGE_TYPE_NAME( message ) ); - #if OSL_DEBUG_LEVEL > 0 if ( GST_MESSAGE_TYPE( message ) == GST_MESSAGE_ERROR ) { @@ -441,29 +446,32 @@ gst_message_parse_error( message, &error, &error_debug ); SAL_WARN( - "avmedia", - "gstreamer error: '" << error->message << "' debug: '" + "avmedia.gstreamer", + "error: '" << error->message << "' debug: '" << error_debug << "'"); } #endif + if (!mbUseGtkSink) + { #ifdef AVMEDIA_GST_0_10 - if (message->structure && - !strcmp( gst_structure_get_name( message->structure ), "prepare-xwindow-id" ) ) + if (message->structure && + !strcmp( gst_structure_get_name( message->structure ), "prepare-xwindow-id" ) ) #else - if (gst_is_video_overlay_prepare_window_handle_message (message) ) + if (gst_is_video_overlay_prepare_window_handle_message (message) ) #endif - { - DBG( "%p processSyncMessage prepare window id: %s %d", this, - GST_MESSAGE_TYPE_NAME( message ), (int)mnWindowID ); - if( mpXOverlay ) - g_object_unref( G_OBJECT ( mpXOverlay ) ); - g_object_set( GST_MESSAGE_SRC( message ), "force-aspect-ratio", FALSE, NULL ); - mpXOverlay = GST_VIDEO_OVERLAY( GST_MESSAGE_SRC( message ) ); - g_object_ref( G_OBJECT ( mpXOverlay ) ); - if ( mnWindowID != 0 ) - gst_video_overlay_set_window_handle( mpXOverlay, mnWindowID ); - return GST_BUS_DROP; + { + SAL_INFO( "avmedia.gstreamer", AVVERSION << this << " processSyncMessage prepare window id: " << + GST_MESSAGE_TYPE_NAME( message ) << " " << (int)mnWindowID ); + if( mpXOverlay ) + g_object_unref( G_OBJECT ( mpXOverlay ) ); + g_object_set( GST_MESSAGE_SRC( message ), "force-aspect-ratio", FALSE, nullptr ); + mpXOverlay = GST_VIDEO_OVERLAY( GST_MESSAGE_SRC( message ) ); + g_object_ref( G_OBJECT ( mpXOverlay ) ); + if ( mnWindowID != 0 ) + gst_video_overlay_set_window_handle( mpXOverlay, mnWindowID ); + return GST_BUS_DROP; + } } #ifdef AVMEDIA_GST_0_10 @@ -473,12 +481,11 @@ gst_message_parse_state_changed (message, nullptr, &newstate, &pendingstate); - DBG( "%p state change received, new state %d pending %d", this, - (int)newstate, (int)pendingstate ); + SAL_INFO( "avmedia.gstreamer", AVVERSION << this << " state change received, new state " << (int)newstate << " pending " << (int)pendingstate ); if( newstate == GST_STATE_PAUSED && pendingstate == GST_STATE_VOID_PENDING ) { - DBG( "%p change to paused received", this ); + SAL_INFO( "avmedia.gstreamer", AVVERSION << this << " change to paused received" ); if( mnDuration == 0) { gint64 gst_duration = 0L; @@ -489,7 +496,7 @@ if( mnWidth == 0 ) { GList *pStreamInfo = nullptr; - g_object_get( G_OBJECT( mpPlaybin ), "stream-info", &pStreamInfo, NULL ); + g_object_get( G_OBJECT( mpPlaybin ), "stream-info", &pStreamInfo, nullptr ); for ( ; pStreamInfo != nullptr; pStreamInfo = pStreamInfo->next) { GObject *pInfo = G_OBJECT( pStreamInfo->data ); @@ -498,7 +505,7 @@ continue; int nType; - g_object_get( pInfo, "type", &nType, NULL ); + g_object_get( pInfo, "type", &nType, nullptr ); GEnumValue *pValue = g_enum_get_value( G_PARAM_SPEC_ENUM( g_object_class_find_property( G_OBJECT_GET_CLASS( pInfo ), "type" ) )->enum_class, nType ); @@ -506,12 +513,12 @@ GstStructure *pStructure; GstPad *pPad; - g_object_get( pInfo, "object", &pPad, NULL ); + g_object_get( pInfo, "object", &pPad, nullptr ); pStructure = gst_caps_get_structure( GST_PAD_CAPS( pPad ), 0 ); if( pStructure ) { gst_structure_get_int( pStructure, "width", &mnWidth ); gst_structure_get_int( pStructure, "height", &mnHeight ); - DBG( "queried size: %d x %d", mnWidth, mnHeight ); + SAL_INFO( "avmedia.gstreamer", AVVERSION "queried size: " << mnWidth << "x" << mnHeight ); } g_object_unref (pPad); } @@ -542,17 +549,18 @@ if( gst_structure_get( gst_caps_get_structure( caps, 0 ), "width", G_TYPE_INT, &w, "height", G_TYPE_INT, &h, - NULL ) ) { + nullptr ) ) { mnWidth = w; mnHeight = h; - DBG( "queried size: %d x %d", mnWidth, mnHeight ); + SAL_INFO( "avmedia.gstreamer", AVVERSION "queried size: " << mnWidth << "x" << mnHeight ); - maSizeCondition.set(); } gst_caps_unref( caps ); g_object_unref( pad ); } + + maSizeCondition.set(); } #endif } else if (gst_is_missing_plugin_message(message)) { @@ -562,7 +570,6 @@ maSizeCondition.set(); } } else if( GST_MESSAGE_TYPE( message ) == GST_MESSAGE_ERROR ) { - DBG( "Error !\n" ); if( mnWidth == 0 ) { // an error occurred, set condition so that OOo thread doesn't wait for us maSizeCondition.set(); @@ -574,41 +581,48 @@ void Player::preparePlaybin( const OUString& rURL, GstElement *pSink ) { - GstBus *pBus; +#if defined(ENABLE_GTKSINK) + if (mpGtkWidget) + { + gtk_widget_destroy(mpGtkWidget); + mpGtkWidget = nullptr; + } +#endif - if( mpPlaybin != nullptr ) { - gst_element_set_state( mpPlaybin, GST_STATE_NULL ); - mbPlayPending = false; - g_object_unref( mpPlaybin ); - } + if (mpPlaybin != nullptr) + { + gst_element_set_state( mpPlaybin, GST_STATE_NULL ); + mbPlayPending = false; + g_object_unref( mpPlaybin ); + } - mpPlaybin = gst_element_factory_make( "playbin", nullptr ); - if( pSink != nullptr ) // used for getting preferred size etc. - { - g_object_set( G_OBJECT( mpPlaybin ), "video-sink", pSink, NULL ); - mbFakeVideo = true; - } - else - mbFakeVideo = false; + mpPlaybin = gst_element_factory_make( "playbin", nullptr ); + if( pSink != nullptr ) // used for getting preferred size etc. + { + g_object_set( G_OBJECT( mpPlaybin ), "video-sink", pSink, nullptr ); + mbFakeVideo = true; + } + else + mbFakeVideo = false; - OString ascURL = OUStringToOString( rURL, RTL_TEXTENCODING_UTF8 ); - g_object_set( G_OBJECT( mpPlaybin ), "uri", ascURL.getStr() , NULL ); + OString ascURL = OUStringToOString( rURL, RTL_TEXTENCODING_UTF8 ); + g_object_set( G_OBJECT( mpPlaybin ), "uri", ascURL.getStr() , nullptr ); - pBus = gst_element_get_bus( mpPlaybin ); - if (mbWatchID) - { - g_source_remove(mnWatchID); - mbWatchID = false; - } - mnWatchID = gst_bus_add_watch( pBus, pipeline_bus_callback, this ); - mbWatchID = true; - DBG( "%p set sync handler", this ); + GstBus *pBus = gst_element_get_bus( mpPlaybin ); + if (mbWatchID) + { + g_source_remove(mnWatchID); + mbWatchID = false; + } + mnWatchID = gst_bus_add_watch( pBus, pipeline_bus_callback, this ); + mbWatchID = true; + SAL_INFO( "avmedia.gstreamer", AVVERSION << this << " set sync handler" ); #ifdef AVMEDIA_GST_0_10 - gst_bus_set_sync_handler( pBus, pipeline_bus_sync_handler, this ); + gst_bus_set_sync_handler( pBus, pipeline_bus_sync_handler, this ); #else - gst_bus_set_sync_handler( pBus, pipeline_bus_sync_handler, this, nullptr ); + gst_bus_set_sync_handler( pBus, pipeline_bus_sync_handler, this, nullptr ); #endif - g_object_unref( pBus ); + g_object_unref( pBus ); } bool Player::create( const OUString& rURL ) @@ -617,7 +631,7 @@ // create all the elements and link them - DBG("create player, URL: %s", OUStringToOString( rURL, RTL_TEXTENCODING_UTF8 ).getStr()); + SAL_INFO( "avmedia.gstreamer", "create player, URL: '" << rURL << "'" ); if( mbInitialized && !rURL.isEmpty() ) { @@ -665,7 +679,7 @@ gst_element_set_state( mpPlaybin, GST_STATE_PAUSED ); mbPlayPending = false; - DBG( "stop %p", mpPlaybin ); + SAL_INFO( "avmedia.gstreamer", AVVERSION "stop " << mpPlaybin ); } @@ -683,7 +697,7 @@ bRet = GST_STATE_PLAYING == GST_STATE( mpPlaybin ); } - DBG( "isPlaying %d", bRet ); + SAL_INFO( "avmedia.gstreamer", AVVERSION "isPlaying " << bRet ); return bRet; } @@ -723,7 +737,7 @@ if( !isPlaying() ) gst_element_set_state( mpPlaybin, GST_STATE_PAUSED ); - DBG( "seek to: %" SAL_PRIdINT64 " ns original: %lf s", gst_position, fTime ); + SAL_INFO( "avmedia.gstreamer", AVVERSION "seek to: " << gst_position << " ns original: " << fTime << " s" ); } } @@ -771,7 +785,7 @@ { ::osl::MutexGuard aGuard(m_aMutex); - DBG( "set mute: %d muted: %d unmuted volume: %lf", bSet, mbMuted, mnUnmutedVolume ); + SAL_INFO( "avmedia.gstreamer", AVVERSION "set mute: " << bSet << " muted: " << mbMuted << " unmuted volume: " << mnUnmutedVolume ); // change the volume to 0 or the unmuted volume if( mpPlaybin && mbMuted != bool(bSet) ) @@ -782,7 +796,7 @@ nVolume = 0.0; } - g_object_set( G_OBJECT( mpPlaybin ), "volume", nVolume, NULL ); + g_object_set( G_OBJECT( mpPlaybin ), "volume", nVolume, nullptr ); mbMuted = bSet; } @@ -807,12 +821,12 @@ mnUnmutedVolume = pow( 10.0, nVolumeDB / 20.0 ); - DBG( "set volume: %d gst volume: %lf", nVolumeDB, mnUnmutedVolume ); + SAL_INFO( "avmedia.gstreamer", AVVERSION "set volume: " << nVolumeDB << " gst volume: " << mnUnmutedVolume ); // change volume if( !mbMuted && mpPlaybin ) { - g_object_set( G_OBJECT( mpPlaybin ), "volume", (gdouble) mnUnmutedVolume, NULL ); + g_object_set( G_OBJECT( mpPlaybin ), "volume", (gdouble) mnUnmutedVolume, nullptr ); } } @@ -828,7 +842,7 @@ if( mpPlaybin ) { double nGstVolume = 0.0; - g_object_get( G_OBJECT( mpPlaybin ), "volume", &nGstVolume, NULL ); + g_object_get( G_OBJECT( mpPlaybin ), "volume", &nGstVolume, nullptr ); nVolumeDB = (sal_Int16) ( 20.0*log10 ( nGstVolume ) ); } @@ -847,18 +861,15 @@ if( maURL.isEmpty() ) { - DBG( "%p Player::getPreferredPlayerWindowSize - empty URL => 0x0", this ); + SAL_INFO( "avmedia.gstreamer", AVVERSION << this << " Player::getPreferredPlayerWindowSize - empty URL => 0x0" ); return aSize; } - DBG( "%p pre-Player::getPreferredPlayerWindowSize, member %d x %d", this, mnWidth, mnHeight ); + SAL_INFO( "avmedia.gstreamer", AVVERSION << this << " pre-Player::getPreferredPlayerWindowSize, member " << mnWidth << "x" << mnHeight ); -#if OSL_DEBUG_LEVEL > 2 - osl::Condition::Result aResult = -#endif - maSizeCondition.wait( std::chrono::seconds(10) ); + osl::Condition::Result aResult = maSizeCondition.wait( std::chrono::seconds(10) ); - DBG( "%p Player::getPreferredPlayerWindowSize after waitCondition %d, member %d x %d", this, aResult, mnWidth, mnHeight ); + SAL_INFO( "avmedia.gstreamer", AVVERSION << this << " Player::getPreferredPlayerWindowSize after waitCondition " << aResult << ", member " << mnWidth << "x" << mnHeight ); if( mnWidth != 0 && mnHeight != 0 ) { aSize.Width = mnWidth; @@ -881,7 +892,7 @@ if( mbFakeVideo ) preparePlaybin( maURL, nullptr ); - DBG( "Player::createPlayerWindow %d %d length: %d", aSize.Width, aSize.Height, rArguments.getLength() ); + SAL_INFO( "avmedia.gstreamer", AVVERSION << "Player::createPlayerWindow " << aSize.Width << "x" << aSize.Height << " length: " << rArguments.getLength() ); if( aSize.Width > 0 && aSize.Height > 0 ) { @@ -898,11 +909,31 @@ OSL_ASSERT(pEnvData); if (pEnvData) { - mnWindowID = pEnvData->aWindow; - DBG( "set window id to %d XOverlay %p\n", (int)mnWindowID, mpXOverlay); - gst_element_set_state( mpPlaybin, GST_STATE_PAUSED ); - if ( mpXOverlay != nullptr ) - gst_video_overlay_set_window_handle( mpXOverlay, mnWindowID ); +#if defined(ENABLE_GTKSINK) + GstElement *pVideosink = g_strcmp0(pEnvData->pToolkit, "gtk3") == 0 ? + gst_element_factory_make("gtksink", "gtksink") : nullptr; + if (pVideosink) + { + mbUseGtkSink = true; + g_object_get(pVideosink, "widget", &mpGtkWidget, nullptr); + GtkWidget *pParent = static_cast(pEnvData->pWidget); + gtk_container_add (GTK_CONTAINER(pParent), mpGtkWidget); + + g_object_set( G_OBJECT( mpPlaybin ), "video-sink", pVideosink, nullptr); + g_object_set( G_OBJECT( mpPlaybin ), "force-aspect-ratio", FALSE, nullptr); + + gtk_widget_show_all (pParent); + } + else +#endif + { + mbUseGtkSink = false; + mnWindowID = pEnvData->aWindow; + SAL_INFO( "avmedia.gstreamer", AVVERSION "set window id to " << (int)mnWindowID << " XOverlay " << mpXOverlay); + gst_element_set_state( mpPlaybin, GST_STATE_PAUSED ); + if ( mpXOverlay != nullptr ) + gst_video_overlay_set_window_handle( mpXOverlay, mnWindowID ); + } } } } @@ -910,8 +941,6 @@ return xRet; } - - uno::Reference< media::XFrameGrabber > SAL_CALL Player::createFrameGrabber() throw (uno::RuntimeException, std::exception) { @@ -921,7 +950,7 @@ if( ( aPrefSize.Width > 0 ) && ( aPrefSize.Height > 0 ) ) pFrameGrabber = FrameGrabber::create( maURL ); - DBG( "created FrameGrabber %p", pFrameGrabber ); + SAL_INFO( "avmedia.gstreamer", AVVERSION << "created FrameGrabber " << pFrameGrabber ); return pFrameGrabber; } diff -Nru libreoffice-5.1.1~rc2/avmedia/source/gstreamer/gstplayer.hxx libreoffice-5.1.2~rc2/avmedia/source/gstreamer/gstplayer.hxx --- libreoffice-5.1.1~rc2/avmedia/source/gstreamer/gstplayer.hxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/avmedia/source/gstreamer/gstplayer.hxx 2016-03-29 15:41:04.000000000 +0000 @@ -27,6 +27,10 @@ #include #include +#if defined(ENABLE_GTKSINK) +# include +#endif + typedef struct _GstVideoOverlay GstVideoOverlay; namespace avmedia { namespace gstreamer { @@ -83,6 +87,10 @@ // Add elements and pipeline here GstElement* mpPlaybin; // the playbin is also a pipeline +#if defined(ENABLE_GTKSINK) + GtkWidget* mpGtkWidget; +#endif + bool mbUseGtkSink; bool mbFakeVideo; gdouble mnUnmutedVolume; diff -Nru libreoffice-5.1.1~rc2/avmedia/source/macavf/framegrabber.mm libreoffice-5.1.2~rc2/avmedia/source/macavf/framegrabber.mm --- libreoffice-5.1.1~rc2/avmedia/source/macavf/framegrabber.mm 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/avmedia/source/macavf/framegrabber.mm 2016-03-29 15:41:04.000000000 +0000 @@ -21,7 +21,7 @@ #include "player.hxx" #include -#include +#include #include #include diff -Nru libreoffice-5.1.1~rc2/avmedia/source/opengl/oglframegrabber.cxx libreoffice-5.1.2~rc2/avmedia/source/opengl/oglframegrabber.cxx --- libreoffice-5.1.1~rc2/avmedia/source/opengl/oglframegrabber.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/avmedia/source/opengl/oglframegrabber.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -11,7 +11,7 @@ #include #include -#include +#include #include #include diff -Nru libreoffice-5.1.1~rc2/avmedia/source/opengl/oglplayer.cxx libreoffice-5.1.2~rc2/avmedia/source/opengl/oglplayer.cxx --- libreoffice-5.1.1~rc2/avmedia/source/opengl/oglplayer.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/avmedia/source/opengl/oglplayer.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -13,7 +13,7 @@ #include #include -#include +#include #include #include #include diff -Nru libreoffice-5.1.1~rc2/avmedia/source/quicktime/framegrabber.mm libreoffice-5.1.2~rc2/avmedia/source/quicktime/framegrabber.mm --- libreoffice-5.1.1~rc2/avmedia/source/quicktime/framegrabber.mm 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/avmedia/source/quicktime/framegrabber.mm 2016-03-29 15:41:04.000000000 +0000 @@ -21,7 +21,7 @@ #include "player.hxx" #include -#include +#include #include #include diff -Nru libreoffice-5.1.1~rc2/avmedia/source/vlc/vlcframegrabber.cxx libreoffice-5.1.2~rc2/avmedia/source/vlc/vlcframegrabber.cxx --- libreoffice-5.1.1~rc2/avmedia/source/vlc/vlcframegrabber.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/avmedia/source/vlc/vlcframegrabber.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -21,7 +21,7 @@ #include #include #include -#include +#include #include #include #include diff -Nru libreoffice-5.1.1~rc2/avmedia/source/win/framegrabber.cxx libreoffice-5.1.2~rc2/avmedia/source/win/framegrabber.cxx --- libreoffice-5.1.1~rc2/avmedia/source/win/framegrabber.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/avmedia/source/win/framegrabber.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -38,7 +38,7 @@ #include #include #include -#include +#include #include #define AVMEDIA_WIN_FRAMEGRABBER_IMPLEMENTATIONNAME "com.sun.star.comp.avmedia.FrameGrabber_DirectX" diff -Nru libreoffice-5.1.1~rc2/basctl/inc/pch/precompiled_basctl.hxx libreoffice-5.1.2~rc2/basctl/inc/pch/precompiled_basctl.hxx --- libreoffice-5.1.1~rc2/basctl/inc/pch/precompiled_basctl.hxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/basctl/inc/pch/precompiled_basctl.hxx 2016-03-29 15:41:04.000000000 +0000 @@ -143,7 +143,7 @@ #include #include #include -#include +#include #include #include #include diff -Nru libreoffice-5.1.1~rc2/basctl/source/basicide/baside2.cxx libreoffice-5.1.2~rc2/basctl/source/basicide/baside2.cxx --- libreoffice-5.1.1~rc2/basctl/source/basicide/baside2.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/basctl/source/basicide/baside2.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -892,11 +892,10 @@ { case SID_DELETE: { - KeyEvent aFakeDelete( 0, KEY_DELETE ); - bool bDone = GetEditView()->KeyInput( aFakeDelete ); - if (!bDone) + if (!IsReadOnly()) { - BaseWindow::KeyInput(aFakeDelete); + KeyEvent aFakeDelete(0, KEY_DELETE); + (void)GetEditView()->KeyInput(aFakeDelete); } break; } diff -Nru libreoffice-5.1.1~rc2/basegfx/source/polygon/b2dlinegeometry.cxx libreoffice-5.1.2~rc2/basegfx/source/polygon/b2dlinegeometry.cxx --- libreoffice-5.1.1~rc2/basegfx/source/polygon/b2dlinegeometry.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/basegfx/source/polygon/b2dlinegeometry.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -779,6 +779,35 @@ namespace tools { + B2DPolygon polygonSubdivide(const B2DPolygon& rCandidate, double fMaxAllowedAngle, double fMaxPartOfEdge) + { + if(fMaxAllowedAngle > F_PI2) + { + fMaxAllowedAngle = F_PI2; + } + else if(fMaxAllowedAngle < 0.01 * F_PI2) + { + fMaxAllowedAngle = 0.01 * F_PI2; + } + + if(fMaxPartOfEdge > 1.0) + { + fMaxPartOfEdge = 1.0; + } + else if(fMaxPartOfEdge < 0.01) + { + fMaxPartOfEdge = 0.01; + } + + B2DPolygon aCandidate(rCandidate); + const double fMaxCos(cos(fMaxAllowedAngle)); + + aCandidate.removeDoublePoints(); + aCandidate = subdivideToSimple(aCandidate, fMaxCos * fMaxCos, fMaxPartOfEdge * fMaxPartOfEdge); + + return aCandidate; + } + B2DPolyPolygon createAreaGeometry( const B2DPolygon& rCandidate, double fHalfLineWidth, diff -Nru libreoffice-5.1.1~rc2/basic/inc/sbstdobj.hxx libreoffice-5.1.2~rc2/basic/inc/sbstdobj.hxx --- libreoffice-5.1.1~rc2/basic/inc/sbstdobj.hxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/basic/inc/sbstdobj.hxx 2016-03-29 15:41:04.000000000 +0000 @@ -21,7 +21,7 @@ #define INCLUDED_BASIC_INC_SBSTDOBJ_HXX #include -#include +#include #include #include diff -Nru libreoffice-5.1.1~rc2/basic/source/comp/codegen.cxx libreoffice-5.1.2~rc2/basic/source/comp/codegen.cxx --- libreoffice-5.1.1~rc2/basic/source/comp/codegen.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/basic/source/comp/codegen.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -478,7 +478,14 @@ T result = 0 ; static const S max = std::numeric_limits< S >::max(); result = m_nNumOp0 + ( ( sizeof(S) + 1 ) * m_nNumSingleParams ) + ( (( sizeof(S) * 2 )+ 1 ) * m_nNumDoubleParams ); +#ifdef _MSC_VER +#pragma warning(push) +#pragma warning( disable : 4309) +#endif return std::min(static_cast(max), result); +#ifdef _MSC_VER +#pragma warning(push) +#endif } virtual bool processParams() override { return false; } }; diff -Nru libreoffice-5.1.1~rc2/basic/source/uno/namecont.cxx libreoffice-5.1.2~rc2/basic/source/uno/namecont.cxx --- libreoffice-5.1.1~rc2/basic/source/uno/namecont.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/basic/source/uno/namecont.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -1950,8 +1950,21 @@ // fdo#68983: If there's a password and the password is not known, only // copying the storage works! // Can we simply copy the storage? - if (!mbOldInfoFormat && !pImplLib->isLoadedStorable() && - !mbOasis2OOoFormat && xSourceLibrariesStor.is()) + bool isCopyStorage = !mbOldInfoFormat && !mbOasis2OOoFormat + && !pImplLib->isLoadedStorable() + && xSourceLibrariesStor.is() /* null for user profile */; + if (isCopyStorage) + { + try + { + xSourceLibrariesStor->isStorageElement(rLib.aName); + } + catch (container::NoSuchElementException const&) + { + isCopyStorage = false; + } + } + if (isCopyStorage) { try { diff -Nru libreoffice-5.1.1~rc2/basic/source/uno/scriptcont.cxx libreoffice-5.1.2~rc2/basic/source/uno/scriptcont.cxx --- libreoffice-5.1.1~rc2/basic/source/uno/scriptcont.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/basic/source/uno/scriptcont.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -94,6 +94,11 @@ pImplLib->mbDoc50Password = true; pImplLib->mbPasswordProtected = true; pImplLib->maPassword = rPassword; + SfxScriptLibrary *const pSL(dynamic_cast(pImplLib)); + if (pSL && pSL->mbLoaded) + { + pSL->mbLoadedSource = true; // must store source code now! + } } } catch(const NoSuchElementException& ) {} @@ -486,6 +491,11 @@ pImplLib->mbPasswordProtected = true; pImplLib->mbPasswordVerified = true; pImplLib->maPassword = NewPassword; + SfxScriptLibrary *const pSL(dynamic_cast(pImplLib)); + if (pSL && pSL->mbLoaded) + { + pSL->mbLoadedSource = true; // must store source code now! + } maModifiable.setModified( true ); pImplLib->implSetModified( true ); diff -Nru libreoffice-5.1.1~rc2/bridges/source/cpp_uno/msvc_win32_intel/except.cxx libreoffice-5.1.2~rc2/bridges/source/cpp_uno/msvc_win32_intel/except.cxx --- libreoffice-5.1.1~rc2/bridges/source/cpp_uno/msvc_win32_intel/except.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/bridges/source/cpp_uno/msvc_win32_intel/except.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -28,6 +28,7 @@ #include "rtl/strbuf.hxx" #include "rtl/ustrbuf.hxx" #include +#include #include "com/sun/star/uno/Any.hxx" #include diff -Nru libreoffice-5.1.1~rc2/bridges/source/cpp_uno/msvc_win32_x86-64/cpp2uno.cxx libreoffice-5.1.2~rc2/bridges/source/cpp_uno/msvc_win32_x86-64/cpp2uno.cxx --- libreoffice-5.1.1~rc2/bridges/source/cpp_uno/msvc_win32_x86-64/cpp2uno.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/bridges/source/cpp_uno/msvc_win32_x86-64/cpp2uno.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -305,38 +305,38 @@ break; case 0: // queryInterface() opt { - typelib_TypeDescription * pTD = NULL; + typelib_TypeDescription * pTD2 = NULL; // the incoming C++ parameters are: The this // pointer, the hidden return value pointer, and // then the actual queryInterface() only // parameter. Thus pStack[4].. - TYPELIB_DANGER_GET( &pTD, reinterpret_cast( pStack[4] )->getTypeLibType() ); + TYPELIB_DANGER_GET( &pTD2, reinterpret_cast( pStack[4] )->getTypeLibType() ); - if ( pTD ) + if ( pTD2 ) { XInterface * pInterface = NULL; (*pCppI->getBridge()->getCppEnv()->getRegisteredInterface) ( pCppI->getBridge()->getCppEnv(), (void **)&pInterface, pCppI->getOid().pData, - reinterpret_cast( pTD ) ); + reinterpret_cast( pTD2 ) ); if ( pInterface ) { // pStack[3] = hidden return value pointer ::uno_any_construct( reinterpret_cast( pStack[3] ), - &pInterface, pTD, cpp_acquire ); + &pInterface, pTD2, cpp_acquire ); pInterface->release(); - TYPELIB_DANGER_RELEASE( pTD ); + TYPELIB_DANGER_RELEASE( pTD2 ); pStack[0] = pStack[3]; eRet = typelib_TypeClass_ANY; break; } - TYPELIB_DANGER_RELEASE( pTD ); + TYPELIB_DANGER_RELEASE( pTD2 ); } } // Fall through! default: diff -Nru libreoffice-5.1.1~rc2/canvas/source/directx/dx_spritecanvashelper.cxx libreoffice-5.1.2~rc2/canvas/source/directx/dx_spritecanvashelper.cxx --- libreoffice-5.1.1~rc2/canvas/source/directx/dx_spritecanvashelper.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/canvas/source/directx/dx_spritecanvashelper.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -269,8 +269,8 @@ ::basegfx::computeSetDifference( aUncoveredAreas, rUpdateArea.maTotalBounds, ::basegfx::B2DRange( rDestRect ) ); - for( const auto& rUpdateArea : aUncoveredAreas ) - repaintBackground( rUpdateArea, maScrapRect, mpBackBuffer ); + for( const auto& rUncoveredArea : aUncoveredAreas ) + repaintBackground( rUncoveredArea, maScrapRect, mpBackBuffer ); // TODO(E1): Use numeric_cast to catch overflow here ::basegfx::B2IRange aActualArea( 0, 0, diff -Nru libreoffice-5.1.1~rc2/canvas/source/directx/dx_winstuff.hxx libreoffice-5.1.2~rc2/canvas/source/directx/dx_winstuff.hxx --- libreoffice-5.1.1~rc2/canvas/source/directx/dx_winstuff.hxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/canvas/source/directx/dx_winstuff.hxx 2016-03-29 15:41:04.000000000 +0000 @@ -49,8 +49,13 @@ #define min(a,b) (((a) < (b)) ? (a) : (b)) #endif +#pragma warning(push, 1) +#pragma warning(disable: 4458) + #include +#pragma warning(pop) + #undef max #undef min diff -Nru libreoffice-5.1.1~rc2/canvas/source/opengl/ogl_spritedevicehelper.cxx libreoffice-5.1.2~rc2/canvas/source/opengl/ogl_spritedevicehelper.cxx --- libreoffice-5.1.1~rc2/canvas/source/opengl/ogl_spritedevicehelper.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/canvas/source/opengl/ogl_spritedevicehelper.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -30,6 +30,8 @@ #include "ogl_canvascustomsprite.hxx" #include "ogl_texturecache.hxx" +#include + using namespace ::com::sun::star; static void initContext() diff -Nru libreoffice-5.1.1~rc2/chart2/inc/pch/precompiled_chartcontroller.hxx libreoffice-5.1.2~rc2/chart2/inc/pch/precompiled_chartcontroller.hxx --- libreoffice-5.1.1~rc2/chart2/inc/pch/precompiled_chartcontroller.hxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/chart2/inc/pch/precompiled_chartcontroller.hxx 2016-03-29 15:41:04.000000000 +0000 @@ -131,7 +131,7 @@ #include #include #include -#include +#include #include #include #include diff -Nru libreoffice-5.1.1~rc2/chart2/source/controller/accessibility/AccessibleBase.cxx libreoffice-5.1.2~rc2/chart2/source/controller/accessibility/AccessibleBase.cxx --- libreoffice-5.1.1~rc2/chart2/source/controller/accessibility/AccessibleBase.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/chart2/source/controller/accessibility/AccessibleBase.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -46,11 +46,12 @@ #include #include #include -#include +#include #include #include #include +#include #include "ChartElementFactory.hxx" diff -Nru libreoffice-5.1.1~rc2/chart2/source/controller/chartapiwrapper/WrappedSymbolProperties.cxx libreoffice-5.1.2~rc2/chart2/source/controller/chartapiwrapper/WrappedSymbolProperties.cxx --- libreoffice-5.1.1~rc2/chart2/source/controller/chartapiwrapper/WrappedSymbolProperties.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/chart2/source/controller/chartapiwrapper/WrappedSymbolProperties.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -32,7 +32,7 @@ #include #include -#include +#include #include #include diff -Nru libreoffice-5.1.1~rc2/chart2/source/controller/itemsetwrapper/DataPointItemConverter.cxx libreoffice-5.1.2~rc2/chart2/source/controller/itemsetwrapper/DataPointItemConverter.cxx --- libreoffice-5.1.1~rc2/chart2/source/controller/itemsetwrapper/DataPointItemConverter.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/chart2/source/controller/itemsetwrapper/DataPointItemConverter.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -42,7 +42,7 @@ #include #include #include -#include +#include #include #include diff -Nru libreoffice-5.1.1~rc2/chart2/source/controller/main/ChartController_Tools.cxx libreoffice-5.1.2~rc2/chart2/source/controller/main/ChartController_Tools.cxx --- libreoffice-5.1.1~rc2/chart2/source/controller/main/ChartController_Tools.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/chart2/source/controller/main/ChartController_Tools.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -55,7 +55,7 @@ #include #include #include -#include +#include #include #include #include diff -Nru libreoffice-5.1.1~rc2/chart2/source/controller/main/ChartTransferable.cxx libreoffice-5.1.2~rc2/chart2/source/controller/main/ChartTransferable.cxx --- libreoffice-5.1.1~rc2/chart2/source/controller/main/ChartTransferable.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/chart2/source/controller/main/ChartTransferable.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -22,7 +22,7 @@ #include #include #include -#include +#include #include #include #include diff -Nru libreoffice-5.1.1~rc2/chart2/source/controller/main/ObjectHierarchy.cxx libreoffice-5.1.2~rc2/chart2/source/controller/main/ObjectHierarchy.cxx --- libreoffice-5.1.1~rc2/chart2/source/controller/main/ObjectHierarchy.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/chart2/source/controller/main/ObjectHierarchy.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -34,6 +34,7 @@ #include #include +#include #include #include diff -Nru libreoffice-5.1.1~rc2/chart2/source/controller/sidebar/ChartAreaPanel.cxx libreoffice-5.1.2~rc2/chart2/source/controller/sidebar/ChartAreaPanel.cxx --- libreoffice-5.1.1~rc2/chart2/source/controller/sidebar/ChartAreaPanel.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/chart2/source/controller/sidebar/ChartAreaPanel.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -387,59 +387,84 @@ if (!xPropSet.is()) return; - css::drawing::FillStyle eFillStyle = css::drawing::FillStyle_SOLID; - xPropSet->getPropertyValue("FillStyle") >>= eFillStyle; - XFillStyleItem aFillStyleItem(eFillStyle); - updateFillStyle(false, true, &aFillStyleItem); - - sal_uInt16 nFillTransparence = 0; - xPropSet->getPropertyValue("FillTransparence") >>= nFillTransparence; - SfxUInt16Item aTransparenceItem(0, nFillTransparence); - updateFillTransparence(false, true, &aTransparenceItem); - - OUString aGradientName; - xPropSet->getPropertyValue("FillGradientName") >>= aGradientName; - XGradient xGradient = getXGradientForName(mxModel, aGradientName); - XFillGradientItem aGradientItem(aGradientName, xGradient); - updateFillGradient(false, true, &aGradientItem); - - OUString aHatchName; - xPropSet->getPropertyValue("FillHatchName") >>= aHatchName; - XHatch xHatch = getXHatchFromName(mxModel, aHatchName); - XFillHatchItem aHatchItem(aHatchName, xHatch); - updateFillHatch(false, true, &aHatchItem); - - OUString aBitmapName; - xPropSet->getPropertyValue("FillBitmapName") >>= aBitmapName; - GraphicObject xBitmap = getXBitmapFromName(mxModel, aBitmapName); - XFillBitmapItem aBitmapItem(aBitmapName, xBitmap); - XFillBitmapItem* pBitmapItem = nullptr; - DrawModelWrapper* pModelWrapper = nullptr; - try + css::uno::Reference xInfo(xPropSet->getPropertySetInfo()); + if (!xInfo.is()) + return; + + if (xInfo->hasPropertyByName("FillStyle")) { - pModelWrapper = getDrawModelWrapper(mxModel); - if (pModelWrapper) - { - pBitmapItem = aBitmapItem.checkForUniqueItem(&pModelWrapper->getSdrModel()); - } + css::drawing::FillStyle eFillStyle = css::drawing::FillStyle_SOLID; + xPropSet->getPropertyValue("FillStyle") >>= eFillStyle; + XFillStyleItem aFillStyleItem(eFillStyle); + updateFillStyle(false, true, &aFillStyleItem); + } + + if (xInfo->hasPropertyByName("FillTransparence")) + { + sal_uInt16 nFillTransparence = 0; + xPropSet->getPropertyValue("FillTransparence") >>= nFillTransparence; + SfxUInt16Item aTransparenceItem(0, nFillTransparence); + updateFillTransparence(false, true, &aTransparenceItem); + } + + if (xInfo->hasPropertyByName("FillGradientName")) + { + OUString aGradientName; + xPropSet->getPropertyValue("FillGradientName") >>= aGradientName; + XGradient xGradient = getXGradientForName(mxModel, aGradientName); + XFillGradientItem aGradientItem(aGradientName, xGradient); + updateFillGradient(false, true, &aGradientItem); + } + + if (xInfo->hasPropertyByName("FillHatchName")) + { + OUString aHatchName; + xPropSet->getPropertyValue("FillHatchName") >>= aHatchName; + XHatch xHatch = getXHatchFromName(mxModel, aHatchName); + XFillHatchItem aHatchItem(aHatchName, xHatch); + updateFillHatch(false, true, &aHatchItem); } - catch (...) + + if (xInfo->hasPropertyByName("FillBitmapName")) { + OUString aBitmapName; + xPropSet->getPropertyValue("FillBitmapName") >>= aBitmapName; + GraphicObject xBitmap = getXBitmapFromName(mxModel, aBitmapName); + XFillBitmapItem aBitmapItem(aBitmapName, xBitmap); + XFillBitmapItem* pBitmapItem = nullptr; + DrawModelWrapper* pModelWrapper = nullptr; + try + { + pModelWrapper = getDrawModelWrapper(mxModel); + if (pModelWrapper) + { + pBitmapItem = aBitmapItem.checkForUniqueItem(&pModelWrapper->getSdrModel()); + } + } + catch (...) + { + } + updateFillBitmap(false, true, pBitmapItem ? pBitmapItem : &aBitmapItem); + delete pBitmapItem; } - updateFillBitmap(false, true, pBitmapItem ? pBitmapItem : &aBitmapItem); - delete pBitmapItem; - OUString aFillFloatTransparenceName; - xPropSet->getPropertyValue("FillTransparenceGradientName") >>= aFillFloatTransparenceName; - XFillFloatTransparenceItem aFillFloatTransparenceItem = getXTransparencyGradientForName(mxModel, aFillFloatTransparenceName); - updateFillFloatTransparence(false, true, &aFillFloatTransparenceItem); + if (xInfo->hasPropertyByName("FillTransparenceGradientName")) + { + OUString aFillFloatTransparenceName; + xPropSet->getPropertyValue("FillTransparenceGradientName") >>= aFillFloatTransparenceName; + XFillFloatTransparenceItem aFillFloatTransparenceItem = getXTransparencyGradientForName(mxModel, aFillFloatTransparenceName); + updateFillFloatTransparence(false, true, &aFillFloatTransparenceItem); - maFillColorWrapper.updateData(); + maFillColorWrapper.updateData(); + } - sal_uInt32 nFillColor = 0; - xPropSet->getPropertyValue("FillColor") >>= nFillColor; - XFillColorItem aFillColorItem("", Color(nFillColor)); - updateFillColor(true, &aFillColorItem); + if (xInfo->hasPropertyByName("FillColor")) + { + sal_uInt32 nFillColor = 0; + xPropSet->getPropertyValue("FillColor") >>= nFillColor; + XFillColorItem aFillColorItem("", Color(nFillColor)); + updateFillColor(true, &aFillColorItem); + } } void ChartAreaPanel::modelInvalid() diff -Nru libreoffice-5.1.1~rc2/chart2/source/view/main/OpenGLRender.cxx libreoffice-5.1.2~rc2/chart2/source/view/main/OpenGLRender.cxx --- libreoffice-5.1.1~rc2/chart2/source/view/main/OpenGLRender.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/chart2/source/view/main/OpenGLRender.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -10,7 +10,7 @@ #include #include #include "OpenGLRender.hxx" -#include +#include #include #include #include diff -Nru libreoffice-5.1.1~rc2/config_host/config_graphite.h.in libreoffice-5.1.2~rc2/config_host/config_graphite.h.in --- libreoffice-5.1.1~rc2/config_host/config_graphite.h.in 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/config_host/config_graphite.h.in 2016-03-29 15:41:04.000000000 +0000 @@ -3,4 +3,6 @@ #define ENABLE_GRAPHITE 0 +#define ENABLE_GRAPHITE_DWRITE 1 + #endif diff -Nru libreoffice-5.1.1~rc2/configure.ac libreoffice-5.1.2~rc2/configure.ac --- libreoffice-5.1.1~rc2/configure.ac 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/configure.ac 2016-03-29 15:41:04.000000000 +0000 @@ -9,7 +9,7 @@ # several non-alphanumeric characters, those are split off and used only for the # ABOUTBOXPRODUCTVERSIONSUFFIX in openoffice.lst. Why that is necessary, no idea. -AC_INIT([LibreOffice],[5.1.1.2],[],[],[http://documentfoundation.org/]) +AC_INIT([LibreOffice],[5.1.2.2],[],[],[http://documentfoundation.org/]) AC_PREREQ([2.59]) @@ -3343,8 +3343,8 @@ map_vs_year_to_version "$1" vsversions=$vsversion else - # By default we prefer 2013 - vsversions=12.0 + # By default we prefer 2013/2015, in this order + vsversions="12.0 14.0" fi } @@ -3374,10 +3374,11 @@ find_ucrt() { - reg_get_value_32 "HKEY_LOCAL_MACHINE/SOFTWARE/Microsoft/Windows Kits/Installed Roots/KitsRoot10" + reg_get_value_32 "HKEY_LOCAL_MACHINE/SOFTWARE/Microsoft/Microsoft SDKs/Windows/v10.0/InstallationFolder" if test -n "$regvalue"; then ucrttest=$regvalue - ucrtdir=10.0.10240.0 + reg_get_value_32 "HKEY_LOCAL_MACHINE/SOFTWARE/Microsoft/Microsoft SDKs/Windows/v10.0/ProductVersion" + ucrtdir=$regvalue fi } @@ -3431,7 +3432,6 @@ AC_MSG_CHECKING([Visual C++]) find_msvc "$with_visual_studio" - if test -z "$vctest"; then if test -n "$with_visual_studio"; then AC_MSG_ERROR([No Visual Studio $with_visual_studio installation found]) @@ -3478,13 +3478,14 @@ if test -n "$ucrttest"; then AC_MSG_RESULT([found]) PathFormat "$ucrttest" - ucrtincpath_formatted="$formatted_path/Include/$ucrtdir/ucrt" + ucrtincpath_formatted="${formatted_path}Include/$ucrtdir/ucrt" # SOLARINC is used for external modules and must be set too. # And no, it's not sufficient to set SOLARINC only, as configure # itself doesn't honour it. SOLARINC="$SOLARINC -I$ucrtincpath_formatted" CFLAGS="$CFLAGS -I$ucrtincpath_formatted" - CXXFLAGS="$CPPFLAGS -I$ucrtincpath_formatted" + CXXFLAGS="$CXXFLAGS -I$ucrtincpath_formatted" + CPPFLAGS="$CPPFLAGS -I$ucrtincpath_formatted" else AC_MSG_ERROR([not found]) fi @@ -3598,7 +3599,7 @@ ;; 140) COMEX=19 - WINDOWS_SDK_ACCEPTABLE_VERSIONS="10.0A 8.1A 8.1 8.0 7.1A" + WINDOWS_SDK_ACCEPTABLE_VERSIONS="10.0A 10.0 8.1A 8.1 8.0 7.1A" ;; esac @@ -5295,11 +5296,12 @@ return fi ;; - 10) - reg_get_value_32 "HKEY_LOCAL_MACHINE/SOFTWARE/Microsoft/Windows Kits/Installed Roots/KitsRoot10" + 10.0) + reg_get_value_32 "HKEY_LOCAL_MACHINE/SOFTWARE/Microsoft/Microsoft SDKs/Windows/v${1}/InstallationFolder" if test -n "$regvalue"; then winsdktest=$regvalue - winsdklibsubdir=10.0.10056.0 + reg_get_value_32 "HKEY_LOCAL_MACHINE/SOFTWARE/Microsoft/Microsoft SDKs/Windows/v${1}/ProductVersion" + winsdklibsubdir=$regvalue return fi ;; @@ -8836,7 +8838,7 @@ save_CPPFLAGS=$CPPFLAGS find_winsdk PathFormat "$winsdktest" - CPPFLAGS="$CPPFLAGS -I$formatted_path/include/um -I$formatted_path/Include/$winsdklibsubdir/um -I$formatted_path/include -I$formatted_path/include/shared" + CPPFLAGS="$CPPFLAGS -I$formatted_path/include/um -I$formatted_path/Include/$winsdklibsubdir/um -I$formatted_path/include -I$formatted_path/include/shared -I$formatted_path/include/$winsdklibsubdir/shared" AC_CHECK_HEADER(sqlext.h, [], [AC_MSG_ERROR(odbc not found. install odbc)], [#include ]) @@ -12602,7 +12604,7 @@ fi if test $VCVER = 140; then PathFormat "$ucrttest" - ucrtlibpath_formatted="$formatted_path/lib/$ucrtdir/ucrt/x64" + ucrtlibpath_formatted="${formatted_path}lib/$ucrtdir/ucrt/x64" ILIB="$ILIB;$ucrtlibpath_formatted" fi else @@ -12616,7 +12618,7 @@ fi if test $VCVER = 140; then PathFormat "$ucrttest" - ucrtlibpath_formatted="$formatted_path/lib/$ucrtdir/ucrt/x86" + ucrtlibpath_formatted="${formatted_path}lib/$ucrtdir/ucrt/x86" ILIB="$ILIB;$ucrtlibpath_formatted" fi fi diff -Nru libreoffice-5.1.1~rc2/connectivity/source/drivers/odbc/OTools.cxx libreoffice-5.1.2~rc2/connectivity/source/drivers/odbc/OTools.cxx --- libreoffice-5.1.1~rc2/connectivity/source/drivers/odbc/OTools.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/connectivity/source/drivers/odbc/OTools.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -253,7 +253,9 @@ } break; case SQL_LONGVARBINARY: { - _pData = reinterpret_cast(columnIndex); + /* see https://msdn.microsoft.com/en-us/library/ms716238%28v=vs.85%29.aspx + * for an explanation of that apparently weird cast */ + _pData = reinterpret_cast((uintptr_t)columnIndex); sal_Int32 nLen = 0; nLen = static_cast *>(_pValue)->getLength(); *pLen = (SQLLEN)SQL_LEN_DATA_AT_EXEC(nLen); @@ -261,7 +263,9 @@ break; case SQL_LONGVARCHAR: { - _pData = reinterpret_cast(columnIndex); + /* see https://msdn.microsoft.com/en-us/library/ms716238%28v=vs.85%29.aspx + * for an explanation of that apparently weird cast */ + _pData = reinterpret_cast((uintptr_t)columnIndex); sal_Int32 nLen = 0; nLen = static_cast(_pValue)->getLength(); *pLen = (SQLLEN)SQL_LEN_DATA_AT_EXEC(nLen); diff -Nru libreoffice-5.1.1~rc2/connectivity/source/drivers/postgresql/pq_databasemetadata.cxx libreoffice-5.1.2~rc2/connectivity/source/drivers/postgresql/pq_databasemetadata.cxx --- libreoffice-5.1.1~rc2/connectivity/source/drivers/postgresql/pq_databasemetadata.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/connectivity/source/drivers/postgresql/pq_databasemetadata.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -2143,11 +2143,84 @@ OUString nameB; a[0 /*TYPE_NAME*/] >>= nameA; b[0 /*TYPE_NAME*/] >>= nameB; - if( nameA.startsWith( "int4" ) ) + OUString nsA, tnA, nsB, tnB; + + // parse typename into schema and typename + sal_Int32 nIndex=0; + nsA = nameA.getToken(0, '.', nIndex); + if (nIndex<0) + { + tnA = nsA; + nsA.clear(); + } + else + { + tnA = nameA.getToken(0, '.', nIndex); + assert(nIndex < 0); + } + + nIndex=0; + nsB = nameB.getToken(0, '.', nIndex); + if (nIndex<0) + { + tnB = nsB; + nsB.clear(); + } + else + { + tnB = nameB.getToken(0, '.', nIndex); + assert(nIndex < 0); + } + + // sort no schema first, then "public", then normal schemas, then internal schemas + if(nsA == nsB) + { + if(nsA.isEmpty()) + { + assert(nsB.isEmpty()); + // within each type category, sort privileged choice first + if( tnA == "int4" || tnA == "varchar" || tnA == "char" || tnA == "text") + return true; + if( tnB == "int4" || tnB == "varchar" || tnB == "char" || tnB == "text") + return false; + } + return nameA.compareTo( nameB ) < 0; + } + else if (nsA.isEmpty()) + { + assert(!nsB.isEmpty()); + return true; + } + else if (nsB.isEmpty()) + { + assert(!nsA.isEmpty()); + return false; + } + else if(nsA == "public") + { + assert(nsB != "public"); return true; - if( nameB.startsWith( "int4" ) ) + } + else if(nsB == "public") + { + assert(nsA != "public"); return false; - return nameA.compareTo( nameB ) < 0; + } + else if(nsA.startsWith("pg_")) + { + if(nsB.startsWith("pg_")) + return nsA.compareTo(nsB) < 0; + else + return false; + } + else if(nsB.startsWith("pg_")) + { + return true; + } + else + { + return nsA.compareTo(nsB) < 0; + } } return valueA.toInt32() < valueB.toInt32(); @@ -2192,6 +2265,16 @@ return ret; } +namespace +{ + OUString construct_full_typename(const OUString &ns, const OUString &tn) + { + if(ns.isEmpty() || ns == "pg_catalog") + return tn; + else + return ns + "." + tn; + } +} static void pgTypeInfo2ResultSet( SequenceAnyVector &vec, @@ -2256,7 +2339,7 @@ row[CREATE_PARAMS] <<= OUString("length, scale"); } - row[TYPE_NAME] <<= xRow->getString(1); + row[TYPE_NAME] <<= construct_full_typename(xRow->getString(6), xRow->getString(1)); row[DATA_TYPE] <<= OUString::number(dataType); row[PRECISION] <<= OUString::number( precision ); sal_Int32 nullable = xRow->getBoolean(4) ? @@ -2298,8 +2381,9 @@ "pg_type.typtype AS typtype," //2 "pg_type.typlen AS typlen," //3 "pg_type.typnotnull AS typnotnull," //4 - "pg_type.typname AS typname " //5 - "FROM pg_type " + "pg_type.typname AS typname, " //5 + "pg_namespace.nspname as typns " //6 + "FROM pg_type LEFT JOIN pg_namespace ON pg_type.typnamespace=pg_namespace.oid " "WHERE pg_type.typtype = 'b' " "OR pg_type.typtype = 'p'" ); @@ -2313,8 +2397,9 @@ "t2.typtype AS typtype," "t2.typlen AS typlen," "t2.typnotnull AS typnotnull," - "t2.typname as realtypname " - "FROM pg_type as t1 LEFT JOIN pg_type AS t2 ON t1.typbasetype=t2.oid " + "t2.typname as realtypname, " + "pg_namespace.nspname as typns " + "FROM pg_type as t1 LEFT JOIN pg_type AS t2 ON t1.typbasetype=t2.oid LEFT JOIN pg_namespace ON t1.typnamespace=pg_namespace.oid " "WHERE t1.typtype = 'd'" ); pgTypeInfo2ResultSet( vec, rs ); diff -Nru libreoffice-5.1.1~rc2/connectivity/source/drivers/postgresql/pq_statics.cxx libreoffice-5.1.2~rc2/connectivity/source/drivers/postgresql/pq_statics.cxx --- libreoffice-5.1.1~rc2/connectivity/source/drivers/postgresql/pq_statics.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/connectivity/source/drivers/postgresql/pq_statics.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -623,7 +623,7 @@ // { "serial", com::sun::star::sdbc::DataType::INTEGER }, // { "serial4", com::sun::star::sdbc::DataType::INTEGER }, - { "text", com::sun::star::sdbc::DataType::VARCHAR }, + { "text", com::sun::star::sdbc::DataType::LONGVARCHAR }, { "bpchar", com::sun::star::sdbc::DataType::CHAR }, { "varchar", com::sun::star::sdbc::DataType::VARCHAR }, diff -Nru libreoffice-5.1.1~rc2/cppcanvas/inc/pch/precompiled_cppcanvas.hxx libreoffice-5.1.2~rc2/cppcanvas/inc/pch/precompiled_cppcanvas.hxx --- libreoffice-5.1.1~rc2/cppcanvas/inc/pch/precompiled_cppcanvas.hxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/cppcanvas/inc/pch/precompiled_cppcanvas.hxx 2016-03-29 15:41:04.000000000 +0000 @@ -109,7 +109,7 @@ #include #include #include -#include +#include #include #include #include diff -Nru libreoffice-5.1.1~rc2/cppcanvas/source/mtfrenderer/transparencygroupaction.cxx libreoffice-5.1.2~rc2/cppcanvas/source/mtfrenderer/transparencygroupaction.cxx --- libreoffice-5.1.1~rc2/cppcanvas/source/mtfrenderer/transparencygroupaction.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/cppcanvas/source/mtfrenderer/transparencygroupaction.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -46,6 +46,7 @@ #include #include #include +#include #include @@ -381,6 +382,15 @@ rendering::RenderState aLocalState( maState ); ::canvas::tools::setRenderStateTransform(aLocalState, aTransform); + if(aLocalState.Clip.is()) + { + // tdf#95709 + // Adjust renderstate clip to modified scale from above + ::basegfx::B2DPolyPolygon aClip = ::basegfx::unotools::b2DPolyPolygonFromXPolyPolygon2D(aLocalState.Clip); + aClip.transform(basegfx::tools::createScaleB2DHomMatrix(aScale)); + aLocalState.Clip = ::basegfx::unotools::xPolyPolygonFromB2DPolyPolygon(mpCanvas->getUNOCanvas()->getDevice(), aClip); + } + #if OSL_DEBUG_LEVEL > 2 aLocalState.Clip.clear(); aLocalState.DeviceColor = diff -Nru libreoffice-5.1.1~rc2/cppcanvas/source/wrapper/vclfactory.cxx libreoffice-5.1.2~rc2/cppcanvas/source/wrapper/vclfactory.cxx --- libreoffice-5.1.1~rc2/cppcanvas/source/wrapper/vclfactory.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/cppcanvas/source/wrapper/vclfactory.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -22,7 +22,7 @@ #include #include #include -#include +#include #include #include diff -Nru libreoffice-5.1.1~rc2/cppu/source/uno/destr.hxx libreoffice-5.1.2~rc2/cppu/source/uno/destr.hxx --- libreoffice-5.1.1~rc2/cppu/source/uno/destr.hxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/cppu/source/uno/destr.hxx 2016-03-29 15:41:04.000000000 +0000 @@ -133,7 +133,7 @@ break; } #if OSL_DEBUG_LEVEL > 0 - pAny->pData = reinterpret_cast(0xdeadbeef); + pAny->pData = reinterpret_cast((uintptr_t)0xdeadbeef); #endif ::typelib_typedescriptionreference_release( pType ); diff -Nru libreoffice-5.1.1~rc2/cppu/source/uno/prim.hxx libreoffice-5.1.2~rc2/cppu/source/uno/prim.hxx --- libreoffice-5.1.1~rc2/cppu/source/uno/prim.hxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/cppu/source/uno/prim.hxx 2016-03-29 15:41:04.000000000 +0000 @@ -133,7 +133,7 @@ inline void CONSTRUCT_EMPTY_ANY(uno_Any * pAny) { pAny->pType = _getVoidType(); #if OSL_DEBUG_LEVEL > 0 - pAny->pData = reinterpret_cast(0xdeadbeef); + pAny->pData = reinterpret_cast((uintptr_t)0xdeadbeef); #else pAny->pData = pAny; #endif diff -Nru libreoffice-5.1.1~rc2/cui/inc/pch/precompiled_cui.hxx libreoffice-5.1.2~rc2/cui/inc/pch/precompiled_cui.hxx --- libreoffice-5.1.1~rc2/cui/inc/pch/precompiled_cui.hxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/cui/inc/pch/precompiled_cui.hxx 2016-03-29 15:41:04.000000000 +0000 @@ -140,7 +140,7 @@ #include #include #include -#include +#include #include #include #include diff -Nru libreoffice-5.1.1~rc2/cui/source/customize/acccfg.cxx libreoffice-5.1.2~rc2/cui/source/customize/acccfg.cxx --- libreoffice-5.1.1~rc2/cui/source/customize/acccfg.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/cui/source/customize/acccfg.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -308,6 +308,7 @@ KEY_SHIFT | KEY_MOD1 | KEY_PAGEDOWN, KEY_SHIFT | KEY_MOD1 | KEY_RETURN, KEY_SHIFT | KEY_MOD1 | KEY_ESCAPE, + KEY_SHIFT | KEY_MOD1 | KEY_SPACE, KEY_SHIFT | KEY_MOD1 | KEY_BACKSPACE, KEY_SHIFT | KEY_MOD1 | KEY_INSERT, KEY_SHIFT | KEY_MOD1 | KEY_DELETE, @@ -454,6 +455,7 @@ KEY_SHIFT | KEY_MOD2 | KEY_PAGEDOWN, KEY_SHIFT | KEY_MOD2 | KEY_RETURN, KEY_SHIFT | KEY_MOD2 | KEY_ESCAPE, + KEY_SHIFT | KEY_MOD2 | KEY_SPACE, KEY_SHIFT | KEY_MOD2 | KEY_BACKSPACE, KEY_SHIFT | KEY_MOD2 | KEY_INSERT, KEY_SHIFT | KEY_MOD2 | KEY_DELETE, diff -Nru libreoffice-5.1.1~rc2/cui/source/customize/cfg.cxx libreoffice-5.1.2~rc2/cui/source/customize/cfg.cxx --- libreoffice-5.1.1~rc2/cui/source/customize/cfg.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/cui/source/customize/cfg.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -3403,9 +3403,12 @@ if ( pNameDialog->Execute() == RET_OK ) { pNameDialog->GetName(aNewName); - pEntry->SetName( aNewName ); - m_pContentsListBox->SetEntryText( pActEntry, aNewName ); + if( aNewName == "" ) //tdf#80758 - Accelerator character ("~") is passed as + pEntry->SetName( "~" ); // the button name in case of empty values. + else + pEntry->SetName( aNewName ); + m_pContentsListBox->SetEntryText( pActEntry, aNewName ); bNeedsApply = true; } break; diff -Nru libreoffice-5.1.1~rc2/cui/source/customize/macropg.cxx libreoffice-5.1.2~rc2/cui/source/customize/macropg.cxx --- libreoffice-5.1.1~rc2/cui/source/customize/macropg.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/cui/source/customize/macropg.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -43,6 +43,7 @@ #include #include +#include #include using namespace ::com::sun::star; diff -Nru libreoffice-5.1.1~rc2/cui/source/dialogs/about.cxx libreoffice-5.1.2~rc2/cui/source/dialogs/about.cxx --- libreoffice-5.1.1~rc2/cui/source/dialogs/about.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/cui/source/dialogs/about.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -26,7 +26,7 @@ #include #include #include -#include +#include #include #include diff -Nru libreoffice-5.1.1~rc2/cui/source/dialogs/SpellDialog.cxx libreoffice-5.1.2~rc2/cui/source/dialogs/SpellDialog.cxx --- libreoffice-5.1.1~rc2/cui/source/dialogs/SpellDialog.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/cui/source/dialogs/SpellDialog.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -43,7 +43,7 @@ #include #include #include -#include +#include #include #include #include diff -Nru libreoffice-5.1.1~rc2/cui/source/inc/backgrnd.hxx libreoffice-5.1.2~rc2/cui/source/inc/backgrnd.hxx --- libreoffice-5.1.1~rc2/cui/source/inc/backgrnd.hxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/cui/source/inc/backgrnd.hxx 2016-03-29 15:41:04.000000000 +0000 @@ -21,7 +21,7 @@ #include #include -#include +#include #include #include #include diff -Nru libreoffice-5.1.1~rc2/cui/source/inc/cuigaldlg.hxx libreoffice-5.1.2~rc2/cui/source/inc/cuigaldlg.hxx --- libreoffice-5.1.1~rc2/cui/source/inc/cuigaldlg.hxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/cui/source/inc/cuigaldlg.hxx 2016-03-29 15:41:04.000000000 +0000 @@ -24,7 +24,7 @@ #include #include -#include +#include #include #include #include diff -Nru libreoffice-5.1.1~rc2/cui/source/inc/grfpage.hxx libreoffice-5.1.2~rc2/cui/source/inc/grfpage.hxx --- libreoffice-5.1.1~rc2/cui/source/inc/grfpage.hxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/cui/source/inc/grfpage.hxx 2016-03-29 15:41:04.000000000 +0000 @@ -23,7 +23,7 @@ #include #include #include -#include +#include #include class SvxCropExample : public vcl::Window diff -Nru libreoffice-5.1.1~rc2/cui/source/options/optaboutconfig.cxx libreoffice-5.1.2~rc2/cui/source/options/optaboutconfig.cxx --- libreoffice-5.1.1~rc2/cui/source/options/optaboutconfig.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/cui/source/options/optaboutconfig.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -937,7 +937,7 @@ } } - return true; + return pEntry && pEntry->HasChildren(); } /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff -Nru libreoffice-5.1.1~rc2/cui/source/options/optgdlg.cxx libreoffice-5.1.2~rc2/cui/source/options/optgdlg.cxx --- libreoffice-5.1.1~rc2/cui/source/options/optgdlg.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/cui/source/options/optgdlg.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -629,6 +629,14 @@ get(m_pMousePosLB, "mousepos"); get(m_pMouseMiddleLB, "mousemiddle"); + if (Application::GetToolkitName() == "gtk3") + { + m_pUseOpenGL->Hide(); + m_pForceOpenGL->Hide(); + m_pOpenGLStatusEnabled->Hide(); + m_pOpenGLStatusDisabled->Hide(); + } + #if defined( UNX ) m_pFontAntiAliasing->SetToggleHdl( LINK( this, OfaViewTabPage, OnAntialiasingToggled ) ); #else @@ -969,6 +977,8 @@ void OfaViewTabPage::UpdateOGLStatus() { + if (Application::GetToolkitName() == "gtk3") + return; // Easier than a custom translation string. bool bEnabled = OpenGLWrapper::isVCLOpenGLEnabled(); m_pOpenGLStatusEnabled->Show(bEnabled); diff -Nru libreoffice-5.1.1~rc2/cui/source/tabpages/numpages.cxx libreoffice-5.1.2~rc2/cui/source/tabpages/numpages.cxx --- libreoffice-5.1.1~rc2/cui/source/tabpages/numpages.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/cui/source/tabpages/numpages.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -36,7 +36,7 @@ #include #include #include -#include +#include #include #include #include diff -Nru libreoffice-5.1.1~rc2/cui/source/tabpages/page.cxx libreoffice-5.1.2~rc2/cui/source/tabpages/page.cxx --- libreoffice-5.1.1~rc2/cui/source/tabpages/page.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/cui/source/tabpages/page.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -21,7 +21,7 @@ #include #include #include -#include +#include #include #include #include diff -Nru libreoffice-5.1.1~rc2/cui/uiconfig/ui/customizedialog.ui libreoffice-5.1.2~rc2/cui/uiconfig/ui/customizedialog.ui --- libreoffice-5.1.1~rc2/cui/uiconfig/ui/customizedialog.ui 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/cui/uiconfig/ui/customizedialog.ui 2016-03-29 15:41:04.000000000 +0000 @@ -6,7 +6,6 @@ False 6 Customize - False dialog diff -Nru libreoffice-5.1.1~rc2/cui/uiconfig/ui/distributionpage.ui libreoffice-5.1.2~rc2/cui/uiconfig/ui/distributionpage.ui --- libreoffice-5.1.1~rc2/cui/uiconfig/ui/distributionpage.ui 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/cui/uiconfig/ui/distributionpage.ui 2016-03-29 15:41:04.000000000 +0000 @@ -144,7 +144,7 @@ False center center - svx/res/dsth_cen.png + svx/res/dsth_dst.png 3 diff -Nru libreoffice-5.1.1~rc2/cui/uiconfig/ui/specialcharacters.ui libreoffice-5.1.2~rc2/cui/uiconfig/ui/specialcharacters.ui --- libreoffice-5.1.1~rc2/cui/uiconfig/ui/specialcharacters.ui 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/cui/uiconfig/ui/specialcharacters.ui 2016-03-29 15:41:04.000000000 +0000 @@ -1,5 +1,5 @@ - + @@ -212,70 +212,46 @@ - + True False - vertical - - - True - False - Decimal: - - - False - True - 0 - - - - - True - True - 162 - center - 11 - - - False - True - 1 - - - - - 0 - 2 - - - - - True - False - vertical + center + 3 True False Hexadecimal: + 0 - False - True - 0 + 0 + 0 - + True False - center + 3 + + + True + True + center + 8 + A2 + + + 1 + 0 + + True False U+ - True 3 True 3 @@ -286,24 +262,34 @@ 0 - - - True - True - A2 - center - 8 - - - 1 - 0 - - - False - True - 1 + 0 + 1 + + + + + True + False + Decimal: + 0 + + + 0 + 2 + + + + + True + True + 8 + 162 + + + 0 + 3 diff -Nru libreoffice-5.1.1~rc2/dbaccess/inc/pch/precompiled_dba.hxx libreoffice-5.1.2~rc2/dbaccess/inc/pch/precompiled_dba.hxx --- libreoffice-5.1.1~rc2/dbaccess/inc/pch/precompiled_dba.hxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/dbaccess/inc/pch/precompiled_dba.hxx 2016-03-29 15:41:04.000000000 +0000 @@ -117,7 +117,7 @@ #include #include #include -#include +#include #include #include #include diff -Nru libreoffice-5.1.1~rc2/dbaccess/inc/pch/precompiled_dbmm.hxx libreoffice-5.1.2~rc2/dbaccess/inc/pch/precompiled_dbmm.hxx --- libreoffice-5.1.1~rc2/dbaccess/inc/pch/precompiled_dbmm.hxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/dbaccess/inc/pch/precompiled_dbmm.hxx 2016-03-29 15:41:04.000000000 +0000 @@ -110,7 +110,7 @@ #include #include #include -#include +#include #include #include #include diff -Nru libreoffice-5.1.1~rc2/dbaccess/source/ui/app/AppControllerDnD.cxx libreoffice-5.1.2~rc2/dbaccess/source/ui/app/AppControllerDnD.cxx --- libreoffice-5.1.1~rc2/dbaccess/source/ui/app/AppControllerDnD.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/dbaccess/source/ui/app/AppControllerDnD.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -68,6 +68,7 @@ #include "dbexchange.hxx" #include "UITools.hxx" #include +#include #include #include #include diff -Nru libreoffice-5.1.1~rc2/dbaccess/source/ui/app/AppDetailPageHelper.hxx libreoffice-5.1.2~rc2/dbaccess/source/ui/app/AppDetailPageHelper.hxx --- libreoffice-5.1.1~rc2/dbaccess/source/ui/app/AppDetailPageHelper.hxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/dbaccess/source/ui/app/AppDetailPageHelper.hxx 2016-03-29 15:41:04.000000000 +0000 @@ -31,7 +31,7 @@ #include #include #include -#include +#include #include #include "callbacks.hxx" #include diff -Nru libreoffice-5.1.1~rc2/dbaccess/source/ui/control/opendoccontrols.cxx libreoffice-5.1.2~rc2/dbaccess/source/ui/control/opendoccontrols.cxx --- libreoffice-5.1.1~rc2/dbaccess/source/ui/control/opendoccontrols.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/dbaccess/source/ui/control/opendoccontrols.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -30,7 +30,7 @@ #include #include -#include +#include #include #include #include diff -Nru libreoffice-5.1.1~rc2/dbaccess/source/ui/dlg/ConnectionHelper.cxx libreoffice-5.1.2~rc2/dbaccess/source/ui/dlg/ConnectionHelper.cxx --- libreoffice-5.1.1~rc2/dbaccess/source/ui/dlg/ConnectionHelper.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/dbaccess/source/ui/dlg/ConnectionHelper.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -230,7 +230,7 @@ break; case ::dbaccess::DST_MSACCESS: { - const OUString sExt("*.mdb"); + const OUString sExt("*.mdb;*.mde"); OUString sFilterName(ModuleRes (STR_MSACCESS_FILTERNAME)); ::sfx2::FileDialogHelper aFileDlg( ui::dialogs::TemplateDescription::FILEOPEN_READONLY_VERSION, @@ -242,7 +242,7 @@ break; case ::dbaccess::DST_MSACCESS_2007: { - const OUString sAccdb("*.accdb"); + const OUString sAccdb("*.accdb;*.accde"); OUString sFilterName2(ModuleRes (STR_MSACCESS_2007_FILTERNAME)); ::sfx2::FileDialogHelper aFileDlg( ui::dialogs::TemplateDescription::FILEOPEN_READONLY_VERSION, diff -Nru libreoffice-5.1.1~rc2/dbaccess/source/ui/dlg/DbAdminImpl.cxx libreoffice-5.1.2~rc2/dbaccess/source/ui/dlg/DbAdminImpl.cxx --- libreoffice-5.1.1~rc2/dbaccess/source/ui/dlg/DbAdminImpl.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/dbaccess/source/ui/dlg/DbAdminImpl.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -69,6 +69,7 @@ #include #include +#include #include #include diff -Nru libreoffice-5.1.1~rc2/dbaccess/source/ui/relationdesign/RelationController.cxx libreoffice-5.1.2~rc2/dbaccess/source/ui/relationdesign/RelationController.cxx --- libreoffice-5.1.1~rc2/dbaccess/source/ui/relationdesign/RelationController.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/dbaccess/source/ui/relationdesign/RelationController.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -19,6 +19,7 @@ #include +#include #include #include "dbu_reghelper.hxx" diff -Nru libreoffice-5.1.1~rc2/debian/changelog libreoffice-5.1.2~rc2/debian/changelog --- libreoffice-5.1.1~rc2/debian/changelog 2016-03-01 09:30:11.000000000 +0000 +++ libreoffice-5.1.2~rc2/debian/changelog 2016-03-31 14:12:04.000000000 +0000 @@ -1,8 +1,22 @@ -libreoffice (1:5.1.1~rc2-0ubuntu1~wily0) wily; urgency=medium +libreoffice (1:5.1.2~rc2-0ubuntu1~wily0) wily; urgency=medium * Backport from xenial - -- Rico Tzschichholz Tue, 01 Mar 2016 10:17:18 +0100 + -- Rico Tzschichholz Thu, 31 Mar 2016 16:12:01 +0200 + +libreoffice (1:5.1.2~rc2-0ubuntu1) xenial; urgency=medium + + * new upstream rc + + -- Bjoern Michaelsen Wed, 30 Mar 2016 12:37:01 +0200 + +libreoffice (1:5.1.1-0ubuntu1) xenial; urgency=medium + + * upstream released an rc3 = final + * allow libreoffice-style-elementary as alternative for -breeze in libreoffice-gtk (LP: #1483914) + * fix File>Templates>Manage executes wrong action in unity (LP: #1559135) + + -- Bjoern Michaelsen Fri, 18 Mar 2016 15:19:35 +0100 libreoffice (1:5.1.1~rc2-0ubuntu1) xenial; urgency=medium diff -Nru libreoffice-5.1.1~rc2/debian/control libreoffice-5.1.2~rc2/debian/control --- libreoffice-5.1.1~rc2/debian/control 2016-03-01 09:32:27.000000000 +0000 +++ libreoffice-5.1.2~rc2/debian/control 2016-03-31 14:15:05.000000000 +0000 @@ -59,6 +59,7 @@ libglew-dev, libglib2.0-dev (>= 2.15.0), libglm-dev (>= 0.9.6.3), + libgraphite2-dev (>= 0.9.3), libgstreamer-plugins-base1.0-dev, libgstreamer1.0-dev, libgtk-3-dev (>= 3.8~), @@ -675,7 +676,7 @@ Depends: libreoffice-core (= ${binary:Version}), ${misc:Depends}, ${shlibs:Depends} -Recommends: libreoffice-style-breeze | libreoffice-style-tango +Recommends: libreoffice-style-breeze | libreoffice-style-tango | libreoffice-style-elementary Section: gnome Enhances: libreoffice Conflicts: libgtk2.0-0 (= 2.12.10-1) [amd64], lo-menubar @@ -1313,6 +1314,7 @@ libglew-dev, libglib2.0-dev (>= 2.15.0), libglm-dev (>= 0.9.6.3), + libgraphite2-dev (>= 0.9.3), libgstreamer-plugins-base1.0-dev, libgstreamer1.0-dev, libgtk-3-dev (>= 3.8~), diff -Nru libreoffice-5.1.1~rc2/debian/control.in libreoffice-5.1.2~rc2/debian/control.in --- libreoffice-5.1.1~rc2/debian/control.in 2016-02-29 12:55:54.000000000 +0000 +++ libreoffice-5.1.2~rc2/debian/control.in 2016-03-31 09:10:40.000000000 +0000 @@ -555,7 +555,7 @@ Depends: libreoffice-core (= ${binary:Version}), ${misc:Depends}, ${shlibs:Depends} -Recommends: libreoffice-style-breeze | libreoffice-style-tango +Recommends: libreoffice-style-breeze | libreoffice-style-tango | libreoffice-style-elementary Section: gnome Enhances: libreoffice Conflicts: libgtk2.0-0 (= 2.12.10-1) [amd64], lo-menubar diff -Nru libreoffice-5.1.1~rc2/debian/rules libreoffice-5.1.2~rc2/debian/rules --- libreoffice-5.1.1~rc2/debian/rules 2016-03-01 09:30:59.000000000 +0000 +++ libreoffice-5.1.2~rc2/debian/rules 2016-03-31 14:13:38.000000000 +0000 @@ -70,7 +70,7 @@ GIT_BASEURL:=git://anongit.freedesktop.org/libreoffice # bootstraping this from the source tree is breaking get-orig-source #lo_sources_ver=$(shell grep AC_INIT $(SOURCE_TREE)/configure.ac | grep documentfoundation | cut -d, -f2 | sed -e 's,\[,,' -e 's,\],,') -lo_sources_ver=5.1.1.2 +lo_sources_ver=5.1.2.2 # NOT in proper libreoffice-3-6 branch # use ./g checkout -b tag-libreoffice-3.6.2.1 libreoffice-3.6.2.1 GIT_TAG=libreoffice-$(lo_sources_ver) @@ -772,7 +772,6 @@ ifeq "$(DEB_DISTRIBUTION)" "wily" # maybe backports SYSTEM_STUFF := $(filter-out mdds orcus librevenge libcdr libwpd libwpg libwps libvisio libmspub, $(SYSTEM_STUFF)) - SYSTEM_STUFF := $(filter-out graphite, $(SYSTEM_STUFF)) SYSTEM_STUFF := $(filter-out libodfgen libmwaw libetonyek libfreehand libebook libeot libabw, $(SYSTEM_STUFF)) SYSTEM_STUFF := $(filter-out opencollada collada2gltf, $(SYSTEM_STUFF)) endif diff -Nru libreoffice-5.1.1~rc2/desktop/inc/pch/precompiled_sofficeapp.hxx libreoffice-5.1.2~rc2/desktop/inc/pch/precompiled_sofficeapp.hxx --- libreoffice-5.1.1~rc2/desktop/inc/pch/precompiled_sofficeapp.hxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/desktop/inc/pch/precompiled_sofficeapp.hxx 2016-03-29 15:41:04.000000000 +0000 @@ -128,7 +128,7 @@ #include #include #include -#include +#include #include #include #include diff -Nru libreoffice-5.1.1~rc2/desktop/source/lib/init.cxx libreoffice-5.1.2~rc2/desktop/source/lib/init.cxx --- libreoffice-5.1.1~rc2/desktop/source/lib/init.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/desktop/source/lib/init.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -187,6 +187,10 @@ * by css, it might turn out to be worth mapping some of these missing cursors * to available cursors? */ +#ifdef _MSC_VER +#pragma warning(push) +#pragma warning( disable : 4592) +#endif static const std::map aPointerMap { { PointerStyle::Arrow, "default" }, // PointerStyle::Null ? @@ -229,6 +233,9 @@ // Pivot Delete, TabSelectS through TabSelectSW // PaintBrush, HideWhiteSpace, ShowWhiteSpace }; +#ifdef _MSC_VER +#pragma warning(pop) +#endif static OUString getUString(const char* pString) { diff -Nru libreoffice-5.1.1~rc2/desktop/unx/source/start.c libreoffice-5.1.2~rc2/desktop/unx/source/start.c --- libreoffice-5.1.1~rc2/desktop/unx/source/start.c 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/desktop/unx/source/start.c 2016-03-29 15:41:04.000000000 +0000 @@ -323,10 +323,15 @@ if ( !pMd5hash ) rtl_uString_new( &pMd5hash ); - if ( access( PIPEDEFAULTPATH, R_OK|W_OK ) == 0 ) + if ( access( PIPEDEFAULTPATH, W_OK ) == 0 ) rtl_uString_newFromAscii( &pResult, PIPEDEFAULTPATH ); - else + else if ( access( PIPEALTERNATEPATH, W_OK ) == 0 ) rtl_uString_newFromAscii( &pResult, PIPEALTERNATEPATH ); + else + { + fprintf( stderr, "ERROR: no valid pipe path found.\n" ); + exit( 1 ); + } rtl_uString_newFromAscii( &pTmp, "/OSL_PIPE_" ); rtl_uString_newConcat( &pResult, pResult, pTmp ); diff -Nru libreoffice-5.1.1~rc2/download.lst libreoffice-5.1.2~rc2/download.lst --- libreoffice-5.1.1~rc2/download.lst 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/download.lst 2016-03-29 15:41:04.000000000 +0000 @@ -53,7 +53,7 @@ export GLEW_TARBALL := 3941e9cab2f4f9d8faee3e8d57ae7664-glew-1.12.0.zip export GLM_TARBALL := bae83fa5dc7f081768daace6e199adc3-glm-0.9.4.6-libreoffice.zip export GLYPHY_TARBALL := 5d303fb955beb9bf112267316ca9d021-glyphy-0.2.0.tar.bz2 -export GRAPHITE_TARBALL := 28935e208c311761c29983c739db08d8-graphite2-minimal-1.3.5.tgz +export GRAPHITE_TARBALL := 17df8301bcc459e83f8a8f3aca6183b2-graphite-minimal-1.3.6.tgz export HARFBUZZ_MD5SUM := 0e27e531f4c4acff601ebff0957755c2 export HARFBUZZ_TARBALL := harfbuzz-0.9.40.tar.bz2 export HSQLDB_TARBALL := 17410483b5b5f267aa18b7e00b65e6e0-hsqldb_1_8_0.zip @@ -75,8 +75,8 @@ export JPEG_TARBALL := jpegsrc.v9a.tar.gz export JPEG_TURBO_MD5SUM := 86b0d5f7507c2e6c21c00219162c3c44 export JPEG_TURBO_TARBALL := libjpeg-turbo-1.4.2.tar.gz -export LANGTAGREG_MD5SUM := bf5986dbfa1c9a0f26cf1b00ed369484 -export LANGTAGREG_TARBALL := language-subtag-registry-2015-08-04.tar.bz2 +export LANGTAGREG_MD5SUM := d1e7c55a0383f7d720d3ead0b6117284 +export LANGTAGREG_TARBALL := language-subtag-registry-2016-02-10.tar.bz2 export LANGUAGETOOL_TARBALL := b63e6340a02ff1cacfeadb2c42286161-JLanguageTool-1.7.0.tar.bz2 export LCMS2_MD5SUM := f4c08d38ceade4a664ebff7228910a33 export LCMS2_TARBALL := lcms2-2.6.tar.gz @@ -102,16 +102,16 @@ export MWAW_TARBALL := libmwaw-0.3.$(MWAW_VERSION_MICRO).tar.bz2 export MYSQLCPPCONN_TARBALL := 7239a4430efd4d0189c4f24df67f08e5-mysql-connector-c++-1.1.4.tar.gz export MYTHES_TARBALL := a8c2c5b8f09e7ede322d5c602ff6a4b6-mythes-1.2.4.tar.gz -export NEON_TARBALL := ff369e69ef0f0143beb5626164e87ae2-neon-0.29.5.tar.gz -export NSS_TARBALL := 478e0e90ebc4a90159549e77021021fd-nss-3.19.4-with-nspr-4.10.10.tar.gz +export NEON_TARBALL := 231adebe5c2f78fded3e3df6e958878e-neon-0.30.1.tar.gz +export NSS_TARBALL := 6b254cf2f8cb4b27a3f0b8b7b9966ea7-nss-3.22.2-with-nspr-4.12.tar.gz export ODFGEN_MD5SUM := 32572ea48d9021bbd6fa317ddb697abc export ODFGEN_VERSION_MICRO := 6 export ODFGEN_TARBALL := libodfgen-0.1.$(ODFGEN_VERSION_MICRO).tar.bz2 export OPENCOLLADA_MD5SUM := 4ca8a6ef0afeefc864e9ef21b9f14bd6 export OPENCOLLADA_TARBALL := OpenCOLLADA-master-6509aa13af.tar.bz2 export OPENLDAP_TARBALL := 804c6cb5698db30b75ad0ff1c25baefd-openldap-2.4.31.tgz -export OPENSSL_MD5SUM := a06c547dac9044161a477211049f60ef -export OPENSSL_TARBALL := openssl-1.0.2a.tar.gz +export OPENSSL_MD5SUM := f3c710c045cdee5fd114feb69feba7aa +export OPENSSL_TARBALL := openssl-1.0.2g.tar.gz export ORCUS_MD5SUM := e6efcbe50a5fd4d50d513c9a7a4139b0 export ORCUS_TARBALL := liborcus-0.9.2.tar.gz export OWNCLOUD_ANDROID_LIB_MD5SUM := 593f0aa47bf2efc0efda2d28fae063b2 diff -Nru libreoffice-5.1.1~rc2/drawinglayer/inc/pch/precompiled_drawinglayer.hxx libreoffice-5.1.2~rc2/drawinglayer/inc/pch/precompiled_drawinglayer.hxx --- libreoffice-5.1.1~rc2/drawinglayer/inc/pch/precompiled_drawinglayer.hxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/drawinglayer/inc/pch/precompiled_drawinglayer.hxx 2016-03-29 15:41:04.000000000 +0000 @@ -62,7 +62,7 @@ #include #include #include -#include +#include #include #include #include diff -Nru libreoffice-5.1.1~rc2/drawinglayer/source/attribute/fillgraphicattribute.cxx libreoffice-5.1.2~rc2/drawinglayer/source/attribute/fillgraphicattribute.cxx --- libreoffice-5.1.1~rc2/drawinglayer/source/attribute/fillgraphicattribute.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/drawinglayer/source/attribute/fillgraphicattribute.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -18,7 +18,7 @@ */ #include -#include +#include namespace drawinglayer { diff -Nru libreoffice-5.1.1~rc2/drawinglayer/source/attribute/sdrfillgraphicattribute.cxx libreoffice-5.1.2~rc2/drawinglayer/source/attribute/sdrfillgraphicattribute.cxx --- libreoffice-5.1.1~rc2/drawinglayer/source/attribute/sdrfillgraphicattribute.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/drawinglayer/source/attribute/sdrfillgraphicattribute.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -20,7 +20,7 @@ #include #include #include -#include +#include diff -Nru libreoffice-5.1.1~rc2/drawinglayer/source/primitive2d/baseprimitive2d.cxx libreoffice-5.1.2~rc2/drawinglayer/source/primitive2d/baseprimitive2d.cxx --- libreoffice-5.1.1~rc2/drawinglayer/source/primitive2d/baseprimitive2d.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/drawinglayer/source/primitive2d/baseprimitive2d.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -17,6 +17,11 @@ * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ +#include + +#include +#include + #include #include #include diff -Nru libreoffice-5.1.1~rc2/drawinglayer/source/primitive2d/graphicprimitivehelper2d.cxx libreoffice-5.1.2~rc2/drawinglayer/source/primitive2d/graphicprimitivehelper2d.cxx --- libreoffice-5.1.1~rc2/drawinglayer/source/primitive2d/graphicprimitivehelper2d.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/drawinglayer/source/primitive2d/graphicprimitivehelper2d.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -32,7 +32,7 @@ // helper class for animated graphics #include -#include +#include #include #include #include diff -Nru libreoffice-5.1.1~rc2/drawinglayer/source/primitive2d/polypolygonprimitive2d.cxx libreoffice-5.1.2~rc2/drawinglayer/source/primitive2d/polypolygonprimitive2d.cxx --- libreoffice-5.1.1~rc2/drawinglayer/source/primitive2d/polypolygonprimitive2d.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/drawinglayer/source/primitive2d/polypolygonprimitive2d.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -30,7 +30,7 @@ #include #include #include -#include +#include diff -Nru libreoffice-5.1.1~rc2/drawinglayer/source/primitive2d/wallpaperprimitive2d.cxx libreoffice-5.1.2~rc2/drawinglayer/source/primitive2d/wallpaperprimitive2d.cxx --- libreoffice-5.1.1~rc2/drawinglayer/source/primitive2d/wallpaperprimitive2d.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/drawinglayer/source/primitive2d/wallpaperprimitive2d.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -25,7 +25,7 @@ #include #include #include -#include +#include diff -Nru libreoffice-5.1.1~rc2/drawinglayer/source/processor2d/vclmetafileprocessor2d.cxx libreoffice-5.1.2~rc2/drawinglayer/source/processor2d/vclmetafileprocessor2d.cxx --- libreoffice-5.1.1~rc2/drawinglayer/source/processor2d/vclmetafileprocessor2d.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/drawinglayer/source/processor2d/vclmetafileprocessor2d.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -58,7 +58,7 @@ #include // for PDFExtOutDevData Graphic support -#include +#include #include #include diff -Nru libreoffice-5.1.1~rc2/drawinglayer/source/processor2d/vclprocessor2d.cxx libreoffice-5.1.2~rc2/drawinglayer/source/processor2d/vclprocessor2d.cxx --- libreoffice-5.1.1~rc2/drawinglayer/source/processor2d/vclprocessor2d.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/drawinglayer/source/processor2d/vclprocessor2d.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -49,7 +49,7 @@ #include #include #include -#include +#include #include "getdigitlanguage.hxx" diff -Nru libreoffice-5.1.1~rc2/drawinglayer/source/processor3d/defaultprocessor3d.cxx libreoffice-5.1.2~rc2/drawinglayer/source/processor3d/defaultprocessor3d.cxx --- libreoffice-5.1.1~rc2/drawinglayer/source/processor3d/defaultprocessor3d.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/drawinglayer/source/processor3d/defaultprocessor3d.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -34,7 +34,7 @@ #include #include #include -#include +#include #include diff -Nru libreoffice-5.1.1~rc2/editeng/inc/pch/precompiled_editeng.hxx libreoffice-5.1.2~rc2/editeng/inc/pch/precompiled_editeng.hxx --- libreoffice-5.1.1~rc2/editeng/inc/pch/precompiled_editeng.hxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/editeng/inc/pch/precompiled_editeng.hxx 2016-03-29 15:41:04.000000000 +0000 @@ -105,7 +105,7 @@ #include #include #include -#include +#include #include #include #include diff -Nru libreoffice-5.1.1~rc2/editeng/source/editeng/editeng.cxx libreoffice-5.1.2~rc2/editeng/source/editeng/editeng.cxx --- libreoffice-5.1.1~rc2/editeng/source/editeng/editeng.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/editeng/source/editeng/editeng.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -37,7 +37,7 @@ #include #include #include -#include +#include #include #include diff -Nru libreoffice-5.1.1~rc2/editeng/source/editeng/editobj.cxx libreoffice-5.1.2~rc2/editeng/source/editeng/editobj.cxx --- libreoffice-5.1.1~rc2/editeng/source/editeng/editobj.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/editeng/source/editeng/editobj.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -42,7 +42,7 @@ #include #include -#include +#include #include #include "svl/sharedstringpool.hxx" #include diff -Nru libreoffice-5.1.1~rc2/editeng/source/items/numitem.cxx libreoffice-5.1.2~rc2/editeng/source/items/numitem.cxx --- libreoffice-5.1.1~rc2/editeng/source/items/numitem.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/editeng/source/items/numitem.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -30,7 +30,7 @@ #include #include #include -#include +#include #include #include #include diff -Nru libreoffice-5.1.1~rc2/editeng/source/outliner/outliner.cxx libreoffice-5.1.2~rc2/editeng/source/outliner/outliner.cxx --- libreoffice-5.1.1~rc2/editeng/source/outliner/outliner.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/editeng/source/outliner/outliner.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -44,7 +44,7 @@ #include #include #include -#include +#include #include #include #include diff -Nru libreoffice-5.1.1~rc2/editeng/source/outliner/paralist.cxx libreoffice-5.1.2~rc2/editeng/source/outliner/paralist.cxx --- libreoffice-5.1.1~rc2/editeng/source/outliner/paralist.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/editeng/source/outliner/paralist.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -26,6 +26,8 @@ #include #include +#include + ParagraphData::ParagraphData() : nDepth( -1 ) , mnNumberingStartValue( -1 ) diff -Nru libreoffice-5.1.1~rc2/editeng/source/uno/unonrule.cxx libreoffice-5.1.2~rc2/editeng/source/uno/unonrule.cxx --- libreoffice-5.1.1~rc2/editeng/source/uno/unonrule.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/editeng/source/uno/unonrule.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -22,7 +22,7 @@ #include #include #include -#include +#include #include #include diff -Nru libreoffice-5.1.1~rc2/extensions/source/activex/SOActiveX.cxx libreoffice-5.1.2~rc2/extensions/source/activex/SOActiveX.cxx --- libreoffice-5.1.1~rc2/extensions/source/activex/SOActiveX.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/extensions/source/activex/SOActiveX.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -980,8 +980,8 @@ CComVariant dummyResult; CComVariant aPropVar; aPropVar.vt = VT_BOOL; aPropVar.boolVal = VARIANT_FALSE; - HRESULT hr = ExecuteFunc( mpDispFrame, L"close", &aPropVar, 1, &dummyResult ); - (void)hr; + HRESULT hres = ExecuteFunc( mpDispFrame, L"close", &aPropVar, 1, &dummyResult ); + (void)hres; mpDispFrame = CComPtr(); } diff -Nru libreoffice-5.1.1~rc2/extensions/source/activex/SODispatchInterceptor.cxx libreoffice-5.1.2~rc2/extensions/source/activex/SODispatchInterceptor.cxx --- libreoffice-5.1.1~rc2/extensions/source/activex/SODispatchInterceptor.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/extensions/source/activex/SODispatchInterceptor.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -184,7 +184,6 @@ if( pValues[0].vt == VT_BSTR && pValues[1].vt == VT_BSTR ) { - USES_CONVERSION; if( !strncmp( OLE2T( pValues[0].bstrVal ), "URL", 3 ) ) { EnterCriticalSection( &mMutex ); diff -Nru libreoffice-5.1.1~rc2/extensions/source/ole/oleobjw.cxx libreoffice-5.1.2~rc2/extensions/source/ole/oleobjw.cxx --- libreoffice-5.1.1~rc2/extensions/source/ole/oleobjw.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/extensions/source/ole/oleobjw.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -1019,7 +1019,8 @@ CComVariant varResult; ExcepInfo excepinfo; unsigned int uArgErr; - DISPPARAMS dispparams= { pVarParams, NULL, parameterCount, 0}; + DISPPARAMS dispparams= { pVarParams, NULL, static_cast(parameterCount), 0}; + // Get the DISPID FuncDesc aDesc(getTypeInfo()); getFuncDesc(sFunctionName, & aDesc); @@ -1586,9 +1587,9 @@ { typelib_InterfaceMemberTypeDescription* pMember= NULL; //find the member description of the current call - for( int i=0; i < pInterface->nAllMembers; i++) + for( int j=0; j < pInterface->nAllMembers; j++) { - typelib_TypeDescriptionReference* pTypeRefMember = pInterface->ppAllMembers[i]; + typelib_TypeDescriptionReference* pTypeRefMember = pInterface->ppAllMembers[j]; typelib_TypeDescription* pDescMember= NULL; TYPELIB_DANGER_GET( &pDescMember, pTypeRefMember); @@ -2008,9 +2009,9 @@ // allocate space for the out param Sequence and indices Sequence int outParamsCount= 0; // includes in/out parameter - for (int i = 0; i < aFuncDesc->cParams; i++) + for (int j = 0; j < aFuncDesc->cParams; j++) { - if (aFuncDesc->lprgelemdescParam[i].paramdesc.wParamFlags & + if (aFuncDesc->lprgelemdescParam[j].paramdesc.wParamFlags & PARAMFLAG_FOUT) outParamsCount++; } @@ -2176,9 +2177,9 @@ { // Fallback: DISPATCH_PROPERTYGET can mostly be called as // DISPATCH_METHOD - ITypeInfo * pInfo = getTypeInfo(); - FuncDesc aDescPut(pInfo); - VarDesc aVarDesc(pInfo); + ITypeInfo * pTypeInfo = getTypeInfo(); + FuncDesc aDescPut(pTypeInfo); + VarDesc aVarDesc(pTypeInfo); getPropDesc(sFuncName, & aFuncDesc, & aDescPut, & aVarDesc); if ( ! aFuncDesc ) { diff -Nru libreoffice-5.1.1~rc2/extensions/source/ole/unoconversionutilities.hxx libreoffice-5.1.2~rc2/extensions/source/ole/unoconversionutilities.hxx --- libreoffice-5.1.1~rc2/extensions/source/ole/unoconversionutilities.hxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/extensions/source/ole/unoconversionutilities.hxx 2016-03-29 15:41:04.000000000 +0000 @@ -1412,8 +1412,8 @@ { Sequence params(1); params.getArray()[0] = rObj; - Reference xInt = xInvFactory->createInstanceWithArguments(params); - xInv.set(xInt, UNO_QUERY); + Reference xInt2 = xInvFactory->createInstanceWithArguments(params); + xInv.set(xInt2, UNO_QUERY); } } @@ -1678,12 +1678,12 @@ } else if (pVar->vt == VT_DISPATCH && pVar->pdispVal != NULL) { - CComPtr spDispatch(pVar->pdispVal); - if (spDispatch) + CComPtr spDispatch2(pVar->pdispVal); + if (spDispatch2) #ifdef __MINGW32__ - spDispatch->QueryInterface( IID_IUnknown, reinterpret_cast( & spUnknown.p)); + spDispatch2->QueryInterface( IID_IUnknown, reinterpret_cast( & spUnknown.p)); #else - spDispatch.QueryInterface( & spUnknown.p); + spDispatch2.QueryInterface( & spUnknown.p); #endif } diff -Nru libreoffice-5.1.1~rc2/extensions/source/ole/unoobjw.cxx libreoffice-5.1.2~rc2/extensions/source/ole/unoobjw.cxx --- libreoffice-5.1.1~rc2/extensions/source/ole/unoobjw.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/extensions/source/ole/unoobjw.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -374,10 +374,10 @@ IDispatch* pdisp= pdispparams->rgvarg[i].pdispVal; OLECHAR const * sindex= L"0"; - DISPID id; + DISPID id2; DISPPARAMS noParams= {0,0,0,0}; - if(SUCCEEDED( hr= pdisp->GetIDsOfNames( IID_NULL, const_cast(&sindex), 1, LOCALE_USER_DEFAULT, &id))) - hr= pdisp->Invoke( id, IID_NULL, LOCALE_USER_DEFAULT, DISPATCH_PROPERTYGET, + if(SUCCEEDED( hr= pdisp->GetIDsOfNames( IID_NULL, const_cast(&sindex), 1, LOCALE_USER_DEFAULT, &id2))) + hr= pdisp->Invoke( id2, IID_NULL, LOCALE_USER_DEFAULT, DISPATCH_PROPERTYGET, & noParams, & varParam, NULL, NULL); if( FAILED( hr)) { @@ -488,7 +488,7 @@ pVar->pdispVal= static_cast( this); AddRef(); - retAny<<= reinterpret_cast< sal_uInt32 >( pVar); + retAny<<= reinterpret_cast< sal_uIntPtr >( pVar); } } } diff -Nru libreoffice-5.1.1~rc2/extensions/source/propctrlr/eventhandler.cxx libreoffice-5.1.2~rc2/extensions/source/propctrlr/eventhandler.cxx --- libreoffice-5.1.1~rc2/extensions/source/propctrlr/eventhandler.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/extensions/source/propctrlr/eventhandler.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -69,6 +69,7 @@ #include #include +#include #include extern "C" void SAL_CALL createRegistryInfo_EventHandler() diff -Nru libreoffice-5.1.1~rc2/extensions/source/propctrlr/propertycomposer.cxx libreoffice-5.1.2~rc2/extensions/source/propctrlr/propertycomposer.cxx --- libreoffice-5.1.1~rc2/extensions/source/propctrlr/propertycomposer.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/extensions/source/propctrlr/propertycomposer.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -26,6 +26,7 @@ #include #include +#include #include diff -Nru libreoffice-5.1.1~rc2/external/curl/curl-nss.patch.1 libreoffice-5.1.2~rc2/external/curl/curl-nss.patch.1 --- libreoffice-5.1.1~rc2/external/curl/curl-nss.patch.1 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-5.1.2~rc2/external/curl/curl-nss.patch.1 2016-03-29 15:41:04.000000000 +0000 @@ -0,0 +1,12 @@ +diff -ur curl.org/configure curl/configure +--- curl.org/configure 2016-03-13 15:14:07.177000076 +0100 ++++ curl/configure 2016-03-13 15:16:44.132000076 +0100 +@@ -24009,7 +24009,7 @@ + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: Using hard-wired libraries and compilation flags for NSS." >&5 + $as_echo "$as_me: WARNING: Using hard-wired libraries and compilation flags for NSS." >&2;} + addld="-L$OPT_NSS/lib" +- addlib="-lssl3 -lsmime3 -lnss3 -lplds4 -lplc4 -lnspr4" ++ addlib="-lssl3 -lsmime3 -lnss3 -lplds4 -lplc4 -lnspr4 -lnssutil3" + addcflags="-I$OPT_NSS/include" + version="unknown" + nssprefix=$OPT_NSS diff -Nru libreoffice-5.1.1~rc2/external/curl/ExternalProject_curl.mk libreoffice-5.1.2~rc2/external/curl/ExternalProject_curl.mk --- libreoffice-5.1.1~rc2/external/curl/ExternalProject_curl.mk 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/external/curl/ExternalProject_curl.mk 2016-03-29 15:41:04.000000000 +0000 @@ -51,6 +51,7 @@ --without-librtmp --disable-ldaps --disable-tftp --disable-pop3 \ --disable-imap --disable-smtp --disable-manual --without-metalink \ --without-nghttp2 \ + $(if $(filter LINUX,$(OS)),--without-ca-bundle --without-ca-path) \ $(if $(CROSS_COMPILING),--build=$(BUILD_PLATFORM) --host=$(HOST_PLATFORM)) \ $(if $(filter TRUE,$(DISABLE_DYNLOADING)),--disable-shared,--disable-static) \ $(if $(ENABLE_DEBUG),--enable-debug) \ diff -Nru libreoffice-5.1.1~rc2/external/curl/UnpackedTarball_curl.mk libreoffice-5.1.2~rc2/external/curl/UnpackedTarball_curl.mk --- libreoffice-5.1.1~rc2/external/curl/UnpackedTarball_curl.mk 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/external/curl/UnpackedTarball_curl.mk 2016-03-29 15:41:04.000000000 +0000 @@ -25,6 +25,12 @@ external/curl/curl-7.26.0_win-proxy.patch \ )) +ifeq ($(SYSTEM_NSS),) +$(eval $(call gb_UnpackedTarball_add_patches,curl,\ + external/curl/curl-nss.patch.1 \ +)) +endif + ifeq ($(OS),ANDROID) $(eval $(call gb_UnpackedTarball_add_patches,curl,\ external/curl/curl-android.patch \ diff -Nru libreoffice-5.1.1~rc2/external/jfreereport/patches/libformula-seconds_rounding.patch.1 libreoffice-5.1.2~rc2/external/jfreereport/patches/libformula-seconds_rounding.patch.1 --- libreoffice-5.1.1~rc2/external/jfreereport/patches/libformula-seconds_rounding.patch.1 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-5.1.2~rc2/external/jfreereport/patches/libformula-seconds_rounding.patch.1 2016-03-29 15:41:04.000000000 +0000 @@ -0,0 +1,37 @@ +diff -ur jfreereport_libformula.org/source/org/pentaho/reporting/libraries/formula/function/datetime/SecondFunction.java jfreereport_libformula/source/org/pentaho/reporting/libraries/formula/function/datetime/SecondFunction.java +--- jfreereport_libformula.org/source/org/pentaho/reporting/libraries/formula/function/datetime/SecondFunction.java 2016-03-05 09:43:06.121774691 +0100 ++++ jfreereport_libformula/source/org/pentaho/reporting/libraries/formula/function/datetime/SecondFunction.java 2016-03-05 09:51:04.810488511 +0100 +@@ -29,7 +29,7 @@ + import org.pentaho.reporting.libraries.formula.util.NumberUtil; + + /** +- * This function extracts the minute (0 through 59) from a time. ++ * This function extracts the seconds (0 through 59) from a time. + * + * @author Cedric Pronzato + */ +@@ -67,14 +67,15 @@ + + // time * 24 so that we get the full hours (which we remove later) + final BigDecimal bd = NumberUtil.getAsBigDecimal(n); +- final BigDecimal hours = bd.multiply(MINUTES_PER_DAY); +- final BigDecimal dayAndHoursAsInt = NumberUtil.performIntRounding(hours); +- final BigDecimal minutesFraction = hours.subtract(dayAndHoursAsInt); +- +- // Multiply the minutes with 60 to get the minutes as ints +- final BigDecimal seconds = minutesFraction.multiply(SECONDS); +- final BigDecimal secondsAsInt = NumberUtil.performIntRounding(seconds); ++ final BigDecimal minutes = bd.multiply(MINUTES_PER_DAY); ++ final BigDecimal dayHoursAndMinutesAsInt = NumberUtil.performIntRounding(minutes); ++ final BigDecimal secondsFraction = minutes.subtract(dayHoursAndMinutesAsInt); ++ ++ // Multiply the minutes with 60 to get the seconds as ints ++ final BigDecimal seconds = secondsFraction.multiply(SECONDS); ++ final BigDecimal nanoSeconds = seconds.setScale(9, BigDecimal.ROUND_HALF_UP); ++ final BigDecimal secondsAsInt = NumberUtil.performIntRounding(nanoSeconds); + + return new TypeValuePair(NumberType.GENERIC_NUMBER, secondsAsInt); + } +-} +\ No newline at end of file ++} diff -Nru libreoffice-5.1.1~rc2/external/jfreereport/UnpackedTarball_jfreereport_libformula.mk libreoffice-5.1.2~rc2/external/jfreereport/UnpackedTarball_jfreereport_libformula.mk --- libreoffice-5.1.1~rc2/external/jfreereport/UnpackedTarball_jfreereport_libformula.mk 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/external/jfreereport/UnpackedTarball_jfreereport_libformula.mk 2016-03-29 15:41:04.000000000 +0000 @@ -18,6 +18,7 @@ $(eval $(call gb_UnpackedTarball_add_patches,jfreereport_libformula,\ external/jfreereport/patches/common_build.patch \ external/jfreereport/patches/libformula-time-notz.patch \ + external/jfreereport/patches/libformula-seconds_rounding.patch.1 \ external/jfreereport/patches/libformula-minutes_truncation.patch.1 \ external/jfreereport/patches/libformula-datevalue_truncation.patch.1 \ )) diff -Nru libreoffice-5.1.1~rc2/external/libetonyek/libetonyek-bundled-soname.patch.0 libreoffice-5.1.2~rc2/external/libetonyek/libetonyek-bundled-soname.patch.0 --- libreoffice-5.1.1~rc2/external/libetonyek/libetonyek-bundled-soname.patch.0 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/external/libetonyek/libetonyek-bundled-soname.patch.0 2016-03-29 15:41:04.000000000 +0000 @@ -1,9 +1,11 @@ ---- src/lib/Makefile.in.orig 2015-08-07 10:51:32.494810336 +0200 -+++ src/lib/Makefile.in 2015-08-07 10:51:55.493809942 +0200 -@@ -463,5 +463,5 @@ +--- src/lib/Makefile.in.orig 2016-01-12 19:21:24.000000000 +0100 ++++ src/lib/Makefile.in 2016-03-02 18:19:52.214551270 +0100 +@@ -538,7 +538,7 @@ + + libetonyek_@ETONYEK_MAJOR_VERSION@_@ETONYEK_MINOR_VERSION@_la_LIBADD = libetonyek_internal.la $(REVENGE_LIBS) $(LANGTAG_LIBS) $(XML_LIBS) $(ZLIB_LIBS) @LIBETONYEK_WIN32_RESOURCE@ libetonyek_@ETONYEK_MAJOR_VERSION@_@ETONYEK_MINOR_VERSION@_la_DEPENDENCIES = libetonyek_internal.la @LIBETONYEK_WIN32_RESOURCE@ -libetonyek_@ETONYEK_MAJOR_VERSION@_@ETONYEK_MINOR_VERSION@_la_LDFLAGS = $(version_info) -export-dynamic -no-undefined +libetonyek_@ETONYEK_MAJOR_VERSION@_@ETONYEK_MINOR_VERSION@_la_LDFLAGS = $(version_info) -export-dynamic -no-undefined -release lo libetonyek_@ETONYEK_MAJOR_VERSION@_@ETONYEK_MINOR_VERSION@_la_SOURCES = \ EtonyekDocument.cpp - + diff -Nru libreoffice-5.1.1~rc2/external/libodfgen/libodfgen-bundled-soname.patch.0 libreoffice-5.1.2~rc2/external/libodfgen/libodfgen-bundled-soname.patch.0 --- libreoffice-5.1.1~rc2/external/libodfgen/libodfgen-bundled-soname.patch.0 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/external/libodfgen/libodfgen-bundled-soname.patch.0 2016-03-29 15:41:04.000000000 +0000 @@ -1,6 +1,7 @@ ---- src/Makefile.in.orig 2015-08-07 11:26:16.388774624 +0200 -+++ src/Makefile.in 2015-08-07 11:27:01.428773852 +0200 -@@ -372,7 +372,7 @@ +diff -urN src/Makefile.in.orig src/Makefile.in +--- src/Makefile.in.orig 2016-03-02 17:17:02.812606210 +0100 ++++ src/Makefile.in 2016-03-02 17:17:25.176670151 +0100 +@@ -355,7 +355,7 @@ AM_CXXFLAGS = -I$(top_srcdir)/inc/ $(REVENGE_CFLAGS) $(DEBUG_CXXFLAGS) -DLIBODFGEN_BUILD libodfgen_@LIBODFGEN_MAJOR_VERSION@_@LIBODFGEN_MINOR_VERSION@_la_LIBADD = @LIBODFGEN_WIN32_RESOURCE@ $(REVENGE_LIBS) libodfgen_@LIBODFGEN_MAJOR_VERSION@_@LIBODFGEN_MINOR_VERSION@_la_DEPENDENCIES = @LIBODFGEN_WIN32_RESOURCE@ diff -Nru libreoffice-5.1.1~rc2/external/neon/neon_ne_set_request_flag.patch libreoffice-5.1.2~rc2/external/neon/neon_ne_set_request_flag.patch --- libreoffice-5.1.1~rc2/external/neon/neon_ne_set_request_flag.patch 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/external/neon/neon_ne_set_request_flag.patch 2016-03-29 15:41:04.000000000 +0000 @@ -1,11 +1,11 @@ --- src/ne_request.c 2010-09-28 13:57:26.000000000 +0200 +++ src/ne_request.c 2011-05-18 12:39:05.134445529 +0200 -@@ -529,7 +529,7 @@ +@@ -585,7 +585,7 @@ void ne_set_request_flag(ne_request *req, ne_request_flag flag, int value) { -- if (flag < NE_SESSFLAG_LAST) { -+ if (flag < NE_REQFLAG_LAST) { +- if (flag < (ne_request_flag)NE_SESSFLAG_LAST) { ++ if (flag < (ne_request_flag)NE_REQFLAG_LAST) { req->flags[flag] = value; } } diff -Nru libreoffice-5.1.1~rc2/external/neon/neon.patch libreoffice-5.1.2~rc2/external/neon/neon.patch --- libreoffice-5.1.1~rc2/external/neon/neon.patch 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/external/neon/neon.patch 2016-03-29 15:41:04.000000000 +0000 @@ -319,51 +319,10 @@ /* 3x */ DG, DG, DG, DG, DG, DG, DG, DG, DG, DG, CL, SD, OT, SD, OT, QU, /* 4x */ AT, AL, AL, AL, AL, AL, AL, AL, AL, AL, AL, AL, AL, AL, AL, AL, /* 5x */ AL, AL, AL, AL, AL, AL, AL, AL, AL, AL, AL, GD, OT, GD, OT, US, ---- src/ne_utils.c 2006-03-07 10:36:43.000000000 +0100 -+++ src/ne_utils.c 2011-02-03 10:26:21.000000000 +0100 -@@ -118,6 +118,9 @@ - #ifdef HAVE_GNUTLS - ", GNU TLS " LIBGNUTLS_VERSION - #endif /* HAVE_GNUTLS */ -+#ifdef HAVE_SSPI -+ ", SSPI" -+#endif /* HAVE_SSPI */ - "." - ; - -@@ -137,7 +140,7 @@ - switch (feature) { - #if defined(NE_HAVE_SSL) || defined(NE_HAVE_ZLIB) || defined(NE_HAVE_IPV6) \ - || defined(NE_HAVE_SOCKS) || defined(NE_HAVE_LFS) \ -- || defined(NE_HAVE_TS_SSL) || defined(NE_HAVE_I18N) -+ || defined(NE_HAVE_TS_SSL) || defined(NE_HAVE_I18N) || defined(HAVE_SSPI) - #ifdef NE_HAVE_SSL - case NE_FEATURE_SSL: - #endif -@@ -159,6 +162,9 @@ - #ifdef NE_HAVE_I18N - case NE_FEATURE_I18N: - #endif -+#ifdef HAVE_SSPI -+ case NE_FEATURE_SSPI: -+#endif - return 1; - #endif /* NE_HAVE_* */ - default: ---- src/ne_utils.h 2007-07-16 08:54:57.000000000 +0200 -+++ src/ne_utils.h 2011-02-03 10:26:21.000000000 +0100 -@@ -54,6 +54,7 @@ - #define NE_FEATURE_SOCKS (5) /* SOCKSv5 support */ - #define NE_FEATURE_TS_SSL (6) /* Thread-safe SSL/TLS support */ - #define NE_FEATURE_I18N (7) /* i18n error message support */ -+#define NE_FEATURE_SSPI (8) /* NTLM/Negotiate authentication protocol via SSPI */ - - /* Returns non-zero if library is built with support for the given - * NE_FEATURE_* feature code 'code'. */ --- src/ne_openssl.c +++ src/ne_openssl.c -@@ -41,6 +41,13 @@ - #include +@@ -43,6 +43,13 @@ + #endif #endif +#ifdef WIN32 @@ -376,7 +335,7 @@ #include "ne_ssl.h" #include "ne_string.h" #include "ne_session.h" -@@ -798,6 +798,31 @@ +@@ -798,6 +805,31 @@ X509_STORE_load_locations(store, NE_SSL_CA_BUNDLE, NULL); #else X509_STORE_set_default_paths(store); diff -Nru libreoffice-5.1.1~rc2/external/nss/ExternalProject_nss.mk libreoffice-5.1.2~rc2/external/nss/ExternalProject_nss.mk --- libreoffice-5.1.1~rc2/external/nss/ExternalProject_nss.mk 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/external/nss/ExternalProject_nss.mk 2016-03-29 15:41:04.000000000 +0000 @@ -22,6 +22,7 @@ nspr/configure --includedir=$(call gb_UnpackedTarball_get_dir,nss)/mozilla/dist/out/include \ $(if $(CROSS_COMPILING),--build=$(BUILD_PLATFORM) --host=$(HOST_PLATFORM)) \ $(if $(filter MSC-X86_64,$(COM)-$(CPUNAME)),--enable-64bit) \ + $(if $(filter MSC-INTEL,$(COM)-$(CPUNAME)),--host=i686-pc-cygwin) \ ,,nss_configure.log) ifeq ($(OS),WNT) diff -Nru libreoffice-5.1.1~rc2/external/nss/nss.cygwin64.in32bit.patch libreoffice-5.1.2~rc2/external/nss/nss.cygwin64.in32bit.patch --- libreoffice-5.1.1~rc2/external/nss/nss.cygwin64.in32bit.patch 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-5.1.2~rc2/external/nss/nss.cygwin64.in32bit.patch 2016-03-29 15:41:04.000000000 +0000 @@ -0,0 +1,14 @@ +This fixes architecture mismatch, when building +on Cygwin 64bit and in 32bit mode +diff -ru nss.orig/nss/Makefile nss/nss/Makefile +--- a/nss.orig/nss/Makefile 2016-02-26 01:00:52.146713100 +0100 ++++ b/nss/nss/Makefile 2016-02-26 01:02:05.303560100 +0100 +@@ -59,6 +59,8 @@ + # Translate coreconf build options to NSPR configure options. + # + ++NSPR_CONFIGURE_OPTS += --host=i686-pc-cygwin ++ + ifeq ($(OS_TARGET),Android) + NSPR_CONFIGURE_OPTS += --with-android-ndk=$(ANDROID_NDK) \ + --target=$(ANDROID_PREFIX) \ diff -Nru libreoffice-5.1.1~rc2/external/nss/nss.patch libreoffice-5.1.2~rc2/external/nss/nss.patch --- libreoffice-5.1.1~rc2/external/nss/nss.patch 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/external/nss/nss.patch 2016-03-29 15:41:04.000000000 +0000 @@ -1,3 +1,14 @@ +--- a/nss.orig/nspr/pr/src/misc/prnetdb.c 2016-02-12 14:51:25.000000000 +0100 ++++ b/nss/nspr/pr/src/misc/prnetdb.c 2016-03-04 19:23:00.462892600 +0100 +@@ -438,7 +438,7 @@ + char *buf = *bufp; + PRIntn buflen = *buflenp; + +- if (align && ((long)buf & (align - 1))) { ++ if (align && ((ptrdiff_t)buf & (align - 1))) { + PRIntn skip = align - ((ptrdiff_t)buf & (align - 1)); + if (buflen < skip) { + return 0; diff -ru a/nspr/configure b/nspr/configure --- a/a/nspr/configure 2014-09-29 16:46:38.427423757 +0100 +++ b/b/nspr/configure 2014-09-29 16:47:42.984012225 +0100 @@ -40,24 +51,34 @@ endif endif -diff -ru a/nss/coreconf/arch.mk b/nss/coreconf/arch.mk ---- a/a/nss/coreconf/arch.mk 2014-09-29 16:46:38.175421471 +0100 -+++ b/b/nss/coreconf/arch.mk 2014-09-29 16:47:42.986012244 +0100 -@@ -280,10 +280,15 @@ +diff -ru nss.orig/nss/coreconf/arch.mk nss/nss/coreconf/arch.mk +--- a/nss.orig/nss/coreconf/arch.mk 2016-02-12 15:36:18.000000000 +0100 ++++ b/nss/nss/coreconf/arch.mk 2016-02-23 20:48:31.595941079 +0100 +@@ -280,15 +280,21 @@ # IMPL_STRATEGY may be defined too. # +-ifdef CROSS_COMPILE +-OBJDIR_NAME = $(OS_TARGET)$(OS_RELEASE)$(CPU_TAG)$(LIBC_TAG)$(IMPL_STRATEGY)$(OBJDIR_TAG).OBJ +-else -OBJDIR_NAME = $(OS_TARGET)$(OS_RELEASE)$(CPU_TAG)$(COMPILER_TAG)$(LIBC_TAG)$(IMPL_STRATEGY)$(OBJDIR_TAG).OBJ +-endif +# OBJDIR_NAME is used to build the directory containing the built objects, for +# example mozilla/dist/Linux2.6_x86_glibc_PTH_DBG.OBJ +# We need to deliver the contents of that folder into instdir. To make that +# easier in the makefile we rename this directory to "out". ++#ifdef CROSS_COMPILE ++#OBJDIR_NAME = $(OS_TARGET)$(OS_RELEASE)$(CPU_TAG)$(LIBC_TAG)$(IMPL_STRATEGY)$(OBJDIR_TAG).OBJ ++#else +#OBJDIR_NAME = $(OS_TARGET)$(OS_RELEASE)$(CPU_TAG)$(COMPILER_TAG)$(LIBC_TAG)$(IMPL_STRATEGY)$(OBJDIR_TAG).OBJ ++#endif +OBJDIR_NAME = out + ifeq (,$(filter-out WIN%,$(OS_TARGET))) -ifndef BUILD_OPT +ifdef THIS_HAS_BEEN_DISABLED_TO_GET_out ++ # # Define USE_DEBUG_RTL if you want to use the debug runtime library # (RTL) in the debug build @@ -151,3 +172,16 @@ #! gmake # # This Source Code Form is subject to the terms of the Mozilla Public +diff -ru nss.orig/nss/coreconf/Werror.mk nss/nss/coreconf/Werror.mk +--- a/nss.orig/nss/coreconf/Werror.mk 2016-02-12 15:36:18.000000000 +0100 ++++ b/nss/nss/coreconf/Werror.mk 2016-02-23 23:58:15.119584046 +0100 +@@ -60,7 +60,8 @@ + endif #ndef NSS_ENABLE_WERROR + + ifeq ($(NSS_ENABLE_WERROR),1) +- WARNING_CFLAGS += -Werror ++# We do not treat warnings as errors. ++# WARNING_CFLAGS += -Werror + else + # Old versions of gcc (< 4.8) don't support #pragma diagnostic in functions. + # Use this to disable use of that #pragma and the warnings it suppresses. diff -Nru libreoffice-5.1.1~rc2/external/nss/nss.vs2015.patch libreoffice-5.1.2~rc2/external/nss/nss.vs2015.patch --- libreoffice-5.1.1~rc2/external/nss/nss.vs2015.patch 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/external/nss/nss.vs2015.patch 2016-03-29 15:41:04.000000000 +0000 @@ -1,12 +1,12 @@ -diff -ru nss.orig/nss/coreconf/WIN32.mk nss/nss/coreconf/WIN32.mk ---- foo/nss.orig/nss/coreconf/WIN32.mk 2015-06-17 20:26:43.000000000 +0200 -+++ foo/nss/nss/coreconf/WIN32.mk 2015-08-31 20:40:40.146490300 +0200 -@@ -192,7 +192,7 @@ - ifneq ($(_MSC_VER),$(_MSC_VER_6)) - # Convert certain deadly warnings to errors (see list at end of file) - OS_CFLAGS += -we4002 -we4003 -we4004 -we4006 -we4009 -we4013 \ -- -we4015 -we4028 -we4033 -we4035 -we4045 -we4047 -we4053 -we4054 -we4063 \ -+ -we4015 -we4028 -we4033 -we4035 -we4045 -we4047 -we4053 -we4063 \ - -we4064 -we4078 -we4087 -we4090 -we4098 -we4390 -we4551 -we4553 -we4715 - +diff -ru nss.org/nss/coreconf/WIN32.mk nss/nss/coreconf/WIN32.mk +--- a/nss.org/nss/coreconf/WIN32.mk 2016-02-12 15:36:18.000000000 +0100 ++++ b/nss/nss/coreconf/WIN32.mk 2016-02-26 00:42:43.170809600 +0100 +@@ -199,7 +199,7 @@ + # Disable C4244: conversion from 'type1' to 'type2', possible loss of data + # Disable C4018: 'expression' : signed/unsigned mismatch + # Disable C4312: 'type cast': conversion from 'type1' to 'type2' of greater size +- OS_CFLAGS += -w44267 -w44244 -w44018 -w44312 ++ OS_CFLAGS += -w44267 -w44244 -w44018 -w44312 -wd4996 -wd4554 ifeq ($(_MSC_VER_GE_12),1) + OS_CFLAGS += -FS + endif diff -Nru libreoffice-5.1.1~rc2/external/nss/nss.vs2015.pdb.patch libreoffice-5.1.2~rc2/external/nss/nss.vs2015.pdb.patch --- libreoffice-5.1.1~rc2/external/nss/nss.vs2015.pdb.patch 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-5.1.2~rc2/external/nss/nss.vs2015.pdb.patch 2016-03-29 15:41:04.000000000 +0000 @@ -0,0 +1,22 @@ +diff -ru nss.orig/nss/coreconf/WIN32.mk nss/nss/coreconf/WIN32.mk +--- a/nss.orig/nss/coreconf/WIN32.mk 2016-03-04 08:30:16.306639400 +0100 ++++ b/nss/nss/coreconf/WIN32.mk 2016-03-04 08:31:17.987233200 +0100 +@@ -169,15 +169,15 @@ + DLLFLAGS += -OUT:$@ + ifdef MOZ_DEBUG_SYMBOLS + ifdef MOZ_DEBUG_FLAGS +- OPTIMIZER += $(MOZ_DEBUG_FLAGS) -Fd$(OBJDIR)/ ++ OPTIMIZER += $(MOZ_DEBUG_FLAGS) -Fd./ + else +- OPTIMIZER += -Zi -Fd$(OBJDIR)/ ++ OPTIMIZER += -Zi -Fd./ + endif + DLLFLAGS += -DEBUG -OPT:REF + LDFLAGS += -DEBUG -OPT:REF + endif + else +- OPTIMIZER += -Zi -Fd$(OBJDIR)/ -Od ++ OPTIMIZER += -Zi -Fd./ -Od + NULLSTRING := + SPACE := $(NULLSTRING) # end of the line + USERNAME := $(subst $(SPACE),_,$(USERNAME)) diff -Nru libreoffice-5.1.1~rc2/external/nss/nss-winXP-sdk.patch.1 libreoffice-5.1.2~rc2/external/nss/nss-winXP-sdk.patch.1 --- libreoffice-5.1.1~rc2/external/nss/nss-winXP-sdk.patch.1 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-5.1.2~rc2/external/nss/nss-winXP-sdk.patch.1 2016-03-29 15:41:04.000000000 +0000 @@ -0,0 +1,9 @@ +diff -ur nss.org/nss/coreconf/config.mk nss/nss/coreconf/config.mk +--- nss.org/nss/coreconf/config.mk 2016-03-15 14:52:19.706093300 +0100 ++++ nss/nss/coreconf/config.mk 2016-03-15 14:56:51.549914800 +0100 +@@ -188,3 +188,5 @@ + + # Hide old, deprecated, TLS cipher suite names when building NSS + DEFINES += -DSSL_DISABLE_DEPRECATED_CIPHER_SUITE_NAMES ++# build with 7.1A SDK for winXP compatibility ++DEFINES += -D_USING_V110_SDK71_ diff -Nru libreoffice-5.1.1~rc2/external/nss/ubsan.patch.0 libreoffice-5.1.2~rc2/external/nss/ubsan.patch.0 --- libreoffice-5.1.1~rc2/external/nss/ubsan.patch.0 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/external/nss/ubsan.patch.0 2016-03-29 15:41:04.000000000 +0000 @@ -1,24 +1,12 @@ ---- nss/lib/certdb/crl.c -+++ nss/lib/certdb/crl.c -@@ -2150,7 +2150,7 @@ +diff -ru nss.orig/nss/lib/certdb/crl.c nss/nss/lib/certdb/crl.c +--- nss/lib/certdb/crl.c 2016-02-12 15:36:18.000000000 +0100 ++++ nss/lib/certdb/crl.c 2016-02-23 20:57:17.067924598 +0100 +@@ -1982,7 +1982,7 @@ return SECSuccess; } /* all CRLs are good, sort them by thisUpdate */ -- qsort(cache->crls, cache->ncrls, sizeof(CachedCrl*), -+ if (cache->ncrls != 0) qsort(cache->crls, cache->ncrls, sizeof(CachedCrl*), - SortCRLsByThisUpdate); - - if (cache->ncrls) ---- nss/lib/libpkix/pkix/util/pkix_tools.h -+++ nss/lib/libpkix/pkix/util/pkix_tools.h -@@ -1458,8 +1458,8 @@ - - extern PRLogModuleInfo *pkixLog; - --#define PKIX_MAGIC_HEADER LL_INIT(0xFEEDC0FF, 0xEEFACADE) --#define PKIX_MAGIC_HEADER_DESTROYED LL_INIT(0xBAADF00D, 0xDEADBEEF) -+#define PKIX_MAGIC_HEADER LL_INIT(0xFEEDC0FFU, 0xEEFACADEU) -+#define PKIX_MAGIC_HEADER_DESTROYED LL_INIT(0xBAADF00DU, 0xDEADBEEFU) - - /* see source file for function documentation */ +- qsort(cache->crls, cache->ncrls, sizeof(CachedCrl*), SortCRLsByThisUpdate); ++ if (cache->ncrls != 0) qsort(cache->crls, cache->ncrls, sizeof(CachedCrl*), SortCRLsByThisUpdate); + if (cache->ncrls) { + /* pick the newest CRL */ diff -Nru libreoffice-5.1.1~rc2/external/nss/UnpackedTarball_nss.mk libreoffice-5.1.2~rc2/external/nss/UnpackedTarball_nss.mk --- libreoffice-5.1.1~rc2/external/nss/UnpackedTarball_nss.mk 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/external/nss/UnpackedTarball_nss.mk 2016-03-29 15:41:04.000000000 +0000 @@ -27,6 +27,12 @@ external/nss/nss-chromium-nss-static.patch \ external/nss/nss-more-static.patch \ external/nss/nss-ios.patch) \ + $(if $(filter MSC-INTEL,$(COM)-$(CPUNAME)), \ + external/nss/nss.cygwin64.in32bit.patch) \ + $(if $(filter WNTMSC,$(OS)$(COM)), \ + external/nss/nss.vs2015.pdb.patch) \ + $(if $(findstring 120_70,$(VCVER)_$(WINDOWS_SDK_VERSION)), \ + external/nss/nss-winXP-sdk.patch.1) \ )) # nss-pem is only needed for internal curl to read the NSS CA database diff -Nru libreoffice-5.1.1~rc2/external/openssl/ExternalProject_openssl.mk libreoffice-5.1.2~rc2/external/openssl/ExternalProject_openssl.mk --- libreoffice-5.1.1~rc2/external/openssl/ExternalProject_openssl.mk 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/external/openssl/ExternalProject_openssl.mk 2016-03-29 15:41:04.000000000 +0000 @@ -70,6 +70,7 @@ && cmd /c "ms\do_ms.bat $(PERL) $(OPENSSL_PLATFORM)" \ && unset MAKEFLAGS \ && nmake -f "ms\ntdll.mak" \ + && mv inc32/* include/ \ )) else @@ -92,4 +93,5 @@ -fvisibility=hidden))" \ ) endif + # vim: set noet sw=4 ts=4: diff -Nru libreoffice-5.1.1~rc2/external/openssl/openssl-1.0.1g-msvc2012-winxp.patch.1 libreoffice-5.1.2~rc2/external/openssl/openssl-1.0.1g-msvc2012-winxp.patch.1 --- libreoffice-5.1.1~rc2/external/openssl/openssl-1.0.1g-msvc2012-winxp.patch.1 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/external/openssl/openssl-1.0.1g-msvc2012-winxp.patch.1 1970-01-01 00:00:00.000000000 +0000 @@ -1,20 +0,0 @@ ---- openssl.org/util/pl/VC-32.pl 2014-05-18 23:41:39.336594400 +0200 -+++ openssl/util/pl/VC-32.pl 2014-05-18 23:47:40.055279300 +0200 -@@ -48,7 +48,7 @@ - my $f = $shlib || $fips ?' /MD':' /MT'; - $opt_cflags=$f.' /Ox'; - $dbg_cflags=$f.'d /Od -DDEBUG -D_DEBUG'; -- $lflags="/nologo /subsystem:console /opt:ref"; -+ $lflags="/nologo /subsystem:console,5.02 /opt:ref"; - - *::perlasm_compile_target = sub { - my ($target,$source,$bname)=@_; -@@ -135,7 +135,7 @@ - $ff = "/fixed"; - $opt_cflags=$f.' -Ox -O2 -Ob2'; - $dbg_cflags=$f.'d -Od -DDEBUG -D_DEBUG'; -- $lflags="/nologo /subsystem:console /opt:ref"; -+ $lflags="/nologo /subsystem:console,5.01 /opt:ref"; - } - $lib_cflag='-Zl' if (!$shlib); # remove /DEFAULTLIBs from static lib - $mlflags=''; diff -Nru libreoffice-5.1.1~rc2/external/openssl/openssl-fixbuild.patch.1 libreoffice-5.1.2~rc2/external/openssl/openssl-fixbuild.patch.1 --- libreoffice-5.1.1~rc2/external/openssl/openssl-fixbuild.patch.1 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-5.1.2~rc2/external/openssl/openssl-fixbuild.patch.1 2016-03-29 15:41:04.000000000 +0000 @@ -0,0 +1,23 @@ +--- a/crypto/evp/Makefile ++++ b/crypto/evp/Makefile +@@ -289,7 +289,7 @@ + e_idea.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h + e_idea.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h + e_idea.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h +-e_idea.o: ../../include/openssl/evp.h ../../include/openssl/idea.h ++e_idea.o: ../../include/openssl/evp.h ../idea/idea.h + e_idea.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h + e_idea.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h + e_idea.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h +--- a/util/mklink.pl ++++ b/util/mklink.pl +@@ -50,8 +50,7 @@ + my $to = join('/', @to_path); + + my $file; +-$symlink_exists=eval {symlink("",""); 1}; +-if ($^O eq "msys") { $symlink_exists=0 }; ++$symlink_exists=0; + foreach $file (@files) { + my $err = ""; + if ($symlink_exists) { diff -Nru libreoffice-5.1.1~rc2/external/openssl/openssllnx.patch libreoffice-5.1.2~rc2/external/openssl/openssllnx.patch --- libreoffice-5.1.1~rc2/external/openssl/openssllnx.patch 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/external/openssl/openssllnx.patch 2016-03-29 15:41:04.000000000 +0000 @@ -12,12 +12,12 @@ --- build/openssl-0.9.8v/Makefile.org 2010-01-27 17:06:36.000000000 +0100 +++ build/openssl-0.9.8v/Makefile.org 2010-09-20 09:24:00.000000000 +0100 -@@ -199,7 +199,7 @@ - - BUILDENV= PLATFORM='$(PLATFORM)' PROCESSOR='$(PROCESSOR)' \ +@@ -206,7 +206,7 @@ + # same language for uniform treatment. + BUILDENV= LC_ALL=C PLATFORM='$(PLATFORM)' PROCESSOR='$(PROCESSOR)'\ CC='$(CC)' CFLAG='$(CFLAG)' \ - AS='$(CC)' ASFLAG='$(CFLAG) -c' \ -+ AS='$(CC)' ASFLAG='$(CFLAG) -c -Wa,--noexecstack' \ ++ AS='$(CC)' ASFLAG='$(CFLAG) -c -Wa,--noexecstack' \ AR='$(AR)' NM='$(NM)' RANLIB='$(RANLIB)' \ CROSS_COMPILE='$(CROSS_COMPILE)' \ PERL='$(PERL)' ENGDIRS='$(ENGDIRS)' \ diff -Nru libreoffice-5.1.1~rc2/external/openssl/opensslmingw.patch libreoffice-5.1.2~rc2/external/openssl/opensslmingw.patch --- libreoffice-5.1.1~rc2/external/openssl/opensslmingw.patch 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/external/openssl/opensslmingw.patch 2016-03-29 15:41:04.000000000 +0000 @@ -1,5 +1,6 @@ ---- misc/openssl-0.9.8v/Makefile.shared 2008-09-17 17:56:40.000000000 +0200 -+++ misc/build/openssl-0.9.8v/Makefile.shared 2009-03-30 11:52:53.684538000 +0200 +diff -ru openssl.orig/Makefile.shared openssl/Makefile.shared +--- a/openssl.orig/Makefile.shared 2016-03-03 21:16:48.751822016 +0100 ++++ b/openssl/Makefile.shared 2016-03-03 21:27:12.615802449 +0100 @@ -278,7 +278,7 @@ link_a.cygwin: @ $(CALC_VERSIONS); \ @@ -13,7 +14,7 @@ SHLIB_SOVER=32; \ extras="$(LIBNAME).def"; \ $(PERL) util/mkdef.pl 32 $$SHLIB > $$extras; \ -- base=; [ $(LIBNAME) = "crypto" ] && base=-Wl,--image-base,0x63000000; \ +- base=; [ $(LIBNAME) = "crypto" -a -n "$(FIPSCANLIB)" ] && base=-Wl,--image-base,0x63000000; \ + base=; \ + if test $(LIBNAME) = "crypto"; then \ + SHLIB=libeay32; \ @@ -26,14 +27,15 @@ extras="$$extras rc.o"; \ ALLSYMSFLAGS='-Wl,--whole-archive'; \ NOALLSYMSFLAGS='-Wl,--no-whole-archive'; \ -- SHAREDFLAGS="$(CFLAGS) $(SHARED_LDFLAGS) -shared $$base -Wl,-s,-Bsymbolic -Wl,--out-implib,lib$(LIBNAME).dll.a $$extras"; \ +- SHAREDFLAGS="$(CFLAGS) $(SHARED_LDFLAGS) -shared $$base -Wl,-Bsymbolic -Wl,--out-implib,lib$(LIBNAME).dll.a $$extras"; \ + SHAREDFLAGS="$(CFLAGS) $(SHARED_LDFLAGS) -shared $$base -Wl,-s,-Bsymbolic -Wl,--export-all-symbols -Wl,--out-implib,lib$(LIBNAME).dll.a $$extras"; \ [ -f apps/$$dll_name ] && rm apps/$$dll_name; \ [ -f test/$$dll_name ] && rm test/$$dll_name; \ $(LINK_SO_A) || exit 1; \ ---- misc/openssl-0.9.8v/e_os2.h 2005-12-19 03:57:07.000000000 +0900 -+++ misc/build/openssl-0.9.8v/e_os2.h 2009-04-04 23:07:15.324250000 +0900 -@@ -287,7 +287,7 @@ +diff -ru openssl.orig/e_os2.h openssl/e_os2.h +--- a/openssl.orig/e_os2.h 2016-03-01 14:35:53.000000000 +0100 ++++ b/openssl/e_os2.h 2016-03-03 21:27:33.179801804 +0100 +@@ -293,7 +293,7 @@ # ifdef OPENSSL_EXPORT_VAR_AS_FUNCTION # define OPENSSL_IMPLEMENT_GLOBAL(type,name,value) \ type *_shadow_##name(void) \ @@ -42,9 +44,10 @@ # define OPENSSL_DECLARE_GLOBAL(type,name) type *_shadow_##name(void) # define OPENSSL_GLOBAL_REF(name) (*(_shadow_##name())) # else ---- misc/openssl-0.9.8v/ms/mingw32.bat 2006-05-05 15:19:32.000000000 +0200 -+++ misc/build/openssl-0.9.8v/ms/mingw32.bat 2009-03-30 11:54:10.000000000 +0200 -@@ -79,15 +79,41 @@ +diff -ru openssl.orig/ms/mingw32.bat openssl/ms/mingw32.bat +--- a/openssl.orig/ms/mingw32.bat 2016-03-01 14:35:05.000000000 +0100 ++++ b/openssl/ms/mingw32.bat 2016-03-03 21:27:56.487801073 +0100 +@@ -75,15 +75,41 @@ rem copy ms\tlhelp32.h outinc echo Building the libraries @@ -77,20 +80,21 @@ +gcc --shared -shared-libgcc --enable-pseudo-reloc -Wl,-Map,out/ssleay32.map -Lout ms/ssleay32.def -o out/ssleay32.dll out/libssl_static.a -lcrypto +if errorlevel 1 goto end +goto finished -+ + +:shared_gxxlib +gcc --shared -shared-libgcc --enable-pseudo-reloc -Wl,-Map,out/libeay32.map ms/libeay32.def -o out/libeay32.dll out/libcrypto_static.a -lws2_32 -lgdi32 %MINGW_SHARED_LIBSTDSPP% +if errorlevel 1 goto end +gcc --shared -shared-libgcc --enable-pseudo-reloc -Wl,-Map,out/ssleay32.map -Lout ms/ssleay32.def -o out/ssleay32.dll out/libssl_static.a -lcrypto %MINGW_SHARED_LIBSTDSPP% +if errorlevel 1 goto end +goto finished - ++ +:finished echo Done compiling OpenSSL :end ---- misc/openssl-0.9.8v/util/pl/Mingw32.pl 2006-05-05 15:19:34.000000000 +0200 -+++ misc/build/openssl-0.9.8v/util/pl/Mingw32.pl 2009-03-30 11:55:04.000000000 +0200 +diff -ru openssl.orig/util/pl/Mingw32.pl openssl/util/pl/Mingw32.pl +--- a/openssl.orig/util/pl/Mingw32.pl 2016-03-01 14:33:04.000000000 +0100 ++++ b/openssl/util/pl/Mingw32.pl 2016-03-03 21:28:16.691800440 +0100 @@ -6,11 +6,11 @@ $o='/'; $cp='cp'; @@ -107,12 +111,12 @@ $mkdir='mkdir'; # C compiler stuff -@@ -87,7 +87,8 @@ +@@ -85,7 +85,8 @@ ($Name=$name) =~ tr/a-z/A-Z/; $ret.="$target: \$(${Name}OBJ)\n"; - $ret.="\tif exist $target \$(RM) $target\n"; -+ $ret.="\t\$(RM) $target\n"; ++ $ret.="\t\$(RM) $target\n"; +# $ret.="\tif exist $target \$(RM) $target\n"; $ret.="\t\$(MKLIB) $target \$(${Name}OBJ)\n"; $ret.="\t\$(RANLIB) $target\n\n"; diff -Nru libreoffice-5.1.1~rc2/external/openssl/opensslwnt.patch libreoffice-5.1.2~rc2/external/openssl/opensslwnt.patch --- libreoffice-5.1.1~rc2/external/openssl/opensslwnt.patch 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/external/openssl/opensslwnt.patch 2016-03-29 15:41:04.000000000 +0000 @@ -1,32 +1,39 @@ ---- misc/openssl-0.9.8v/crypto/x509v3/v3_pci.c 2007-03-05 01:06:47.000000000 +0100 -+++ build/openssl-0.9.8v/crypto/x509v3/v3_pci.c 2010-03-26 12:04:20.961547300 +0100 +diff -ru openssl.orig/crypto/x509v3/v3_pci.c openssl/crypto/x509v3/v3_pci.c +--- a/openssl.orig/crypto/x509v3/v3_pci.c 2016-03-01 14:35:05.000000000 +0100 ++++ b/openssl/crypto/x509v3/v3_pci.c 2016-03-03 20:27:42.195914432 +0100 @@ -3,7 +3,7 @@ * Contributed to the OpenSSL Project 2004 by Richard Levitte * (richard@levitte.org) */ --/* Copyright (c) 2004 Kungliga Tekniska Högskolan +-/* Copyright (c) 2004 Kungliga Tekniska Högskolan +/* Copyright (c) 2004 Kungliga Tekniska Hoegskolan * (Royal Institute of Technology, Stockholm, Sweden). * All rights reserved. * ---- misc/openssl-0.9.8v/crypto/x509v3/v3_pcia.c 2004-12-28 01:21:33.000000000 +0100 -+++ build/openssl-0.9.8v/crypto/x509v3/v3_pcia.c 2010-03-26 12:04:20.961547300 +0100 +diff -ru openssl.orig/crypto/x509v3/v3_pcia.c openssl/crypto/x509v3/v3_pcia.c +--- a/openssl.orig/crypto/x509v3/v3_pcia.c 2016-03-01 14:35:05.000000000 +0100 ++++ b/openssl/crypto/x509v3/v3_pcia.c 2016-03-03 20:27:56.495913984 +0100 @@ -3,7 +3,7 @@ * Contributed to the OpenSSL Project 2004 by Richard Levitte * (richard@levitte.org) */ --/* Copyright (c) 2004 Kungliga Tekniska Högskolan +-/* Copyright (c) 2004 Kungliga Tekniska Högskolan +/* Copyright (c) 2004 Kungliga Tekniska Hoegskolan * (Royal Institute of Technology, Stockholm, Sweden). * All rights reserved. * ---- misc/openssl-0.9.8v/ms/do_ms.bat 2009-07-28 14:51:19.000000000 +0200 -+++ build/openssl-0.9.8v/ms/do_ms.bat 2010-03-26 12:19:19.399047300 +0100 +diff -ru openssl.orig/ms/do_ms.bat openssl/ms/do_ms.bat +--- a/openssl.orig/ms/do_ms.bat 2015-01-15 15:43:14.000000000 +0100 ++++ b/openssl/ms/do_ms.bat 2016-03-03 20:31:09.355907935 +0100 @@ -1,11 +1,11 @@ -perl util\mkfiles.pl >MINFO -perl util\mk1mf.pl no-asm VC-WIN32 >ms\nt.mak -perl util\mk1mf.pl dll no-asm VC-WIN32 >ms\ntdll.mak +-if x%OSVERSION% == x goto skipce +-perl util\mk1mf.pl no-asm VC-CE >ms\ce.mak +-perl util\mk1mf.pl dll no-asm VC-CE >ms\cedll.mak +-:skipce +%1 util\mkfiles.pl >MINFO +if %2 == VC-WIN32 goto not64a +perl ms\uplink.pl win64a > ms\uptable.asm @@ -34,17 +41,14 @@ +:not64a +%1 util\mk1mf.pl no-asm %2 >ms\nt.mak +%1 util\mk1mf.pl dll no-asm %2 >ms\ntdll.mak --if x%OSVERSION% == x goto skipce --perl util\mk1mf.pl no-asm VC-CE >ms\ce.mak --perl util\mk1mf.pl dll no-asm VC-CE >ms\cedll.mak --:skipce -perl util\mkdef.pl 32 libeay > ms\libeay32.def -perl util\mkdef.pl 32 ssleay > ms\ssleay32.def +%1 util\mkdef.pl 32 libeay > ms\libeay32.def +%1 util\mkdef.pl 32 ssleay > ms\ssleay32.def ---- misc/openssl-0.9.8v/util/mk1mf.pl 2009-09-20 14:46:42.000000000 +0200 -+++ build/openssl-0.9.8v/util/mk1mf.pl 2010-03-26 12:04:20.977172300 +0100 +diff -ru openssl.orig/util/mk1mf.pl openssl/util/mk1mf.pl +--- a/openssl.orig/util/mk1mf.pl 2016-03-03 20:22:21.043924505 +0100 ++++ b/openssl/util/mk1mf.pl 2016-03-03 20:34:45.015901171 +0100 @@ -163,7 +163,7 @@ $inc_def="outinc"; $tmp_def="tmp"; @@ -54,8 +58,8 @@ $mkdir="-mkdir" unless defined $mkdir; ($ssl,$crypto)=("ssl","crypto"); -@@ -343,6 +343,11 @@ - chop; +@@ -347,6 +347,11 @@ + s/\s*$//; # was chop, didn't work in mixture of perls for Windows... ($key,$val)=/^([^=]+)=(.*)/; + @@ -66,7 +70,7 @@ if ($key eq "RELATIVE_DIRECTORY") { if ($lib ne "") -@@ -469,7 +474,7 @@ +@@ -473,7 +478,7 @@ # Set your compiler options PLATFORM=$platform CC=$bin_dir${cc} @@ -75,16 +79,16 @@ APP_CFLAG=$app_cflag LIB_CFLAG=$lib_cflag SHLIB_CFLAG=$shl_cflag -@@ -484,7 +489,7 @@ +@@ -488,7 +493,7 @@ - LINK=$link + LINK_CMD=$link LFLAGS=$lflags -RSC=$rsc +RSC=$rsc \$(SOLARINC) # The output directory for everything interesting OUT_D=$out_dir -@@ -665,7 +670,7 @@ +@@ -669,7 +674,7 @@ printf OUT < #include #include -#include +#include #include #include diff -Nru libreoffice-5.1.1~rc2/filter/qa/cppunit/filters-eps-test.cxx libreoffice-5.1.2~rc2/filter/qa/cppunit/filters-eps-test.cxx --- libreoffice-5.1.1~rc2/filter/qa/cppunit/filters-eps-test.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/filter/qa/cppunit/filters-eps-test.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -11,7 +11,7 @@ #include #include #include -#include +#include #include #include diff -Nru libreoffice-5.1.1~rc2/filter/qa/cppunit/filters-met-test.cxx libreoffice-5.1.2~rc2/filter/qa/cppunit/filters-met-test.cxx --- libreoffice-5.1.1~rc2/filter/qa/cppunit/filters-met-test.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/filter/qa/cppunit/filters-met-test.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -11,7 +11,7 @@ #include #include #include -#include +#include #include #include diff -Nru libreoffice-5.1.1~rc2/filter/qa/cppunit/filters-pcd-test.cxx libreoffice-5.1.2~rc2/filter/qa/cppunit/filters-pcd-test.cxx --- libreoffice-5.1.1~rc2/filter/qa/cppunit/filters-pcd-test.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/filter/qa/cppunit/filters-pcd-test.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -11,7 +11,7 @@ #include #include #include -#include +#include #include #include diff -Nru libreoffice-5.1.1~rc2/filter/qa/cppunit/filters-pcx-test.cxx libreoffice-5.1.2~rc2/filter/qa/cppunit/filters-pcx-test.cxx --- libreoffice-5.1.1~rc2/filter/qa/cppunit/filters-pcx-test.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/filter/qa/cppunit/filters-pcx-test.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -11,7 +11,7 @@ #include #include #include -#include +#include #include #include diff -Nru libreoffice-5.1.1~rc2/filter/qa/cppunit/filters-pict-test.cxx libreoffice-5.1.2~rc2/filter/qa/cppunit/filters-pict-test.cxx --- libreoffice-5.1.1~rc2/filter/qa/cppunit/filters-pict-test.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/filter/qa/cppunit/filters-pict-test.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -13,7 +13,7 @@ #include #include #include -#include +#include #include #include diff -Nru libreoffice-5.1.1~rc2/filter/qa/cppunit/filters-ppm-test.cxx libreoffice-5.1.2~rc2/filter/qa/cppunit/filters-ppm-test.cxx --- libreoffice-5.1.1~rc2/filter/qa/cppunit/filters-ppm-test.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/filter/qa/cppunit/filters-ppm-test.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -11,7 +11,7 @@ #include #include #include -#include +#include #include #include diff -Nru libreoffice-5.1.1~rc2/filter/qa/cppunit/filters-psd-test.cxx libreoffice-5.1.2~rc2/filter/qa/cppunit/filters-psd-test.cxx --- libreoffice-5.1.1~rc2/filter/qa/cppunit/filters-psd-test.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/filter/qa/cppunit/filters-psd-test.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -11,7 +11,7 @@ #include #include #include -#include +#include #include #include diff -Nru libreoffice-5.1.1~rc2/filter/qa/cppunit/filters-ras-test.cxx libreoffice-5.1.2~rc2/filter/qa/cppunit/filters-ras-test.cxx --- libreoffice-5.1.1~rc2/filter/qa/cppunit/filters-ras-test.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/filter/qa/cppunit/filters-ras-test.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -11,7 +11,7 @@ #include #include #include -#include +#include #include #include diff -Nru libreoffice-5.1.1~rc2/filter/qa/cppunit/filters-tga-test.cxx libreoffice-5.1.2~rc2/filter/qa/cppunit/filters-tga-test.cxx --- libreoffice-5.1.1~rc2/filter/qa/cppunit/filters-tga-test.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/filter/qa/cppunit/filters-tga-test.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -11,7 +11,7 @@ #include #include #include -#include +#include #include #include diff -Nru libreoffice-5.1.1~rc2/filter/qa/cppunit/filters-tiff-test.cxx libreoffice-5.1.2~rc2/filter/qa/cppunit/filters-tiff-test.cxx --- libreoffice-5.1.1~rc2/filter/qa/cppunit/filters-tiff-test.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/filter/qa/cppunit/filters-tiff-test.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -11,7 +11,7 @@ #include #include #include -#include +#include #include #include diff -Nru libreoffice-5.1.1~rc2/filter/source/graphicfilter/egif/egif.cxx libreoffice-5.1.2~rc2/filter/source/graphicfilter/egif/egif.cxx --- libreoffice-5.1.1~rc2/filter/source/graphicfilter/egif/egif.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/filter/source/graphicfilter/egif/egif.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -18,7 +18,7 @@ */ -#include +#include #include #include #include diff -Nru libreoffice-5.1.1~rc2/filter/source/graphicfilter/eos2met/eos2met.cxx libreoffice-5.1.2~rc2/filter/source/graphicfilter/eos2met/eos2met.cxx --- libreoffice-5.1.1~rc2/filter/source/graphicfilter/eos2met/eos2met.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/filter/source/graphicfilter/eos2met/eos2met.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -26,7 +26,7 @@ #include #include #include -#include +#include #include #include #include diff -Nru libreoffice-5.1.1~rc2/filter/source/graphicfilter/epbm/epbm.cxx libreoffice-5.1.2~rc2/filter/source/graphicfilter/epbm/epbm.cxx --- libreoffice-5.1.1~rc2/filter/source/graphicfilter/epbm/epbm.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/filter/source/graphicfilter/epbm/epbm.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -19,7 +19,7 @@ #include -#include +#include #include #include #include diff -Nru libreoffice-5.1.1~rc2/filter/source/graphicfilter/epgm/epgm.cxx libreoffice-5.1.2~rc2/filter/source/graphicfilter/epgm/epgm.cxx --- libreoffice-5.1.1~rc2/filter/source/graphicfilter/epgm/epgm.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/filter/source/graphicfilter/epgm/epgm.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -19,7 +19,7 @@ #include -#include +#include #include #include #include diff -Nru libreoffice-5.1.1~rc2/filter/source/graphicfilter/epict/epict.cxx libreoffice-5.1.2~rc2/filter/source/graphicfilter/epict/epict.cxx --- libreoffice-5.1.1~rc2/filter/source/graphicfilter/epict/epict.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/filter/source/graphicfilter/epict/epict.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -24,7 +24,7 @@ #include #include -#include +#include #include #include #include diff -Nru libreoffice-5.1.1~rc2/filter/source/graphicfilter/eppm/eppm.cxx libreoffice-5.1.2~rc2/filter/source/graphicfilter/eppm/eppm.cxx --- libreoffice-5.1.1~rc2/filter/source/graphicfilter/eppm/eppm.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/filter/source/graphicfilter/eppm/eppm.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -19,7 +19,7 @@ #include -#include +#include #include #include #include diff -Nru libreoffice-5.1.1~rc2/filter/source/graphicfilter/eps/eps.cxx libreoffice-5.1.2~rc2/filter/source/graphicfilter/eps/eps.cxx --- libreoffice-5.1.1~rc2/filter/source/graphicfilter/eps/eps.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/filter/source/graphicfilter/eps/eps.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -23,7 +23,7 @@ #include #include #include -#include +#include #include #include #include @@ -215,7 +215,6 @@ inline void ImplWriteTextColor( sal_uLong nMode = PS_RET ); void ImplWriteColor( sal_uLong nMode ); - static double ImplGetScaling( const MapMode& ); void ImplGetMapMode( const MapMode& ); static bool ImplGetBoundingBox( double* nNumb, sal_uInt8* pSource, sal_uLong nSize ); static sal_uInt8* ImplSearchEntry( sal_uInt8* pSource, sal_uInt8 const * pDest, sal_uLong nComp, sal_uLong nSize ); @@ -2306,60 +2305,10 @@ ImplExecMode( nMode ); } - - -double PSWriter::ImplGetScaling( const MapMode& rMapMode ) -{ - double nMul; - switch ( rMapMode.GetMapUnit() ) - { - case MAP_PIXEL : - case MAP_SYSFONT : - case MAP_APPFONT : - - case MAP_100TH_MM : - nMul = 1; - break; - case MAP_10TH_MM : - nMul = 10; - break; - case MAP_MM : - nMul = 100; - break; - case MAP_CM : - nMul = 1000; - break; - case MAP_1000TH_INCH : - nMul = 2.54; - break; - case MAP_100TH_INCH : - nMul = 25.4; - break; - case MAP_10TH_INCH : - nMul = 254; - break; - case MAP_INCH : - nMul = 2540; - break; - case MAP_TWIP : - nMul = 1.76388889; - break; - case MAP_POINT : - nMul = 35.27777778; - break; - default: - nMul = 1.0; - break; - } - return nMul; -} - - - void PSWriter::ImplGetMapMode( const MapMode& rMapMode ) { ImplWriteLine( "tm setmatrix" ); - double fMul = ImplGetScaling( rMapMode ); + double fMul = rMapMode.GetUnitMultiplier(); double fScaleX = (double)rMapMode.GetScaleX() * fMul; double fScaleY = (double)rMapMode.GetScaleY() * fMul; ImplTranslate( rMapMode.GetOrigin().X() * fScaleX, rMapMode.GetOrigin().Y() * fScaleY ); diff -Nru libreoffice-5.1.1~rc2/filter/source/graphicfilter/eras/eras.cxx libreoffice-5.1.2~rc2/filter/source/graphicfilter/eras/eras.cxx --- libreoffice-5.1.1~rc2/filter/source/graphicfilter/eras/eras.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/filter/source/graphicfilter/eras/eras.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -18,7 +18,7 @@ */ -#include +#include #include #include #include diff -Nru libreoffice-5.1.1~rc2/filter/source/graphicfilter/etiff/etiff.cxx libreoffice-5.1.2~rc2/filter/source/graphicfilter/etiff/etiff.cxx --- libreoffice-5.1.1~rc2/filter/source/graphicfilter/etiff/etiff.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/filter/source/graphicfilter/etiff/etiff.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -18,7 +18,7 @@ */ -#include +#include #include #include #include diff -Nru libreoffice-5.1.1~rc2/filter/source/graphicfilter/expm/expm.cxx libreoffice-5.1.2~rc2/filter/source/graphicfilter/expm/expm.cxx --- libreoffice-5.1.1~rc2/filter/source/graphicfilter/expm/expm.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/filter/source/graphicfilter/expm/expm.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -18,7 +18,7 @@ */ -#include +#include #include #include diff -Nru libreoffice-5.1.1~rc2/filter/source/graphicfilter/icgm/cgm.cxx libreoffice-5.1.2~rc2/filter/source/graphicfilter/icgm/cgm.cxx --- libreoffice-5.1.1~rc2/filter/source/graphicfilter/icgm/cgm.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/filter/source/graphicfilter/icgm/cgm.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -22,7 +22,7 @@ #include #include -#include +#include #include #include #include diff -Nru libreoffice-5.1.1~rc2/filter/source/graphicfilter/idxf/idxf.cxx libreoffice-5.1.2~rc2/filter/source/graphicfilter/idxf/idxf.cxx --- libreoffice-5.1.1~rc2/filter/source/graphicfilter/idxf/idxf.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/filter/source/graphicfilter/idxf/idxf.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -20,7 +20,7 @@ #include #include -#include +#include #include #include "dxf2mtf.hxx" #include diff -Nru libreoffice-5.1.1~rc2/filter/source/graphicfilter/ieps/ieps.cxx libreoffice-5.1.2~rc2/filter/source/graphicfilter/ieps/ieps.cxx --- libreoffice-5.1.1~rc2/filter/source/graphicfilter/ieps/ieps.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/filter/source/graphicfilter/ieps/ieps.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -26,7 +26,7 @@ #include #include #include -#include +#include #include #include #include diff -Nru libreoffice-5.1.1~rc2/filter/source/graphicfilter/ios2met/ios2met.cxx libreoffice-5.1.2~rc2/filter/source/graphicfilter/ios2met/ios2met.cxx --- libreoffice-5.1.1~rc2/filter/source/graphicfilter/ios2met/ios2met.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/filter/source/graphicfilter/ios2met/ios2met.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -20,7 +20,7 @@ #include #include #include -#include +#include #include #include #include diff -Nru libreoffice-5.1.1~rc2/filter/source/graphicfilter/ipbm/ipbm.cxx libreoffice-5.1.2~rc2/filter/source/graphicfilter/ipbm/ipbm.cxx --- libreoffice-5.1.1~rc2/filter/source/graphicfilter/ipbm/ipbm.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/filter/source/graphicfilter/ipbm/ipbm.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -20,7 +20,7 @@ #include #include -#include +#include #include //============================ PBMReader ================================== diff -Nru libreoffice-5.1.1~rc2/filter/source/graphicfilter/ipcd/ipcd.cxx libreoffice-5.1.2~rc2/filter/source/graphicfilter/ipcd/ipcd.cxx --- libreoffice-5.1.1~rc2/filter/source/graphicfilter/ipcd/ipcd.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/filter/source/graphicfilter/ipcd/ipcd.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -19,7 +19,7 @@ #include "rtl/alloc.h" -#include +#include #include #include #include diff -Nru libreoffice-5.1.1~rc2/filter/source/graphicfilter/ipcx/ipcx.cxx libreoffice-5.1.2~rc2/filter/source/graphicfilter/ipcx/ipcx.cxx --- libreoffice-5.1.1~rc2/filter/source/graphicfilter/ipcx/ipcx.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/filter/source/graphicfilter/ipcx/ipcx.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -18,7 +18,7 @@ */ -#include +#include #include class FilterConfigItem; diff -Nru libreoffice-5.1.1~rc2/filter/source/graphicfilter/ipict/ipict.cxx libreoffice-5.1.2~rc2/filter/source/graphicfilter/ipict/ipict.cxx --- libreoffice-5.1.1~rc2/filter/source/graphicfilter/ipict/ipict.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/filter/source/graphicfilter/ipict/ipict.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -20,7 +20,7 @@ #include #include #include -#include +#include #include #include #include diff -Nru libreoffice-5.1.1~rc2/filter/source/graphicfilter/ipsd/ipsd.cxx libreoffice-5.1.2~rc2/filter/source/graphicfilter/ipsd/ipsd.cxx --- libreoffice-5.1.1~rc2/filter/source/graphicfilter/ipsd/ipsd.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/filter/source/graphicfilter/ipsd/ipsd.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -18,7 +18,7 @@ */ -#include +#include #include #include #include diff -Nru libreoffice-5.1.1~rc2/filter/source/graphicfilter/iras/iras.cxx libreoffice-5.1.2~rc2/filter/source/graphicfilter/iras/iras.cxx --- libreoffice-5.1.1~rc2/filter/source/graphicfilter/iras/iras.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/filter/source/graphicfilter/iras/iras.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -18,7 +18,7 @@ */ -#include +#include #include class FilterConfigItem; diff -Nru libreoffice-5.1.1~rc2/filter/source/graphicfilter/itga/itga.cxx libreoffice-5.1.2~rc2/filter/source/graphicfilter/itga/itga.cxx --- libreoffice-5.1.1~rc2/filter/source/graphicfilter/itga/itga.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/filter/source/graphicfilter/itga/itga.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -18,7 +18,7 @@ */ -#include +#include #include class FilterConfigItem; diff -Nru libreoffice-5.1.1~rc2/filter/source/graphicfilter/itiff/itiff.cxx libreoffice-5.1.2~rc2/filter/source/graphicfilter/itiff/itiff.cxx --- libreoffice-5.1.1~rc2/filter/source/graphicfilter/itiff/itiff.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/filter/source/graphicfilter/itiff/itiff.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -20,7 +20,7 @@ #include #include -#include +#include #include #include #include diff -Nru libreoffice-5.1.1~rc2/filter/source/msfilter/escherex.cxx libreoffice-5.1.2~rc2/filter/source/msfilter/escherex.cxx --- libreoffice-5.1.1~rc2/filter/source/msfilter/escherex.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/filter/source/msfilter/escherex.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -30,7 +30,7 @@ #include #include #include -#include +#include #include #include #include diff -Nru libreoffice-5.1.1~rc2/filter/source/msfilter/eschesdo.cxx libreoffice-5.1.2~rc2/filter/source/msfilter/eschesdo.cxx --- libreoffice-5.1.1~rc2/filter/source/msfilter/eschesdo.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/filter/source/msfilter/eschesdo.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -25,7 +25,7 @@ #include #include #include -#include +#include #include #include #include diff -Nru libreoffice-5.1.1~rc2/filter/source/msfilter/mstoolbar.cxx libreoffice-5.1.2~rc2/filter/source/msfilter/mstoolbar.cxx --- libreoffice-5.1.1~rc2/filter/source/msfilter/mstoolbar.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/filter/source/msfilter/mstoolbar.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -16,7 +16,7 @@ #include #include #include -#include +#include #include #include #include diff -Nru libreoffice-5.1.1~rc2/filter/source/svg/svgreader.cxx libreoffice-5.1.2~rc2/filter/source/svg/svgreader.cxx --- libreoffice-5.1.1~rc2/filter/source/svg/svgreader.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/filter/source/svg/svgreader.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -36,7 +36,7 @@ #include #include #include -#include +#include #include #include #include diff -Nru libreoffice-5.1.1~rc2/forms/inc/pch/precompiled_frm.hxx libreoffice-5.1.2~rc2/forms/inc/pch/precompiled_frm.hxx --- libreoffice-5.1.1~rc2/forms/inc/pch/precompiled_frm.hxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/forms/inc/pch/precompiled_frm.hxx 2016-03-29 15:41:04.000000000 +0000 @@ -66,7 +66,7 @@ #include #include #include -#include +#include #include #include #include diff -Nru libreoffice-5.1.1~rc2/fpicker/source/office/RemoteFilesDialog.cxx libreoffice-5.1.2~rc2/fpicker/source/office/RemoteFilesDialog.cxx --- libreoffice-5.1.1~rc2/fpicker/source/office/RemoteFilesDialog.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/fpicker/source/office/RemoteFilesDialog.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -7,6 +7,7 @@ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ #include "RemoteFilesDialog.hxx" +#include class FileViewContainer : public vcl::Window { @@ -457,6 +458,8 @@ } } } + else + m_pFileView->SetConfigString( "" ); } void RemoteFilesDialog::FillServicesListbox() @@ -1416,10 +1419,29 @@ { Reference< XInteractionHandler > xInteractionHandler( InteractionHandler::createWithParent( m_xContext, nullptr ), UNO_QUERY_THROW ); - Reference< XCommandEnvironment > xEnv = new ::ucbhelper::CommandEnvironment( xInteractionHandler, Reference< XProgressHandler >() ); - ::ucbhelper::Content aContent( rURL, xEnv, m_xContext ); + //check if WebDAV or not + if ( !INetURLObject( rURL ).isAnyKnownWebDAVScheme() ) + { + // no webdav, use the interaction handler as is + Reference< XCommandEnvironment > xEnv = new ::ucbhelper::CommandEnvironment( xInteractionHandler, Reference< XProgressHandler >() ); + ::ucbhelper::Content aContent( rURL, xEnv, m_xContext ); + + return aContent.isDocument(); + } + else + { + // It's a webdav URL, so use the same open sequence as in normal open process. + // Let's use a comphelper::StillReadWriteInteraction to trap errors here without showing the user. + // This sequence will result in an exception if the target URL resource is not present + comphelper::StillReadWriteInteraction* pInteraction = new comphelper::StillReadWriteInteraction(xInteractionHandler,xInteractionHandler); + css::uno::Reference< css::task::XInteractionHandler > xInteraction(static_cast< css::task::XInteractionHandler* >(pInteraction), css::uno::UNO_QUERY); - return aContent.isDocument(); + Reference< XCommandEnvironment > xEnv = new ::ucbhelper::CommandEnvironment( xInteraction, Reference< XProgressHandler >() ); + ::ucbhelper::Content aContent( rURL, xEnv, m_xContext ); + + aContent.openStream(); + return aContent.isDocument(); + } } catch( const Exception& ) { diff -Nru libreoffice-5.1.1~rc2/framework/inc/pch/precompiled_fwe.hxx libreoffice-5.1.2~rc2/framework/inc/pch/precompiled_fwe.hxx --- libreoffice-5.1.1~rc2/framework/inc/pch/precompiled_fwe.hxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/framework/inc/pch/precompiled_fwe.hxx 2016-03-29 15:41:04.000000000 +0000 @@ -114,7 +114,7 @@ #include #include #include -#include +#include #include #include #include diff -Nru libreoffice-5.1.1~rc2/framework/inc/pch/precompiled_fwk.hxx libreoffice-5.1.2~rc2/framework/inc/pch/precompiled_fwk.hxx --- libreoffice-5.1.1~rc2/framework/inc/pch/precompiled_fwk.hxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/framework/inc/pch/precompiled_fwk.hxx 2016-03-29 15:41:04.000000000 +0000 @@ -128,7 +128,7 @@ #include #include #include -#include +#include #include #include #include diff -Nru libreoffice-5.1.1~rc2/framework/inc/pch/precompiled_fwl.hxx libreoffice-5.1.2~rc2/framework/inc/pch/precompiled_fwl.hxx --- libreoffice-5.1.1~rc2/framework/inc/pch/precompiled_fwl.hxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/framework/inc/pch/precompiled_fwl.hxx 2016-03-29 15:41:04.000000000 +0000 @@ -129,7 +129,7 @@ #include #include #include -#include +#include #include #include #include diff -Nru libreoffice-5.1.1~rc2/framework/source/classes/menumanager.cxx libreoffice-5.1.2~rc2/framework/source/classes/menumanager.cxx --- libreoffice-5.1.1~rc2/framework/source/classes/menumanager.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/framework/source/classes/menumanager.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -177,33 +177,33 @@ } else { - if ( nItemId == SID_NEWDOCDIRECT || aItemCommand == aSlotNewDocDirect ) + bool isNewDoc = nItemId == SID_NEWDOCDIRECT || aItemCommand == aSlotNewDocDirect; + bool isAutoPilot = nItemId == SID_AUTOPILOTMENU || aItemCommand == aSlotAutoPilot; + if(isNewDoc || isAutoPilot) { - MenuConfiguration aMenuCfg( m_xContext ); - BmkMenu* pSubMenu = static_cast(aMenuCfg.CreateBookmarkMenu( rFrame, BOOKMARK_NEWMENU )); - pMenu->SetPopupMenu( nItemId, pSubMenu ); - - AddMenu(pSubMenu,OUString(),nItemId,true,false); - if ( bShowMenuImages && !pMenu->GetItemImage( nItemId )) + Reference< XDispatchProvider > xDispatchProvider( m_xFrame, UNO_QUERY ); + URL aTargetURL; + aTargetURL.Complete = OUString::createFromAscii(isNewDoc ? aSlotNewDocDirect : aSlotAutoPilot); + m_xURLTransformer->parseStrict( aTargetURL ); + Reference< XDispatch > xMenuItemDispatch = xDispatchProvider->queryDispatch( + aTargetURL, OUString(), 0 ); + if(xMenuItemDispatch == nullptr) { - Image aImage = GetImageFromURL( rFrame, aItemCommand, false ); - if ( !!aImage ) - pMenu->SetItemImage( nItemId, aImage ); + m_pVCLMenu->EnableItem( nItemId, false ); } - } - else if ( nItemId == SID_AUTOPILOTMENU || aItemCommand == aSlotAutoPilot ) - { - MenuConfiguration aMenuCfg( m_xContext ); - BmkMenu* pSubMenu = static_cast(aMenuCfg.CreateBookmarkMenu( rFrame, BOOKMARK_WIZARDMENU )); - pMenu->SetPopupMenu( nItemId, pSubMenu ); - - AddMenu(pSubMenu,OUString(),nItemId,true,false); - - if ( bShowMenuImages && !pMenu->GetItemImage( nItemId )) + else { - Image aImage = GetImageFromURL( rFrame, aItemCommand, false ); - if ( !!aImage ) - pMenu->SetItemImage( nItemId, aImage ); + MenuConfiguration aMenuCfg( m_xContext ); + BmkMenu* pSubMenu = static_cast(aMenuCfg.CreateBookmarkMenu( rFrame, + OUString::createFromAscii(isNewDoc ? BOOKMARK_NEWMENU : BOOKMARK_WIZARDMENU))); + pMenu->SetPopupMenu( nItemId, pSubMenu ); + AddMenu(pSubMenu,OUString(),nItemId,true,false); + if ( bShowMenuImages && !pMenu->GetItemImage( nItemId )) + { + Image aImage = GetImageFromURL( rFrame, aItemCommand, false ); + if ( !!aImage ) + pMenu->SetItemImage( nItemId, aImage ); + } } } else if ( pMenu->GetItemType( i ) != MenuItemType::SEPARATOR ) diff -Nru libreoffice-5.1.1~rc2/framework/source/fwe/classes/addonsoptions.cxx libreoffice-5.1.2~rc2/framework/source/fwe/classes/addonsoptions.cxx --- libreoffice-5.1.1~rc2/framework/source/fwe/classes/addonsoptions.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/framework/source/fwe/classes/addonsoptions.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -28,7 +28,7 @@ #include #include #include -#include +#include #include #include diff -Nru libreoffice-5.1.1~rc2/framework/source/uielement/addonstoolbarmanager.cxx libreoffice-5.1.2~rc2/framework/source/uielement/addonstoolbarmanager.cxx --- libreoffice-5.1.1~rc2/framework/source/uielement/addonstoolbarmanager.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/framework/source/uielement/addonstoolbarmanager.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -56,6 +56,7 @@ #include #include #include +#include // namespaces @@ -257,6 +258,10 @@ m_pToolBar->InsertItem( nId, aTitle ); + OUString aShortcut(vcl::CommandInfoProvider::Instance().GetCommandShortcut(aURL, m_xFrame)); + if (!aShortcut.isEmpty()) + m_pToolBar->SetQuickHelpText(nId, aTitle + " (" + aShortcut + ")"); + // don't setup images yet, AddonsToolbarWrapper::populateImages does that. // Create TbRuntimeItemData to hold additional information we will need in the future diff -Nru libreoffice-5.1.1~rc2/framework/source/uielement/buttontoolbarcontroller.cxx libreoffice-5.1.2~rc2/framework/source/uielement/buttontoolbarcontroller.cxx --- libreoffice-5.1.1~rc2/framework/source/uielement/buttontoolbarcontroller.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/framework/source/uielement/buttontoolbarcontroller.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -37,7 +37,7 @@ #include #include #include -#include +#include #include #include #include diff -Nru libreoffice-5.1.1~rc2/framework/source/uielement/imagebuttontoolbarcontroller.cxx libreoffice-5.1.2~rc2/framework/source/uielement/imagebuttontoolbarcontroller.cxx --- libreoffice-5.1.1~rc2/framework/source/uielement/imagebuttontoolbarcontroller.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/framework/source/uielement/imagebuttontoolbarcontroller.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -34,7 +34,7 @@ #include #include #include -#include +#include #include #include #include diff -Nru libreoffice-5.1.1~rc2/framework/source/uielement/menubarmanager.cxx libreoffice-5.1.2~rc2/framework/source/uielement/menubarmanager.cxx --- libreoffice-5.1.1~rc2/framework/source/uielement/menubarmanager.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/framework/source/uielement/menubarmanager.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -870,7 +870,7 @@ bool bPopupMenu( false ); if ( !pMenuItemHandler->xPopupMenuController.is() && - m_xPopupMenuControllerFactory->hasController( aItemCommand, OUString() )) + m_xPopupMenuControllerFactory->hasController( aItemCommand, m_aModuleIdentifier ) ) { bPopupMenu = CreatePopupMenuController( pMenuItemHandler ); } diff -Nru libreoffice-5.1.1~rc2/framework/source/uielement/newmenucontroller.cxx libreoffice-5.1.2~rc2/framework/source/uielement/newmenucontroller.cxx --- libreoffice-5.1.1~rc2/framework/source/uielement/newmenucontroller.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/framework/source/uielement/newmenucontroller.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -46,6 +46,8 @@ #include // Defines +#define aSlotNewDocDirect ".uno:AddDirect" +#define aSlotAutoPilot ".uno:AutoPilotMenu" using namespace com::sun::star::uno; using namespace com::sun::star::lang; @@ -327,6 +329,13 @@ MenuConfiguration aMenuCfg( m_xContext ); std::unique_ptr pSubMenu; + Reference< XDispatchProvider > xDispatchProvider( m_xFrame, UNO_QUERY ); + URL aTargetURL; + aTargetURL.Complete = rtl::OUString::createFromAscii(m_bNewMenu ? aSlotNewDocDirect : aSlotAutoPilot); + m_xURLTransformer->parseStrict( aTargetURL ); + Reference< XDispatch > xMenuItemDispatch = xDispatchProvider->queryDispatch( aTargetURL, OUString(), 0 ); + if(xMenuItemDispatch == nullptr) + return; if ( m_bNewMenu ) pSubMenu.reset(static_cast(aMenuCfg.CreateBookmarkMenu( m_xFrame, BOOKMARK_NEWMENU ))); else @@ -517,7 +526,7 @@ const StyleSettings& rSettings = Application::GetSettings().GetStyleSettings(); m_bShowImages = rSettings.GetUseImagesInMenus(); - m_bNewMenu = m_aCommandURL == ".uno:AddDirect"; + m_bNewMenu = m_aCommandURL == aSlotNewDocDirect; } } } diff -Nru libreoffice-5.1.1~rc2/framework/source/uielement/togglebuttontoolbarcontroller.cxx libreoffice-5.1.2~rc2/framework/source/uielement/togglebuttontoolbarcontroller.cxx --- libreoffice-5.1.1~rc2/framework/source/uielement/togglebuttontoolbarcontroller.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/framework/source/uielement/togglebuttontoolbarcontroller.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -36,7 +36,7 @@ #include #include #include -#include +#include #include #include #include diff -Nru libreoffice-5.1.1~rc2/.gitreview libreoffice-5.1.2~rc2/.gitreview --- libreoffice-5.1.1~rc2/.gitreview 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/.gitreview 2016-03-29 15:41:04.000000000 +0000 @@ -3,5 +3,5 @@ port=29418 project=core defaultremote=logerrit -defaultbranch=libreoffice-5-1-1 +defaultbranch=libreoffice-5-1-2 diff -Nru libreoffice-5.1.1~rc2/icon-themes/breeze/links.txt libreoffice-5.1.2~rc2/icon-themes/breeze/links.txt --- libreoffice-5.1.1~rc2/icon-themes/breeze/links.txt 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/icon-themes/breeze/links.txt 2016-03-29 15:41:04.000000000 +0000 @@ -1067,7 +1067,7 @@ sfx2/imglst/actionview030.png cmd/lc_open.png sfx2/res/closedoc.png vcl/res/closedoc.png -sfx2/res/deleterow.png cmd/sc_deleterows.png +sfx2/res/deleterow.png cmd/sc_cancel.png sfx2/res/favourite.png cmd/sc_insertbookmark.png sfx2/res/favourite_big.png cmd/lc_insertbookmark.png sfx2/res/hlpdoc.png cmd/sc_helpindex.png diff -Nru libreoffice-5.1.1~rc2/icon-themes/elementary/links.txt libreoffice-5.1.2~rc2/icon-themes/elementary/links.txt --- libreoffice-5.1.1~rc2/icon-themes/elementary/links.txt 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/icon-themes/elementary/links.txt 2016-03-29 15:41:04.000000000 +0000 @@ -515,7 +515,7 @@ sd/res/ole.png cmd/sc_diagramtype.png sd/res/playblue_16.png avmedia/res/av02049.png sd/res/stopplayingblue_16.png avmedia/res/av02051.png -sfx2/res/deleterow.png cmd/sc_deleterows.png +sfx2/res/deleterow.png cmd/sc_cancel.png sfx2/res/favorite.png cmd/sc_insertbookmark.png sfx2/res/favourite_big.png cmd/lc_insertbookmark.png sfx2/res/hlpbookclosed.png formula/res/fapclose.png diff -Nru libreoffice-5.1.1~rc2/icon-themes/galaxy/links.txt libreoffice-5.1.2~rc2/icon-themes/galaxy/links.txt --- libreoffice-5.1.1~rc2/icon-themes/galaxy/links.txt 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/icon-themes/galaxy/links.txt 2016-03-29 15:41:04.000000000 +0000 @@ -24,6 +24,14 @@ cmd/lc_pagesetup.png cmd/lc_setdocumentproperties.png cmd/sc_pagesetup.png cmd/sc_setdocumentproperties.png +# sidebar icons +sfx2/res/symphony/sidebar-navigator-large.png cmd/lc_navigator.png +sfx2/res/symphony/sidebar-style-large.png cmd/lc_designerdialog.png +sfx2/res/symphony/sidebar-functions-large.png cmd/lc_insertformula.png +sfx2/res/symphony/sidebar-gallery-large.png cmd/lc_gallery.png +sfx2/res/symphony/sidebar-transition-large.png cmd/lc_dia.png +sfx2/res/symphony/sidebar-animation-large.png cmd/lc_customanimation.png + # paragraph line spacing cmd/lc_linespacing.png cmd/lc_spacepara15.png cmd/sc_linespacing.png cmd/sc_spacepara15.png Binary files /tmp/tmpjVu_CV/d8O1VeJAAp/libreoffice-5.1.1~rc2/icon-themes/sifr/cmd/lc_deletemasterpage.png and /tmp/tmpjVu_CV/VUSojbs3iI/libreoffice-5.1.2~rc2/icon-themes/sifr/cmd/lc_deletemasterpage.png differ Binary files /tmp/tmpjVu_CV/d8O1VeJAAp/libreoffice-5.1.1~rc2/icon-themes/sifr/cmd/lc_duplicatepage.png and /tmp/tmpjVu_CV/VUSojbs3iI/libreoffice-5.1.2~rc2/icon-themes/sifr/cmd/lc_duplicatepage.png differ Binary files /tmp/tmpjVu_CV/d8O1VeJAAp/libreoffice-5.1.1~rc2/icon-themes/sifr/cmd/lc_insertmasterpage.png and /tmp/tmpjVu_CV/VUSojbs3iI/libreoffice-5.1.2~rc2/icon-themes/sifr/cmd/lc_insertmasterpage.png differ Binary files /tmp/tmpjVu_CV/d8O1VeJAAp/libreoffice-5.1.1~rc2/icon-themes/sifr/cmd/lc_slidemasterpage.png and /tmp/tmpjVu_CV/VUSojbs3iI/libreoffice-5.1.2~rc2/icon-themes/sifr/cmd/lc_slidemasterpage.png differ Binary files /tmp/tmpjVu_CV/d8O1VeJAAp/libreoffice-5.1.1~rc2/icon-themes/sifr/cmd/lc_slidemasterpages.xcf and /tmp/tmpjVu_CV/VUSojbs3iI/libreoffice-5.1.2~rc2/icon-themes/sifr/cmd/lc_slidemasterpages.xcf differ Binary files /tmp/tmpjVu_CV/d8O1VeJAAp/libreoffice-5.1.1~rc2/icon-themes/tango/cmd/lc_deletepage.png and /tmp/tmpjVu_CV/VUSojbs3iI/libreoffice-5.1.2~rc2/icon-themes/tango/cmd/lc_deletepage.png differ Binary files /tmp/tmpjVu_CV/d8O1VeJAAp/libreoffice-5.1.1~rc2/icon-themes/tango/cmd/lc_numberformatpercent.png and /tmp/tmpjVu_CV/VUSojbs3iI/libreoffice-5.1.2~rc2/icon-themes/tango/cmd/lc_numberformatpercent.png differ Binary files /tmp/tmpjVu_CV/d8O1VeJAAp/libreoffice-5.1.1~rc2/icon-themes/tango/cmd/lc_resetattributes.png and /tmp/tmpjVu_CV/VUSojbs3iI/libreoffice-5.1.2~rc2/icon-themes/tango/cmd/lc_resetattributes.png differ Binary files /tmp/tmpjVu_CV/d8O1VeJAAp/libreoffice-5.1.1~rc2/icon-themes/tango/cmd/lc_resetattributes.xcf.bz2 and /tmp/tmpjVu_CV/VUSojbs3iI/libreoffice-5.1.2~rc2/icon-themes/tango/cmd/lc_resetattributes.xcf.bz2 differ Binary files /tmp/tmpjVu_CV/d8O1VeJAAp/libreoffice-5.1.1~rc2/icon-themes/tango/cmd/lc_slidemasterpage.png and /tmp/tmpjVu_CV/VUSojbs3iI/libreoffice-5.1.2~rc2/icon-themes/tango/cmd/lc_slidemasterpage.png differ Binary files /tmp/tmpjVu_CV/d8O1VeJAAp/libreoffice-5.1.1~rc2/icon-themes/tango/cmd/lc_togglesheetgrid.png and /tmp/tmpjVu_CV/VUSojbs3iI/libreoffice-5.1.2~rc2/icon-themes/tango/cmd/lc_togglesheetgrid.png differ Binary files /tmp/tmpjVu_CV/d8O1VeJAAp/libreoffice-5.1.1~rc2/icon-themes/tango/cmd/sc_deletepage.png and /tmp/tmpjVu_CV/VUSojbs3iI/libreoffice-5.1.2~rc2/icon-themes/tango/cmd/sc_deletepage.png differ Binary files /tmp/tmpjVu_CV/d8O1VeJAAp/libreoffice-5.1.1~rc2/icon-themes/tango/cmd/sc_slidemasterpage.png and /tmp/tmpjVu_CV/VUSojbs3iI/libreoffice-5.1.2~rc2/icon-themes/tango/cmd/sc_slidemasterpage.png differ diff -Nru libreoffice-5.1.1~rc2/icon-themes/tango/links.txt libreoffice-5.1.2~rc2/icon-themes/tango/links.txt --- libreoffice-5.1.1~rc2/icon-themes/tango/links.txt 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/icon-themes/tango/links.txt 2016-03-29 15:41:04.000000000 +0000 @@ -344,7 +344,7 @@ cmd/lc_timefield.png sc/res/time.png sc/res/page.png sd/res/page.png sc/res/text.png cmd/sc_text.png -sfx2/res/deleterow.png cmd/sc_deleterows.png +sfx2/res/deleterow.png cmd/sc_cancel.png reportdesign/res/sc30768.png cmd/sc_upsearch.png reportdesign/res/sc30769.png cmd/sc_downsearch.png reportdesign/res/sx12594.png cmd/sc_insertformula.png diff -Nru libreoffice-5.1.1~rc2/include/basegfx/polygon/b2dlinegeometry.hxx libreoffice-5.1.2~rc2/include/basegfx/polygon/b2dlinegeometry.hxx --- libreoffice-5.1.1~rc2/include/basegfx/polygon/b2dlinegeometry.hxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/include/basegfx/polygon/b2dlinegeometry.hxx 2016-03-29 15:41:04.000000000 +0000 @@ -138,6 +138,12 @@ double fMaxAllowedAngle = (12.5 * F_PI180), double fMaxPartOfEdge = 0.4, double fMiterMinimumAngle = (15.0 * F_PI180)); + + BASEGFX_DLLPUBLIC B2DPolygon polygonSubdivide( + const B2DPolygon& rCandidate, + double fMaxAllowedAngle = (12.5 * F_PI180), + double fMaxPartOfEdge = 0.4); + } // end of namespace tools } // end of namespace basegfx diff -Nru libreoffice-5.1.1~rc2/include/drawinglayer/primitive2d/mediaprimitive2d.hxx libreoffice-5.1.2~rc2/include/drawinglayer/primitive2d/mediaprimitive2d.hxx --- libreoffice-5.1.1~rc2/include/drawinglayer/primitive2d/mediaprimitive2d.hxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/include/drawinglayer/primitive2d/mediaprimitive2d.hxx 2016-03-29 15:41:04.000000000 +0000 @@ -25,7 +25,7 @@ #include #include #include -#include +#include diff -Nru libreoffice-5.1.1~rc2/include/editeng/outliner.hxx libreoffice-5.1.2~rc2/include/editeng/outliner.hxx --- libreoffice-5.1.1~rc2/include/editeng/outliner.hxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/include/editeng/outliner.hxx 2016-03-29 15:41:04.000000000 +0000 @@ -29,7 +29,7 @@ #include #include #include -#include +#include #include #include #include diff -Nru libreoffice-5.1.1~rc2/include/filter/msfilter/msdffimp.hxx libreoffice-5.1.2~rc2/include/filter/msfilter/msdffimp.hxx --- libreoffice-5.1.1~rc2/include/filter/msfilter/msdffimp.hxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/include/filter/msfilter/msdffimp.hxx 2016-03-29 15:41:04.000000000 +0000 @@ -37,7 +37,7 @@ #include #include -#include +#include #include #include diff -Nru libreoffice-5.1.1~rc2/include/oox/helper/binaryinputstream.hxx libreoffice-5.1.2~rc2/include/oox/helper/binaryinputstream.hxx --- libreoffice-5.1.1~rc2/include/oox/helper/binaryinputstream.hxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/include/oox/helper/binaryinputstream.hxx 2016-03-29 15:41:04.000000000 +0000 @@ -194,7 +194,14 @@ protected: /** This dummy default c'tor will never call the c'tor of the virtual base class BinaryStreamBase as this class cannot be instantiated directly. */ +#ifdef _MSC_VER +#pragma warning(push) +#pragma warning( disable : 4702) +#endif BinaryInputStream() : BinaryStreamBase( false ) {} +#ifdef _MSC_VER +#pragma warning(pop) +#endif private: BinaryInputStream( BinaryInputStream const& ) = delete; diff -Nru libreoffice-5.1.1~rc2/include/oox/helper/binaryoutputstream.hxx libreoffice-5.1.2~rc2/include/oox/helper/binaryoutputstream.hxx --- libreoffice-5.1.1~rc2/include/oox/helper/binaryoutputstream.hxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/include/oox/helper/binaryoutputstream.hxx 2016-03-29 15:41:04.000000000 +0000 @@ -83,7 +83,14 @@ protected: /** This dummy default c'tor will never call the c'tor of the virtual base class BinaryStreamBase as this class cannot be instantiated directly. */ +#ifdef _MSC_VER +#pragma warning(push) +#pragma warning( disable : 4702) +#endif BinaryOutputStream() : BinaryStreamBase( false ) {} +#ifdef _MSC_VER +#pragma warning(pop) +#endif private: BinaryOutputStream( BinaryOutputStream const& ) = delete; diff -Nru libreoffice-5.1.1~rc2/include/sfx2/dinfdlg.hxx libreoffice-5.1.2~rc2/include/sfx2/dinfdlg.hxx --- libreoffice-5.1.1~rc2/include/sfx2/dinfdlg.hxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/include/sfx2/dinfdlg.hxx 2016-03-29 15:41:04.000000000 +0000 @@ -636,6 +636,9 @@ public: SfxCmisPropertiesPage( vcl::Window* pParent, const SfxItemSet& ); + virtual ~SfxCmisPropertiesPage(); + virtual void dispose() override; + static VclPtr Create( vcl::Window* pParent, const SfxItemSet* ); }; diff -Nru libreoffice-5.1.1~rc2/include/sfx2/filedlghelper.hxx libreoffice-5.1.2~rc2/include/sfx2/filedlghelper.hxx --- libreoffice-5.1.1~rc2/include/sfx2/filedlghelper.hxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/include/sfx2/filedlghelper.hxx 2016-03-29 15:41:04.000000000 +0000 @@ -29,7 +29,7 @@ #include #include #include -#include +#include #include #include diff -Nru libreoffice-5.1.1~rc2/include/svtools/DocumentToGraphicRenderer.hxx libreoffice-5.1.2~rc2/include/svtools/DocumentToGraphicRenderer.hxx --- libreoffice-5.1.1~rc2/include/svtools/DocumentToGraphicRenderer.hxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/include/svtools/DocumentToGraphicRenderer.hxx 2016-03-29 15:41:04.000000000 +0000 @@ -26,7 +26,7 @@ #include #include -#include +#include #include diff -Nru libreoffice-5.1.1~rc2/include/svtools/embedhlp.hxx libreoffice-5.1.2~rc2/include/svtools/embedhlp.hxx --- libreoffice-5.1.1~rc2/include/svtools/embedhlp.hxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/include/svtools/embedhlp.hxx 2016-03-29 15:41:04.000000000 +0000 @@ -23,7 +23,7 @@ #include #include #include -#include +#include #include #include #include diff -Nru libreoffice-5.1.1~rc2/include/svtools/grfmgr.hxx libreoffice-5.1.2~rc2/include/svtools/grfmgr.hxx --- libreoffice-5.1.1~rc2/include/svtools/grfmgr.hxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/include/svtools/grfmgr.hxx 2016-03-29 15:41:04.000000000 +0000 @@ -20,7 +20,7 @@ #ifndef INCLUDED_SVTOOLS_GRFMGR_HXX #define INCLUDED_SVTOOLS_GRFMGR_HXX -#include +#include #include #include diff -Nru libreoffice-5.1.1~rc2/include/svx/bmpmask.hxx libreoffice-5.1.2~rc2/include/svx/bmpmask.hxx --- libreoffice-5.1.1~rc2/include/svx/bmpmask.hxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/include/svx/bmpmask.hxx 2016-03-29 15:41:04.000000000 +0000 @@ -24,7 +24,7 @@ #include #include #include -#include +#include #include #include diff -Nru libreoffice-5.1.1~rc2/include/svx/compressgraphicdialog.hxx libreoffice-5.1.2~rc2/include/svx/compressgraphicdialog.hxx --- libreoffice-5.1.1~rc2/include/svx/compressgraphicdialog.hxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/include/svx/compressgraphicdialog.hxx 2016-03-29 15:41:04.000000000 +0000 @@ -22,7 +22,7 @@ #include #include #include -#include +#include #include #include #include diff -Nru libreoffice-5.1.1~rc2/include/svx/dlgctrl.hxx libreoffice-5.1.2~rc2/include/svx/dlgctrl.hxx --- libreoffice-5.1.1~rc2/include/svx/dlgctrl.hxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/include/svx/dlgctrl.hxx 2016-03-29 15:41:04.000000000 +0000 @@ -23,7 +23,7 @@ #include #include #include -#include +#include #include #include diff -Nru libreoffice-5.1.1~rc2/include/svx/galctrl.hxx libreoffice-5.1.2~rc2/include/svx/galctrl.hxx --- libreoffice-5.1.1~rc2/include/svx/galctrl.hxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/include/svx/galctrl.hxx 2016-03-29 15:41:04.000000000 +0000 @@ -21,7 +21,7 @@ #define INCLUDED_SVX_GALCTRL_HXX #include -#include +#include #include #include #include diff -Nru libreoffice-5.1.1~rc2/include/svx/graphctl.hxx libreoffice-5.1.2~rc2/include/svx/graphctl.hxx --- libreoffice-5.1.1~rc2/include/svx/graphctl.hxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/include/svx/graphctl.hxx 2016-03-29 15:41:04.000000000 +0000 @@ -20,7 +20,7 @@ #define INCLUDED_SVX_GRAPHCTL_HXX #include -#include +#include #include #include diff -Nru libreoffice-5.1.1~rc2/include/svx/graphichelper.hxx libreoffice-5.1.2~rc2/include/svx/graphichelper.hxx --- libreoffice-5.1.1~rc2/include/svx/graphichelper.hxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/include/svx/graphichelper.hxx 2016-03-29 15:41:04.000000000 +0000 @@ -20,7 +20,7 @@ #ifndef INCLUDED_SVX_GRAPHICHELPER_HXX #define INCLUDED_SVX_GRAPHICHELPER_HXX -#include +#include #include #include diff -Nru libreoffice-5.1.1~rc2/include/svx/svdograf.hxx libreoffice-5.1.2~rc2/include/svx/svdograf.hxx --- libreoffice-5.1.1~rc2/include/svx/svdograf.hxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/include/svx/svdograf.hxx 2016-03-29 15:41:04.000000000 +0000 @@ -21,7 +21,7 @@ #define INCLUDED_SVX_SVDOGRAF_HXX #include -#include +#include #include #include #include diff -Nru libreoffice-5.1.1~rc2/include/svx/svxgrahicitem.hxx libreoffice-5.1.2~rc2/include/svx/svxgrahicitem.hxx --- libreoffice-5.1.1~rc2/include/svx/svxgrahicitem.hxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/include/svx/svxgrahicitem.hxx 2016-03-29 15:41:04.000000000 +0000 @@ -23,7 +23,7 @@ #include #include -#include +#include class SVX_DLLPUBLIC SvxGraphicItem: public SfxPoolItem { diff -Nru libreoffice-5.1.1~rc2/include/svx/xoutbmp.hxx libreoffice-5.1.2~rc2/include/svx/xoutbmp.hxx --- libreoffice-5.1.1~rc2/include/svx/xoutbmp.hxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/include/svx/xoutbmp.hxx 2016-03-29 15:41:04.000000000 +0000 @@ -20,7 +20,7 @@ #ifndef INCLUDED_SVX_XOUTBMP_HXX #define INCLUDED_SVX_XOUTBMP_HXX -#include +#include #include #include #include diff -Nru libreoffice-5.1.1~rc2/include/vcl/graph.hxx libreoffice-5.1.2~rc2/include/vcl/graph.hxx --- libreoffice-5.1.1~rc2/include/vcl/graph.hxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/include/vcl/graph.hxx 1970-01-01 00:00:00.000000000 +0000 @@ -1,198 +0,0 @@ -/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ -/* - * This file is part of the LibreOffice project. - * - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at http://mozilla.org/MPL/2.0/. - * - * This file incorporates work covered by the following license notice: - * - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed - * with this work for additional information regarding copyright - * ownership. The ASF licenses this file to you under the Apache - * License, Version 2.0 (the "License"); you may not use this file - * except in compliance with the License. You may obtain a copy of - * the License at http://www.apache.org/licenses/LICENSE-2.0 . - */ - -#ifndef INCLUDED_VCL_GRAPH_HXX -#define INCLUDED_VCL_GRAPH_HXX - -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include - -namespace com { namespace sun { namespace star { namespace graphic { class XGraphic;} } } } - - -// - Graphic - - - -class ImpGraphic; -class OutputDevice; -namespace vcl { class Font; } -class GfxLink; - -class VCL_DLLPUBLIC GraphicConversionParameters -{ -private: - Size maSizePixel; // default is (0,0) - - // bitfield - bool mbUnlimitedSize : 1; // default is false - bool mbAntiAliase : 1; // default is false - bool mbSnapHorVerLines : 1; // default is false - bool mbScaleHighQuality : 1; // default is false - -public: - GraphicConversionParameters( - const Size& rSizePixel = Size(), - bool bUnlimitedSize = false, - bool bAntiAliase = false, - bool bSnapHorVerLines = false, - bool bScaleHighQuality = false) - : maSizePixel(rSizePixel), - mbUnlimitedSize(bUnlimitedSize), - mbAntiAliase(bAntiAliase), - mbSnapHorVerLines(bSnapHorVerLines), - mbScaleHighQuality(bScaleHighQuality) - { - } - - // data read access - const Size getSizePixel() const { return maSizePixel; } - bool getUnlimitedSize() const { return mbUnlimitedSize; } - bool getAntiAliase() const { return mbAntiAliase; } - bool getSnapHorVerLines() const { return mbSnapHorVerLines; } - bool getScaleHighQuality() const { return mbScaleHighQuality; } -}; - -class VCL_DLLPUBLIC Graphic : public SvDataCopyStream -{ -private: - - ImpGraphic* mpImpGraphic; - -public: - - SAL_DLLPRIVATE void ImplTestRefCount(); - SAL_DLLPRIVATE ImpGraphic* ImplGetImpGraphic() const { return mpImpGraphic; } - -public: - Graphic(); - Graphic( const Graphic& rGraphic ); - Graphic( const Bitmap& rBmp ); - Graphic( const BitmapEx& rBmpEx ); - Graphic( const SvgDataPtr& rSvgDataPtr ); - Graphic( const Animation& rAnimation ); - Graphic( const GDIMetaFile& rMtf ); - Graphic( const css::uno::Reference< css::graphic::XGraphic >& rxGraphic ); - virtual ~Graphic(); - - Graphic& operator=( const Graphic& rGraphic ); - bool operator==( const Graphic& rGraphic ) const; - bool operator!=( const Graphic& rGraphic ) const; - bool operator!() const; - - void Clear(); - - GraphicType GetType() const; - void SetDefaultType(); - bool IsSupportedGraphic() const; - - bool IsTransparent() const; - bool IsAlpha() const; - bool IsAnimated() const; - bool IsEPS() const; - - // #i102089# Access of Bitmap potentially will have to rasterconvert the Graphic - // if it is a MetaFile. To be able to control this conversion it is necessary to - // allow giving parameters which control AntiAliasing and LineSnapping of the - // MetaFile when played. Defaults will use a no-AAed, not snapped conversion as - // before. - Bitmap GetBitmap(const GraphicConversionParameters& rParameters = GraphicConversionParameters()) const; - BitmapEx GetBitmapEx(const GraphicConversionParameters& rParameters = GraphicConversionParameters()) const; - - Animation GetAnimation() const; - const GDIMetaFile& GetGDIMetaFile() const; - - css::uno::Reference< css::graphic::XGraphic > GetXGraphic() const; - - Size GetPrefSize() const; - void SetPrefSize( const Size& rPrefSize ); - - MapMode GetPrefMapMode() const; - void SetPrefMapMode( const MapMode& rPrefMapMode ); - - Size GetSizePixel( const OutputDevice* pRefDevice = nullptr ) const; - - sal_uLong GetSizeBytes() const; - - void Draw( OutputDevice* pOutDev, - const Point& rDestPt ) const; - void Draw( OutputDevice* pOutDev, - const Point& rDestPt, - const Size& rDestSize ) const; - static void DrawEx( OutputDevice* pOutDev, const OUString& rText, - vcl::Font& rFont, const BitmapEx& rBitmap, - const Point& rDestPt, const Size& rDestSize ); - - void StartAnimation( OutputDevice* pOutDev, - const Point& rDestPt, - const Size& rDestSize, - long nExtraData = 0L, - OutputDevice* pFirstFrameOutDev = nullptr ); - void StopAnimation( OutputDevice* pOutputDevice = nullptr, - long nExtraData = 0L ); - - void SetAnimationNotifyHdl( const Link& rLink ); - Link GetAnimationNotifyHdl() const; - - sal_uLong GetAnimationLoopCount() const; - - BitmapChecksum GetChecksum() const; - -public: - - GraphicReader* GetContext(); - void SetContext( GraphicReader* pReader ); - -private: - friend class GraphicObject; - bool SwapOut(); - void SwapOutAsLink(); - bool SwapOut( SvStream* pOStm ); - bool SwapIn(); - bool SwapIn( SvStream* pIStm ); - bool IsSwapOut() const; - -public: - void SetLink( const GfxLink& ); - GfxLink GetLink() const; - bool IsLink() const; - - bool ExportNative( SvStream& rOStream ) const; - - friend VCL_DLLPUBLIC SvStream& WriteGraphic( SvStream& rOStream, const Graphic& rGraphic ); - friend VCL_DLLPUBLIC SvStream& ReadGraphic( SvStream& rIStream, Graphic& rGraphic ); - -public: - - const SvgDataPtr& getSvgData() const; - - static css::uno::Sequence getUnoTunnelId(); -}; - -#endif // INCLUDED_VCL_GRAPH_HXX - -/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff -Nru libreoffice-5.1.1~rc2/include/vcl/graphicfilter.hxx libreoffice-5.1.2~rc2/include/vcl/graphicfilter.hxx --- libreoffice-5.1.1~rc2/include/vcl/graphicfilter.hxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/include/vcl/graphicfilter.hxx 2016-03-29 15:41:04.000000000 +0000 @@ -24,7 +24,7 @@ #include #include #include -#include +#include #include #include diff -Nru libreoffice-5.1.1~rc2/include/vcl/graphic.hxx libreoffice-5.1.2~rc2/include/vcl/graphic.hxx --- libreoffice-5.1.1~rc2/include/vcl/graphic.hxx 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-5.1.2~rc2/include/vcl/graphic.hxx 2016-03-29 15:41:04.000000000 +0000 @@ -0,0 +1,201 @@ +/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ +/* + * This file is part of the LibreOffice project. + * + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. + * + * This file incorporates work covered by the following license notice: + * + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed + * with this work for additional information regarding copyright + * ownership. The ASF licenses this file to you under the Apache + * License, Version 2.0 (the "License"); you may not use this file + * except in compliance with the License. You may obtain a copy of + * the License at http://www.apache.org/licenses/LICENSE-2.0 . + */ + +#ifndef INCLUDED_VCL_GRAPH_HXX +#define INCLUDED_VCL_GRAPH_HXX + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +namespace com { namespace sun { namespace star { namespace graphic { class XGraphic;} } } } + + +// - Graphic - + + +class ImpGraphic; +class OutputDevice; +namespace vcl { class Font; } +class GfxLink; + +class VCL_DLLPUBLIC GraphicConversionParameters +{ +private: + Size maSizePixel; // default is (0,0) + + // bitfield + bool mbUnlimitedSize : 1; // default is false + bool mbAntiAliase : 1; // default is false + bool mbSnapHorVerLines : 1; // default is false + bool mbScaleHighQuality : 1; // default is false + +public: + GraphicConversionParameters( + const Size& rSizePixel = Size(), + bool bUnlimitedSize = false, + bool bAntiAliase = false, + bool bSnapHorVerLines = false, + bool bScaleHighQuality = false) + : maSizePixel(rSizePixel), + mbUnlimitedSize(bUnlimitedSize), + mbAntiAliase(bAntiAliase), + mbSnapHorVerLines(bSnapHorVerLines), + mbScaleHighQuality(bScaleHighQuality) + { + } + + // data read access + const Size getSizePixel() const { return maSizePixel; } + bool getUnlimitedSize() const { return mbUnlimitedSize; } + bool getAntiAliase() const { return mbAntiAliase; } + bool getSnapHorVerLines() const { return mbSnapHorVerLines; } + bool getScaleHighQuality() const { return mbScaleHighQuality; } +}; + +class VCL_DLLPUBLIC Graphic : public SvDataCopyStream +{ +private: + + ImpGraphic* mpImpGraphic; + +public: + + SAL_DLLPRIVATE void ImplTestRefCount(); + SAL_DLLPRIVATE ImpGraphic* ImplGetImpGraphic() const { return mpImpGraphic; } + +public: + Graphic(); + Graphic( const Graphic& rGraphic ); + Graphic( const Bitmap& rBmp ); + Graphic( const BitmapEx& rBmpEx ); + Graphic( const SvgDataPtr& rSvgDataPtr ); + Graphic( const Animation& rAnimation ); + Graphic( const GDIMetaFile& rMtf ); + Graphic( const css::uno::Reference< css::graphic::XGraphic >& rxGraphic ); + virtual ~Graphic(); + + Graphic& operator=( const Graphic& rGraphic ); + bool operator==( const Graphic& rGraphic ) const; + bool operator!=( const Graphic& rGraphic ) const; + bool operator!() const; + + void Clear(); + + GraphicType GetType() const; + void SetDefaultType(); + bool IsSupportedGraphic() const; + + bool IsTransparent() const; + bool IsAlpha() const; + bool IsAnimated() const; + bool IsEPS() const; + + // #i102089# Access of Bitmap potentially will have to rasterconvert the Graphic + // if it is a MetaFile. To be able to control this conversion it is necessary to + // allow giving parameters which control AntiAliasing and LineSnapping of the + // MetaFile when played. Defaults will use a no-AAed, not snapped conversion as + // before. + Bitmap GetBitmap(const GraphicConversionParameters& rParameters = GraphicConversionParameters()) const; + BitmapEx GetBitmapEx(const GraphicConversionParameters& rParameters = GraphicConversionParameters()) const; + + Animation GetAnimation() const; + const GDIMetaFile& GetGDIMetaFile() const; + + css::uno::Reference< css::graphic::XGraphic > GetXGraphic() const; + + Size GetPrefSize() const; + void SetPrefSize( const Size& rPrefSize ); + + MapMode GetPrefMapMode() const; + void SetPrefMapMode( const MapMode& rPrefMapMode ); + + basegfx::B2DSize GetPPI() const; + + Size GetSizePixel( const OutputDevice* pRefDevice = nullptr ) const; + + sal_uLong GetSizeBytes() const; + + void Draw( OutputDevice* pOutDev, + const Point& rDestPt ) const; + void Draw( OutputDevice* pOutDev, + const Point& rDestPt, + const Size& rDestSize ) const; + static void DrawEx( OutputDevice* pOutDev, const OUString& rText, + vcl::Font& rFont, const BitmapEx& rBitmap, + const Point& rDestPt, const Size& rDestSize ); + + void StartAnimation( OutputDevice* pOutDev, + const Point& rDestPt, + const Size& rDestSize, + long nExtraData = 0L, + OutputDevice* pFirstFrameOutDev = nullptr ); + void StopAnimation( OutputDevice* pOutputDevice = nullptr, + long nExtraData = 0L ); + + void SetAnimationNotifyHdl( const Link& rLink ); + Link GetAnimationNotifyHdl() const; + + sal_uLong GetAnimationLoopCount() const; + + BitmapChecksum GetChecksum() const; + +public: + + GraphicReader* GetContext(); + void SetContext( GraphicReader* pReader ); + +private: + friend class GraphicObject; + bool SwapOut(); + void SwapOutAsLink(); + bool SwapOut( SvStream* pOStm ); + bool SwapIn(); + bool SwapIn( SvStream* pIStm ); + bool IsSwapOut() const; + +public: + void SetLink( const GfxLink& ); + GfxLink GetLink() const; + bool IsLink() const; + + bool ExportNative( SvStream& rOStream ) const; + + friend VCL_DLLPUBLIC SvStream& WriteGraphic( SvStream& rOStream, const Graphic& rGraphic ); + friend VCL_DLLPUBLIC SvStream& ReadGraphic( SvStream& rIStream, Graphic& rGraphic ); + +public: + + const SvgDataPtr& getSvgData() const; + + static css::uno::Sequence getUnoTunnelId(); +}; + +#endif // INCLUDED_VCL_GRAPH_HXX + +/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff -Nru libreoffice-5.1.1~rc2/include/vcl/GraphicNativeMetadata.hxx libreoffice-5.1.2~rc2/include/vcl/GraphicNativeMetadata.hxx --- libreoffice-5.1.1~rc2/include/vcl/GraphicNativeMetadata.hxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/include/vcl/GraphicNativeMetadata.hxx 2016-03-29 15:41:04.000000000 +0000 @@ -20,7 +20,7 @@ #ifndef INCLUDED_VCL_GRAPHICNATIVEMETADATA_HXX #define INCLUDED_VCL_GRAPHICNATIVEMETADATA_HXX -#include +#include class VCL_DLLPUBLIC GraphicNativeMetadata { diff -Nru libreoffice-5.1.1~rc2/include/vcl/GraphicNativeTransform.hxx libreoffice-5.1.2~rc2/include/vcl/GraphicNativeTransform.hxx --- libreoffice-5.1.1~rc2/include/vcl/GraphicNativeTransform.hxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/include/vcl/GraphicNativeTransform.hxx 2016-03-29 15:41:04.000000000 +0000 @@ -20,7 +20,7 @@ #ifndef INCLUDED_VCL_GRAPHICNATIVETRANSFORM_HXX #define INCLUDED_VCL_GRAPHICNATIVETRANSFORM_HXX -#include +#include class VCL_DLLPUBLIC GraphicNativeTransform { diff -Nru libreoffice-5.1.1~rc2/include/vcl/graphictools.hxx libreoffice-5.1.2~rc2/include/vcl/graphictools.hxx --- libreoffice-5.1.1~rc2/include/vcl/graphictools.hxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/include/vcl/graphictools.hxx 2016-03-29 15:41:04.000000000 +0000 @@ -25,7 +25,7 @@ #include #include #include -#include +#include #include #include diff -Nru libreoffice-5.1.1~rc2/include/vcl/mapmod.hxx libreoffice-5.1.2~rc2/include/vcl/mapmod.hxx --- libreoffice-5.1.1~rc2/include/vcl/mapmod.hxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/include/vcl/mapmod.hxx 2016-03-29 15:41:04.000000000 +0000 @@ -64,6 +64,9 @@ void SetScaleY( const Fraction& rScaleY ); const Fraction& GetScaleY() const; + /// Gets the multiplier, which is relative to 1/100 mm units + double GetUnitMultiplier() const; + MapMode& operator=( const MapMode& rMapMode ); bool operator==( const MapMode& rMapMode ) const; bool operator!=( const MapMode& rMapMode ) const diff -Nru libreoffice-5.1.1~rc2/include/vcl/metaact.hxx libreoffice-5.1.2~rc2/include/vcl/metaact.hxx --- libreoffice-5.1.1~rc2/include/vcl/metaact.hxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/include/vcl/metaact.hxx 2016-03-29 15:41:04.000000000 +0000 @@ -29,7 +29,7 @@ #include #include #include -#include +#include #include #include #include diff -Nru libreoffice-5.1.1~rc2/include/vcl/pdfextoutdevdata.hxx libreoffice-5.1.2~rc2/include/vcl/pdfextoutdevdata.hxx --- libreoffice-5.1.1~rc2/include/vcl/pdfextoutdevdata.hxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/include/vcl/pdfextoutdevdata.hxx 2016-03-29 15:41:04.000000000 +0000 @@ -146,6 +146,8 @@ std::vector< PDFExtOutDevBookmarkEntry >& GetBookmarks() { return maBookmarks;} + Graphic GetCurrentGraphic() const; + /** Start a new group of render output Use this method to group render output. diff -Nru libreoffice-5.1.1~rc2/include/vcl/salctype.hxx libreoffice-5.1.2~rc2/include/vcl/salctype.hxx --- libreoffice-5.1.1~rc2/include/vcl/salctype.hxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/include/vcl/salctype.hxx 2016-03-29 15:41:04.000000000 +0000 @@ -22,7 +22,7 @@ #include -#include +#include enum class ConvertDataFormat { diff -Nru libreoffice-5.1.1~rc2/include/vcl/salnativewidgets.hxx libreoffice-5.1.2~rc2/include/vcl/salnativewidgets.hxx --- libreoffice-5.1.1~rc2/include/vcl/salnativewidgets.hxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/include/vcl/salnativewidgets.hxx 2016-03-29 15:41:04.000000000 +0000 @@ -288,6 +288,12 @@ case CTRL_RADIOBUTTON: case CTRL_LISTNODE: case CTRL_SLIDER: + // FIXME: these guys have complex state hidden in ImplControlValue + // structs which affects rendering, needs to be a and needs to be + // part of the key to our cache. + case CTRL_SPINBOX: + case CTRL_SPINBUTTONS: + case CTRL_TAB_ITEM: return false; case CTRL_MENUBAR: diff -Nru libreoffice-5.1.1~rc2/include/vcl/spin.h libreoffice-5.1.2~rc2/include/vcl/spin.h --- libreoffice-5.1.1~rc2/include/vcl/spin.h 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/include/vcl/spin.h 2016-03-29 15:41:04.000000000 +0000 @@ -24,11 +24,19 @@ class Rectangle; +// Draw Spinners as found in a SpinButton. Some themes like gtk3 will draw +- elements here, +// so these are only suitable in the context of SpinButtons void ImplDrawSpinButton(vcl::RenderContext& rRenderContext, vcl::Window* pWindow, const Rectangle& rUpperRect, const Rectangle& rLowerRect, bool bUpperIn, bool bLowerIn, bool bUpperEnabled = true, bool bLowerEnabled = true, bool bHorz = false, bool bMirrorHorz = false); +// Draw Up/Down buttons suitable for use in any context +void ImplDrawUpDownButtons(vcl::RenderContext& rRenderContext, + const Rectangle& rUpperRect, const Rectangle& rLowerRect, + bool bUpperIn, bool bLowerIn, bool bUpperEnabled = true, bool bLowerEnabled = true, + bool bHorz = false, bool bMirrorHorz = false); + #endif // INCLUDED_VCL_SPIN_H /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff -Nru libreoffice-5.1.1~rc2/include/vcl/svapp.hxx libreoffice-5.1.2~rc2/include/vcl/svapp.hxx --- libreoffice-5.1.1~rc2/include/vcl/svapp.hxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/include/vcl/svapp.hxx 2016-03-29 15:41:04.000000000 +0000 @@ -982,6 +982,12 @@ */ static OUString GetDisplayName(); + /** Get the toolkit's name. e.g. gtk3 + + @returns The toolkit name. + */ + static OUString GetToolkitName(); + /** Get the number of screens available for the display. @returns The number of screens available. @@ -1649,13 +1655,6 @@ PostUserEvent( Link() ); } -namespace vcl -{ - -VCL_DLLPUBLIC bool IsWindowSystemAvailable(); - -} - #endif // _APP_HXX /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff -Nru libreoffice-5.1.1~rc2/include/vcl/sysdata.hxx libreoffice-5.1.2~rc2/include/vcl/sysdata.hxx --- libreoffice-5.1.1~rc2/include/vcl/sysdata.hxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/include/vcl/sysdata.hxx 2016-03-29 15:41:04.000000000 +0000 @@ -72,6 +72,7 @@ void* pAppContext; // the application context in use long aShellWindow; // the window of the frame's shell void* pShellWidget; // the frame's shell widget + const char* pToolkit; // the toolkit in use (gtk2 vs gtk3) #endif SystemEnvData() @@ -95,6 +96,7 @@ , pAppContext(nullptr) , aShellWindow(0) , pShellWidget(nullptr) + , pToolkit(nullptr) #endif { } diff -Nru libreoffice-5.1.1~rc2/include/vcl/toolbox.hxx libreoffice-5.1.2~rc2/include/vcl/toolbox.hxx --- libreoffice-5.1.1~rc2/include/vcl/toolbox.hxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/include/vcl/toolbox.hxx 2016-03-29 15:41:04.000000000 +0000 @@ -155,7 +155,8 @@ using Window::ImplInit; private: SAL_DLLPRIVATE void InvalidateItem(sal_uInt16 nPosition); - SAL_DLLPRIVATE void InvalidateSpin(bool bUpperIn, bool bLowerIn); + SAL_DLLPRIVATE void InvalidateSpin(bool bInvalidateUpper = true, + bool bInvalidateLower = true); SAL_DLLPRIVATE void InvalidateMenuButton(); SAL_DLLPRIVATE void ImplInit( vcl::Window* pParent, WinBits nStyle ); diff -Nru libreoffice-5.1.1~rc2/instsetoo_native/CustomTarget_setup.mk libreoffice-5.1.2~rc2/instsetoo_native/CustomTarget_setup.mk --- libreoffice-5.1.1~rc2/instsetoo_native/CustomTarget_setup.mk 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/instsetoo_native/CustomTarget_setup.mk 2016-03-29 15:41:04.000000000 +0000 @@ -143,7 +143,7 @@ && echo 'ReferenceOOoMajorMinor=4.1' \ && echo 'UpdateID=$(PRODUCTNAME)_$(LIBO_VERSION_MAJOR)_en-US' \ && echo 'UpdateURL=$(if $(ENABLE_ONLINE_UPDATE),http://update.libreoffice.org/check.php$(if $(filter-out WNT,$(OS)),?pkgfmt=$(PKGFORMAT)))' \ - && echo 'UpdateUserAgent= ($${buildid}; $${_OS}; $${_ARCH}; BundledLanguages=$${AllLanguages})' \ + && echo 'UpdateUserAgent= ($${buildid}; $${_OS}; $${_ARCH}; )' \ && echo 'Vendor=$(OOO_VENDOR)' \ ) > $@ diff -Nru libreoffice-5.1.1~rc2/libreofficekit/source/gtk/lokdocview.cxx libreoffice-5.1.2~rc2/libreofficekit/source/gtk/lokdocview.cxx --- libreoffice-5.1.1~rc2/libreofficekit/source/gtk/lokdocview.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/libreofficekit/source/gtk/lokdocview.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -2508,6 +2508,7 @@ return GTK_WIDGET (g_initable_new (LOK_TYPE_DOC_VIEW, cancellable, error, "lopath", pPath == nullptr ? LOK_PATH : pPath, "halign", GTK_ALIGN_CENTER, + "valign", GTK_ALIGN_CENTER, nullptr)); } @@ -2519,6 +2520,7 @@ "lopointer", pOldPriv->m_pOffice, "docpointer", pOldPriv->m_pDocument, "halign", GTK_ALIGN_CENTER, + "valign", GTK_ALIGN_CENTER, nullptr)); // No documentLoad(), just a createView(). Binary files /tmp/tmpjVu_CV/d8O1VeJAAp/libreoffice-5.1.1~rc2/lotuswordpro/qa/cppunit/data/fail/loop-2.lwp and /tmp/tmpjVu_CV/VUSojbs3iI/libreoffice-5.1.2~rc2/lotuswordpro/qa/cppunit/data/fail/loop-2.lwp differ Binary files /tmp/tmpjVu_CV/d8O1VeJAAp/libreoffice-5.1.1~rc2/lotuswordpro/qa/cppunit/data/fail/recurse-1.lwp and /tmp/tmpjVu_CV/VUSojbs3iI/libreoffice-5.1.2~rc2/lotuswordpro/qa/cppunit/data/fail/recurse-1.lwp differ Binary files /tmp/tmpjVu_CV/d8O1VeJAAp/libreoffice-5.1.1~rc2/lotuswordpro/qa/cppunit/data/fail/recurse-2.lwp and /tmp/tmpjVu_CV/VUSojbs3iI/libreoffice-5.1.2~rc2/lotuswordpro/qa/cppunit/data/fail/recurse-2.lwp differ Binary files /tmp/tmpjVu_CV/d8O1VeJAAp/libreoffice-5.1.1~rc2/lotuswordpro/qa/cppunit/data/pass/loop-1.lwp and /tmp/tmpjVu_CV/VUSojbs3iI/libreoffice-5.1.2~rc2/lotuswordpro/qa/cppunit/data/pass/loop-1.lwp differ diff -Nru libreoffice-5.1.1~rc2/lotuswordpro/source/filter/lwpdivinfo.cxx libreoffice-5.1.2~rc2/lotuswordpro/source/filter/lwpdivinfo.cxx --- libreoffice-5.1.1~rc2/lotuswordpro/source/filter/lwpdivinfo.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/lotuswordpro/source/filter/lwpdivinfo.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -108,15 +108,11 @@ m_FillerPageTextID.ReadIndexed(m_pObjStrm); // read external file object stuff -#if !defined(NDEBUG) - sal_uInt16 type = -#endif - m_pObjStrm->QuickReaduInt16(); + sal_uInt16 type = m_pObjStrm->QuickReaduInt16(); //cpExternalFile = LNULL; - assert(type==0); + SAL_WARN_IF(type != 0, "lwp", "should be 0"); m_pObjStrm->SkipExtra(); - } void LwpDivInfo::SkipFront() diff -Nru libreoffice-5.1.1~rc2/lotuswordpro/source/filter/lwpfont.cxx libreoffice-5.1.2~rc2/lotuswordpro/source/filter/lwpfont.cxx --- libreoffice-5.1.1~rc2/lotuswordpro/source/filter/lwpfont.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/lotuswordpro/source/filter/lwpfont.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -262,7 +262,7 @@ OUString LwpFontTable::GetFaceName(sal_uInt16 index) //index: start from 1 { - assert(index <= m_nCount && index > 0); + SAL_WARN_IF(index > m_nCount || index <= 0, "lwp", "bad font index"); return (index <= m_nCount && index > 0) ? m_pFontEntries[index-1].GetFaceName() : OUString(); } diff -Nru libreoffice-5.1.1~rc2/lotuswordpro/source/filter/lwpfootnote.cxx libreoffice-5.1.2~rc2/lotuswordpro/source/filter/lwpfootnote.cxx --- libreoffice-5.1.1~rc2/lotuswordpro/source/filter/lwpfootnote.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/lotuswordpro/source/filter/lwpfootnote.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -187,7 +187,7 @@ LwpContent* pContent = FindFootnoteContent(); if(pContent) { - pContent->XFConvert(pCont); + pContent->DoXFConvert(pCont); } } diff -Nru libreoffice-5.1.1~rc2/lotuswordpro/source/filter/lwpframelayout.cxx libreoffice-5.1.2~rc2/lotuswordpro/source/filter/lwpframelayout.cxx --- libreoffice-5.1.1~rc2/lotuswordpro/source/filter/lwpframelayout.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/lotuswordpro/source/filter/lwpframelayout.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -835,7 +835,7 @@ rtl::Reference content = m_Content.obj(); if (content.is()) { - content->XFConvert(pXFFrame); + content->DoXFConvert(pXFFrame); //set frame size according to ole size ApplyGraphicSize(pXFFrame); } @@ -1100,9 +1100,10 @@ //add child frame into group LwpVirtualLayout* pLayout = dynamic_cast(GetChildHead().obj().get()); - while(pLayout) + + while (pLayout && pLayout != this) { - pLayout->XFConvert(pXFFrame); + pLayout->DoXFConvert(pXFFrame); pLayout = dynamic_cast(pLayout->GetNext().obj().get()); } diff -Nru libreoffice-5.1.1~rc2/lotuswordpro/source/filter/lwpfribframe.cxx libreoffice-5.1.2~rc2/lotuswordpro/source/filter/lwpfribframe.cxx --- libreoffice-5.1.1~rc2/lotuswordpro/source/filter/lwpfribframe.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/lotuswordpro/source/filter/lwpfribframe.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -180,7 +180,7 @@ } } - pLayout->XFConvert(pXFContentContainer); + pLayout->DoXFConvert(pXFContentContainer); if(m_bRevisionFlag) { diff -Nru libreoffice-5.1.1~rc2/lotuswordpro/source/filter/lwplayout.cxx libreoffice-5.1.2~rc2/lotuswordpro/source/filter/lwplayout.cxx --- libreoffice-5.1.1~rc2/lotuswordpro/source/filter/lwplayout.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/lotuswordpro/source/filter/lwplayout.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -78,6 +78,7 @@ , m_bGettingHasProtection(false) , m_bGettingIsProtected(false) , m_bGettingMarginsValue(false) + , m_bGettingExtMarginsValue(false) , m_nAttributes(0) , m_nAttributes2(0) , m_nAttributes3(0) @@ -750,7 +751,7 @@ * @param: * @return: */ -double LwpMiddleLayout::GetExtMarginsValue(const sal_uInt8 &nWhichSide) +double LwpMiddleLayout::ExtMarginsValue(const sal_uInt8 &nWhichSide) { double fValue = 0; if(m_nOverrideFlag & OVER_MARGINS) @@ -768,7 +769,7 @@ fValue = pStyle->GetExtMarginsValue(nWhichSide); return fValue; } - return LwpVirtualLayout::GetExtMarginsValue(nWhichSide); + return LwpVirtualLayout::ExtMarginsValue(nWhichSide); } /** * @descr: Get the LwpBorderStuff object according to m_LayBorderStuff id. diff -Nru libreoffice-5.1.1~rc2/lotuswordpro/source/filter/lwplayout.hxx libreoffice-5.1.2~rc2/lotuswordpro/source/filter/lwplayout.hxx --- libreoffice-5.1.1~rc2/lotuswordpro/source/filter/lwplayout.hxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/lotuswordpro/source/filter/lwplayout.hxx 2016-03-29 15:41:04.000000000 +0000 @@ -99,7 +99,6 @@ inline virtual sal_uInt16 GetNumCols(){return 1;} virtual double GetColWidth(sal_uInt16 nIndex); virtual double GetColGap(sal_uInt16 nIndex); - virtual double GetExtMarginsValue(const sal_uInt8& /*nWhichSide*/){return 0;} virtual bool IsAutoGrow(){ return false;} virtual bool IsAutoGrowUp(){ return false;} virtual bool IsAutoGrowDown(){ return false;} @@ -154,6 +153,15 @@ m_bGettingMarginsValue = false; return fRet; } + double GetExtMarginsValue(const sal_uInt8& nWhichSide) + { + if (m_bGettingExtMarginsValue) + throw std::runtime_error("recursion in layout"); + m_bGettingExtMarginsValue = true; + auto fRet = ExtMarginsValue(nWhichSide); + m_bGettingExtMarginsValue = false; + return fRet; + } OUString GetStyleName(){ return m_StyleName;} bool IsComplex(); virtual bool IsAnchorPage(){ return false;} @@ -207,6 +215,7 @@ virtual bool HonorProtection(); virtual bool IsProtected(); virtual double MarginsValue(const sal_uInt8& /*nWhichSide*/){return 0;} + virtual double ExtMarginsValue(const sal_uInt8& /*nWhichSide*/){return 0;} virtual bool MarginsSameAsParent(); protected: bool m_bGettingHonorProtection; @@ -214,6 +223,7 @@ bool m_bGettingHasProtection; bool m_bGettingIsProtected; bool m_bGettingMarginsValue; + bool m_bGettingExtMarginsValue; sal_uInt32 m_nAttributes; sal_uInt32 m_nAttributes2; sal_uInt32 m_nAttributes3; @@ -323,8 +333,6 @@ public: LwpMiddleLayout( LwpObjectHeader &objHdr, LwpSvStream* pStrm ); virtual ~LwpMiddleLayout(); - virtual double MarginsValue(const sal_uInt8& nWhichSide) override; - virtual double GetExtMarginsValue(const sal_uInt8& nWhichSide) override; LwpLayoutGeometry* GetGeometry() { if (m_bGettingGeometry) @@ -379,6 +387,8 @@ protected: void Read() override; virtual bool MarginsSameAsParent() override; + virtual double MarginsValue(const sal_uInt8& nWhichSide) override; + virtual double ExtMarginsValue(const sal_uInt8& nWhichSide) override; private: LwpObjectID m_BasedOnStyle; LwpLayoutGeometry* Geometry(); diff -Nru libreoffice-5.1.1~rc2/lotuswordpro/source/filter/lwpnotes.cxx libreoffice-5.1.2~rc2/lotuswordpro/source/filter/lwpnotes.cxx --- libreoffice-5.1.1~rc2/lotuswordpro/source/filter/lwpnotes.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/lotuswordpro/source/filter/lwpnotes.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -181,7 +181,7 @@ LwpVirtualLayout* pTextLayout = GetTextLayout(); if(pTextLayout) { - pTextLayout->XFConvert(pCont); + pTextLayout->DoXFConvert(pCont); } } @@ -290,7 +290,7 @@ rtl::Reference pContent = m_Content.obj(); if(pContent.is()) { - pContent->XFConvert(pCont); + pContent->DoXFConvert(pCont); } } diff -Nru libreoffice-5.1.1~rc2/lotuswordpro/source/filter/lwpobj.cxx libreoffice-5.1.2~rc2/lotuswordpro/source/filter/lwpobj.cxx --- libreoffice-5.1.1~rc2/lotuswordpro/source/filter/lwpobj.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/lotuswordpro/source/filter/lwpobj.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -62,6 +62,7 @@ LwpObject::LwpObject(LwpObjectHeader objHdr, LwpSvStream* pStrm) : m_ObjHdr(objHdr), m_pObjStrm(nullptr), m_pFoundry(nullptr) , m_pStrm(pStrm), m_bRegisteringStyle(false), m_bParsingStyle(false) + , m_bConvertingContent(false) { m_pObjStrm = new LwpObjectStream(pStrm, m_ObjHdr.IsCompressed(), static_cast(m_ObjHdr.GetSize()) ); diff -Nru libreoffice-5.1.1~rc2/lotuswordpro/source/filter/lwpobj.hxx libreoffice-5.1.2~rc2/lotuswordpro/source/filter/lwpobj.hxx --- libreoffice-5.1.1~rc2/lotuswordpro/source/filter/lwpobj.hxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/lotuswordpro/source/filter/lwpobj.hxx 2016-03-29 15:41:04.000000000 +0000 @@ -92,10 +92,12 @@ LwpSvStream* m_pStrm; bool m_bRegisteringStyle; bool m_bParsingStyle; + bool m_bConvertingContent; protected: virtual void Read(); virtual void RegisterStyle(); virtual void Parse(IXFStream* pOutputStream); + virtual void XFConvert(XFContentContainer* pCont); public: void QuickRead(); //calls RegisterStyle but bails if DoRegisterStyle is called @@ -118,8 +120,16 @@ Parse(pOutputStream); m_bParsingStyle = false; } - - virtual void XFConvert(XFContentContainer* pCont); + //calls XFConvert but bails if DoXFConvert is called + //on the same object recursively + void DoXFConvert(XFContentContainer* pCont) + { + if (m_bConvertingContent) + throw std::runtime_error("recursion in parsing"); + m_bConvertingContent = true; + XFConvert(pCont); + m_bConvertingContent = false; + } LwpFoundry* GetFoundry(){return m_pFoundry;} void SetFoundry(LwpFoundry* pFoundry){m_pFoundry = pFoundry;} diff -Nru libreoffice-5.1.1~rc2/lotuswordpro/source/filter/lwppagelayout.cxx libreoffice-5.1.2~rc2/lotuswordpro/source/filter/lwppagelayout.cxx --- libreoffice-5.1.1~rc2/lotuswordpro/source/filter/lwppagelayout.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/lotuswordpro/source/filter/lwppagelayout.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -889,7 +889,7 @@ RegisterChildStyle(); //End pChangeMgr->SetHeadFootChange(pHeader); - pStory->XFConvert(pHeader); + pStory->DoXFConvert(pHeader); pChangeMgr->SetHeadFootFribMap(false); } @@ -1042,7 +1042,7 @@ pChangeMgr->SetHeadFootChange(pFooter); - pStory->XFConvert(pFooter); + pStory->DoXFConvert(pFooter); pChangeMgr->SetHeadFootFribMap(false); } diff -Nru libreoffice-5.1.1~rc2/lotuswordpro/source/filter/lwpstory.cxx libreoffice-5.1.2~rc2/lotuswordpro/source/filter/lwpstory.cxx --- libreoffice-5.1.1~rc2/lotuswordpro/source/filter/lwpstory.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/lotuswordpro/source/filter/lwpstory.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -314,7 +314,7 @@ pCont->FindFirstContent(enumXFContentPara)); XFContentContainer* pXFFirtPara = static_cast(first.get()); if(pXFFirtPara) - xFrameLayout->XFConvert(pXFFirtPara); + xFrameLayout->DoXFConvert(pXFFirtPara); } xFrameLayout.set(dynamic_cast(xFrameLayout->GetNext().obj().get())); } @@ -338,7 +338,7 @@ || xFrameLayout->IsSuperTable() || xFrameLayout->IsGroupHead()))) { - xFrameLayout->XFConvert(pCont); + xFrameLayout->DoXFConvert(pCont); } xFrameLayout.set(dynamic_cast(xFrameLayout->GetNext().obj().get())); } @@ -358,7 +358,7 @@ { if (xFrameLayout->IsAnchorFrame()) { - xFrameLayout->XFConvert(pCont); + xFrameLayout->DoXFConvert(pCont); } xFrameLayout.set(dynamic_cast(xFrameLayout->GetNext().obj().get())); } @@ -383,7 +383,7 @@ pCont->FindFirstContent(enumXFContentPara)); XFContentContainer* pXFFirtPara = static_cast(first.get()); if(pXFFirtPara) - xFrameLayout->XFConvert(pXFFirtPara); + xFrameLayout->DoXFConvert(pXFFirtPara); } xFrameLayout.set(dynamic_cast(xFrameLayout->GetNext().obj().get())); } diff -Nru libreoffice-5.1.1~rc2/lotuswordpro/source/filter/lwptablelayout.cxx libreoffice-5.1.2~rc2/lotuswordpro/source/filter/lwptablelayout.cxx --- libreoffice-5.1.1~rc2/lotuswordpro/source/filter/lwptablelayout.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/lotuswordpro/source/filter/lwptablelayout.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -215,13 +215,13 @@ LwpTableLayout* pTableLayout = GetTableLayout(); if(!pTableLayout) { - assert(false); + SAL_WARN("lwp", "missing table layout, early return"); return 0; } LwpTable *pTable = pTableLayout->GetTable(); if(!pTable) { - assert(false); + SAL_WARN("lwp", "missing table, early return"); return 0; } double dDefaultWidth = pTable->GetWidth(); diff -Nru libreoffice-5.1.1~rc2/lotuswordpro/source/filter/lwptblformula.cxx libreoffice-5.1.2~rc2/lotuswordpro/source/filter/lwptblformula.cxx --- libreoffice-5.1.1~rc2/lotuswordpro/source/filter/lwptblformula.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/lotuswordpro/source/filter/lwptblformula.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -342,7 +342,7 @@ } else { - assert(false); + SAL_WARN("lwp", "missing row list"); } } m_pObjStrm->SeekRel(2);//flags, size in file: sal_uInt16 diff -Nru libreoffice-5.1.1~rc2/lotuswordpro/source/filter/xfilter/xfcontentcontainer.cxx libreoffice-5.1.2~rc2/lotuswordpro/source/filter/xfilter/xfcontentcontainer.cxx --- libreoffice-5.1.1~rc2/lotuswordpro/source/filter/xfilter/xfcontentcontainer.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/lotuswordpro/source/filter/xfilter/xfcontentcontainer.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -131,7 +131,7 @@ { XFContent *pContent = it->get(); if( pContent ) - pContent->ToXml(pStrm); + pContent->DoToXml(pStrm); } } diff -Nru libreoffice-5.1.1~rc2/lotuswordpro/source/filter/xfilter/xfcontent.hxx libreoffice-5.1.2~rc2/lotuswordpro/source/filter/xfilter/xfcontent.hxx --- libreoffice-5.1.1~rc2/lotuswordpro/source/filter/xfilter/xfcontent.hxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/lotuswordpro/source/filter/xfilter/xfcontent.hxx 2016-03-29 15:41:04.000000000 +0000 @@ -64,6 +64,7 @@ #include #include +#include #include "xfdefs.hxx" @@ -92,14 +93,28 @@ */ OUString GetStyleName() {return m_strStyleName;} - virtual void ToXml(IXFStream * stream) = 0; + void DoToXml(IXFStream* stream) + { + if (m_bDoingToXml) + throw std::runtime_error("recursion in content"); + m_bDoingToXml = true; + ToXml(stream); + m_bDoingToXml = false; + } protected: - XFContent() {} + XFContent() + : m_bDoingToXml(false) + { + } + + virtual void ToXml(IXFStream* stream) = 0; virtual ~XFContent() {} - OUString m_strStyleName; + OUString m_strStyleName; +private: + bool m_bDoingToXml; }; #endif diff -Nru libreoffice-5.1.1~rc2/lotuswordpro/source/filter/xfilter/xftextspan.cxx libreoffice-5.1.2~rc2/lotuswordpro/source/filter/xfilter/xftextspan.cxx --- libreoffice-5.1.1~rc2/lotuswordpro/source/filter/xfilter/xftextspan.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/lotuswordpro/source/filter/xfilter/xftextspan.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -112,7 +112,7 @@ { XFContent *pContent = it->get(); if( pContent ) - pContent->ToXml(pStrm); + pContent->DoToXml(pStrm); } pStrm->EndElement( "text:span" ); @@ -135,7 +135,7 @@ { XFContent *pContent = it->get(); if( pContent ) - pContent->ToXml(pStrm); + pContent->DoToXml(pStrm); } } void XFTextSpanEnd::ToXml(IXFStream *pStrm) @@ -145,7 +145,7 @@ { XFContent *pContent = it->get(); if( pContent ) - pContent->ToXml(pStrm); + pContent->DoToXml(pStrm); } pStrm->EndElement( "text:span" ); } diff -Nru libreoffice-5.1.1~rc2/offapi/type_reference/offapi.idl libreoffice-5.1.2~rc2/offapi/type_reference/offapi.idl --- libreoffice-5.1.1~rc2/offapi/type_reference/offapi.idl 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/offapi/type_reference/offapi.idl 2016-03-29 15:41:04.000000000 +0000 @@ -3142,6 +3142,7 @@ [property, optional] long SymbolType; [property, optional] string SymbolBitmapURL; [property, optional] long SegmentOffset; + [property, optional] boolean TextWordWrap; }; /** @deprecated */ published struct ChartDataRow { string Name; @@ -11863,6 +11864,8 @@ [property, optional] long RefreshPeriod; [property, optional] boolean FromSelection; [property, optional, readonly] long TokenIndex; + [property, optional] boolean TotalsRow; + [property, optional] boolean ContainsHeader; }; published interface XDatabaseRanges { interface ::com::sun::star::container::XNameAccess; @@ -11970,6 +11973,8 @@ [property, optional] boolean IsAdjustHeightEnabled; [property, optional] boolean IsExecuteLinkEnabled; [property, optional, readonly] ::com::sun::star::awt::XDevice ReferenceDevice; + [property, optional] boolean RecordChanges; + [property, optional, readonly] boolean IsRecordChangesProtected; }; published interface XFunctionAccess { interface ::com::sun::star::uno::XInterface; @@ -14408,12 +14413,21 @@ interface ::com::sun::star::uno::XInterface; ::com::sun::star::container::XNameAccess getTextTables(); }; + }; + module tiledrendering { + interface XTiledRenderable { + interface ::com::sun::star::uno::XInterface; + void paintTile([in] any Parent, [in] long nOutputWidth, [in] long nOutputHeight, [in] long nTilePosX, [in] long nTilePosY, [in] long nTileWidth, [in] long nTileHeight); + }; + }; + module text { published service GenericTextDocument { service ::com::sun::star::document::OfficeDocument; interface ::com::sun::star::lang::XMultiServiceFactory; interface ::com::sun::star::text::XTextDocument; interface ::com::sun::star::util::XSearchable; interface ::com::sun::star::util::XRefreshable; + [optional] interface ::com::sun::star::tiledrendering::XTiledRenderable; [optional] interface ::com::sun::star::text::XFootnotesSupplier; [optional] interface ::com::sun::star::text::XEndnotesSupplier; [optional] interface ::com::sun::star::util::XReplaceable; @@ -15309,6 +15323,7 @@ [property, optional] long VerticalRulerMetric; [property, optional] boolean ShowContentTips; [property, optional] boolean ShowScrollBarTips; + [property, optional] boolean HideWhitespace; }; published constants WritingMode2 { const short CONTEXT = 4; @@ -16928,7 +16943,11 @@ void setDefaultName([in] string aName); void setDisplayDirectory([in] string aDirectory) raises (::com::sun::star::lang::IllegalArgumentException); string getDisplayDirectory(); - sequence< string > getFiles(); + /** @deprecated */ sequence< string > getFiles(); + }; + published interface XFilePicker2 { + interface ::com::sun::star::ui::dialogs::XFilePicker; + sequence< string > getSelectedFiles(); }; published interface XFilePickerListener; published interface XFilePickerNotifier { @@ -16956,10 +16975,6 @@ void setCurrentFilter([in] string aTitle) raises (::com::sun::star::lang::IllegalArgumentException); string getCurrentFilter(); }; - published interface XFilePicker2 { - interface ::com::sun::star::ui::dialogs::XFilePicker; - sequence< string > getSelectedFiles(); - }; published interface XFilePicker3 { interface ::com::sun::star::ui::dialogs::XFilePicker2; interface ::com::sun::star::ui::dialogs::XFilePickerNotifier; @@ -17122,6 +17137,7 @@ const short DATE = 2; const short DATETIME = 6; const short DEFINED = 1; + const short EMPTY = 4096; const short FRACTION = 64; const short LOGICAL = 1024; const short NUMBER = 16; diff -Nru libreoffice-5.1.1~rc2/officecfg/registry/data/org/openoffice/Office/Common.xcu libreoffice-5.1.2~rc2/officecfg/registry/data/org/openoffice/Office/Common.xcu --- libreoffice-5.1.1~rc2/officecfg/registry/data/org/openoffice/Office/Common.xcu 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/officecfg/registry/data/org/openoffice/Office/Common.xcu 2016-03-29 15:41:04.000000000 +0000 @@ -561,8 +561,8 @@ https://www.googleapis.com/drive/v2 - https://apis.live.net/v5.0 - https://api.alfresco.com/cmis/versions/1.0/atom/ + http://<host:port>/alfresco/cmisatom http://<host>/p8cmis/wsdl @@ -580,8 +580,8 @@ Google Drive - OneDrive - Alfresco Cloud + -------------------- Alfresco 4 IBM FileNet P8 diff -Nru libreoffice-5.1.1~rc2/oox/inc/pch/precompiled_oox.hxx libreoffice-5.1.2~rc2/oox/inc/pch/precompiled_oox.hxx --- libreoffice-5.1.1~rc2/oox/inc/pch/precompiled_oox.hxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/oox/inc/pch/precompiled_oox.hxx 2016-03-29 15:41:04.000000000 +0000 @@ -87,7 +87,7 @@ #include #include #include -#include +#include #include #include #include diff -Nru libreoffice-5.1.1~rc2/oox/source/drawingml/shape.cxx libreoffice-5.1.2~rc2/oox/source/drawingml/shape.cxx --- libreoffice-5.1.1~rc2/oox/source/drawingml/shape.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/oox/source/drawingml/shape.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -71,7 +71,7 @@ #include #include #include -#include +#include #include #include diff -Nru libreoffice-5.1.1~rc2/oox/source/export/drawingml.cxx libreoffice-5.1.2~rc2/oox/source/export/drawingml.cxx --- libreoffice-5.1.1~rc2/oox/source/export/drawingml.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/oox/source/export/drawingml.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -71,7 +71,7 @@ #include #include #include -#include +#include #include #include #include diff -Nru libreoffice-5.1.1~rc2/oox/source/export/shapes.cxx libreoffice-5.1.2~rc2/oox/source/export/shapes.cxx --- libreoffice-5.1.1~rc2/oox/source/export/shapes.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/oox/source/export/shapes.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -81,7 +81,7 @@ #include #include #include -#include +#include #include #include #include diff -Nru libreoffice-5.1.1~rc2/pyuno/source/module/uno.py libreoffice-5.1.2~rc2/pyuno/source/module/uno.py --- libreoffice-5.1.1~rc2/pyuno/source/module/uno.py 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/pyuno/source/module/uno.py 2016-03-29 15:41:04.000000000 +0000 @@ -361,7 +361,10 @@ qualifiedName = module + '.' + group for td in tde: if td.Name == qualifiedName: - return _ConstantGroup({c.Name.split('.')[-1]: c.ConstantValue for c in td.Constants}) + return_dict = dict() + for c in td.Constants: + return_dict.update({c.Name.split('.')[-1]: c.ConstantValue}) + return _ConstantGroup(return_dict) else: raise ValueError diff -Nru libreoffice-5.1.1~rc2/readlicense_oo/license/CREDITS.fodt libreoffice-5.1.2~rc2/readlicense_oo/license/CREDITS.fodt --- libreoffice-5.1.1~rc2/readlicense_oo/license/CREDITS.fodt 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/readlicense_oo/license/CREDITS.fodt 2016-03-29 15:41:04.000000000 +0000 @@ -1,12 +1,12 @@ - Credits » LibreOfficeCreditscontributorscodersdevelopersCredits for the LibreOffice development/coding.LibreOffice/5.1.0.3$Linux_X86_64 LibreOffice_project/5e3e00a007d9b3b6efb6797a8b8e57b51ab1f7372012-02-20T22:17:18.060000000PT14M12S3JUebjoxEpqXoQcpltWRTwzBZEEHtch3wApdhgiQPFiA + Credits » LibreOfficeCreditscontributorscodersdevelopersCredits for the LibreOffice development/coding.LibreOffice/5.1.1.3$Linux_X86_64 LibreOffice_project/89f508ef3ecebd2cfb8e1def0f0ba9a803b88a6d2012-02-20T22:17:18.060000000PT14M12S3JUebjoxEpqXoQcpltWRTwzBZEEHtch3wApdhgiQPFiA - 607 + 527 501 - 41197 + 50220 22518 true true @@ -16,9 +16,9 @@ 3676 3471 501 - 607 - 41697 - 23123 + 527 + 50719 + 23043 0 0 false @@ -68,7 +68,7 @@ false false true - 4773327 + 4996803 false false false @@ -311,21 +311,24 @@ - + - + - + + + + - + @@ -389,24 +392,24 @@ - + - + - + - + - + - + @@ -451,39 +454,39 @@ - - - - - - - - - - + + + + + + + - + - + - + - + - + - + - + + + + @@ -1029,14 +1032,14 @@ Credits - 1132 individuals contributed to OpenOffice.org (and whose contributions were imported into LibreOffice) or LibreOffice until 2016-02-24 11:59:53. + 1140 individuals contributed to OpenOffice.org (and whose contributions were imported into LibreOffice) or LibreOffice until 2016-03-15 13:32:11. * marks developers whose first contributions happened after 2010-09-28. Developers committing code since 2010-09-28 - + Ruediger TimmCommits: 82464Joined: 2000-10-10 @@ -1056,10 +1059,10 @@ Vladimir GlazunovCommits: 25434Joined: 2000-12-04 - Caolán McNamaraCommits: 19150Joined: 2000-10-10 + Caolán McNamaraCommits: 19259Joined: 2000-10-10 - Stephan BergmannCommits: 11291Joined: 2000-10-04 + Stephan BergmannCommits: 11547Joined: 2000-10-04 Ivo HinkelmannCommits: 9480Joined: 2002-09-09 @@ -1067,35 +1070,35 @@ - Tor LillqvistCommits: 7289Joined: 2010-03-23 + Tor LillqvistCommits: 7332Joined: 2010-03-23 - *Noel GrandinCommits: 5400Joined: 2011-12-12 + *Noel GrandinCommits: 5522Joined: 2011-12-12 - Miklos VajnaCommits: 5393Joined: 2010-07-29 + Miklos VajnaCommits: 5490Joined: 2010-07-29 - Kohei YoshidaCommits: 5365Joined: 2009-06-19 + Kohei YoshidaCommits: 5367Joined: 2009-06-19 - Michael StahlCommits: 5287Joined: 2008-06-16 + Michael StahlCommits: 5323Joined: 2008-06-16 Frank Schoenheit [fs]Commits: 5008Joined: 2000-09-19 - *Markus MohrhardCommits: 3960Joined: 2011-03-17 + *Markus MohrhardCommits: 4011Joined: 2011-03-17 - David TardonCommits: 3183Joined: 2009-11-12 + David TardonCommits: 3206Joined: 2009-11-12 - Eike RathkeCommits: 3090Joined: 2000-10-11 + Eike RathkeCommits: 3132Joined: 2000-10-11 Hans-Joachim LankenauCommits: 3007Joined: 2000-09-19 @@ -1109,13 +1112,13 @@ - Oliver SpechtCommits: 2522Joined: 2000-09-21 + Oliver SpechtCommits: 2526Joined: 2000-09-21 - Jan HolesovskyCommits: 2294Joined: 2009-06-23 + Jan HolesovskyCommits: 2302Joined: 2009-06-23 - Michael MeeksCommits: 2188Joined: 2004-08-05 + Michael MeeksCommits: 2194Joined: 2004-08-05 *Thomas ArnholdCommits: 2176Joined: 2011-01-16 @@ -1123,16 +1126,16 @@ - *Norbert ThiebaudCommits: 2148Joined: 2010-09-29 + *Norbert ThiebaudCommits: 2152Joined: 2010-09-29 Philipp Lohmann [pl]Commits: 2089Joined: 2000-09-21 - Bjoern MichaelsenCommits: 2061Joined: 2009-10-14 + Bjoern MichaelsenCommits: 2062Joined: 2009-10-14 - *Julien NabetCommits: 1850Joined: 2010-11-04 + *Julien NabetCommits: 1869Joined: 2010-11-04 @@ -1140,10 +1143,10 @@ Christian LippkaCommits: 1805Joined: 2000-09-25 - *Matúš KukanCommits: 1678Joined: 2011-04-06 + *Andras TimarCommits: 1683Joined: 2010-10-02 - *Andras TimarCommits: 1672Joined: 2010-10-02 + *Matúš KukanCommits: 1679Joined: 2011-04-06 LuboÅ¡ LuňákCommits: 1521Joined: 2010-09-21 @@ -1151,7 +1154,7 @@ - *Tomaž VajngerlCommits: 1472Joined: 2012-06-02 + *Tomaž VajngerlCommits: 1475Joined: 2012-06-02 Fridrich Å trbaCommits: 1326Joined: 2007-02-22 @@ -1174,15 +1177,15 @@ Thorsten BehrensCommits: 1146Joined: 2001-04-25 - *Matteo CasalinCommits: 1101Joined: 2011-11-13 + *Matteo CasalinCommits: 1112Joined: 2011-11-13 - *Takeshi AbeCommits: 1037Joined: 2010-11-08 + *Takeshi AbeCommits: 1049Joined: 2010-11-08 - *Lionel Elie MamaneCommits: 970Joined: 2011-01-15 + *Lionel Elie MamaneCommits: 980Joined: 2011-01-15 Petr MladekCommits: 958Joined: 2006-10-03 @@ -1207,7 +1210,7 @@ - *Chris SherlockCommits: 861Joined: 2013-02-25 + *Chris SherlockCommits: 862Joined: 2013-02-25 Sven JacobiCommits: 850Joined: 2000-09-21 @@ -1280,13 +1283,13 @@ Rene EngelhardCommits: 399Joined: 2005-03-14 - Dirk VoelzkeCommits: 392Joined: 2000-11-27 + Christian LohmaierCommits: 395Joined: 2008-06-01 - *Ivan TimofeevCommits: 380Joined: 2011-09-16 + Dirk VoelzkeCommits: 392Joined: 2000-11-27 - Christian LohmaierCommits: 378Joined: 2008-06-01 + *Ivan TimofeevCommits: 380Joined: 2011-09-16 @@ -1294,35 +1297,35 @@ Oliver-Rainer WittmannCommits: 372Joined: 2002-08-09 - Matthias Huetsch [mhu]Commits: 360Joined: 2000-09-28 + *Xisco FauliCommits: 369Joined: 2011-02-06 - *Xisco FauliCommits: 355Joined: 2011-02-06 + *Maxim MonastirskyCommits: 363Joined: 2013-10-27 - *Maxim MonastirskyCommits: 341Joined: 2013-10-27 + Matthias Huetsch [mhu]Commits: 360Joined: 2000-09-28 - *Olivier HallotCommits: 340Joined: 2010-10-25 + *Olivier HallotCommits: 343Joined: 2010-10-25 - *Yousuf PhilipsCommits: 310Joined: 2014-09-21 + *Yousuf PhilipsCommits: 326Joined: 2014-09-21 - *Katarina BehrensCommits: 307Joined: 2010-10-13 + *Katarina BehrensCommits: 311Joined: 2010-10-13 - Radek DoulikCommits: 305Joined: 2010-05-03 + *David OstrovskyCommits: 308Joined: 2012-04-01 - *Chr. RossmanithCommits: 297Joined: 2011-01-03 + Radek DoulikCommits: 305Joined: 2010-05-03 - *David OstrovskyCommits: 291Joined: 2012-04-01 + *Chr. RossmanithCommits: 297Joined: 2011-01-03 *August SodoraCommits: 285Joined: 2011-10-18 @@ -1350,13 +1353,13 @@ *Khaled HosnyCommits: 235Joined: 2011-01-28 - *László NémethCommits: 232Joined: 2010-09-29 + *Szymon KÅ‚osCommits: 232Joined: 2014-03-22 - *Szymon KÅ‚osCommits: 231Joined: 2014-03-22 + *László NémethCommits: 232Joined: 2010-09-29 - *Samuel MehrbrodtCommits: 203Joined: 2011-06-08 + *Samuel MehrbrodtCommits: 214Joined: 2011-06-08 @@ -1364,18 +1367,18 @@ Ingo SchmidtCommits: 202Joined: 2004-02-05 - *Robert NagyCommits: 191Joined: 2010-11-04 + *Adolfo Jayme BarrientosCommits: 197Joined: 2013-06-21 - *Jacobo Aragunde PérezCommits: 191Joined: 2013-09-25 + *Robert NagyCommits: 191Joined: 2010-11-04 - *Marcos Paulo de SouzaCommits: 191Joined: 2012-09-26 + *Jacobo Aragunde PérezCommits: 191Joined: 2013-09-25 - *Adolfo Jayme BarrientosCommits: 187Joined: 2013-06-21 + *Marcos Paulo de SouzaCommits: 191Joined: 2012-09-26 *François TigeotCommits: 176Joined: 2011-01-31 @@ -1417,6 +1420,9 @@ + *Stanislav HoracekCommits: 127Joined: 2012-12-09 + + *Andrea GelminiCommits: 127Joined: 2014-10-30 @@ -1425,30 +1431,27 @@ *haochenCommits: 126Joined: 2013-10-10 - - Helge Delfs [hde]Commits: 126Joined: 2009-07-28 - - Takashi OnoCommits: 122Joined: 2009-12-10 + Helge Delfs [hde]Commits: 126Joined: 2009-07-28 - *Stanislav HoracekCommits: 120Joined: 2012-12-09 + *Marco CecchettiCommits: 123Joined: 2011-04-14 - *Sebastian SpaethCommits: 119Joined: 2010-09-28 + Takashi OnoCommits: 122Joined: 2009-12-10 - *Tomáš ChvátalCommits: 119Joined: 2011-07-27 + *Tomáš ChvátalCommits: 122Joined: 2011-07-27 - *Jan-Marek GlogowskiCommits: 118Joined: 2013-11-14 + *Sebastian SpaethCommits: 119Joined: 2010-09-28 - *Marco CecchettiCommits: 116Joined: 2011-04-14 + *Jan-Marek GlogowskiCommits: 119Joined: 2013-11-14 Kalman Szalai - KAMICommits: 116Joined: 2010-09-14 @@ -1462,10 +1465,10 @@ *I-Jui (Ray) SungCommits: 112Joined: 2013-09-30 - *andreas kainzCommits: 107Joined: 2015-03-18 + *Winfried DonkersCommits: 110Joined: 2011-11-11 - *Winfried DonkersCommits: 106Joined: 2011-11-11 + *andreas kainzCommits: 107Joined: 2015-03-18 *Matthias FreundCommits: 105Joined: 2013-02-08 @@ -1479,10 +1482,10 @@ *Louis-Francis Ratté-BoulianneCommits: 102Joined: 2014-10-29 - *Thomas KlausnerCommits: 98Joined: 2010-10-01 + *Douglas MenckenCommits: 99Joined: 2013-12-11 - *Douglas MenckenCommits: 93Joined: 2013-12-11 + *Thomas KlausnerCommits: 98Joined: 2010-10-01 @@ -1574,10 +1577,10 @@ *Michael WeghornCommits: 62Joined: 2014-09-10 - Wolfram Garten [wg]Commits: 61Joined: 2009-10-23 + *Pierre-Eric Pelloux-PrayerCommits: 61Joined: 2012-06-20 - *Pierre-Eric Pelloux-PrayerCommits: 60Joined: 2012-06-20 + Wolfram Garten [wg]Commits: 61Joined: 2009-10-23 Oliver Craemer [oc]Commits: 60Joined: 2009-10-23 @@ -1613,13 +1616,13 @@ - *Mihály PalenikCommits: 54Joined: 2013-07-11 + *Jean-Pierre LedureCommits: 54Joined: 2013-10-12 - *yangzhangCommits: 54Joined: 2013-11-04 + *Mihály PalenikCommits: 54Joined: 2013-07-11 - *Jean-Pierre LedureCommits: 53Joined: 2013-10-12 + *yangzhangCommits: 54Joined: 2013-11-04 *Martin KepplingerCommits: 53Joined: 2011-02-18 @@ -1636,11 +1639,14 @@ *Efe Gürkan YALAMANCommits: 52Joined: 2012-08-01 - *Will ThompsonCommits: 51Joined: 2012-03-21 + *Justin LuthCommits: 52Joined: 2014-09-30 + *Will ThompsonCommits: 51Joined: 2012-03-21 + + *Faisal M. Al-OtaibiCommits: 51Joined: 2012-06-25 @@ -1649,13 +1655,10 @@ *Cao Cuong NgoCommits: 51Joined: 2013-03-04 - - *Ptyl DragonCommits: 50Joined: 2013-05-09 - - *Justin LuthCommits: 50Joined: 2014-09-30 + *Ptyl DragonCommits: 50Joined: 2013-05-09 *Niklas JohanssonCommits: 50Joined: 2011-11-07 @@ -1669,47 +1672,50 @@ + *Emmanuel Gil PeyrotCommits: 48Joined: 2015-11-19 + + *Rosemary SebastianCommits: 48Joined: 2015-06-23 *mingli juCommits: 48Joined: 2013-11-05 + Giuseppe CastagnoCommits: 47Joined: 2007-12-09 + + + + *J. Graeme LingardCommits: 47Joined: 2010-09-29 *Alexandre VicenziCommits: 46Joined: 2014-01-15 - - *hongyu zhongCommits: 46Joined: 2013-11-04 *Lior KaplanCommits: 46Joined: 2010-10-05 + + *Mihai VargaCommits: 46Joined: 2014-02-27 *Juergen FunkCommits: 45Joined: 2014-09-17 - - - - Giuseppe CastagnoCommits: 45Joined: 2007-12-09 - mb93783Commits: 45Joined: 2009-07-15 *Eilidh McAdamCommits: 45Joined: 2011-03-10 + + *Daniel RobertsonCommits: 44Joined: 2015-06-27 - - Volker Ahrendt [va]Commits: 44Joined: 2002-04-15 @@ -1717,9 +1723,6 @@ *Luc CastermansCommits: 43Joined: 2011-11-13 - *Emmanuel Gil PeyrotCommits: 43Joined: 2015-11-19 - - *Peter JentschCommits: 42Joined: 2011-01-07 @@ -1745,21 +1748,21 @@ *Francisco SaitoCommits: 40Joined: 2011-03-21 - *Kayo HamidCommits: 39Joined: 2010-10-09 + *Mike KaganskiCommits: 40Joined: 2015-04-26 - *Mike KaganskiCommits: 39Joined: 2015-04-26 + *Kayo HamidCommits: 39Joined: 2010-10-09 - *minwangCommits: 39Joined: 2013-11-04 + *Varun DhallCommits: 39Joined: 2015-03-07 - *Valentin KettnerCommits: 38Joined: 2014-03-17 + *minwangCommits: 39Joined: 2013-11-04 - *Varun DhallCommits: 37Joined: 2015-03-07 + *Valentin KettnerCommits: 38Joined: 2014-03-17 *abdulmajeed ahmedCommits: 37Joined: 2012-07-07 @@ -1854,18 +1857,32 @@ *Rishabh KumarCommits: 31Joined: 2015-02-13 + *Dennis FrancisCommits: 31Joined: 2015-04-15 + + + *jan iversenCommits: 31Joined: 2015-11-03 + + *fengzengCommits: 31Joined: 2013-11-04 + + *muleiCommits: 30Joined: 2013-11-01 *Kenneth VenkenCommits: 30Joined: 2010-10-15 + + *Wols ListsCommits: 30Joined: 2010-11-07 + + + *Christoph HerzogCommits: 30Joined: 2011-01-07 + - *Christoph HerzogCommits: 30Joined: 2011-01-07 + *Regina HenschelCommits: 30Joined: 2010-11-04 *Manal AlhassounCommits: 30Joined: 2012-09-10 @@ -1874,125 +1891,122 @@ *Isamu MogiCommits: 30Joined: 2013-04-27 - *Wols ListsCommits: 29Joined: 2010-11-07 + *Elton ChungCommits: 29Joined: 2012-01-31 - *Elton ChungCommits: 29Joined: 2012-01-31 - - - *Regina HenschelCommits: 29Joined: 2010-11-04 - - *xinjiangCommits: 29Joined: 2013-11-04 *Harri PitkänenCommits: 29Joined: 2010-10-04 - - *Szabolcs DezsiCommits: 28Joined: 2012-02-16 *Jack LeighCommits: 28Joined: 2012-10-03 + + *Aurimas FiÅ¡erasCommits: 28Joined: 2010-10-11 *Pallavi JadhavCommits: 28Joined: 2013-02-08 - - Andre Fischer<andre.f.fischerCommits: 28Joined: 2010-07-21 *Andres GomezCommits: 27Joined: 2013-04-09 + + *Gökçen EraslanCommits: 27Joined: 2012-04-15 - *Dennis FrancisCommits: 27Joined: 2015-04-15 - - - - *José Guilherme VanzCommits: 27Joined: 2012-09-26 *Joel MaderoCommits: 26Joined: 2012-06-15 + *Dipangar NiranjarCommits: 26Joined: 2016-01-03 + + + + + *Rohan KumarCommits: 26Joined: 2016-02-23 + + *Josh HeidenreichCommits: 26Joined: 2011-07-20 *Nicolas ChristenerCommits: 26Joined: 2011-03-10 - - *Maxime de RoucyCommits: 26Joined: 2012-03-08 - - *Dipangar NiranjarCommits: 25Joined: 2016-01-03 - + + *Prashant PandeyCommits: 25Joined: 2013-02-20 *Kurosawa TakeshiCommits: 25Joined: 2011-01-04 - - *Uray M. JánosCommits: 24Joined: 2012-07-17 *Baptiste DaroussinCommits: 24Joined: 2011-01-31 + + *VortCommits: 24Joined: 2014-01-21 *Luke DellerCommits: 24Joined: 2012-11-26 - - *Daniel SikelerCommits: 24Joined: 2014-08-28 *Felix ZhangCommits: 23Joined: 2011-10-19 + + *Julien ChaffraixCommits: 23Joined: 2011-04-12 *Lucas BaudinCommits: 23Joined: 2011-01-25 - - *Sören MöllerCommits: 23Joined: 2011-01-03 *Robert RothCommits: 23Joined: 2010-10-31 + + *Christian DywanCommits: 23Joined: 2011-04-14 + *Bryan QuigleyCommits: 23Joined: 2012-12-12 + + *Laurent AlonsoCommits: 23Joined: 2011-10-23 - - *Mario J. RugieroCommits: 23Joined: 2015-10-11 + + *zhenyu yuanCommits: 22Joined: 2013-11-06 @@ -2002,11 +2016,11 @@ *Jacek WolszczakCommits: 22Joined: 2010-10-07 - - *Damjan JovanovicCommits: 22Joined: 2015-08-26 + + *Pedro GiffuniCommits: 22Joined: 2011-10-28 @@ -2016,36 +2030,28 @@ *Frédéric WangCommits: 22Joined: 2013-06-22 - - - - *Bryan QuigleyCommits: 22Joined: 2012-12-12 - *Júlio HoffimannCommits: 22Joined: 2010-10-18 + + *tageziCommits: 22Joined: 2015-09-16 *Rohit DeshmukhCommits: 21Joined: 2013-09-30 - - - - *jan iversenCommits: 21Joined: 2015-11-03 - *Tushar BendeCommits: 20Joined: 2013-09-27 *Brad SowdenCommits: 20Joined: 2011-12-27 + + *Andy HolderCommits: 20Joined: 2010-12-06 - - Eric BachardCommits: 20Joined: 2005-10-19 @@ -2055,11 +2061,11 @@ *Peilin XiaoCommits: 19Joined: 2013-12-09 + + *Lennard WasserthalCommits: 19Joined: 2012-08-11 - - *Tomofumi YagiCommits: 19Joined: 2011-10-20 @@ -2069,11 +2075,11 @@ *Sven WehnerCommits: 19Joined: 2014-01-11 + + *Ravindra VidhateCommits: 19Joined: 2014-01-30 - - Xiaofei ZhangCommits: 19Joined: 2010-06-28 @@ -2083,11 +2089,11 @@ *Abdulelah AlarifiCommits: 18Joined: 2012-12-12 + + *Joost WezenbeekCommits: 18Joined: 2010-10-24 - - Hanno Meyer-ThurowCommits: 18Joined: 2010-09-16 @@ -2097,11 +2103,11 @@ *Alfonso EusebioCommits: 17Joined: 2011-01-16 + + *Jian Hong ChengCommits: 17Joined: 2012-06-26 - - *Vasily MelenchukCommits: 17Joined: 2015-01-27 @@ -2111,11 +2117,11 @@ *Umesh KadamCommits: 17Joined: 2014-01-10 + + *navin patidarCommits: 17Joined: 2013-01-06 - - *Niko RönkköCommits: 16Joined: 2010-10-31 @@ -2125,13 +2131,10 @@ *tsahi glikCommits: 16Joined: 2013-06-04 - - *Cor NouwsCommits: 16Joined: 2011-11-19 - - *Anders JonssonCommits: 16Joined: 2010-12-11 + *Cor NouwsCommits: 16Joined: 2011-11-19 *Jordan AyersCommits: 16Joined: 2010-11-04 @@ -2148,16 +2151,19 @@ *Maciej RumianowskiCommits: 16Joined: 2011-07-19 + *Anders JonssonCommits: 16Joined: 2010-12-11 + + *Richard PALOCommits: 16Joined: 2014-11-09 *Luke DixonCommits: 16Joined: 2010-10-26 + + *Lei De BinCommits: 16Joined: 2012-07-04 - - *Nikhil WalvekarCommits: 15Joined: 2013-11-01 @@ -2167,11 +2173,11 @@ *Catalin IacobCommits: 15Joined: 2012-02-10 + + *Heena GuptaCommits: 15Joined: 2014-06-17 - - *Joachim TremourouxCommits: 15Joined: 2010-11-19 @@ -2181,11 +2187,11 @@ Octavio AlvarezCommits: 15Joined: 2010-09-13 + + *Yifan JCommits: 15Joined: 2010-12-16 - - *Alexander BergmannCommits: 15Joined: 2012-01-13 @@ -2195,15 +2201,23 @@ *Cosimo CecchiCommits: 15Joined: 2011-11-02 + + + + *Akshay DeepCommits: 14Joined: 2016-01-23 + *Zhe WangCommits: 14Joined: 2012-06-20 - - *Sun YingCommits: 14Joined: 2012-08-16 + *Björgvin RagnarssonCommits: 14Joined: 2012-02-13 + + + + *Juan PiccaCommits: 14Joined: 2014-07-23 @@ -2212,11 +2226,11 @@ *Zsolt BölönyCommits: 14Joined: 2015-01-10 - - *gerhard oettlCommits: 13Joined: 2012-08-27 + + *Prashant ShahCommits: 13Joined: 2010-10-10 @@ -2226,25 +2240,25 @@ *Mathias HasselmannCommits: 13Joined: 2013-01-14 - - - - *Björgvin RagnarssonCommits: 13Joined: 2012-02-13 - *Muhammad HaggagCommits: 13Joined: 2012-02-01 + + *Alia AlmusaireaeCommits: 13Joined: 2012-11-05 + *Pranav KantCommits: 12Joined: 2016-02-12 + + *Mariusz DykierekCommits: 12Joined: 2012-01-16 - - *Greg Kroah-HartmanCommits: 12Joined: 2012-02-06 + + *Gábor StefanikCommits: 12Joined: 2012-04-07 @@ -2254,6 +2268,9 @@ *Wei WeiCommits: 12Joined: 2013-11-16 + + *Armin Le GrandCommits: 12Joined: 2015-11-09 + @@ -2271,23 +2288,20 @@ - *akki95Commits: 11Joined: 2016-01-23 + *Jung-uk KimCommits: 11Joined: 2012-08-13 - *Pranav KantCommits: 11Joined: 2016-02-12 + *Enrico Weigelt, metux ITSCommits: 11Joined: 2012-11-14 - *Jung-uk KimCommits: 11Joined: 2012-08-13 + *Aleksas PantechovskisCommits: 11Joined: 2016-03-03 - *Enrico Weigelt, metux ITSCommits: 11Joined: 2012-11-14 + *Jonas Finnemann JensenCommits: 11Joined: 2010-10-01 - *Jonas Finnemann JensenCommits: 11Joined: 2010-10-01 - - *Abdulaziz A AlayedCommits: 11Joined: 2013-01-22 @@ -2296,6 +2310,9 @@ *Peter RabiCommits: 11Joined: 2011-07-14 + + *Sean YoungCommits: 11Joined: 2013-05-16 + @@ -2308,11 +2325,14 @@ *Charu TyagiCommits: 11Joined: 2014-06-25 - *René KjellerupCommits: 11Joined: 2010-10-14 + *Gulsah KoseCommits: 11Joined: 2015-03-14 + *René KjellerupCommits: 11Joined: 2010-10-14 + + *Jianyuan LiCommits: 10Joined: 2012-08-16 @@ -2321,22 +2341,19 @@ *Kristian RietveldCommits: 10Joined: 2011-10-15 - - *Mirek MazelCommits: 10Joined: 2012-06-05 - - *Theo van KlaverenCommits: 10Joined: 2011-03-10 + *Yeliz TaneroÄŸluCommits: 10Joined: 2015-10-03 - *Armin Le GrandCommits: 10Joined: 2015-11-09 + *Mirek MazelCommits: 10Joined: 2012-06-05 - *Luke PetrolekasCommits: 10Joined: 2011-02-12 + *Theo van KlaverenCommits: 10Joined: 2011-03-10 - *Sean YoungCommits: 10Joined: 2013-05-16 + *Luke PetrolekasCommits: 10Joined: 2011-02-12 @@ -2347,16 +2364,13 @@ *Dennis RoczekCommits: 9Joined: 2015-06-09 - *yeliztanerogluCommits: 9Joined: 2015-10-03 - - *Dinesh PatilCommits: 9Joined: 2014-03-12 - - *Steven ButlerCommits: 9Joined: 2011-01-07 + + *Jorenz ParagasCommits: 9Joined: 2015-06-23 @@ -2366,11 +2380,11 @@ *Michael DunphyCommits: 9Joined: 2013-04-18 - - *Matthew PottageCommits: 9Joined: 2014-07-26 + + *Aybuke OzdemirCommits: 9Joined: 2015-10-07 @@ -2380,19 +2394,22 @@ *Mattias JohnssonCommits: 9Joined: 2010-10-18 + + *David VogtCommits: 9Joined: 2012-02-05 + - *David VogtCommits: 9Joined: 2012-02-05 + *kadertarlanCommits: 8Joined: 2015-12-14 - *Gulsah KoseCommits: 9Joined: 2015-03-14 + *Sean DavisCommits: 8Joined: 2015-06-01 - *kadertarlanCommits: 8Joined: 2015-12-14 + *Chirag ManwaniCommits: 8Joined: 2016-02-16 - *Sean DavisCommits: 8Joined: 2015-06-01 + *WastackCommits: 8Joined: 2016-03-08 @@ -2551,6 +2568,9 @@ + *Susobhan GhoshCommits: 6Joined: 2016-01-03 + + *RaalCommits: 6Joined: 2014-12-31 @@ -2559,11 +2579,11 @@ *Thomas CollertonCommits: 6Joined: 2011-11-18 + + *Michel RenonCommits: 6Joined: 2015-05-19 - - *Phil BordelonCommits: 6Joined: 2010-09-30 @@ -2573,11 +2593,11 @@ *Kay SchenkCommits: 6Joined: 2014-09-19 + + *David VerrierCommits: 6Joined: 2013-02-26 - - *tianyaoCommits: 6Joined: 2013-11-09 @@ -2587,11 +2607,11 @@ *Jeroen NijhofCommits: 6Joined: 2014-05-01 + + *Ricardo MorenoCommits: 6Joined: 2010-11-03 - - *Daniel Di MarcoCommits: 6Joined: 2010-11-15 @@ -2599,42 +2619,42 @@ *shiraharaCommits: 6Joined: 2011-01-28 - *Alexander O. AnisimovCommits: 6Joined: 2010-11-06 - - - *Werner KoernerCommits: 5Joined: 2012-12-11 + *JaskaranCommits: 6Joined: 2016-02-18 - *Susobhan GhoshCommits: 5Joined: 2016-01-03 + *Sedat AkCommits: 6Joined: 2015-11-08 - *Antoine ProulxCommits: 5Joined: 2011-01-30 + *Alexander O. AnisimovCommits: 6Joined: 2010-11-06 - *Timothy MarkleCommits: 5Joined: 2014-01-31 + *Werner KoernerCommits: 5Joined: 2012-12-11 - *ericb2Commits: 5Joined: 2011-10-30 + *Antoine ProulxCommits: 5Joined: 2011-01-30 - *Ciorba EdmondCommits: 5Joined: 2013-06-11 + *Timothy MarkleCommits: 5Joined: 2014-01-31 - *Wei Ming KhooCommits: 5Joined: 2012-02-17 + *ericb2Commits: 5Joined: 2011-10-30 - *Jan KantertCommits: 5Joined: 2014-06-12 + *Ciorba EdmondCommits: 5Joined: 2013-06-11 - *Chirag ManwaniCommits: 5Joined: 2016-02-16 + *Wei Ming KhooCommits: 5Joined: 2012-02-17 + *Jan KantertCommits: 5Joined: 2014-06-12 + + *Matthias HofmannCommits: 5Joined: 2013-03-08 @@ -2643,11 +2663,11 @@ *Miguel GomezCommits: 5Joined: 2013-04-02 + + *pje335_NLCommits: 5Joined: 2013-05-10 - - *Pavel JaníkCommits: 5Joined: 2012-11-29 @@ -2657,11 +2677,11 @@ *Marc-Andre LaverdiereCommits: 5Joined: 2011-07-19 + + *Giuseppe BilottaCommits: 5Joined: 2014-09-09 - - *Pasi LallinahoCommits: 5Joined: 2015-06-02 @@ -2671,11 +2691,11 @@ *Kohei YoshidaCommits: 5Joined: 2013-09-07 + + *Bence BabatiCommits: 5Joined: 2012-08-13 - - *Ryan McCoskrieCommits: 5Joined: 2014-09-14 @@ -2685,11 +2705,11 @@ *melikeyurtogluCommits: 5Joined: 2015-10-09 + + *Gustavo Buzzatti PachecoCommits: 5Joined: 2011-12-15 - - *David HobleyCommits: 5Joined: 2010-10-04 @@ -2699,12 +2719,12 @@ *Lionel DricotCommits: 5Joined: 2012-06-04 - - *Sedat AkCommits: 5Joined: 2015-11-08 - + *Jochen NitschkeCommits: 5Joined: 2016-02-02 + + *Jeffrey ChangCommits: 5Joined: 2011-06-01 @@ -2713,11 +2733,11 @@ *Tom TromeyCommits: 4Joined: 2011-08-11 + + *Santiago AlessandriCommits: 4Joined: 2010-11-11 - - *Ken BiondiCommits: 4Joined: 2014-03-05 @@ -2727,11 +2747,11 @@ *Kate GossCommits: 4Joined: 2012-02-11 + + *Arnold DumasCommits: 4Joined: 2016-02-14 - - *ClioCommits: 4Joined: 2011-01-30 @@ -2741,11 +2761,11 @@ *Simon DannerCommits: 4Joined: 2014-08-02 + + *Berk GurekenCommits: 4Joined: 2015-10-01 - - *Thomas ViehmannCommits: 4Joined: 2014-08-15 @@ -2755,11 +2775,11 @@ *Derrick RochaCommits: 4Joined: 2015-08-26 + + *Maja DjordjevicCommits: 4Joined: 2011-01-06 - - *Michael MuenchCommits: 4Joined: 2011-02-13 @@ -2769,11 +2789,11 @@ *Kevin SuoCommits: 4Joined: 2014-11-06 + + *Sameer DeshmukhCommits: 4Joined: 2013-04-20 - - *XiaoliCommits: 4Joined: 2013-03-23 @@ -2783,63 +2803,74 @@ *Mariana MarasoiuCommits: 4Joined: 2012-03-14 + + + + *coypuCommits: 4Joined: 2016-02-03 + *Kumar ThangavelCommits: 4Joined: 2016-01-04 - - *Nicholas ShanksCommits: 4Joined: 2012-09-04 *Sahasranaman M SCommits: 4Joined: 2015-10-04 + + *Jeffrey StedfastCommits: 4Joined: 2014-07-26 *An LeendersCommits: 4Joined: 2011-01-25 - - *Chris SherlockCommits: 4Joined: 2015-12-23 *Florian BircherCommits: 4Joined: 2010-10-16 + + *Wolfgang PechlanerCommits: 4Joined: 2011-09-04 *tinoCommits: 4Joined: 2012-12-03 - - *André SchnabelCommits: 4Joined: 2011-05-31 *Jean-Tiare LE BIGOTCommits: 4Joined: 2012-08-08 + + *V Stuart FooteCommits: 4Joined: 2014-12-04 *Nourah.AlShoeibiCommits: 4Joined: 2013-07-07 - - *Yong Lin MaCommits: 4Joined: 2012-06-07 *Fridrich StrbaCommits: 4Joined: 2013-03-08 + + *Pantelis KoukousoulasCommits: 4Joined: 2011-03-14 + *Fabio BusoCommits: 4Joined: 2015-11-01 + + + *Arul MichaelCommits: 4Joined: 2016-01-05 + + *Andreas BeckerCommits: 4Joined: 2011-04-04 @@ -2924,41 +2955,52 @@ *Florian Allmann-RahnCommits: 3Joined: 2011-08-22 - *n.r.pearsonCommits: 3Joined: 2015-09-09 + *Matus UzakCommits: 3Joined: 2016-02-22 + *n.r.pearsonCommits: 3Joined: 2015-09-09 + + + *pasqual milvaquesCommits: 3Joined: 2015-12-02 + + *Dávid VastagCommits: 3Joined: 2013-02-04 *Andrea PescettiCommits: 3Joined: 2013-10-07 + + *Peter BaumgartenCommits: 3Joined: 2012-11-24 *Dimitri DucCommits: 3Joined: 2011-04-19 - - *Peter Senna TschudinCommits: 3Joined: 2014-05-26 *Marek DoleželCommits: 3Joined: 2015-07-06 + + *burcinakalinCommits: 3Joined: 2015-12-18 *David NalleyCommits: 3Joined: 2011-03-03 - - + + *Mohammed Abdul AzeemCommits: 3Joined: 2016-02-08 + *Golnaz IrannejadCommits: 3Joined: 2013-04-02 + + *Tantai TanakanokCommits: 3Joined: 2011-02-09 @@ -2966,13 +3008,13 @@ *LuboÅ¡ LuňákCommits: 3Joined: 2014-03-18 - *coypuCommits: 3Joined: 2016-02-03 + *baltasarqCommits: 3Joined: 2016-02-24 - - *Tom ThorogoodCommits: 3Joined: 2012-02-28 + + *Chris Carpenter(mordocai)Commits: 3Joined: 2011-02-02 @@ -2982,11 +3024,11 @@ *Alexander ThurgoodCommits: 3Joined: 2011-01-26 - - *Bertrand LorentzCommits: 3Joined: 2012-08-03 + + *Marina PlakalovicCommits: 3Joined: 2012-12-14 @@ -2996,11 +3038,11 @@ *Haidong LianCommits: 3Joined: 2013-07-24 - - *Jacopo NespoloCommits: 3Joined: 2010-10-01 + + *Robert M CampbellCommits: 3Joined: 2013-11-13 @@ -3010,11 +3052,11 @@ *Cheng-Chia TsengCommits: 3Joined: 2012-01-16 - - *Pascal UllrichCommits: 3Joined: 2010-12-28 + + *aqcoderCommits: 3Joined: 2015-12-13 @@ -3024,11 +3066,11 @@ *Istvan TuriCommits: 3Joined: 2012-08-16 - - *Mihkel TõnnovCommits: 3Joined: 2012-07-02 + + *Lucas SatabinCommits: 3Joined: 2015-08-25 @@ -3038,10 +3080,13 @@ *Mike EberdtCommits: 3Joined: 2011-07-12 + + *Joan MontaneCommits: 3Joined: 2013-02-22 + - *Joan MontaneCommits: 3Joined: 2013-02-22 + *Stephan van den AkkerCommits: 3Joined: 2012-06-07 *Benjamin DrungCommits: 3Joined: 2012-06-08 @@ -3058,19 +3103,16 @@ *Thorsten WagnerCommits: 3Joined: 2015-04-24 - *ArulCommits: 3Joined: 2016-01-05 - - *Roland BaudinCommits: 3Joined: 2011-05-16 *Guto MaiaCommits: 3Joined: 2011-03-18 - - *Gabor KelemenCommits: 3Joined: 2013-06-18 + + *Nagy AkosCommits: 3Joined: 2013-06-27 @@ -3080,25 +3122,25 @@ *Sérgio MarquesCommits: 3Joined: 2011-11-25 - - *Xuacu SaturioCommits: 3Joined: 2010-12-19 + + *AlexFCommits: 3Joined: 2015-11-12 - *Jochen NitschkeCommits: 3Joined: 2016-02-02 + *Steven GuoCommits: 3Joined: 2016-03-02 *Jan DarmochwalCommits: 3Joined: 2011-01-27 - - *Jeremy BrownCommits: 3Joined: 2012-09-19 + + *Brij Mohan Lal SrivastavaCommits: 3Joined: 2014-11-12 @@ -3108,11 +3150,11 @@ *Sean McNamaraCommits: 2Joined: 2010-09-29 - - *Christoph NoackCommits: 2Joined: 2010-12-13 + + *Mohammad ElahiCommits: 2Joined: 2011-08-27 @@ -3122,11 +3164,11 @@ *UrmasCommits: 2Joined: 2012-02-13 - - *Martyn RussellCommits: 2Joined: 2012-06-07 + + *Andrew HigginsonCommits: 2Joined: 2012-04-10 @@ -3136,11 +3178,11 @@ *Andras BartekCommits: 2Joined: 2012-08-06 - - *Matthias KloseCommits: 2Joined: 2011-03-01 + + *Donizete WaterkemperCommits: 2Joined: 2013-05-23 @@ -3150,11 +3192,11 @@ *Kelly AndersonCommits: 2Joined: 2011-05-31 - - *RishabhCommits: 2Joined: 2016-01-23 + + *Ri GangHuCommits: 2Joined: 2013-07-28 @@ -3164,11 +3206,11 @@ *Michal SvecCommits: 2Joined: 2011-07-12 - - *Adam MrózCommits: 2Joined: 2013-02-24 + + *Ed DeanCommits: 2Joined: 2011-01-14 @@ -3178,109 +3220,109 @@ *Tobias KranzCommits: 2Joined: 2011-02-17 - - - - *pasqual milvaquesCommits: 2Joined: 2015-12-02 - *Kishor BhatCommits: 2Joined: 2015-01-28 + + *Anderson RobertoCommits: 2Joined: 2014-01-15 *Dwayne BaileyCommits: 2Joined: 2010-11-03 - - Loiseleur MichelCommits: 2Joined: 2010-09-14 *Mukhiddin YusupovCommits: 2Joined: 2014-05-19 + + *Sergey FarbotkaCommits: 2Joined: 2012-09-21 *Guillaume SmahaCommits: 2Joined: 2015-11-25 - - *Daniel StoneCommits: 2Joined: 2014-10-29 *Boris EgorovCommits: 2Joined: 2014-09-08 + + *Clarence GuoCommits: 2Joined: 2014-05-26 *Laszlo Kis-AdamCommits: 2Joined: 2015-03-12 - - *Jesso Clarence MuruganCommits: 2Joined: 2012-06-23 *Andreas SchierlCommits: 2Joined: 2012-01-30 + + *Viktor VargaCommits: 2Joined: 2013-08-28 *gamebusterzCommits: 2Joined: 2015-02-19 - - *Clément LassieurCommits: 2Joined: 2014-12-21 *Justin MalcolmCommits: 2Joined: 2010-09-29 + + *Andreu Correa CasablancaCommits: 2Joined: 2011-09-11 *Aleksandr AndreevCommits: 2Joined: 2015-04-20 - - *YiiChang YenCommits: 2Joined: 2014-10-16 *Yogesh DesaiCommits: 2Joined: 2016-01-05 + + *Jonathan CallenCommits: 2Joined: 2011-01-29 *Mathieu ParentCommits: 2Joined: 2013-10-14 - - *Lubosz SarneckiCommits: 2Joined: 2015-08-20 *Mox SoiniCommits: 2Joined: 2015-06-02 + + *Sean McMurrayCommits: 2Joined: 2010-10-20 *Vicente VendrellCommits: 2Joined: 2012-04-23 - - + + *Tim EvesCommits: 2Joined: 2016-02-23 + *Seo SanghyeonCommits: 2Joined: 2010-09-29 + + *Marc GarciaCommits: 2Joined: 2012-05-04 @@ -3290,11 +3332,11 @@ *Mark WolfCommits: 2Joined: 2012-04-04 - - *Mateusz ZasuwikCommits: 2Joined: 2011-12-20 + + *Rimas KudelisCommits: 2Joined: 2015-01-06 @@ -3304,11 +3346,11 @@ *David SteeleCommits: 2Joined: 2012-04-24 - - *William GathoyeCommits: 2Joined: 2012-02-28 + + *PKEuSCommits: 2Joined: 2012-02-05 @@ -3318,11 +3360,11 @@ *Austin ChenCommits: 2Joined: 2015-03-25 - - *Gregg KingCommits: 2Joined: 2013-02-26 + + *Marcin eXine MCommits: 2Joined: 2010-11-02 @@ -3332,11 +3374,11 @@ *Mark WilliamsCommits: 2Joined: 2014-12-17 - - *Rolf HemmerlingCommits: 2Joined: 2013-06-15 + + *Arne de BruijnCommits: 2Joined: 2012-12-11 @@ -3346,6 +3388,9 @@ *Martin HollmichelCommits: 2Joined: 2015-06-29 + + *Ashod NakashianCommits: 2Joined: 2016-01-10 + @@ -3391,9 +3436,6 @@ - *Fabio BusoCommits: 2Joined: 2015-11-01 - - *Karsten GerloffCommits: 2Joined: 2011-02-06 @@ -3402,11 +3444,11 @@ *Karthik A PadmanabhanCommits: 2Joined: 2012-03-31 - - *Maxim IorshCommits: 2Joined: 2011-10-05 + + *dbeurleCommits: 2Joined: 2015-01-12 @@ -3416,11 +3458,11 @@ *Robert SedakCommits: 2Joined: 2010-10-05 - - *Emanuele FiaCommits: 2Joined: 2011-11-02 + + *Janit AnjariaCommits: 2Joined: 2013-04-19 @@ -3430,11 +3472,11 @@ *Moritz KuettCommits: 2Joined: 2013-03-23 - - *Abeer SethiCommits: 2Joined: 2012-04-12 + + *Jan HubickaCommits: 2Joined: 2011-09-12 @@ -3444,11 +3486,11 @@ *Yury TarasievichCommits: 2Joined: 2011-11-23 - - *Hideki IkedaCommits: 2Joined: 2014-06-25 + + *Takashi NakamotoCommits: 2Joined: 2011-08-28 @@ -3458,11 +3500,11 @@ *Markus WernigCommits: 2Joined: 2015-03-18 - - *Johann MessnerCommits: 2Joined: 2012-08-28 + + *Nadav VinikCommits: 2Joined: 2010-10-21 @@ -3472,11 +3514,11 @@ *Supreme AryalCommits: 2Joined: 2014-12-04 - - *Goran RakicCommits: 1Joined: 2013-03-30 + + *Ross BurtonCommits: 1Joined: 2012-04-18 @@ -3486,11 +3528,11 @@ *Kenneth KoskiCommits: 1Joined: 2016-02-20 - - *Philipp KaluzaCommits: 1Joined: 2012-10-21 + + *Milan CrhaCommits: 1Joined: 2013-02-07 @@ -3500,11 +3542,11 @@ *Swachhand LokhandeCommits: 1Joined: 2015-03-07 - - *Raj NatarajanCommits: 1Joined: 2015-07-23 + + *Ruggero CyrilleCommits: 1Joined: 2014-10-18 @@ -3514,11 +3556,11 @@ *Foo Lai ChooCommits: 1Joined: 2014-11-26 - - *Tzvetelina TzenevaCommits: 1Joined: 2011-12-22 + + *Kenneth BeckCommits: 1Joined: 2013-03-02 @@ -3528,11 +3570,11 @@ *Valek FilippovCommits: 1Joined: 2013-02-23 - - *Jörg SonnenbergerCommits: 1Joined: 2014-08-28 + + *Debarshi RayCommits: 1Joined: 2016-01-08 @@ -3542,11 +3584,11 @@ *Kevin HausmannCommits: 1Joined: 2012-08-17 - - *Andreas SliwkaCommits: 1Joined: 2011-02-06 + + *Jeff AignerCommits: 1Joined: 2011-06-09 @@ -3556,11 +3598,11 @@ *Alex KempshallCommits: 1Joined: 2011-08-14 - - *Robin KumarCommits: 1Joined: 2014-06-17 + + *Neven ĆosićCommits: 1Joined: 2012-10-08 @@ -3570,6 +3612,9 @@ *Mathieu DCommits: 1Joined: 2012-11-19 + + *Krunoslav Å ebetićCommits: 1Joined: 2016-03-10 + @@ -3730,19 +3775,16 @@ *Vicente Rafael Estevez VacasCommits: 1Joined: 2012-04-22 - *Rohan KumarCommits: 1Joined: 2016-02-23 - - *Michal SiedlaczekCommits: 1Joined: 2014-01-25 *Jean-Yves RoyerCommits: 1Joined: 2011-03-07 - - *Victor LeeCommits: 1Joined: 2011-12-24 + + *AWASHIRO IkuyaCommits: 1Joined: 2011-01-04 @@ -3752,11 +3794,11 @@ *Giovanni CaligarisCommits: 1Joined: 2015-11-30 - - *Joshua CogliatiCommits: 1Joined: 2012-01-06 + + *Mihovil StanićCommits: 1Joined: 2015-11-11 @@ -3766,11 +3808,11 @@ *Javier Silva SanahujaCommits: 1Joined: 2012-04-23 - - *Andrew RistCommits: 1Joined: 2012-10-05 + + *Travis CarterCommits: 1Joined: 2012-06-22 @@ -3780,11 +3822,11 @@ *Hiroto KagotaniCommits: 1Joined: 2014-08-19 - - *Alberto RuizCommits: 1Joined: 2011-03-31 + + *Petr GajdosCommits: 1Joined: 2015-04-07 @@ -3794,11 +3836,11 @@ *Milan ZelenkaCommits: 1Joined: 2014-03-26 - - *Mark WrightCommits: 1Joined: 2013-02-09 + + *Piet van OostrumCommits: 1Joined: 2015-03-12 @@ -3808,11 +3850,11 @@ *Juan Pablo Martínez CortésCommits: 1Joined: 2011-11-28 - - *Vincent PovirkCommits: 1Joined: 2011-12-19 + + *Christopher BackhouseCommits: 1Joined: 2010-12-06 @@ -3822,11 +3864,11 @@ *Karl KoehlerCommits: 1Joined: 2011-11-11 - - *Alexandre FournierCommits: 1Joined: 2010-11-06 + + *Martin OwensCommits: 1Joined: 2014-07-27 @@ -3836,11 +3878,11 @@ *Douglas Rodrigues de AlmeidaCommits: 1Joined: 2012-09-15 - - *Hamza AbdelkebirCommits: 1Joined: 2013-02-23 + + *Jacqueline RahemipourCommits: 1Joined: 2013-03-23 @@ -3850,11 +3892,11 @@ *Jonathan RiddellCommits: 1Joined: 2014-11-22 - - *James CCommits: 1Joined: 2011-12-20 + + *Tim RichardsonCommits: 1Joined: 2013-06-04 @@ -3864,11 +3906,11 @@ *Florent GallaireCommits: 1Joined: 2012-04-21 - - *Milos SramekCommits: 1Joined: 2012-01-20 + + *Steve HartCommits: 1Joined: 2015-11-17 @@ -3878,39 +3920,39 @@ *William LachanceCommits: 1Joined: 2011-06-08 - - *krishnan parthasarathiCommits: 1Joined: 2010-10-07 + + *Rico TzschichholzCommits: 1Joined: 2016-02-09 - *Mohammed Abdul AzeemCommits: 1Joined: 2016-02-08 - - *ZirkCommits: 1Joined: 2015-01-07 - - *Kevin PengCommits: 1Joined: 2012-07-20 *Paolo PozzanCommits: 1Joined: 2010-12-19 + + *Rolf KoetterCommits: 1Joined: 2013-11-05 *Ward van WanrooijCommits: 1Joined: 2012-06-25 - - + + *Jakub TrzebiatowskiCommits: 1Joined: 2016-03-07 + *Arkadiusz MiÅ›kiewiczCommits: 1Joined: 2014-10-09 + + *Pierre SauterCommits: 1Joined: 2015-12-01 @@ -3920,11 +3962,11 @@ *Miguel FernándezCommits: 1Joined: 2012-04-26 - - *Gábor NyersCommits: 1Joined: 2013-03-02 + + *Jean-François Fortin TamCommits: 1Joined: 2013-06-10 @@ -3932,153 +3974,153 @@ *Tadele AssefaCommits: 1Joined: 2013-01-15 - *baltasarqCommits: 1Joined: 2016-02-24 - - - - *Martin LiÅ¡kaCommits: 1Joined: 2014-03-26 *Jason GerlowskiCommits: 1Joined: 2014-03-07 + + *Jose ManuelCommits: 1Joined: 2012-04-25 *Fernando PiraniCommits: 1Joined: 2015-08-04 - - *Marco A. G. PintoCommits: 1Joined: 2016-02-02 *Michael DuelliCommits: 1Joined: 2013-08-01 + + *Vojta KoukalCommits: 1Joined: 2013-03-03 *Chris CheneyCommits: 1Joined: 2011-04-27 - - *Marc BessièresCommits: 1Joined: 2016-01-29 *Irányossy Knoblauch ArtúrCommits: 1Joined: 2013-04-06 + + *Fahad Al-SaidiCommits: 1Joined: 2014-07-16 *ricardobottoCommits: 1Joined: 2013-05-18 - - *Gabriele PonzoCommits: 1Joined: 2016-01-29 *Cassio NeriCommits: 1Joined: 2011-05-01 + + *Danny BrownCommits: 1Joined: 2013-09-18 *David PenzesCommits: 1Joined: 2011-06-14 - - *Manas JoshiCommits: 1Joined: 2014-03-17 *Aron BudeaCommits: 1Joined: 2014-12-22 + + *sagarCommits: 1Joined: 2012-09-15 *Karan DesaiCommits: 1Joined: 2012-04-01 - - *Steven MeyerCommits: 1Joined: 2013-03-13 *Paulo JoséCommits: 1Joined: 2011-04-01 + + *ccshellerCommits: 1Joined: 2015-10-08 *Dona HertelCommits: 1Joined: 2011-04-14 - - *Aldo Román NureñaCommits: 1Joined: 2012-04-09 *Kalman KemenczyCommits: 1Joined: 2010-10-28 + + *Naruhiko OgasawaraCommits: 1Joined: 2014-10-25 *Ankitkumar Rameshchandra PatelCommits: 1Joined: 2012-01-20 - - *Babu VincentCommits: 1Joined: 2014-09-19 *Heiko ScheidtCommits: 1Joined: 2014-08-03 + + *Arfrever Frehtes Taifersar ArahesisCommits: 1Joined: 2012-04-02 *OKANO TakayoshiCommits: 1Joined: 2013-01-29 - - *Alex IvanCommits: 1Joined: 2013-04-15 *sonakshi nathaniCommits: 1Joined: 2013-06-26 + + *Pranav KantCommits: 1Joined: 2016-01-27 *Sam TukeCommits: 1Joined: 2015-05-21 - - *Hansgerd SchneiderCommits: 1Joined: 2013-04-02 *danielt998Commits: 1Joined: 2016-02-11 + + *Ayantha RandikaCommits: 1Joined: 2014-01-23 + *Nico WeyandCommits: 1Joined: 2012-09-02 + + *Jorge Cunha MendesCommits: 1Joined: 2015-04-03 - - *Joseph BrownCommits: 1Joined: 2012-08-14 + + *Dan CorneanuCommits: 1Joined: 2010-12-29 @@ -4088,11 +4130,11 @@ *dbarisakkurtCommits: 1Joined: 2012-02-02 - - *Pavel KacerCommits: 1Joined: 2013-04-11 + + *Fernando GovernatoreCommits: 1Joined: 2012-02-25 @@ -4102,11 +4144,11 @@ *matt_51Commits: 1Joined: 2013-11-05 - - *Karthick Prasad GunasekaranCommits: 1Joined: 2015-03-22 + + *Olivier PlotonCommits: 1Joined: 2012-12-12 @@ -4116,11 +4158,11 @@ *J. Fernando LagrangeCommits: 1Joined: 2014-02-02 - - *Jan NieuwenhuizenCommits: 1Joined: 2011-04-28 + + *Pieter AdriaensenCommits: 1Joined: 2014-12-21 @@ -4130,11 +4172,11 @@ *Reem.ALotaibiCommits: 1Joined: 2013-07-25 - - *DaveCommits: 1Joined: 2012-08-23 + + *xjclCommits: 1Joined: 2014-08-04 @@ -4144,11 +4186,11 @@ *Apostolos SyropoulosCommits: 1Joined: 2014-05-07 - - *Daniel MihalyiCommits: 1Joined: 2012-02-06 + + *Quentin PradetCommits: 1Joined: 2012-12-21 @@ -4156,6 +4198,9 @@ *Adrià Cereto MassaguéCommits: 1Joined: 2010-10-26 + *Freek de KruijfCommits: 1Joined: 2010-12-19 + + *Christopher HotchkissCommits: 1Joined: 2013-02-15 @@ -4184,67 +4229,56 @@ *Serg BormantCommits: 1Joined: 2011-11-28 - *Ashod NakashianCommits: 1Joined: 2016-01-10 + *Tim-Philipp MüllerCommits: 1Joined: 2012-07-29 - *Tim-Philipp MüllerCommits: 1Joined: 2012-07-29 - - *Sujith SudhakaranCommits: 1Joined: 2015-04-07 *nrbrtx@gmail.comCommits: 1Joined: 2014-06-10 - *Freek de KruijfCommits: 1Joined: 2010-12-19 - - - - *Carsten NiehausCommits: 1Joined: 2012-02-09 *Tarun KumarCommits: 1Joined: 2014-03-07 + + *Jonathan SchultzCommits: 1Joined: 2013-05-22 *Nick SavageCommits: 1Joined: 2010-10-01 - - *Monica Ramirez ArcedaCommits: 1Joined: 2012-04-23 *camilleCommits: 1Joined: 2010-12-13 + + *Denis LackovicCommits: 1Joined: 2010-10-05 *Dushyant BhalgamiCommits: 1Joined: 2014-07-04 - - *Peter TillemansCommits: 1Joined: 2012-06-26 *Andrey TurkinCommits: 1Joined: 2011-02-09 + + *Tomas TurekCommits: 1Joined: 2013-03-24 - *Stephan van den AkkerCommits: 1Joined: 2012-06-07 - - - - *Maxime CôtéCommits: 1Joined: 2011-04-19 @@ -4253,11 +4287,11 @@ *Nusaiba Al-KindiCommits: 1Joined: 2016-01-21 + + *Peng GaoCommits: 1Joined: 2013-06-16 - - *robert BabiakCommits: 1Joined: 2015-03-25 @@ -4267,11 +4301,11 @@ *Laureano G. LindeCommits: 1Joined: 2012-04-15 + + *Da'angh KhagarothCommits: 1Joined: 2012-01-16 - - *GhasanCommits: 1Joined: 2015-11-09 @@ -4281,11 +4315,11 @@ *Jaime NavarroCommits: 1Joined: 2012-04-20 + + *Maarten HoesCommits: 1Joined: 2014-12-20 - - *vincentCommits: 1Joined: 2013-03-22 @@ -4295,11 +4329,11 @@ *brinzingCommits: 1Joined: 2015-08-22 + + *Henning DiedlerCommits: 1Joined: 2013-11-02 - - *Jun NOGATACommits: 1Joined: 2015-01-07 @@ -4309,11 +4343,11 @@ *Jan BobisudCommits: 1Joined: 2013-04-29 + + *Ashish BanerjeeCommits: 1Joined: 2013-04-04 - - *Alaa.BukhariCommits: 1Joined: 2013-07-04 @@ -4323,11 +4357,11 @@ *Guillaume FillolCommits: 1Joined: 2011-01-29 + + *Andrew WestCommits: 1Joined: 2011-10-21 - - *Antoine CÅ“urCommits: 1Joined: 2015-06-11 @@ -4337,11 +4371,11 @@ *Hugo Beauzée-LuyssenCommits: 1Joined: 2011-09-28 + + *Modestas RimkusCommits: 1Joined: 2011-11-21 - - *Brian FraserCommits: 1Joined: 2013-09-03 @@ -4351,11 +4385,11 @@ *pkoroau pkoroauCommits: 1Joined: 2012-12-20 + + *Audrey TangCommits: 1Joined: 2014-08-05 - - *Krunoslav Å ebetićCommits: 1Joined: 2013-07-18 @@ -4365,11 +4399,11 @@ *gdm.manmeetCommits: 1Joined: 2014-03-18 + + *Juergen SteinhilberCommits: 1Joined: 2012-03-05 - - *Timothée IsnardCommits: 1Joined: 2015-10-11 @@ -4379,11 +4413,11 @@ *Jordi MallachCommits: 1Joined: 2012-05-03 + + *Daniel NaberCommits: 1Joined: 2012-05-09 - - *Martin RichardCommits: 1Joined: 2012-01-31 @@ -4393,11 +4427,11 @@ *Alberto FerreiraCommits: 1Joined: 2012-06-08 + + *Wolfgang SilbermayrCommits: 1Joined: 2010-10-21 - - *William BonnetCommits: 1Joined: 2015-12-05 @@ -4407,11 +4441,11 @@ *Sergey FukanchikCommits: 1Joined: 2015-09-17 + + *Andrew BranchCommits: 1Joined: 2013-02-20 - - *Honza MinarikCommits: 1Joined: 2013-04-03 @@ -4421,39 +4455,39 @@ *Raymond WellsCommits: 1Joined: 2013-09-02 + + *Matt PrattCommits: 1Joined: 2011-11-02 - - *Reto SchneiderCommits: 1Joined: 2015-11-20 + *Hank LeiningerCommits: 1Joined: 2016-02-27 + + *Dave RichardsCommits: 1Joined: 2012-08-22 + + *Alex GulyásCommits: 1Joined: 2014-04-27 *Yurii KolesnykovCommits: 1Joined: 2015-05-10 - - *ackepenekCommits: 1Joined: 2016-02-21 - *JaskaranCommits: 1Joined: 2016-02-18 - - *Nicola PovoleriCommits: 1Joined: 2015-11-28 + + *Richard HughesCommits: 1Joined: 2013-10-01 - - *Nikita OfitserovCommits: 1Joined: 2011-01-10 @@ -4463,13 +4497,10 @@ *Alexandr N. ZamaraevCommits: 1Joined: 2010-10-01 - - *pavelCommits: 1Joined: 2010-12-10 - - *Nico WeyandCommits: 1Joined: 2012-09-02 + *pavelCommits: 1Joined: 2010-12-10 *Kenneth AafløyCommits: 1Joined: 2012-01-11 @@ -4533,7 +4564,7 @@ *galbarnissanCommits: 1Joined: 2014-12-03 - + @@ -5140,17 +5171,17 @@ We do not distinguish between commits that were imported from the OOo code base and those who went directly into the LibreOffice code base as: - + - a) it is technically not possible to distinguish between commits that go directly into the LibreOffice code base and commits that were merged in from the OpenOffice.org code base, and + a) it is technically not possible to distinguish between commits that go directly into the LibreOffice code base and commits that were merged in from the OpenOffice.org code base, and - b) contributors to the OOo code base should also be credited for the excellent work they do. + b) contributors to the OOo code base should also be credited for the excellent work they do. Do note that LibreOffice used to be divided into 20 git repositories. Pushing a change into all repositories will be counted as 20 commits as there is no way to distinguish this from 20 separate commits. Total contributions to the TDF Wiki - 2265 individuals contributed: + 2281 individuals contributed: @@ -5158,16 +5189,16 @@ - Roczek, Dennis (6185) + Roczek, Dennis (6225) - K-j (5933) + K-j (5988) Uroveits (4079) - Pierre-yves samyn (3733) + Pierre-yves samyn (3767) @@ -5178,35 +5209,35 @@ Kü (2880) - Gautier, Sophie (2846) + Gautier, Sophie (2859) - Goncharuk, Lera (2519) + Goncharuk, Lera (2541) - Balland-Poirier, Laurent (2180) + Balland-Poirier, Laurent (2181) Bielefeld, Rainer (2075) - Jeanweber (1997) + Jeanweber (2017) - Effenberger, Florian (1587) + Effenberger, Florian (1592) - Michaelsen, Björn (1437) + Michaelsen, Björn (1439) Marcpare (1382) - Mac-Cormick, João (1224) + Mac-Cormick, João (1227) Adailton (1203) @@ -5234,24 +5265,24 @@ Tom (926) - Clement21.philippe (874) + Ostrovsky, David (893) - Ostrovsky, David (854) + Clement21.philippe (881) - Meeks, Michael (850) + Meeks, Michael (853) - Naruoga (814) + Naruoga (820) - Filmsi (810) + Filmsi (812) - Jayme Barrientos, Adolfo (776) + Jayme Barrientos, Adolfo (787) @@ -5259,10 +5290,10 @@ Teo91 (733) - Enoki (710) + Enoki (715) - Kompilainenn (680) + Kompilainenn (692) Drew (646) @@ -5273,10 +5304,10 @@ H-k (634) - Hallot, Olivier (625) + Hallot, Olivier (632) - Nouws, Cor (608) + Nouws, Cor (610) Jmadero (596) @@ -5284,7 +5315,7 @@ - Behrens, Thorsten (584) + Behrens, Thorsten (585) Hazel (559) @@ -5329,21 +5360,21 @@ Chris69 (419) - Gecko (419) + Rathke, Eike (419) - Rathke, Eike (411) + Gecko (419) - Luz Coelho, Rogério (409) + Vajna, Miklos (411) - HoleÅ¡ovský, Jan (407) + HoleÅ¡ovský, Jan (410) - Vajna, Miklos (406) + Luz Coelho, Rogério (409) Alexander Wilms (392) @@ -5368,41 +5399,41 @@ - Hibagonsan (361) + Hibagonsan (374) - AndrasTimar (346) + Lohmaier, Christian (355) - Lohmaier, Christian (346) + AndrasTimar (346) - Raulpacheco (339) + Foote, V Stuart (344) - Foote, V Stuart (337) + Raulpacheco (339) Thiebaud, Norbert (335) - Tardon, David (331) + Tardon, David (334) - Merschmann, Volker (329) + Philips, Yousuf (330) - Pruegsanusak, Korrawit (328) + Merschmann, Volker (329) - Rönkkö, Niko (322) + Pruegsanusak, Korrawit (328) - Philips, Yousuf (302) + Rönkkö, Niko (322) Heinzws (292) @@ -5416,7 +5447,7 @@ Librelegal (290) - Stahl, Michael (278) + Stahl, Michael (279) RobertG (273) @@ -5424,10 +5455,10 @@ - Christian, Erich (268) + Mohrhard, Markus (272) - Mohrhard, Markus (267) + Christian, Erich (268) Helen russian (266) @@ -5447,26 +5478,26 @@ Adrianoafonso (245) - Loic (240) + Iversen, Jan (244) - Steve (237) + Loic (240) - Elcico (232) + Steve (237) - Bosdonnat, Cédric (231) + Elcico (233) - Dippold, Bernhard (226) + Bosdonnat, Cédric (231) - Iversen, Jan (225) + Dippold, Bernhard (226) Almusaireae (219) @@ -5494,10 +5525,10 @@ - XsLiDian (203) + Hackert, Thomas (203) - Hackert, Thomas (201) + XsLiDian (203) Wheatbix (198) @@ -5508,20 +5539,23 @@ - Schulz, Charles-H. (189) + Veracape (190) - DmitryBowie (188) + Schulz, Charles-H. (189) - Tarnhold (187) + DmitryBowie (188) - Sam m (184) + Sam m (188) + Tarnhold (187) + + Kaplan, Lior (180) @@ -5530,26 +5564,26 @@ Alkurtass, Issa (178) - - Raw text (175) - - Madl, Tobias (175) + Beluga (176) - Fridrich (172) + Raw text (175) - Luizheli (172) + Madl, Tobias (175) - Veracape (172) + Fridrich (172) + Luizheli (172) + + Furusho (169) @@ -5558,16 +5592,13 @@ Henschel, Regina (164) - - Matuaki (163) - - See (160) + Matuaki (163) - Beluga (159) + See (160) Snelders, Rob (159) @@ -5578,7 +5609,7 @@ - Bergmann, Stephan (152) + Bergmann, Stephan (157) Vignoli, Italo (149) @@ -5587,12 +5618,12 @@ Herzog, Christoph (149) - Gonzalez, Daniel (146) + Kerwyn (147) - Kerwyn (145) + Gonzalez, Daniel (146) Mipmap (144) @@ -5620,6 +5651,9 @@ + Rodriguez, Daniel Armando (133) + + Filhocf (132) @@ -5628,16 +5662,13 @@ Richteruwe (131) - - Michel, Mathias (129) - - Nik (127) + Michel, Mathias (129) - Rodriguez, Daniel Armando (126) + Nik (127) Ikuya (123) @@ -5668,7 +5699,7 @@ Abe, Takeshi (119) - Óvári (118) + Óvári (119) Spaeth, Sebastian (115) @@ -5690,13 +5721,13 @@ - Phorious (109) + Bachka (109) - Bachka (108) + Phorious (109) - Nyucel (107) + Nyucel (108) Schulthess, Franziska (107) @@ -5735,10 +5766,10 @@ AlanC (98) - Deneb (93) + Kevin, Suo (é”ç¨ç‘) (95) - Kevin, Suo (é”ç¨ç‘) (93) + Deneb (93) Andreasg (92) @@ -5794,15 +5825,15 @@ JamesWalker (81) - 80686 (79) + Pechlaner, Wolfgang (80) - Pechlaner, Wolfgang (79) + 80686 (79) - KeithCu (78) + KeithCu (79) Milos (78) @@ -5875,13 +5906,13 @@ Jucasaca (68) - Donaldo (67) + Baffclan (67) - Ptux (67) + Donaldo (67) - Baffclan (66) + Ptux (67) @@ -5909,27 +5940,38 @@ Sikeler (63) - Denco (61) + Hertel, Jesper (62) + Denco (61) + + Frieder (61) + Arnaudlecam (60) + + Jlgrenar (60) + + + + Htietze (59) + Neel, Daniel (58) Loflex (58) - - Kukan, Matúš (58) + + Bmcs (57) @@ -5939,11 +5981,11 @@ Davefilms (56) - - Glen.reesor (56) + + Ramones (56) @@ -5953,11 +5995,11 @@ Jrahemipour (55) - - Cornell, Clayton (54) + + Heben2 (53) @@ -5965,6 +6007,9 @@ Sunny2038 (53) + Timur LOL (53) + + Popa, Adrian Marius (52) @@ -5973,19 +6018,16 @@ Petrizzo (52) - Timur LOL (52) - - Vpanter (52) ArnoldSchiller (51) - - Helmar (51) + + Jaani (51) @@ -5995,92 +6037,84 @@ Chtfn (50) - - Halparker (50) + + Ronaldo (50) - Arnaudlecam (49) - - Catalin Festila (49) - - Mpescador (49) Paz (49) + + - Vardomescro (49) + HoráÄek, Stanislav (49) - Htietze (48) + Vardomescro (49) - - Lviktoria (48) Magliocchetti, Riccardo (48) + + Dagobert 78 (47) Buj Gelonch, Robert Antoni (47) - - Sk94 (46) Bfo (45) + + Jung, Philippe (45) Bhorst (44) - - Quest-88 (44) Aaronxu (43) + + Gareth (43) Wilper, Simon (43) - - Bluedwarf (42) - Hertel, Jesper (42) - - KAMI (42) + + Another sam (41) - - Arjunaraoc (41) @@ -6088,15 +6122,12 @@ Joey (41) - HoráÄek, Stanislav (41) - - - Kraucer (40) + Pedlino (41) - Pedlino (40) + Kraucer (40) Dougvigliazzi (38) @@ -6105,11 +6136,14 @@ Enervation (38) - Alex Thurgood (37) + Mike.saunders (38) + Alex Thurgood (37) + + Cjenkins (37) @@ -6118,11 +6152,11 @@ Kano (37) + + Kinshuksunil (37) - - Castle, John LeMoyne (37) @@ -6132,11 +6166,11 @@ RaducuG (37) + + Danishka (36) - - Aragunde Pérez, Jacobo (36) @@ -6146,11 +6180,11 @@ Sci citation (36) + + Liongold (35) - - Nora (35) @@ -6160,11 +6194,11 @@ Quikee (35) + + Raal (35) - - Stalker08 (35) @@ -6174,11 +6208,11 @@ Caco13 (34) + + Mahfiaz (34) - - Enger, Terrence (34) @@ -6188,11 +6222,11 @@ Corrius, Jesús (33) + + Lmartinezh (33) - - Mars (33) @@ -6202,42 +6236,50 @@ Pereriksson (33) + + Rafi (33) - - Shirahara (33) + Donkers, Winfried (33) + + Clio (32) + + Daud (32) Dryomov, Artur (32) - - Xuacu (32) Alexanderwerner (31) + + IvanM (31) Njsg (30) - - + + Sherlock, Chris (30) + Tclovis (30) + + Thardeck (30) @@ -6247,6 +6289,9 @@ Darbe (29) + + EdvaldoSCruz (29) + @@ -6264,15 +6309,15 @@ - EdvaldoSCruz (28) - - Riemer, Philipp (28) Jihui choi (28) + Uwealtmann (28) + + Vulcain (28) @@ -6326,16 +6371,13 @@ Vaslav (26) - Donkers, Winfried (26) - - Aidsoid (25) - - Roßmanith, Christina (25) + + Eresus (25) @@ -6345,15 +6387,18 @@ Sullivan, Gatlin (25) - - Lboccia (25) + + Noelson (25) + Freund, Matthias (25) + + Winniemiel05 (25) @@ -6376,10 +6421,7 @@ - Freund, Matthias (24) - - - Sherlock, Chris (24) + Köse, GülÅŸah (23) Lenochod (23) @@ -6387,11 +6429,11 @@ Olorin (23) - - TaeWong (23) + + Team One (23) @@ -6401,11 +6443,11 @@ Bellerophon (22) - - Balazs, Bjoern (22) + + Grandin, Noel (22) @@ -6415,11 +6457,11 @@ JChimene (22) - - Olivier (22) + + Tommy27 (22) @@ -6429,11 +6471,11 @@ Enio.gemmo (21) - - Ponzo, Gabriele (21) + + Jeppebundsgaard (21) @@ -6443,15 +6485,18 @@ Johannes (21) - - Liusiqi43 (21) + + Necdetyucel (21) + Toxitom (21) + + Wayra (21) @@ -6477,19 +6522,16 @@ Mattsturgeon (20) - Toxitom (20) - - XMatence (20) Yorick (20) - - Zapata (20) + + Afaccioli74 (19) @@ -6499,11 +6541,11 @@ Icobgr (19) - - JaronBaron (19) + + Jem (19) @@ -6513,11 +6555,11 @@ Thumperward (19) - - Elpapki (18) + + Jingtao, Yan (18) @@ -6527,11 +6569,11 @@ Narayan (18) - - Power, Noel (18) + + Richard (18) @@ -6541,53 +6583,53 @@ Sooth (18) - - UriHerrera (18) - - Uwealtmann (18) - + + Valdirbarbosa (18) 林漢昌 (18) - - Akerbeltz (17) Chd (17) + + Dlmoretz (17) Ertsey, Andor (17) - - Guilherme.vanz (17) Gulmorais (17) + + Juergenfenn (17) Lutch (17) - - + + Monastirsky, Maxim (17) + Rubembarreto (17) + + Taken (17) @@ -6597,11 +6639,11 @@ Беломир (17) - - Airon90 (16) + + Alexpikptz (16) @@ -6609,6 +6651,9 @@ Bubli (16) + Cottage14 (16) + + Dhersh (16) @@ -6617,19 +6662,16 @@ Houbsi (16) - Mike.saunders (16) - - MoIshihara (16) Oweng (16) - - P.Guimberteau (16) + + Ristoi (16) @@ -6639,11 +6681,11 @@ Vuhung (16) - - APerson (15) + + Andy98 (15) @@ -6653,11 +6695,11 @@ Craigo (15) - - Franklin (15) + + Irmhild (15) @@ -6667,11 +6709,11 @@ Lefevre00 (15) - - Luctur (15) + + Miko (15) @@ -6681,11 +6723,11 @@ Dominguez, Rafael (15) - - PauGNU (15) + + Raul.malea (15) @@ -6695,11 +6737,11 @@ Ulf hamburg (15) - - æš—å½±éºè¨€ (15) + + Fina (14) @@ -6707,108 +6749,100 @@ Kosiorek, Bartosz (14) - Köse, GülÅŸah (14) - - - - Guuml (14) Halencarjunior (14) + + Jstnlth (14) Lfernandocarvalho (14) - - Librosaurus (14) Mderoucy (14) + + Kaganski, Mike (14) Rania (14) - - Reinsle (14) Tamiliam (14) + + Testnoda (14) Thangamani-arun (14) - - Akoscomp (13) Alrt84 (13) + + Alyssonware (13) Beuss (13) - - Cedric31 (13) Gallaecio (13) + + Kadekilo (13) Leomota (13) - - Ljelly (13) Luc (13) + + Luked (13) Mabbb (13) - - Mihkel (13) - Monastirsky, Maxim (13) - - Mortense (13) + + Odd123 (13) - - Pete Boyd (13) @@ -6818,11 +6852,11 @@ S.Gecko (13) + + Samtuke (13) - - Sanyii (13) @@ -6832,11 +6866,11 @@ ThierryM (13) + + Tnishiki (13) - - Vivaelcelta (13) @@ -6846,11 +6880,11 @@ And471 (12) + + AustinW (12) - - Bhaskar (12) @@ -6860,11 +6894,11 @@ Al-Otaibi, Faisal M. (12) + + Halan (12) - - Immanuelg (12) @@ -6874,11 +6908,11 @@ Godard, Laurent (12) + + Pcapeluto (12) - - Gupta, Rachit (12) @@ -6888,11 +6922,11 @@ Staticsafe (12) + + Veerh01 (12) - - Webmink (12) @@ -6902,11 +6936,11 @@ Cdan (11) + + Strobbe, Christophe (11) - - Dajare (11) @@ -6916,11 +6950,11 @@ Eduaraujo (11) + + Gokul, S (11) - - Kallecarl (11) @@ -6930,11 +6964,11 @@ Krabina (11) + + Luiz Henrique Natalino (11) - - Marcuskgosi (11) @@ -6944,11 +6978,11 @@ Johansson, Niklas (11) + + Nuernbergerj (11) - - PeeWee (11) @@ -6958,197 +6992,205 @@ Salmaan (11) + + Raruenrom, Samphan (11) - - + + Möller, Sören — spelled Soeren Moeller in some patches (11) + Sunk8 (11) Gomez, Andres (11) + + Zero0w (11) Admasonscottisha (10) - - Aeusebio (10) Algotruneman (10) + + AliIsingor (10) Castagno, Giuseppe (10) - - Blargh (10) Crolidge (10) + + Diginin (10) Eagles051387 (10) - - Eduardogula (10) El7r (10) + + Elrath (10) J.baer (10) - - Kadertarlan (10) Kirill NN (10) + + Lionlinux (10) MNeto (10) - - Pearson, Timothy (10) Chung, Elton (10) + + Mikalai (10) Nateyee (10) - - Otto (10) - Revol (10) + Patriciasc (10) + + - Ronja (10) + Revol (10) - Möller, Sören — spelled Soeren Moeller in some patches (10) + Ronja (10) - - Tatat (10) Teseu (10) + + Tomg (10) Twstdude0to1 (10) - - User8192 (10) WalterPape (10) + + Wlenon (10) Al-Abdulrazzaq, Abdulmajeed (9) - - Agger (9) AtkinsSJ (9) + + Blendergeek (9) Calisgarge (9) - - Camargo (9) Cnuss (9) + + Crazyskeggy (9) Dupreyb (9) - - Fatdf (9) Geeta (9) + + Gibi (9) GisbertFriege (9) - - Goranrakic (9) Jim-BobHarris (9) + + Jopsen (9) Jowyta (9) - - Funk, Juergen (9) + Hosny, Khaled (9) + + + + Lapetec (9) @@ -7157,11 +7199,11 @@ Mapper (9) - - Marco (9) + + Bogliolo, Meo (9) @@ -7171,11 +7213,11 @@ Ohnemax (9) - - Oprea.luci (9) + + Foley, Peter (9) @@ -7185,11 +7227,11 @@ Pixpray (9) - - Dricot, Lionel (9) + + Rogawa (9) @@ -7199,11 +7241,11 @@ Ellis, Damien (9) - - Therabi (9) + + Ttocsmij (9) @@ -7213,11 +7255,11 @@ Zhangxiaofei (9) - - ميدو (9) + + Baird, Alan C. (8) @@ -7227,15 +7269,18 @@ AndreasL (8) - - Ausserirdischegesund (8) + + Cocofan (8) + Cusiri (8) + + Dashohoxha (8) @@ -7278,16 +7323,13 @@ Kednar (8) - Hosny, Khaled (8) - - Rietveld, Kristian (8) - - Lee (8) + + Leigh, Jack (8) @@ -7297,11 +7339,11 @@ Manj k (8) - - Mrmox2 (8) + + NightMonkey (8) @@ -7311,11 +7353,11 @@ Peterpall (8) - - Ricardolau (8) + + Seomarketing221 (8) @@ -7325,11 +7367,11 @@ Tibbylickle (8) - - Troumad (8) + + Vbkaisetsu (8) @@ -7339,11 +7381,11 @@ Yakusha (8) - - Yostane (8) + + Kabatsayev, Ruslan (7) @@ -7353,11 +7395,11 @@ Andrea.soragna (7) - - Ashishku9888 (7) + + Bastik (7) @@ -7367,11 +7409,11 @@ Bookman900 (7) - - Borim7 (7) + + Capiscuas (7) @@ -7381,6 +7423,9 @@ Dado (7) + + Dennisfrancis (7) + @@ -7527,16 +7572,19 @@ Coypu (6) + Wieërs, Dag (6) + + BEN MANSOUR, Mohamed-Ali (6) Ddxavier (6) + + Dfriedman (6) - - DotnetCarpenter (6) @@ -7546,11 +7594,11 @@ Dr.Faust (6) + + Druzhshchienschkyj (6) - - Edmond ciorba (6) @@ -7560,11 +7608,11 @@ FPhoenix (6) + + Fdekruijf (6) - - Gallaire, Florent (6) @@ -7574,11 +7622,11 @@ Florian heckl (6) + + Ghune (6) - - Googly Googly (6) @@ -7588,11 +7636,11 @@ Hmoi (6) + + Hramrach (6) - - Hrbrgr (6) @@ -7602,11 +7650,11 @@ Iplaw67 (6) + + Timofeev, Ivan (6) - - Jeffersonx (6) @@ -7616,11 +7664,11 @@ Levlazinskiy (6) + + Link Mauve (6) - - MaggieT (6) @@ -7630,11 +7678,11 @@ Manop (6) + + Mas (6) - - Mgommel (6) @@ -7644,11 +7692,11 @@ Ndlsas (6) + + Nemo bis (6) - - Öttl, Gerhard (6) @@ -7658,11 +7706,11 @@ Konefal, Pawel (6) + + Pescetti (6) - - Peter Chastain (6) @@ -7672,11 +7720,11 @@ Puggan (6) + + Rotaj (6) - - Sn!py (6) @@ -7686,11 +7734,11 @@ Heidenreich, Josh (6) + + Thorwil (6) - - Tyree (6) @@ -7700,11 +7748,11 @@ Vgezer (6) + + Virthus (6) - - Wagner Augusto Silva Rodrigo (6) @@ -7714,11 +7762,11 @@ Wiseacre (6) + + صÙا الÙليج (6) - - 3blz (5) @@ -7728,11 +7776,11 @@ Alberthuddle (5) + + Albucasis (5) - - AleXanDeR G (5) @@ -7742,11 +7790,11 @@ Andrea Gelmini (5) + + Anousak (5) - - Liwen, Fan (5) @@ -7756,11 +7804,11 @@ Sodora, August (5) + + AustinSaintAubin (5) - - Baumgarp (5) @@ -7770,16 +7818,13 @@ BloodIce (5) - - Cray85 (5) - - Dejourdain (5) + Cray85 (5) - Dennisfrancis (5) + Dejourdain (5) DickStomp (5) @@ -7869,11 +7914,14 @@ Orcmid (5) - Osnola (5) + Os cib (5) + Osnola (5) + + Milvaques, Pasqual (5) @@ -7882,11 +7930,11 @@ Pkoroau (5) + + Poeml (5) - - Rajesh (5) @@ -7896,11 +7944,11 @@ Raulpaes (5) + + Rogerio DA (5) - - Salavine1 (5) @@ -7910,11 +7958,11 @@ Sergej (5) + + So solid moo (5) - - Srividya (5) @@ -7924,11 +7972,11 @@ Taylorh140 (5) + + Terentev.mn (5) - - Timotheonb (5) @@ -7938,11 +7986,11 @@ Wt (5) + + AHi (4) - - Aaronkyle (4) @@ -7952,11 +8000,11 @@ Agron (4) + + Albertoeda (4) - - Nureña, Aldo Román (4) @@ -7966,11 +8014,11 @@ Alvarenga (4) + + Alzoo (4) - - Amire80 (4) @@ -7980,11 +8028,11 @@ Andréb (4) + + Archlid (4) - - Arhitectul (4) @@ -7994,11 +8042,11 @@ Ayhanyalcinsoy (4) + + Bardo (4) - - Bigbek (4) @@ -8008,11 +8056,11 @@ Blender3dartist (4) + + Bntser (4) - - Br983288 (4) @@ -8022,11 +8070,11 @@ ConquerorsHaki (4) + + Crankybot (4) - - CyrilBeaussier (4) @@ -8036,11 +8084,11 @@ Dmerker (4) + + DmitryRamones (4) - - Doubi (4) @@ -8050,11 +8098,11 @@ Robertson, Daniel (4) + + Edmund.laugasson (4) - - Eisaks (4) @@ -8064,11 +8112,11 @@ Fmolinero (4) + + Ftigeot (4) - - GKFX (4) @@ -8078,11 +8126,11 @@ Gmjs (4) + + Hossein (4) - - ImperfectlyInformed (4) @@ -8092,11 +8140,11 @@ Jiehong (4) + + Jjmeric (4) - - JnRouvignac (4) @@ -8106,11 +8154,11 @@ Jones (4) + + Jooste (4) - - Joriki (4) @@ -8120,11 +8168,11 @@ Lethargilistic (4) + + Loren.rogers (4) - - MDDN (4) @@ -8134,11 +8182,11 @@ MPascual (4) + + Rumianowski, Maciej (4) - - Marco c (4) @@ -8148,11 +8196,11 @@ Midimarcus (4) + + Mikedoherty ca (4) - - Morgan greywolf (4) @@ -8162,13 +8210,10 @@ NGHLibreOffice (4) - - Orson69 (4) - - Os cib (4) + Orson69 (4) Oscar90210 (4) @@ -8227,16 +8272,19 @@ Surat (4) + Svante (4) + + Tct (4) Thetic (4) + + Tk (4) - - Txwikinger (4) @@ -8246,42 +8294,50 @@ UlKu (4) + + + + Umeshpatel (4) + V., Artem (4) - - Wcolen (4) Wikiuser (4) + + Williamjmorenor (4) Wpeixoto (4) - - Ð”ÐµÐ½Ð¸Ñ (4) Aalam (3) + + Adept (3) Aexyn (3) - - + + Akki95 (3) + Alex.simoes (3) + + Alexsfagundes (3) @@ -8291,11 +8347,11 @@ Andrey Usov (3) - - Antanasb (3) + + Armin (3) @@ -8305,11 +8361,11 @@ Arthur Zennig (3) - - Aurelien (3) + + Baena (3) @@ -8319,11 +8375,11 @@ Benjwgarner (3) - - Bindassanant (3) + + Bodhi-Baum (3) @@ -8333,11 +8389,11 @@ Bos (3) - - Brub (3) + + Burdakov (3) @@ -8347,11 +8403,11 @@ CallieCarney (3) - - Castro (3) + + Charu (3) @@ -8361,15 +8417,18 @@ Cmorgan (3) - - Colokalle (3) + + Cono (3) + D0ugparker (3) + + DaSch (3) @@ -8420,6 +8479,9 @@ + Farukuzun (3) + + Fraang (3) @@ -8428,11 +8490,11 @@ Frob tea (3) + + Fulldecent (3) - - FunkyPenguin (3) @@ -8442,11 +8504,11 @@ Gouchi (3) + + Hansgerd.schneider (3) - - Herrmarder (3) @@ -8456,11 +8518,11 @@ Imcon (3) + + It-christian (3) - - JDM (3) @@ -8470,11 +8532,11 @@ Murugan, Jesso Clarence (3) + + Jhbn (3) - - Joe312213 (3) @@ -8484,11 +8546,11 @@ Joseroberto (3) + + Juanpabl (3) - - K Karthikeyan (3) @@ -8498,84 +8560,92 @@ Kevinob (3) + + Kfogel (3) - - Khunshan (3) + Kisamar7 (3) + + Kkrothapalli (3) + + Kristof (3) Kscanne (3) - - LO Rob (3) Lennoazevedo (3) + + LewisCowles (3) Libcub (3) - - LucaCappelletti (3) Hryniuk, Åukasz (3) + + Luuk (3) Margott (3) - - Matteocam (3) Mattias (3) + + Maxwell (3) Melike (3) - - Mhsmsantos (3) Michaelwheatland (3) + + + + Morvan (3) + Neookano (3) Nicolas.abel (3) - - Niconil (3) + + Ragnarsson, Björgvin (3) @@ -8585,11 +8655,11 @@ Noel Power (3) - - OOarthurOo (3) + + Steinbeiß, Simon (3) @@ -8599,53 +8669,53 @@ Oliverguenther (3) - - Oprea luci (3) - - Patriciasc (3) - + + Penalvch (3) van Oostrum, Piet (3) - - Ptoye (3) Rajatvijay (3) + + Rapha.ksf (3) Rauloliverpaes (3) - - Rautamiekka (3) RebeccaHodgson (3) + + + + ReneEngelhard (3) + Rick (3) Robert.E.A.Harvey (3) - - Rosemary (3) + + Sander Klootwijk (3) @@ -8655,11 +8725,11 @@ Saper (3) - - Satabin (3) + + Sayt (3) @@ -8669,11 +8739,11 @@ Sergey Aka (3) - - Shelandy (3) + + Skinnerbird (3) @@ -8683,11 +8753,11 @@ Songchuan (3) - - Soued031 (3) + + StefanRing (3) @@ -8697,11 +8767,11 @@ Strugee (3) - - Suren (3) + + Sushils (3) @@ -8711,11 +8781,11 @@ TheWebalyst (3) - - Timsamoff (3) + + Tititou36 (3) @@ -8725,11 +8795,11 @@ Tomi Toivio (3) - - Toxifier (3) + + TrnsltLife (3) @@ -8739,11 +8809,11 @@ Kitzinger, Ulrich (3) - - Underdog (3) + + Melenchuk, Vasily (3) @@ -8753,10 +8823,13 @@ Vljubovic (3) + + Wagnerluis1982 (3) + - Wagnerluis1982 (3) + Tamás, Bunth (3) Khoo, Wei Ming (3) @@ -8994,6 +9067,9 @@ + Cameron112 (2) + + CamilleMccarthy (2) @@ -9002,11 +9078,11 @@ CapistranOleary (2) + + Capri99 (2) - - CaraDang6 (2) @@ -9016,11 +9092,11 @@ CarolinaCalling (2) + + CarrieDaniels (2) - - CarrollRico2 (2) @@ -9030,11 +9106,11 @@ CavesGill8 (2) + + Celsovsm (2) - - Cgrosdemange (2) @@ -9044,11 +9120,11 @@ Chanda57Oyhnbco (2) + + ChanieSnow2 (2) - - Cheche (2) @@ -9058,11 +9134,11 @@ Cjbackhouse (2) + + Cl-r (2) - - ClariceThorne (2) @@ -9072,11 +9148,11 @@ Clemen Beek (2) + + Codingmicha (2) - - ConcepcionMarsh (2) @@ -9086,11 +9162,11 @@ Crxssi (2) + + CupertinoDarnell (2) - - Cvk (2) @@ -9100,9 +9176,6 @@ DaCaPo (2) - - Dag (2) - @@ -9294,16 +9367,13 @@ FannyTillman8 (2) - Farukuzun (2) - - FateHarrington (2) - - Fcojavmc (2) + + Feldo (2) @@ -9313,11 +9383,11 @@ FlaviaPratt8 (2) - - FlorenceGrossman (2) + + FlorenceKim1 (2) @@ -9327,11 +9397,11 @@ Foolfitz (2) - - FordRhodes5 (2) + + FranciscoByrne (2) @@ -9341,11 +9411,11 @@ Fukanchik, Sergey (2) - - Garcia.marc (2) + + GayeRossetti (2) @@ -9355,11 +9425,11 @@ GeoffLawrence (2) - - GeorgiannaOchoa (2) + + Gerardgiraud (2) @@ -9369,11 +9439,11 @@ GertieEllington (2) - - GiertrudaLehman (2) + + Girvinh (2) @@ -9383,11 +9453,11 @@ Glanbeav (2) - - Gmealer (2) + + GraciaNorwood (2) @@ -9397,11 +9467,11 @@ Grim (2) - - Gualtiero (2) + + Guillem (2) @@ -9411,11 +9481,11 @@ HannaEspinoza (2) - - HardyBurris1 (2) + + HarleyWatkins (2) @@ -9425,11 +9495,11 @@ Hector (2) - - Hedaja (2) + + Hellpé (2) @@ -9439,11 +9509,11 @@ Hemmerling (2) - - Jensen, Henrik (2) + + HeriberDacomb (2) @@ -9453,11 +9523,11 @@ Herronrobertson (2) - - HershelPeterson (2) + + IIIYates8 (2) @@ -9467,11 +9537,11 @@ IkeVasquez9 (2) - - IlaRoberts4 (2) + + Imagin8or (2) @@ -9481,11 +9551,11 @@ IraLane4 (2) - - IrinaMccormack (2) + + IrvinBernard9 (2) @@ -9495,11 +9565,11 @@ IsaiahBuck5 (2) - - IsiahLackey2 (2) + + IvaRoach5 (2) @@ -9509,11 +9579,11 @@ Adams, Jonathan (2) - - C., James (2) + + JanetSolberg (2) @@ -9523,11 +9593,11 @@ Jasmins (2) - - JasperSawyer7 (2) + + JavierFernandez (2) @@ -9537,11 +9607,11 @@ Jcentel (2) - - Jcubic (2) + + Jeraldinesewell (2) @@ -9551,11 +9621,11 @@ JettieGibson2 (2) - - Jgpestana (2) + + Lingard, J. Graeme (2) @@ -9565,11 +9635,11 @@ Jnicolas (2) - - JoWi (2) + + JonesRichter8 (2) @@ -9579,11 +9649,11 @@ João Pedro (2) - - Jstaniek (2) + + JudasPeoples9 (2) @@ -9593,11 +9663,11 @@ JudithGraves6 (2) - - Jumoun (2) + + JustinaEldridge (2) @@ -9607,11 +9677,11 @@ Karakartala (2) - - KarkGunn4 (2) + + Karolus (2) @@ -9621,11 +9691,11 @@ Kazuyuki Yoshimura (2) - - Keepiledar (2) + + KeithC (2) @@ -9635,11 +9705,11 @@ KittyBauer5 (2) - - KlementynaMckinney (2) + + Kmr (2) @@ -9649,11 +9719,11 @@ Kolorguild (2) - - Krauss (2) + + KroniK907 (2) @@ -9663,11 +9733,11 @@ KsaweryDempsey (2) - - Kwilliams (2) + + L (2) @@ -9677,11 +9747,11 @@ LeanaParks2 (2) - - LeilaniLattimor (2) + + LemuelHo1 (2) @@ -9691,11 +9761,11 @@ Lhcezar (2) - - LidaMasters1 (2) + + Lino (2) @@ -9705,11 +9775,11 @@ Lliehu (2) - - LovisaKessler (2) + + Petrolekas, Luke (2) @@ -9719,11 +9789,11 @@ LucretiLlb (2) - - LynnForbes3 (2) + + Casalin, Matteo (2) @@ -9733,11 +9803,11 @@ MZNBelendndq (2) - - Ma83mit (2) + + MabelleStanley (2) @@ -9747,11 +9817,11 @@ MagdaleneOneal (2) - - MaggieGray2 (2) + + MagnoliaParsons (2) @@ -9761,11 +9831,11 @@ MarMai (2) - - Bessières, Marc (2) + + MarchCourtney (2) @@ -9775,11 +9845,11 @@ Marco74 (2) - - MargeretRiley (2) + + MargeryThorpe (2) @@ -9789,11 +9859,11 @@ Marius (2) - - Marric (2) + + MartaRollins2 (2) @@ -9803,11 +9873,11 @@ MartinPC (2) - - MateuszDominguez (2) + + Matt 51 (2) @@ -9817,11 +9887,11 @@ Mazuritz (2) - - Mbemidio (2) + + Measure for Measure (2) @@ -9831,11 +9901,11 @@ Merchantbusiness (2) - - Kepplinger, Martin (2) + + MerleGlass6 (2) @@ -9845,11 +9915,11 @@ Mgiri (2) - - Michaelx (2) + + Michel Gagnon (2) @@ -9859,11 +9929,11 @@ MikeyZ (2) - - MinaHuggins7 (2) + + Mind4z (2) @@ -9873,11 +9943,11 @@ Mitcoes (2) - - Mjkopp (2) + + Mklever (2) @@ -9887,11 +9957,11 @@ Mloiseleur (2) - - Mnalima (2) + + Mnsoto (2) @@ -9901,11 +9971,11 @@ Mordocai (2) - - MorganJohnstone (2) + + Rugiero, Mario (2) @@ -9915,11 +9985,11 @@ Mttza1 (2) - - Musicstave (2) + + Mzalewski (2) @@ -9929,11 +9999,11 @@ Narcisgarcia (2) - - NealEspinoza6 (2) + + NettaHurd9 (2) @@ -9943,11 +10013,11 @@ NewtonZuniga9 (2) - - Nishino, Daisuke (2) + + NicholasLanier (2) @@ -9957,11 +10027,11 @@ Christener, Nicolas (2) - - NinaLam6 (2) + + Noirin (2) @@ -9971,11 +10041,11 @@ NorrisAndersen (2) - - NovemberVogel (2) + + Nsharifi (2) @@ -9985,11 +10055,11 @@ OUPS (2) - - Oashnic (2) + + Oiaohm (2) @@ -9999,11 +10069,11 @@ OlieBooth3 (2) - - OlivierC (2) + + OnopriyBrandon (2) @@ -10013,11 +10083,11 @@ OscarMeredith (2) - - Percherie (2) + + PercherskySanford (2) @@ -10027,6 +10097,9 @@ Pgraber (2) + + Phil.davis (2) + @@ -10078,16 +10151,13 @@ ReginaldMcgraw (2) - ReneEngelhard (2) - - RenniePrescott (2) - - RetaStern5 (2) + + RhodaMackey3 (2) @@ -10097,11 +10167,11 @@ Rmarquardt (2) - - Roadrunner (2) + + RollandHannah (2) @@ -10111,11 +10181,11 @@ RosalinBlaubaum (2) - - RosannaPaul7 (2) + + RosariaLampungm (2) @@ -10125,11 +10195,11 @@ RoyShelton7 (2) - - Ryan (2) + + Sagar.libo (2) @@ -10139,11 +10209,11 @@ SamBenavides5 (2) - - Sankarshan (2) + + SavinaShaffer (2) @@ -10153,11 +10223,11 @@ SebastianNorth (2) - - Sebutler (2) + + Sergwish (2) @@ -10167,15 +10237,18 @@ Shaforostoff (2) - - Shankar (2) + + Shaun.schutte (2) + Shounmark707 (2) + + SidneyArredondo (2) @@ -10235,14 +10308,11 @@ SusanSwain3 (2) - Svante (2) + Sven.fischer.de (2) - Sven.fischer.de (2) - - Sydbarrett74 (2) @@ -10251,11 +10321,12 @@ Syntaxerrormmm (2) - - Tauon (2) + + + Techal (2) @@ -10265,11 +10336,11 @@ TeenaWilburn (2) - - TeresaMacias3 (2) + + Teresavillegas1 (2) @@ -10279,11 +10350,11 @@ TheaGallardo8 (2) - - TheodoseyPeralta (2) + + TheophilusHess (2) @@ -10293,11 +10364,11 @@ Thomeck (2) - - Thorongil (2) + + Tim1075 (2) @@ -10307,11 +10378,11 @@ TimothyChilds (2) - - TomaMora8 (2) + + Tomkeb (2) @@ -10321,11 +10392,11 @@ TraciKQAZnsqjho (2) - - TressieCulver (2) + + Isnard, Timothée (2) @@ -10335,11 +10406,11 @@ Usik64 (2) - - ValessioBrito (2) + + VanHogan7 (2) @@ -10349,12 +10420,11 @@ VasylynaKendall (2) - - - VerneDodd5 (2) + + VernitaDonley (2) @@ -10364,11 +10434,11 @@ VeronicaGrimes (2) - - ViolaPraed (2) + + Viper550 (2) @@ -10378,11 +10448,11 @@ VladimirBassett (2) - - VladimirPrince (2) + + VladislavA (2) @@ -10392,11 +10462,11 @@ VolodymyraGagnon (2) - - Vossman (2) + + WaclawaSavage (2) @@ -10406,11 +10476,11 @@ WallaceSolano (2) - - WarrenChristian (2) + + WashingtonOakley (2) @@ -10420,11 +10490,11 @@ WeronikaKeene (2) - - WikiImporter (2) + + WilhelminaEaton (2) @@ -10434,11 +10504,11 @@ Wirelessben (2) - - Wkn (2) + + Wulei (2) @@ -10448,11 +10518,11 @@ Yaw (2) - - ZiriaKo (2) + + ZoraWinkler1 (2) @@ -10462,11 +10532,11 @@ æµæ˜Ÿä¾æ—§ (2) - - A H (1) + + AaronPeterson (1) @@ -10476,11 +10546,11 @@ Abdulaziz A Alayed (1) - - Absolute Garcinia (1) + + Acetfntfh (1) @@ -10490,11 +10560,11 @@ AdalberDesailll (1) - - Adlard.matthew (1) + + Advicesformen (1) @@ -10504,40 +10574,40 @@ Agradecido (1) - - Ainurshakirov (1) + + Ajaxfiore (1) - Akki95 (1) - - Albrechtloh (1) - - Aleks (1) Henrie, Alex (1) + + Alex38-68 (1) Alex80 (1) - - AlexF (1) + AlexP111223 (1) + + + + Alexandrevicenzi (1) @@ -10546,11 +10616,11 @@ Chemichev, Alexey (1) - - Alexis Wilke (1) + + Alexnivan (1) @@ -10560,11 +10630,11 @@ Alexsandro Matias (1) - - Ali (1) + + AlphonsDen (1) @@ -10574,11 +10644,11 @@ Alverne (1) - - Amacater (1) + + Andarilhobotto (1) @@ -10588,11 +10658,11 @@ AndreasK (1) - - AndreasNeudecker (1) + + AndresZapata (1) @@ -10602,11 +10672,11 @@ Andriazdk2177 (1) - - AngelaRusconi (1) + + AngelinChisolm (1) @@ -10616,11 +10686,11 @@ AntoineVe (1) - - Antonello Lobianco (1) + + AntoniePonder (1) @@ -10630,11 +10700,11 @@ Apfelsaft (1) - - ArdenRatcliff (1) + + Arekm (1) @@ -10644,11 +10714,11 @@ ArielleWx (1) - - Arkonide (1) + + Armandos (1) @@ -10658,11 +10728,11 @@ Arnoldu (1) - - Teigseth, Arno (1) + + Artintal (1) @@ -10672,11 +10742,11 @@ Asiersar (1) - - Astalaseven (1) + + AstridGoo (1) @@ -10686,11 +10756,11 @@ Augustina (1) - - AundreaPqf (1) + + AvaPANumrgiabjx (1) @@ -10700,11 +10770,11 @@ B3t (1) - - Bailiwick (1) + + Bailly02 (1) @@ -10714,11 +10784,11 @@ Bandera (1) - - Barbara21F (1) + + BarryLovegrove (1) @@ -10728,11 +10798,11 @@ Bckurera (1) - - BelindaApplerot (1) + + BernardHannafor (1) @@ -10742,11 +10812,11 @@ Beyoken (1) - - Beznogov (1) + + Bezzy (1) @@ -10756,11 +10826,11 @@ Bgranados (1) - - BillyBurke (1) + + Biofool (1) @@ -10770,11 +10840,11 @@ Bkg2018 (1) - - Bkolaimeraq (1) + + BlakeGartrell (1) @@ -10784,11 +10854,11 @@ BlancheClopton (1) - - Blandyna (1) + + Bolo (1) @@ -10798,11 +10868,11 @@ Borowcm (1) - - Bortis (1) + + Sowden, Brad (1) @@ -10812,11 +10882,11 @@ BridgettC (1) - - Brinzing, Oliver (1) + + BroderiHolyman (1) @@ -10826,11 +10896,11 @@ BryceMoorhouse (1) - - Budo (1) + + Bureken (1) @@ -10840,11 +10910,11 @@ Bzsolt (1) - - BáthoryPéter (1) + + CalebSommer (1) @@ -10854,11 +10924,11 @@ CamillaPena (1) - - Paul, Cameron (1) + + CandelariaJageu (1) @@ -10868,11 +10938,11 @@ CarloASilva (1) - - Carlos (1) + + Carlos.gilaranz (1) @@ -10882,11 +10952,11 @@ Castarco (1) - - CedricQ73ktehvp (1) + + Cesera (1) @@ -10896,11 +10966,11 @@ Charles12 (1) - - CharlesJenkins (1) + + Chatjoe (1) @@ -10910,11 +10980,11 @@ Beauzée-Luyssen, Hugo (1) - - Christoph.herzog (1) + + Chrlutz (1) @@ -10924,11 +10994,11 @@ CiaraLockie (1) - - Ciriaco (1) + + Classieur (1) @@ -10938,11 +11008,11 @@ Clem (1) - - CletaValentino (1) + + Clint7236c (1) @@ -10952,11 +11022,11 @@ Cora17 (1) - - Corsolibreoffice (1) + + Cosmopolitan (1) @@ -10966,11 +11036,11 @@ Cpinedar (1) - - Cpmipn (1) + + CrystleGravatt (1) @@ -10980,11 +11050,11 @@ DaisieDavison (1) - - DamionThorp (1) + + Danichocolate (1) @@ -10994,11 +11064,11 @@ Darcy0243gd (1) - - DarylAlcantar (1) + + DarylBoot (1) @@ -11008,11 +11078,11 @@ Dave (1) - - Davidmichel (1) + + DawnOgles (1) @@ -11022,11 +11092,11 @@ De-jourdain (1) - - DeShark (1) + + DeannaQuaife (1) @@ -11036,11 +11106,11 @@ Ray, Debarshi (1) - - DebbraWingfield (1) + + DeborahW18 (1) @@ -11050,11 +11120,11 @@ DelilahBock (1) - - Denytracom (1) + + Dezsiszabi (1) @@ -11064,11 +11134,11 @@ Herde, Daniel (1) - - Dhiren (1) + + Kettner, Valentin (1) @@ -11078,11 +11148,11 @@ DocuFree (1) - - Dominiko (1) + + Dominuk (1) @@ -11092,11 +11162,11 @@ DoreenDuell (1) - - Douglasm (1) + + Drizamanuber (1) @@ -11106,11 +11176,11 @@ Drtimwright (1) - - Dusek (1) + + Dxider (1) @@ -11120,11 +11190,11 @@ EHGSammyevumvzq (1) - - EarnestLamaro (1) + + EarnestT57 (1) @@ -11134,11 +11204,11 @@ Edsonlead (1) - - Edz (1) + + Efcis (1) @@ -11148,11 +11218,11 @@ Brill, Christoph (1) - - Ehenryb (1) + + ElahiMohammad (1) @@ -11162,11 +11232,11 @@ Elisa0474wgwgq (1) - - Elliot1415 (1) + + ElmaWalcott (1) @@ -11176,11 +11246,11 @@ Emyr (1) - - Enesates (1) + + Ennael (1) @@ -11190,11 +11260,11 @@ Eric (1) - - ErickRijoJr (1) + + Ernsttremel (1) @@ -11204,11 +11274,11 @@ Esben aaberg (1) - - EstebanUD (1) + + EstelaAWTxiu (1) @@ -11218,11 +11288,11 @@ Evfool (1) - - Factooor (1) + + Falatooni (1) @@ -11232,11 +11302,11 @@ Farhaf (1) - - FarzanehSarafraz (1) + + Faseeh1218 (1) @@ -11246,11 +11316,11 @@ Fenchi (1) - - Ferlodev (1) + + FerminAndrade (1) @@ -11260,11 +11330,11 @@ Fghj (1) - - Flirtwomens (1) + + Foobar (1) @@ -11274,11 +11344,11 @@ Francesco (1) - - Fred.th (1) + + Manas Joshi (1) @@ -11288,11 +11358,11 @@ Gabrielezorzi (1) - - Garhitusqr (1) + + Gautrucdo (1) @@ -11302,11 +11372,11 @@ Gcoelho (1) - - GeeZ (1) + + Gekacheka (1) @@ -11316,11 +11386,11 @@ van Valkenhoef, Gert (1) - - Houston, Gary (1) + + Giancav (1) @@ -11330,11 +11400,11 @@ Gmeijssen (1) - - Gmolleda (1) + + Gpmanrpi (1) @@ -11344,11 +11414,11 @@ Hernandez, Gregg (1) - - Grover47Ywzdn (1) + + GroverYQVvwokac (1) @@ -11358,11 +11428,11 @@ Gstein (1) - - Guhde (1) + + Guillaume (1) @@ -11372,11 +11442,11 @@ H Wettlaufer (1) - - HFujimaki (1) + + HKagerer (1) @@ -11386,11 +11456,11 @@ Haggai (1) - - Hagos (1) + + Hamati (1) @@ -11400,11 +11470,11 @@ Hasinasi (1) - - Hbr (1) + + Rui Wang (1) @@ -11414,11 +11484,11 @@ Hermeli2856 (1) - - Heygo (1) + + Heyheyitshay (1) @@ -11428,11 +11498,11 @@ HilarioTr (1) - - Hillrich (1) + + HiltonFtel (1) @@ -11442,10 +11512,13 @@ Hkdocholid (1) + + Hlavaty, Tomas (1) + - Hlavaty, Tomas (1) + Hoaivan27299 (1) Honza.havlicek (1) @@ -11969,14 +12042,17 @@ MarcosHanson (1) - MargaretaNorthc (1) + Marcosps (1) - MargoBergman (1) + MargaretaNorthc (1) + MargoBergman (1) + + MarianaConnell (1) @@ -11985,11 +12061,11 @@ MarinaManess (1) + + MarkWielaaard (1) - - Markcoomes (1) @@ -11999,11 +12075,11 @@ MarlonMarcum (1) + + MarthaWaterman (1) - - Marwan (1) @@ -12013,11 +12089,11 @@ MarylynKu (1) + + Masaki tamakoshi (1) - - Massao (1) @@ -12027,11 +12103,11 @@ MattTheGeek (1) + + Campanelli, Matteo (1) - - MatÄ›j (1) @@ -12041,11 +12117,11 @@ Maxjf1 (1) + + Bechler, Moritz (1) - - Mdanrana0123 (1) @@ -12055,11 +12131,11 @@ Megan44Dgxg (1) + + Melikeyurtoglu (1) - - MelisaBroughton (1) @@ -12069,11 +12145,11 @@ Menturi (1) + + MeriMerideth (1) - - Mete0r (1) @@ -12083,11 +12159,11 @@ Mhcrnl (1) + + Mhenriday (1) - - Mhoes (1) @@ -12097,11 +12173,11 @@ Michaelwood (1) + + Michka B (1) - - Midomidi2013 (1) @@ -12111,11 +12187,11 @@ Miguelverdu (1) + + Mikolg (1) - - MilagroWilkerso (1) @@ -12125,11 +12201,11 @@ Miles (1) + + Minarja4 (1) - - MitchellP (1) @@ -12139,11 +12215,11 @@ Mixer (1) + + Mixstah (1) - - Mmeof (1) @@ -12153,16 +12229,13 @@ ModestoZzc (1) - - Mohammedzalta (1) - - Momo50 (1) + Mohammedzalta (1) - Morvan (1) + Momo50 (1) Soini, Mox (1) @@ -12179,14 +12252,17 @@ MyraBlacklow (1) - NEOhidra (1) + N3rd4i (1) - NNe8Lx2gc (1) + NEOhidra (1) + NNe8Lx2gc (1) + + NannetteFreedma (1) @@ -12195,11 +12271,11 @@ Ncaio (1) + + Nedrichards (1) - - NellieSMWX (1) @@ -12209,11 +12285,11 @@ Ngoswami (1) + + Nickko (1) - - NiklasHor (1) @@ -12223,11 +12299,11 @@ Ngo, Minh (1) + + Nnino2 (1) - - Northwestfirestarters (1) @@ -12237,11 +12313,11 @@ Notafish (1) + + Nouiurm (1) - - Norbert X (1) @@ -12251,11 +12327,11 @@ OBMLorraine (1) + + Oclei (1) - - Ogervasi (1) @@ -12265,11 +12341,11 @@ Oiouitt (1) + + Okusi (1) - - Olea (1) @@ -12279,11 +12355,11 @@ Omerta (1) + + Onurkucuk67 (1) - - Oosterkamp (1) @@ -12293,224 +12369,232 @@ Orrd (1) + + + + Osoitz (1) + Oui (1) - - Esen, Özcan (1) Ozpoz (1) + + PBsoft (1) PPRShaywuttpocn (1) - - Padenton (1) PamalaDorsch (1) + + Pankaj (1) Papesky (1) - - Passerpunt (1) Pastim (1) + + PatriceMerrick (1) Paulolima (1) - - PearlFelton (1) PearlMoyazw (1) + + PenelopHewlett (1) Nowee, Peter (1) - - Vorel, Petr (1) Pharmankur (1) + + Phb.nbnet.nb.ca (1) Pherjung (1) - - PhilDur (1) Philhart (1) + + PhilipTimms (1) Philippe43 (1) - - PhillippBethea (1) Phomes (1) + + Paraiso, Joan (1) Piero (1) - - PieterDeBruijn (1) Pietro.caballeri (1) + + Pilavi (1) Piratu (1) - - Piternoize (1) Pjotr (1) + + Pkavinda (1) Plastique (1) - - Plastovicka (1) PoppyHart (1) + + PopularOutcast (1) PorfiriMansergh (1) - - PorterEncarnaci (1) Carter, Travis (1) + + Prosper (1) Psauthor (1) - - Psychicread531 (1) QGBWinonajrdtpj (1) + + Qiguo (1) Qokoqoko (1) - - Qtwallaert (1) RafaelaTrudel (1) + + Rahuldeshmukh101 (1) Rainy (1) - - Ramonturner (1) Randolp1949 (1) + + RashadEsp (1) Ratias (1) - - Rcampbelllaos (1) RebeccaToscano (1) + + + + Recoverymail (1) + Rettichschnidi (1) ReubenFow (1) - - RexRTEJnlzus (1) + + Rholler (1) @@ -12520,11 +12604,11 @@ Richardprins (1) - - RickieHpejt (1) + + Riessmi (1) @@ -12534,11 +12618,11 @@ Ringlerloje (1) - - Rion (1) + + Ritzema, Brent (1) @@ -12548,11 +12632,11 @@ Rizwan1218 (1) - - Robert Wetzlmayr (1) + + Robertkelly35 (1) @@ -12562,11 +12646,11 @@ RoccoAPIUqpuoia (1) - - Rockcows31 (1) + + Rockers (1) @@ -12576,11 +12660,11 @@ RogelioTrost (1) - - Deshmukh, Rohit (1) + + Rombert (1) @@ -12590,11 +12674,11 @@ Ronny (1) - - Roscoe5731 (1) + + Rosemarie (1) @@ -12604,11 +12688,11 @@ Rsedak (1) - - RuleAndLine (1) + + Rvr (1) @@ -12618,11 +12702,11 @@ ONODERA, Ryo (1) - - Sahasranaman M S (1) + + SallyMorales (1) @@ -12632,11 +12716,11 @@ SamuelPoltpalin (1) - - Samuse (1) + + Sandeeps (1) @@ -12646,11 +12730,11 @@ Saracans (1) - - Sbar1 (1) + + Sbosio (1) @@ -12660,11 +12744,11 @@ Scito (1) - - Scno (1) + + Sctenebro (1) @@ -12674,11 +12758,11 @@ Ak, Sedat (1) - - ShannaCockrell (1) + + ShaynaMan (1) @@ -12688,11 +12772,11 @@ SherrillGabriel (1) - - SherylMillingto (1) + + Shin en (1) @@ -12702,11 +12786,11 @@ Siegi (1) - - Silvestr (1) + + Simonbr (1) @@ -12716,11 +12800,11 @@ SiobhanLandale (1) - - SkyeCorreia (1) + + Smalalur (1) @@ -12730,11 +12814,11 @@ Son Sonson (1) - - SonyaBunnell (1) + + Sovichet (1) @@ -12744,11 +12828,11 @@ Spreadsheetsorter (1) - - Spyros (1) + + Srijanani (1) @@ -12758,11 +12842,11 @@ Stewart75H (1) - - Stonehubmn (1) + + Subhash (1) @@ -12772,11 +12856,11 @@ SusieVeasley (1) - - Svalo (1) + + SvenHornung (1) @@ -12786,11 +12870,11 @@ Sviola (1) - - Svtlichnijj (1) + + Sébastien C. (1) @@ -12800,11 +12884,11 @@ Talueses (1) - - Tanguy k (1) + + Thanakanok, Tantai (1) @@ -12814,11 +12898,11 @@ TeganCreswick (1) - - Tegas (1) + + Testsflirt (1) @@ -12828,11 +12912,11 @@ ThePokehach (1) - - Thephilosoft (1) + + TheronAbdullah (1) @@ -12842,11 +12926,11 @@ Thor574 (1) - - ThudDriver (1) + + Tifroumi (1) @@ -12856,11 +12940,11 @@ Tilt (1) - - TimothyDempster (1) + + Tmongkol (1) @@ -12870,11 +12954,11 @@ Viehmann, Thomas (1) - - Tpokorra (1) + + Transcend (1) @@ -12884,11 +12968,11 @@ Trondtr (1) - - Tuliouel (1) + + Tuping (1) @@ -12898,11 +12982,11 @@ Vincent, Brennan (1) - - UrmasD (1) + + UrsulaHorrell (1) @@ -12912,11 +12996,11 @@ VIPSylar (1) - - VO Genesis (1) + + VPUJamikajklq (1) @@ -12926,11 +13010,11 @@ Vandenoever (1) - - Veeven (1) + + Vera Cavalcante (1) @@ -12938,6 +13022,9 @@ VerenaGaskins (1) + Verisonhelpline (1) + + VernaSchulze (1) @@ -13085,7 +13172,7 @@ Zizzle (1) - + diff -Nru libreoffice-5.1.1~rc2/reportdesign/inc/pch/precompiled_rpt.hxx libreoffice-5.1.2~rc2/reportdesign/inc/pch/precompiled_rpt.hxx --- libreoffice-5.1.1~rc2/reportdesign/inc/pch/precompiled_rpt.hxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/reportdesign/inc/pch/precompiled_rpt.hxx 2016-03-29 15:41:04.000000000 +0000 @@ -134,7 +134,7 @@ #include #include #include -#include +#include #include #include #include diff -Nru libreoffice-5.1.1~rc2/reportdesign/inc/pch/precompiled_rptui.hxx libreoffice-5.1.2~rc2/reportdesign/inc/pch/precompiled_rptui.hxx --- libreoffice-5.1.1~rc2/reportdesign/inc/pch/precompiled_rptui.hxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/reportdesign/inc/pch/precompiled_rptui.hxx 2016-03-29 15:41:04.000000000 +0000 @@ -143,7 +143,7 @@ #include #include #include -#include +#include #include #include #include diff -Nru libreoffice-5.1.1~rc2/reportdesign/source/filter/xml/xmlExport.cxx libreoffice-5.1.2~rc2/reportdesign/source/filter/xml/xmlExport.cxx --- libreoffice-5.1.1~rc2/reportdesign/source/filter/xml/xmlExport.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/reportdesign/source/filter/xml/xmlExport.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -58,6 +58,7 @@ #include +#include namespace rptxml { diff -Nru libreoffice-5.1.1~rc2/reportdesign/source/ui/inspection/GeometryHandler.cxx libreoffice-5.1.2~rc2/reportdesign/source/ui/inspection/GeometryHandler.cxx --- libreoffice-5.1.1~rc2/reportdesign/source/ui/inspection/GeometryHandler.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/reportdesign/source/ui/inspection/GeometryHandler.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -19,6 +19,7 @@ #include +#include #include #include "GeometryHandler.hxx" diff -Nru libreoffice-5.1.1~rc2/RepositoryExternal.mk libreoffice-5.1.2~rc2/RepositoryExternal.mk --- libreoffice-5.1.1~rc2/RepositoryExternal.mk 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/RepositoryExternal.mk 2016-03-29 15:41:04.000000000 +0000 @@ -205,7 +205,7 @@ else # !SYSTEM_CPPUNIT define gb_LinkTarget__use_cppunit -$(call gb_LinkTarget_use_external_project,$(1),cppunit) +$(call gb_LinkTarget_use_external_project,$(1),cppunit, full) $(call gb_LinkTarget_set_include,$(1),\ -I$(call gb_UnpackedTarball_get_dir,cppunit/include)\ @@ -3098,7 +3098,7 @@ ifeq ($(OS),WNT) $(call gb_LinkTarget_add_libs,$(1),\ - $(call gb_UnpackedTarball_get_dir,python3)/PCbuild$(if $(filter X86_64,$(CPUNAME)),/amd64)/python$(PYTHON_VERSION_MAJOR)$(PYTHON_VERSION_MINOR)$(if $(MSVC_USE_DEBUG_RUNTIME),_d).lib \ + $(call gb_UnpackedTarball_get_dir,python3)/PCbuild$(if $(filter X86_64,$(CPUNAME)),/amd64)$(if $(filter 140-INTEL,$(VCVER)-$(CPUNAME)),/win32)/python$(PYTHON_VERSION_MAJOR)$(PYTHON_VERSION_MINOR)$(if $(MSVC_USE_DEBUG_RUNTIME),_d).lib \ ) else ifeq ($(OS),MACOSX) $(call gb_LinkTarget_add_libs,$(1),\ diff -Nru libreoffice-5.1.1~rc2/Repository.mk libreoffice-5.1.2~rc2/Repository.mk --- libreoffice-5.1.1~rc2/Repository.mk 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/Repository.mk 2016-03-29 15:41:04.000000000 +0000 @@ -68,13 +68,13 @@ svptest \ svpclient \ pixelctl ) \ - $(if $(and $(ENABLE_GTK), $(filter LINUX %BSD SOLARIS,$(OS))), tilebench) \ + $(if $(and $(ENABLE_GTK3), $(filter LINUX %BSD SOLARIS,$(OS))), tilebench) \ $(if $(filter LINUX MACOSX SOLARIS WNT %BSD,$(OS)),icontest \ outdevgrind) \ vcldemo \ tiledrendering \ mtfdemo \ - $(if $(and $(ENABLE_GTK), $(filter LINUX %BSD SOLARIS,$(OS))), gtktiledviewer) \ + $(if $(and $(ENABLE_GTK3), $(filter LINUX %BSD SOLARIS,$(OS))), gtktiledviewer) \ )) $(eval $(call gb_Helper_register_executables_for_install,SDK,sdk, \ diff -Nru libreoffice-5.1.1~rc2/sal/osl/unx/file_misc.cxx libreoffice-5.1.2~rc2/sal/osl/unx/file_misc.cxx --- libreoffice-5.1.1~rc2/sal/osl/unx/file_misc.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/sal/osl/unx/file_misc.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -802,7 +802,8 @@ if ( DestFileExists ) { //TODO: better pick a temp file name instead of adding .osl-tmp: - tmpDestFile = rtl::OString(pszSourceFileName) + ".osl-tmp"; + // use the destination file to avoid EXDEV /* Cross-device link */ + tmpDestFile = rtl::OString(pszDestFileName) + ".osl-tmp"; if (rename(pszDestFileName, tmpDestFile.getStr()) != 0) { if (errno == ENOENT) diff -Nru libreoffice-5.1.1~rc2/sal/osl/unx/pipe.cxx libreoffice-5.1.2~rc2/sal/osl/unx/pipe.cxx --- libreoffice-5.1.1~rc2/sal/osl/unx/pipe.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/sal/osl/unx/pipe.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -166,11 +166,11 @@ bool bNameTooLong = false; oslPipe pPipe; - if (access(PIPEDEFAULTPATH, R_OK|W_OK) == 0) + if (access(PIPEDEFAULTPATH, W_OK) == 0) { strncpy(name, PIPEDEFAULTPATH, sizeof(name)); } - else if (access(PIPEALTERNATEPATH, R_OK|W_OK) == 0) + else if (access(PIPEALTERNATEPATH, W_OK) == 0) { strncpy(name, PIPEALTERNATEPATH, sizeof(name)); } diff -Nru libreoffice-5.1.1~rc2/sal/osl/w32/process.cxx libreoffice-5.1.2~rc2/sal/osl/w32/process.cxx --- libreoffice-5.1.1~rc2/sal/osl/w32/process.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/sal/osl/w32/process.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -144,7 +144,7 @@ lpAddress = (LPBYTE)lpAddress + Info.RegionSize; } - while (lpAddress < (void *)0x80000000); // 2GB address space + while ((uintptr_t)lpAddress <= (uintptr_t)0x7FFFFFFF); // 2GB address space pInfo->Fields |= osl_Process_HEAPUSAGE; } diff -Nru libreoffice-5.1.1~rc2/sal/osl/w32/random.c libreoffice-5.1.2~rc2/sal/osl/w32/random.c --- libreoffice-5.1.1~rc2/sal/osl/w32/random.c 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/sal/osl/w32/random.c 2016-03-29 15:41:04.000000000 +0000 @@ -16,7 +16,7 @@ unsigned int val; /* if unaligned fill to alignment */ - if((int)buffer & 3) + if((uintptr_t)buffer & 3) { size_t len = 4 - ((size_t)(buffer) & 3); diff -Nru libreoffice-5.1.1~rc2/sc/inc/document.hxx libreoffice-5.1.2~rc2/sc/inc/document.hxx --- libreoffice-5.1.1~rc2/sc/inc/document.hxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/sc/inc/document.hxx 2016-03-29 15:41:04.000000000 +0000 @@ -2192,7 +2192,7 @@ void DeleteDrawLayer(); SC_DLLPUBLIC bool DrawGetPrintArea( ScRange& rRange, bool bSetHor, bool bSetVer ) const; void DrawMovePage( sal_uInt16 nOldPos, sal_uInt16 nNewPos ); - void DrawCopyPage( sal_uInt16 nOldPos, sal_uInt16 nNewPos ); + void DrawCopyPage( sal_uInt16 nOldPos, sal_uInt16 nNewPos, bool bSkipNotes = false ); void UpdateDrawPrinter(); void UpdateDrawLanguages(); diff -Nru libreoffice-5.1.1~rc2/sc/inc/drwlayer.hxx libreoffice-5.1.2~rc2/sc/inc/drwlayer.hxx --- libreoffice-5.1.1~rc2/sc/inc/drwlayer.hxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/sc/inc/drwlayer.hxx 2016-03-29 15:41:04.000000000 +0000 @@ -20,7 +20,7 @@ #ifndef INCLUDED_SC_INC_DRWLAYER_HXX #define INCLUDED_SC_INC_DRWLAYER_HXX -#include +#include #include #include #include "global.hxx" @@ -121,7 +121,7 @@ void ScRemovePage( SCTAB nTab ); void ScRenamePage( SCTAB nTab, const OUString& rNewName ); void ScMovePage( sal_uInt16 nOldPos, sal_uInt16 nNewPos ); - void ScCopyPage( sal_uInt16 nOldPos, sal_uInt16 nNewPos); + void ScCopyPage( sal_uInt16 nOldPos, sal_uInt16 nNewPos, bool bSkipNotes = false ); void ResetTab( SCTAB nStart, SCTAB nEnd ); ScDocument* GetDocument() const { return pDoc; } diff -Nru libreoffice-5.1.1~rc2/sc/inc/pch/precompiled_scfilt.hxx libreoffice-5.1.2~rc2/sc/inc/pch/precompiled_scfilt.hxx --- libreoffice-5.1.1~rc2/sc/inc/pch/precompiled_scfilt.hxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/sc/inc/pch/precompiled_scfilt.hxx 2016-03-29 15:41:04.000000000 +0000 @@ -95,7 +95,7 @@ #include #include #include -#include +#include #include #include #include diff -Nru libreoffice-5.1.1~rc2/sc/inc/pch/precompiled_sc.hxx libreoffice-5.1.2~rc2/sc/inc/pch/precompiled_sc.hxx --- libreoffice-5.1.1~rc2/sc/inc/pch/precompiled_sc.hxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/sc/inc/pch/precompiled_sc.hxx 2016-03-29 15:41:04.000000000 +0000 @@ -146,7 +146,7 @@ #include #include #include -#include +#include #include #include #include diff -Nru libreoffice-5.1.1~rc2/sc/inc/scmatrix.hxx libreoffice-5.1.2~rc2/sc/inc/scmatrix.hxx --- libreoffice-5.1.1~rc2/sc/inc/scmatrix.hxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/sc/inc/scmatrix.hxx 2016-03-29 15:41:04.000000000 +0000 @@ -160,6 +160,12 @@ #endif } + /** Checks nC or nR for zero and uses GetElementsMax() whether a matrix of + the size of nC*nR could be allocated. A zero size (both nC and nR zero) + matrix is allowed for later resize. + */ + bool static IsSizeAllocatable( SCSIZE nC, SCSIZE nR ); + /// Value or boolean. inline static bool IsValueType( ScMatValType nType ) { @@ -362,7 +368,7 @@ virtual IterateResult Sum(bool bTextAsZero) const = 0; virtual IterateResult SumSquare(bool bTextAsZero) const = 0; virtual IterateResult Product(bool bTextAsZero) const = 0; - virtual size_t Count(bool bCountStrings) const = 0; + virtual size_t Count(bool bCountStrings, bool bCountErrors) const = 0; virtual size_t MatchDoubleInColumns(double fValue, size_t nCol1, size_t nCol2) const = 0; virtual size_t MatchStringInColumns(const svl::SharedString& rStr, size_t nCol1, size_t nCol2) const = 0; @@ -567,7 +573,7 @@ virtual IterateResult Sum(bool bTextAsZero) const override; virtual IterateResult SumSquare(bool bTextAsZero) const override; virtual IterateResult Product(bool bTextAsZero) const override; - virtual size_t Count(bool bCountStrings) const override; + virtual size_t Count(bool bCountStrings, bool bCountErrors) const override; virtual size_t MatchDoubleInColumns(double fValue, size_t nCol1, size_t nCol2) const override; virtual size_t MatchStringInColumns(const svl::SharedString& rStr, size_t nCol1, size_t nCol2) const override; @@ -776,7 +782,7 @@ virtual IterateResult Sum(bool bTextAsZero) const override; virtual IterateResult SumSquare(bool bTextAsZero) const override; virtual IterateResult Product(bool bTextAsZero) const override; - virtual size_t Count(bool bCountStrings) const override; + virtual size_t Count(bool bCountStrings, bool bCountErrors) const override; virtual size_t MatchDoubleInColumns(double fValue, size_t nCol1, size_t nCol2) const override; virtual size_t MatchStringInColumns(const svl::SharedString& rStr, size_t nCol1, size_t nCol2) const override; diff -Nru libreoffice-5.1.1~rc2/sc/qa/unit/copy_paste_test.cxx libreoffice-5.1.2~rc2/sc/qa/unit/copy_paste_test.cxx --- libreoffice-5.1.1~rc2/sc/qa/unit/copy_paste_test.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/sc/qa/unit/copy_paste_test.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -53,8 +53,8 @@ CPPUNIT_ASSERT( xTargetFrame.is() ); // 1. Open the document - ScDocShellRef xDocSh = loadDoc("chartx.", FORMAT_XLS); - CPPUNIT_ASSERT_MESSAGE("Failed to load chartx.xls.", xDocSh.Is()); + ScDocShellRef xDocSh = loadDoc("chartx2.", FORMAT_XLS); + CPPUNIT_ASSERT_MESSAGE("Failed to load chartx2.xls.", xDocSh.Is()); uno::Reference< frame::XModel2 > xModel2 ( xDocSh->GetModel(), UNO_QUERY ); CPPUNIT_ASSERT( xModel2.is() ); Binary files /tmp/tmpjVu_CV/d8O1VeJAAp/libreoffice-5.1.1~rc2/sc/qa/unit/data/xls/cellformat.xls and /tmp/tmpjVu_CV/VUSojbs3iI/libreoffice-5.1.2~rc2/sc/qa/unit/data/xls/cellformat.xls differ Binary files /tmp/tmpjVu_CV/d8O1VeJAAp/libreoffice-5.1.1~rc2/sc/qa/unit/data/xls/chartx2.xls and /tmp/tmpjVu_CV/VUSojbs3iI/libreoffice-5.1.2~rc2/sc/qa/unit/data/xls/chartx2.xls differ diff -Nru libreoffice-5.1.1~rc2/sc/qa/unit/subsequent_export-test.cxx libreoffice-5.1.2~rc2/sc/qa/unit/subsequent_export-test.cxx --- libreoffice-5.1.1~rc2/sc/qa/unit/subsequent_export-test.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/sc/qa/unit/subsequent_export-test.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -100,6 +100,7 @@ void testMiscRowHeightExport(); void testNamedRangeBugfdo62729(); void testRichTextExportODS(); + void testRichTextCellFormat(); void testFormulaRefSheetNameODS(); void testCellValuesExportODS(); @@ -174,6 +175,7 @@ CPPUNIT_TEST(testMiscRowHeightExport); CPPUNIT_TEST(testNamedRangeBugfdo62729); CPPUNIT_TEST(testRichTextExportODS); + CPPUNIT_TEST(testRichTextCellFormat); CPPUNIT_TEST(testFormulaRefSheetNameODS); CPPUNIT_TEST(testCellValuesExportODS); CPPUNIT_TEST(testCellNoteExportODS); @@ -1012,6 +1014,21 @@ xNewDocSh3->DoClose(); } +void ScExportTest::testRichTextCellFormat() +{ + ScDocShellRef xDocSh = loadDoc("cellformat.", FORMAT_XLS); + CPPUNIT_ASSERT(xDocSh.Is()); + + xmlDocPtr pSheet = XPathHelper::parseExport(&(*xDocSh), m_xSFactory, "xl/worksheets/sheet1.xml", FORMAT_XLSX); + CPPUNIT_ASSERT(pSheet); + + // make sure the only cell in this doc is assigned some formatting record + OUString aCellFormat = getXPath(pSheet, "/x:worksheet/x:sheetData/x:row/x:c", "s"); + CPPUNIT_ASSERT_MESSAGE("Cell format is missing", !aCellFormat.isEmpty()); + + xDocSh->DoClose(); +} + void ScExportTest::testFormulaRefSheetNameODS() { ScDocShellRef xDocSh = loadDoc("formula-quote-in-sheet-name.", FORMAT_ODS, true); diff -Nru libreoffice-5.1.1~rc2/sc/source/core/data/documen2.cxx libreoffice-5.1.2~rc2/sc/source/core/data/documen2.cxx --- libreoffice-5.1.1~rc2/sc/source/core/data/documen2.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/sc/source/core/data/documen2.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -897,8 +897,8 @@ sc::SetFormulaDirtyContext aFormulaDirtyCxt; SetAllFormulasDirty(aFormulaDirtyCxt); - if (pDrawLayer) - DrawCopyPage( static_cast(nOldPos), static_cast(nNewPos) ); + if (pDrawLayer) // Skip cloning Note caption object + DrawCopyPage( static_cast(nOldPos), static_cast(nNewPos), true ); if (pDPCollection) pDPCollection->CopyToTab(nOldPos, nNewPos); diff -Nru libreoffice-5.1.1~rc2/sc/source/core/data/documen9.cxx libreoffice-5.1.2~rc2/sc/source/core/data/documen9.cxx --- libreoffice-5.1.1~rc2/sc/source/core/data/documen9.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/sc/source/core/data/documen9.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -261,10 +261,10 @@ pDrawLayer->ScMovePage(nOldPos,nNewPos); } -void ScDocument::DrawCopyPage( sal_uInt16 nOldPos, sal_uInt16 nNewPos ) +void ScDocument::DrawCopyPage( sal_uInt16 nOldPos, sal_uInt16 nNewPos, bool bSkipNotes ) { // page is already created in ScTable ctor - pDrawLayer->ScCopyPage( nOldPos, nNewPos ); + pDrawLayer->ScCopyPage( nOldPos, nNewPos, bSkipNotes ); } void ScDocument::DeleteObjectsInArea( SCCOL nCol1, SCROW nRow1, SCCOL nCol2, SCROW nRow2, diff -Nru libreoffice-5.1.1~rc2/sc/source/core/data/document.cxx libreoffice-5.1.2~rc2/sc/source/core/data/document.cxx --- libreoffice-5.1.1~rc2/sc/source/core/data/document.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/sc/source/core/data/document.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -1817,6 +1817,24 @@ // Re-start listeners on those top bottom groups that have been split. SetNeedsListeningGroups(aGroupPos); StartNeededListeners(); + + // If formula groups were split their listeners were destroyed and may + // need to be notified now that they're restored, ScTable::DeleteArea() + // couldn't do that. + if (!aGroupPos.empty()) + { + ScRange aRange(nCol1, nRow1, 0, nCol2, nRow2, 0); + for (SCTAB i = 0; i < static_cast(maTabs.size()); i++) + { + if (rMark.GetTableSelect(i)) + { + aRange.aStart.SetTab(i); + aRange.aEnd.SetTab(i); + + SetDirty( aRange, true); + } + } + } } } diff -Nru libreoffice-5.1.1~rc2/sc/source/core/data/drwlayer.cxx libreoffice-5.1.2~rc2/sc/source/core/data/drwlayer.cxx --- libreoffice-5.1.1~rc2/sc/source/core/data/drwlayer.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/sc/source/core/data/drwlayer.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -434,7 +434,7 @@ ResetTab(nMinPos, pDoc->GetTableCount()-1); } -void ScDrawLayer::ScCopyPage( sal_uInt16 nOldPos, sal_uInt16 nNewPos) +void ScDrawLayer::ScCopyPage( sal_uInt16 nOldPos, sal_uInt16 nNewPos, bool bSkipNotes ) { if (bDrawIsInUndo) return; @@ -453,6 +453,11 @@ SdrObject* pOldObject = aIter.Next(); while (pOldObject) { + if ( bSkipNotes && IsNoteCaption( pOldObject ) ) + { + pOldObject = aIter.Next(); + continue; + } ScDrawObjData* pOldData = GetObjData(pOldObject); if (pOldData) { diff -Nru libreoffice-5.1.1~rc2/sc/source/core/data/formulacell.cxx libreoffice-5.1.2~rc2/sc/source/core/data/formulacell.cxx --- libreoffice-5.1.1~rc2/sc/source/core/data/formulacell.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/sc/source/core/data/formulacell.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -1499,6 +1499,28 @@ return pCode && pDocument->MarkUsedExternalReferences(*pCode, aPos); } +namespace { +class RecursionCounter +{ + ScRecursionHelper& rRec; + bool bStackedInIteration; +public: + RecursionCounter( ScRecursionHelper& r, ScFormulaCell* p ) : rRec(r) + { + bStackedInIteration = rRec.IsDoingIteration(); + if (bStackedInIteration) + rRec.GetRecursionInIterationStack().push( p); + rRec.IncRecursionCount(); + } + ~RecursionCounter() + { + rRec.DecRecursionCount(); + if (bStackedInIteration) + rRec.GetRecursionInIterationStack().pop(); + } +}; +} + void ScFormulaCell::Interpret() { #if DEBUG_CALCULATION @@ -1769,25 +1791,7 @@ void ScFormulaCell::InterpretTail( ScInterpretTailParameter eTailParam ) { - class RecursionCounter - { - ScRecursionHelper& rRec; - bool bStackedInIteration; - public: - RecursionCounter( ScRecursionHelper& r, ScFormulaCell* p ) : rRec(r) - { - bStackedInIteration = rRec.IsDoingIteration(); - if (bStackedInIteration) - rRec.GetRecursionInIterationStack().push( p); - rRec.IncRecursionCount(); - } - ~RecursionCounter() - { - rRec.DecRecursionCount(); - if (bStackedInIteration) - rRec.GetRecursionInIterationStack().pop(); - } - } aRecursionCounter( pDocument->GetRecursionHelper(), this); + RecursionCounter aRecursionCounter( pDocument->GetRecursionHelper(), this); nSeenInIteration = pDocument->GetRecursionHelper().GetIteration(); if( !pCode->GetCodeLen() && !pCode->GetCodeError() ) { @@ -3969,6 +3973,12 @@ if (!ScCalcConfig::isOpenCLEnabled() && !ScCalcConfig::isSwInterpreterEnabled()) return false; + // Guard against endless recursion of Interpret() calls, for this to work + // ScFormulaCell::InterpretFormulaGroup() must never be called through + // anything else than ScFormulaCell::Interpret(), same as + // ScFormulaCell::InterpretTail() + RecursionCounter aRecursionCounter( pDocument->GetRecursionHelper(), this); + // TODO : Disable invariant formula group interpretation for now in order // to get implicit intersection to work. if (mxGroup->mbInvariant && false) diff -Nru libreoffice-5.1.1~rc2/sc/source/core/data/table2.cxx libreoffice-5.1.2~rc2/sc/source/core/data/table2.cxx --- libreoffice-5.1.1~rc2/sc/source/core/data/table2.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/sc/source/core/data/table2.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -1081,9 +1081,13 @@ return; if (nFlags != InsertDeleteFlags::NONE) + { + InsertDeleteFlags nTempFlags( nFlags & + ~InsertDeleteFlags( InsertDeleteFlags::NOTE | InsertDeleteFlags::ADDNOTES)); for (SCCOL i = nCol1; i <= nCol2; i++) - aCol[i].CopyToColumn(rCxt, nRow1, nRow2, nFlags, bMarked, + aCol[i].CopyToColumn(rCxt, nRow1, nRow2, nTempFlags, bMarked, pDestTab->aCol[i], pMarkData, bAsLink); + } if (!bColRowFlags) // Column widths/Row heights/Flags return; @@ -1190,6 +1194,16 @@ if(nFlags & InsertDeleteFlags::OUTLINE) // also only when bColRowFlags pDestTab->SetOutlineTable( pOutlineTable ); + + if (nFlags & (InsertDeleteFlags::NOTE|InsertDeleteFlags::ADDNOTES)) + { + bool bCloneCaption = (nFlags & InsertDeleteFlags::NOCAPTIONS) == InsertDeleteFlags::NONE; + for (SCCOL i = nCol1; i <= nCol2; i++) + { + aCol[i].CopyCellNotesToDocument(nRow1, nRow2, pDestTab->aCol[i], bCloneCaption); + pDestTab->aCol[i].UpdateNoteCaptions(nRow1, nRow2); + } + } } void ScTable::UndoToTable( diff -Nru libreoffice-5.1.1~rc2/sc/source/core/data/table3.cxx libreoffice-5.1.2~rc2/sc/source/core/data/table3.cxx --- libreoffice-5.1.1~rc2/sc/source/core/data/table3.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/sc/source/core/data/table3.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -231,11 +231,10 @@ { ScRefCellValue maCell; const sc::CellTextAttr* mpAttr; - const SvtBroadcaster* mpBroadcaster; const ScPostIt* mpNote; const ScPatternAttr* mpPattern; - Cell() : mpAttr(nullptr), mpBroadcaster(nullptr), mpNote(nullptr), mpPattern(nullptr) {} + Cell() : mpAttr(nullptr), mpNote(nullptr), mpPattern(nullptr) {} }; struct Row @@ -438,10 +437,8 @@ { ScSortInfoArray::Row& rRow = *rRows[nRow-nRow1]; ScSortInfoArray::Cell& rCell = rRow.maCells[nCol-nCol1]; - rCell.maCell = rCol.GetCellValue(aBlockPos, nRow); rCell.mpAttr = rCol.GetCellTextAttr(aBlockPos, nRow); - rCell.mpBroadcaster = rCol.GetBroadcaster(aBlockPos, nRow); rCell.mpNote = rCol.GetCellNote(aBlockPos, nRow); if (!bUniformPattern && bPattern) @@ -709,10 +706,11 @@ std::vector>& rSortedCols, SortedRowFlags& rRowFlags, std::vector& rCellListeners, - ScSortInfoArray* pArray, SCTAB nTab, SCCOL nCol1, SCCOL nCol2, ScProgress* pProgress ) + ScSortInfoArray* pArray, SCTAB nTab, SCCOL nCol1, SCCOL nCol2, ScProgress* pProgress, const ScTable* pTable ) { SCROW nRow1 = pArray->GetStart(); ScSortInfoArray::RowsType* pRows = pArray->GetDataRows(); + std::vector aOrderIndices = pArray->GetOrderIndices(); size_t nColCount = nCol2 - nCol1 + 1; std::vector> aSortedCols; // storage for copied cells. @@ -795,10 +793,11 @@ // At this point each broadcaster instance is managed by 2 // containers. We will release those in the original storage // below before transferring them to the document. + const SvtBroadcaster* pBroadcaster = pTable->GetBroadcaster( nCol1 + j, aOrderIndices[i]); sc::BroadcasterStoreType& rBCStore = aSortedCols.at(j).get()->maBroadcasters; - if (rCell.mpBroadcaster) + if (pBroadcaster) // A const pointer would be implicitly converted to a bool type. - rBCStore.push_back(const_cast(rCell.mpBroadcaster)); + rBCStore.push_back(const_cast(pBroadcaster)); else rBCStore.push_back_empty(); } @@ -1091,7 +1090,7 @@ // a copy before updating the document. std::vector> aSortedCols; // storage for copied cells. SortedRowFlags aRowFlags; - fillSortedColumnArray(aSortedCols, aRowFlags, aCellListeners, pArray, nTab, nCol1, nCol2, pProgress); + fillSortedColumnArray(aSortedCols, aRowFlags, aCellListeners, pArray, nTab, nCol1, nCol2, pProgress, this); for (size_t i = 0, n = aSortedCols.size(); i < n; ++i) { @@ -1277,7 +1276,7 @@ std::vector> aSortedCols; // storage for copied cells. SortedRowFlags aRowFlags; std::vector aListenersDummy; - fillSortedColumnArray(aSortedCols, aRowFlags, aListenersDummy, pArray, nTab, nCol1, nCol2, pProgress); + fillSortedColumnArray(aSortedCols, aRowFlags, aListenersDummy, pArray, nTab, nCol1, nCol2, pProgress, this); for (size_t i = 0, n = aSortedCols.size(); i < n; ++i) { diff -Nru libreoffice-5.1.1~rc2/sc/source/core/inc/arraysumfunctor.hxx libreoffice-5.1.2~rc2/sc/source/core/inc/arraysumfunctor.hxx --- libreoffice-5.1.1~rc2/sc/source/core/inc/arraysumfunctor.hxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/sc/source/core/inc/arraysumfunctor.hxx 2016-03-29 15:41:04.000000000 +0000 @@ -51,12 +51,15 @@ if (hasSSE2) { - while (!isAligned(pCurrent)) + while ( i < mnSize && !isAligned(pCurrent)) { fSum += *pCurrent++; i++; } - fSum += executeSSE2(i, pCurrent); + if( i < mnSize ) + { + fSum += executeSSE2(i, pCurrent); + } } else fSum += executeUnrolled(i, pCurrent); diff -Nru libreoffice-5.1.1~rc2/sc/source/core/tool/interpr4.cxx libreoffice-5.1.2~rc2/sc/source/core/tool/interpr4.cxx --- libreoffice-5.1.1~rc2/sc/source/core/tool/interpr4.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/sc/source/core/tool/interpr4.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -74,6 +74,7 @@ #include #include #include +#include using namespace com::sun::star; using namespace formula; @@ -3557,6 +3558,7 @@ sal_uLong nRetIndexExpr = 0; sal_uInt16 nErrorFunction = 0; sal_uInt16 nErrorFunctionCount = 0; + std::stack aErrorFunctionStack; sal_uInt16 nStackBase; nGlobalError = 0; @@ -4089,7 +4091,19 @@ else nLevel = 0; if ( nLevel == 1 || (nLevel == 2 && aCode.IsEndOfPath()) ) + { + if (nLevel == 1) + aErrorFunctionStack.push( nErrorFunction); bGotResult = JumpMatrix( nLevel ); + if (aErrorFunctionStack.empty()) + assert(!"ScInterpreter::Interpret - aErrorFunctionStack empty in JumpMatrix context"); + else + { + nErrorFunction = aErrorFunctionStack.top(); + if (bGotResult) + aErrorFunctionStack.pop(); + } + } else pJumpMatrix = nullptr; } while ( bGotResult ); diff -Nru libreoffice-5.1.1~rc2/sc/source/core/tool/interpr6.cxx libreoffice-5.1.2~rc2/sc/source/core/tool/interpr6.cxx --- libreoffice-5.1.1~rc2/sc/source/core/tool/interpr6.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/sc/source/core/tool/interpr6.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -433,10 +433,10 @@ } break; case ifCOUNT: - rCount += pMat->Count(bTextAsZero); + rCount += pMat->Count(bTextAsZero, false); // do not count error values break; case ifCOUNT2: - rCount += pMat->Count(true); + rCount += pMat->Count(true, true); // do count error values break; case ifPRODUCT: { diff -Nru libreoffice-5.1.1~rc2/sc/source/core/tool/scmatrix.cxx libreoffice-5.1.2~rc2/sc/source/core/tool/scmatrix.cxx --- libreoffice-5.1.1~rc2/sc/source/core/tool/scmatrix.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/sc/source/core/tool/scmatrix.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -284,7 +284,7 @@ ScMatrix::IterateResult Sum(bool bTextAsZero) const; ScMatrix::IterateResult SumSquare(bool bTextAsZero) const; ScMatrix::IterateResult Product(bool bTextAsZero) const; - size_t Count(bool bCountStrings) const; + size_t Count(bool bCountStrings, bool bCountErrors) const; size_t MatchDoubleInColumns(double fValue, size_t nCol1, size_t nCol2) const; size_t MatchStringInColumns(const svl::SharedString& rStr, size_t nCol1, size_t nCol2) const; @@ -333,14 +333,32 @@ void ScMatrixImpl::Resize(SCSIZE nC, SCSIZE nR) { - maMat.resize(nR, nC); - maMatFlag.resize(nR, nC); + if (ScMatrix::IsSizeAllocatable( nC, nR)) + { + maMat.resize(nR, nC); + maMatFlag.resize(nR, nC); + } + else + { + // Invalid matrix size, allocate 1x1 matrix with error value. + maMat.resize(1, 1, CreateDoubleError( errStackOverflow)); + maMatFlag.resize(1, 1); + } } void ScMatrixImpl::Resize(SCSIZE nC, SCSIZE nR, double fVal) { - maMat.resize(nR, nC, fVal); - maMatFlag.resize(nR, nC); + if (ScMatrix::IsSizeAllocatable( nC, nR)) + { + maMat.resize(nR, nC, fVal); + maMatFlag.resize(nR, nC); + } + else + { + // Invalid matrix size, allocate 1x1 matrix with error value. + maMat.resize(1, 1, CreateDoubleError( errStackOverflow)); + maMatFlag.resize(1, 1); + } } void ScMatrixImpl::SetErrorInterpreter( ScInterpreter* p) @@ -1159,8 +1177,10 @@ { size_t mnCount; bool mbCountString; + bool mbCountErrors; public: - explicit CountElements(bool bCountString) : mnCount(0), mbCountString(bCountString) {} + explicit CountElements(bool bCountString, bool bCountErrors) : + mnCount(0), mbCountString(bCountString), mbCountErrors(bCountErrors) {} size_t getCount() const { return mnCount; } @@ -1169,6 +1189,20 @@ switch (node.type) { case mdds::mtm::element_numeric: + mnCount += node.size; + if (!mbCountErrors) + { + typedef MatrixImplType::numeric_block_type block_type; + + block_type::const_iterator it = block_type::begin(*node.data); + block_type::const_iterator itEnd = block_type::end(*node.data); + for (; it != itEnd; ++it) + { + if (!::rtl::math::isFinite(*it)) + --mnCount; + } + } + break; case mdds::mtm::element_boolean: mnCount += node.size; break; @@ -1778,9 +1812,9 @@ return GetValueWithCount(bTextAsZero, maMat); } -size_t ScMatrixImpl::Count(bool bCountStrings) const +size_t ScMatrixImpl::Count(bool bCountStrings, bool bCountErrors) const { - CountElements aFunc(bCountStrings); + CountElements aFunc(bCountStrings, bCountErrors); maMat.walk(aFunc); return aFunc.getCount(); } @@ -2225,28 +2259,52 @@ delete this; } -ScFullMatrix::ScFullMatrix( SCSIZE nC, SCSIZE nR) : - ScMatrix(), - pImpl(new ScMatrixImpl(nC, nR)) +bool ScMatrix::IsSizeAllocatable( SCSIZE nC, SCSIZE nR ) { SAL_WARN_IF( !nC, "sc", "ScMatrix with 0 columns!"); SAL_WARN_IF( !nR, "sc", "ScMatrix with 0 rows!"); + // 0-size matrix is valid, it could be resized later. + if ((nC && !nR) || (!nC && nR)) + { + SAL_WARN( "sc", "ScMatrix one-dimensional zero: " << nC << " columns * " << nR << " rows"); + return false; + } + if (nC && nR && (nC > (ScMatrix::GetElementsMax() / nR))) + { + SAL_WARN( "sc", "ScMatrix overflow: " << nC << " columns * " << nR << " rows"); + return false; + } + return true; +} + +ScFullMatrix::ScFullMatrix( SCSIZE nC, SCSIZE nR) : + ScMatrix() +{ + if (ScMatrix::IsSizeAllocatable( nC, nR)) + pImpl.reset( new ScMatrixImpl( nC, nR)); + else + // Invalid matrix size, allocate 1x1 matrix with error value. + pImpl.reset( new ScMatrixImpl( 1,1, CreateDoubleError( errStackOverflow))); } ScFullMatrix::ScFullMatrix(SCSIZE nC, SCSIZE nR, double fInitVal) : - ScMatrix(), - pImpl(new ScMatrixImpl(nC, nR, fInitVal)) + ScMatrix() { - SAL_WARN_IF( !nC, "sc", "ScMatrix with 0 columns!"); - SAL_WARN_IF( !nR, "sc", "ScMatrix with 0 rows!"); + if (ScMatrix::IsSizeAllocatable( nC, nR)) + pImpl.reset( new ScMatrixImpl( nC, nR, fInitVal)); + else + // Invalid matrix size, allocate 1x1 matrix with error value. + pImpl.reset( new ScMatrixImpl( 1,1, CreateDoubleError( errStackOverflow))); } ScFullMatrix::ScFullMatrix( size_t nC, size_t nR, const std::vector& rInitVals ) : - ScMatrix(), - pImpl(new ScMatrixImpl(nC, nR, rInitVals)) + ScMatrix() { - SAL_WARN_IF( !nC, "sc", "ScMatrix with 0 columns!"); - SAL_WARN_IF( !nR, "sc", "ScMatrix with 0 rows!"); + if (ScMatrix::IsSizeAllocatable( nC, nR)) + pImpl.reset( new ScMatrixImpl( nC, nR, rInitVals)); + else + // Invalid matrix size, allocate 1x1 matrix with error value. + pImpl.reset( new ScMatrixImpl( 1,1, CreateDoubleError( errStackOverflow))); } ScFullMatrix::~ScFullMatrix() @@ -2567,9 +2625,9 @@ return pImpl->Product(bTextAsZero); } -size_t ScFullMatrix::Count(bool bCountStrings) const +size_t ScFullMatrix::Count(bool bCountStrings, bool bCountErrors) const { - return pImpl->Count(bCountStrings); + return pImpl->Count(bCountStrings, bCountErrors); } size_t ScFullMatrix::MatchDoubleInColumns(double fValue, size_t nCol1, size_t nCol2) const @@ -3401,7 +3459,7 @@ { return ScMatrix::IterateResult(0.0, 0.0, 0); } - else if (nDataSize > mpToken->GetArrayLength() + mnRowStart) + else if (nDataSize > mpToken->GetArrayLength() - mnRowStart) { nDataSize = mpToken->GetArrayLength() - mnRowStart; } @@ -3458,10 +3516,10 @@ return mpFullMatrix->Product(bTextAsZero); } -size_t ScVectorRefMatrix::Count(bool bCountStrings) const +size_t ScVectorRefMatrix::Count(bool bCountStrings, bool bCountErrors) const { const_cast(this)->ensureFullMatrix(); - return mpFullMatrix->Count(bCountStrings); + return mpFullMatrix->Count(bCountStrings, bCountErrors); } size_t ScVectorRefMatrix::MatchDoubleInColumns(double fValue, size_t nCol1, size_t nCol2) const diff -Nru libreoffice-5.1.1~rc2/sc/source/filter/excel/excimp8.cxx libreoffice-5.1.2~rc2/sc/source/filter/excel/excimp8.cxx --- libreoffice-5.1.1~rc2/sc/source/filter/excel/excimp8.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/sc/source/filter/excel/excimp8.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -52,7 +52,7 @@ #include #include -#include +#include #include #include diff -Nru libreoffice-5.1.1~rc2/sc/source/filter/excel/xestring.cxx libreoffice-5.1.2~rc2/sc/source/filter/excel/xestring.cxx --- libreoffice-5.1.1~rc2/sc/source/filter/excel/xestring.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/sc/source/filter/excel/xestring.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -178,12 +178,21 @@ maFormats.erase( maFormats.begin() + nMaxCount, maFormats.end() ); } -sal_uInt16 XclExpString::RemoveLeadingFont() +sal_uInt16 XclExpString::GetLeadingFont() { sal_uInt16 nFontIdx = EXC_FONT_NOTFOUND; if( !maFormats.empty() && (maFormats.front().mnChar == 0) ) { nFontIdx = maFormats.front().mnFontIdx; + } + return nFontIdx; +} + +sal_uInt16 XclExpString::RemoveLeadingFont() +{ + sal_uInt16 nFontIdx = GetLeadingFont(); + if( nFontIdx != EXC_FONT_NOTFOUND ) + { maFormats.erase( maFormats.begin() ); } return nFontIdx; diff -Nru libreoffice-5.1.1~rc2/sc/source/filter/excel/xetable.cxx libreoffice-5.1.2~rc2/sc/source/filter/excel/xetable.cxx --- libreoffice-5.1.1~rc2/sc/source/filter/excel/xetable.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/sc/source/filter/excel/xetable.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -724,18 +724,21 @@ mnSstIndex = 0; const XclFormatRunVec& rFormats = mxText->GetFormats(); - // Create the cell format and remove formatting of the leading run - // if the entire string is equally formatted + // remove formatting of the leading run if the entire string + // is equally formatted + sal_uInt16 nXclFont = EXC_FONT_NOTFOUND; if( rFormats.size() == 1 ) - { - sal_uInt16 nXclFont = mxText->RemoveLeadingFont(); - if( GetXFId() == EXC_XFID_NOTFOUND ) - { - OSL_ENSURE( nXclFont != EXC_FONT_NOTFOUND, "XclExpLabelCell::Init - leading font not found" ); - bool bForceLineBreak = mxText->IsWrapped(); - SetXFId( rRoot.GetXFBuffer().InsertWithFont( pPattern, ApiScriptType::WEAK, nXclFont, bForceLineBreak ) ); - } - } + nXclFont = mxText->RemoveLeadingFont(); + else + nXclFont = mxText->GetLeadingFont(); + + // create cell format + if( GetXFId() == EXC_XFID_NOTFOUND ) + { + OSL_ENSURE( nXclFont != EXC_FONT_NOTFOUND, "XclExpLabelCell::Init - leading font not found" ); + bool bForceLineBreak = mxText->IsWrapped(); + SetXFId( rRoot.GetXFBuffer().InsertWithFont( pPattern, ApiScriptType::WEAK, nXclFont, bForceLineBreak ) ); + } // get auto-wrap attribute from cell format const XclExpXF* pXF = rRoot.GetXFBuffer().GetXFById( GetXFId() ); diff -Nru libreoffice-5.1.1~rc2/sc/source/filter/excel/xipage.cxx libreoffice-5.1.2~rc2/sc/source/filter/excel/xipage.cxx --- libreoffice-5.1.1~rc2/sc/source/filter/excel/xipage.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/sc/source/filter/excel/xipage.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -19,7 +19,7 @@ #include "xipage.hxx" #include -#include +#include #include "scitems.hxx" #include #include diff -Nru libreoffice-5.1.1~rc2/sc/source/filter/excel/xltoolbar.cxx libreoffice-5.1.2~rc2/sc/source/filter/excel/xltoolbar.cxx --- libreoffice-5.1.1~rc2/sc/source/filter/excel/xltoolbar.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/sc/source/filter/excel/xltoolbar.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -20,7 +20,7 @@ #include #include #include -#include +#include #include using namespace com::sun::star; diff -Nru libreoffice-5.1.1~rc2/sc/source/filter/inc/eeparser.hxx libreoffice-5.1.2~rc2/sc/source/filter/inc/eeparser.hxx --- libreoffice-5.1.1~rc2/sc/source/filter/inc/eeparser.hxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/sc/source/filter/inc/eeparser.hxx 2016-03-29 15:41:04.000000000 +0000 @@ -21,7 +21,7 @@ #define INCLUDED_SC_SOURCE_FILTER_INC_EEPARSER_HXX #include -#include +#include #include #include #include diff -Nru libreoffice-5.1.1~rc2/sc/source/filter/inc/xeescher.hxx libreoffice-5.1.2~rc2/sc/source/filter/inc/xeescher.hxx --- libreoffice-5.1.1~rc2/sc/source/filter/inc/xeescher.hxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/sc/source/filter/inc/xeescher.hxx 2016-03-29 15:41:04.000000000 +0000 @@ -20,7 +20,7 @@ #ifndef INCLUDED_SC_SOURCE_FILTER_INC_XEESCHER_HXX #define INCLUDED_SC_SOURCE_FILTER_INC_XEESCHER_HXX -#include +#include #include #include "xcl97rec.hxx" #include "xlescher.hxx" diff -Nru libreoffice-5.1.1~rc2/sc/source/filter/inc/xestring.hxx libreoffice-5.1.2~rc2/sc/source/filter/inc/xestring.hxx --- libreoffice-5.1.1~rc2/sc/source/filter/inc/xestring.hxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/sc/source/filter/inc/xestring.hxx 2016-03-29 15:41:04.000000000 +0000 @@ -108,7 +108,9 @@ void AppendTrailingFormat( sal_uInt16 nFontIdx ); /** Removes formatting runs at the end, if the string contains too much. */ void LimitFormatCount( sal_uInt16 nMaxCount ); - /** Removes and returns the font index for the first char from the formatting runs, otherwise EXC_FONT_NOTFOUND. */ + /** Returns the font index of the first char in the formatting run, or EXC_FONT_NOTFOUND. */ + sal_uInt16 GetLeadingFont(); + /** The same as above + additionally remove the given font from the formatting run*/ sal_uInt16 RemoveLeadingFont(); // get data --------------------------------------------------------------- diff -Nru libreoffice-5.1.1~rc2/sc/source/filter/inc/xiescher.hxx libreoffice-5.1.2~rc2/sc/source/filter/inc/xiescher.hxx --- libreoffice-5.1.1~rc2/sc/source/filter/inc/xiescher.hxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/sc/source/filter/inc/xiescher.hxx 2016-03-29 15:41:04.000000000 +0000 @@ -22,7 +22,7 @@ #include #include -#include +#include #include "xlescher.hxx" #include "xiroot.hxx" #include "xistring.hxx" diff -Nru libreoffice-5.1.1~rc2/sc/source/filter/oox/workbookhelper.cxx libreoffice-5.1.2~rc2/sc/source/filter/oox/workbookhelper.cxx --- libreoffice-5.1.1~rc2/sc/source/filter/oox/workbookhelper.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/sc/source/filter/oox/workbookhelper.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -604,7 +604,7 @@ // #i76026# disable Undo while loading the document mpDoc->EnableUndo(false); // #i79826# disable calculating automatic row height while loading the document - mpDoc->EnableAdjustHeight(true); + mpDoc->EnableAdjustHeight(false); // disable automatic update of linked sheets and DDE links mpDoc->EnableExecuteLink(false); diff -Nru libreoffice-5.1.1~rc2/sc/source/ui/docshell/externalrefmgr.cxx libreoffice-5.1.2~rc2/sc/source/ui/docshell/externalrefmgr.cxx --- libreoffice-5.1.1~rc2/sc/source/ui/docshell/externalrefmgr.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/sc/source/ui/docshell/externalrefmgr.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -580,9 +580,9 @@ const ScAddress& s = rRange.aStart; const ScAddress& e = rRange.aEnd; - SCTAB nTab1 = s.Tab(), nTab2 = e.Tab(); - SCCOL nCol1 = s.Col(), nCol2 = e.Col(); - SCROW nRow1 = s.Row(), nRow2 = e.Row(); + const SCTAB nTab1 = s.Tab(), nTab2 = e.Tab(); + const SCCOL nCol1 = s.Col(), nCol2 = e.Col(); + const SCROW nRow1 = s.Row(), nRow2 = e.Row(); // Make sure I have all the tables cached. size_t nTabFirstId = itrTabId->second; @@ -616,58 +616,120 @@ return TokenArrayRef(); } - ScMatrixRef xMat = new ScFullMatrix( - static_cast(nDataCol2-nDataCol1+1), static_cast(nDataRow2-nDataRow1+1)); + SCSIZE nMatrixColumns = static_cast(nDataCol2-nDataCol1+1); + SCSIZE nMatrixRows = static_cast(nDataRow2-nDataRow1+1); + ScMatrixRef xMat = new ScFullMatrix( nMatrixColumns, nMatrixRows); - // Only fill non-empty cells, for better performance. + // Needed in shrink and fill. vector aRows; pTab->getAllRows(aRows, nDataRow1, nDataRow2); - for (vector::const_iterator itr = aRows.begin(), itrEnd = aRows.end(); itr != itrEnd; ++itr) + bool bFill = true; + + // Check if size could be allocated and if not skip the fill, there's + // one error element instead. But retry first with the actual data area + // if that is smaller than the original range, which works for most + // functions just not some that operate/compare with the original size + // and expect empty values in non-data areas. + // Restrict this though to ranges of entire columns or rows, other + // ranges might be on purpose. (Other special cases to handle?) + /* TODO: sparse matrix could help */ + SCSIZE nMatCols, nMatRows; + xMat->GetDimensions( nMatCols, nMatRows); + if (nMatCols != nMatrixColumns || nMatRows != nMatrixRows) { - SCROW nRow = *itr; - vector aCols; - pTab->getAllCols(nRow, aCols, nDataCol1, nDataCol2); - for (vector::const_iterator itrCol = aCols.begin(), itrColEnd = aCols.end(); itrCol != itrColEnd; ++itrCol) - { - SCCOL nCol = *itrCol; - TokenRef pToken = pTab->getCell(nCol, nRow); - if (!pToken) - // This should never happen! - return TokenArrayRef(); + bFill = false; + if (aRows.empty()) + { + // There's no data at all. Set the one matrix element to empty + // for column-repeated and row-repeated access. + xMat->PutEmpty(0,0); + } + else if ((nCol1 == 0 && nCol2 == MAXCOL) || (nRow1 == 0 && nRow2 == MAXROW)) + { + nDataRow1 = aRows.front(); + nDataRow2 = aRows.back(); + SCCOL nMinCol = std::numeric_limits::max(); + SCCOL nMaxCol = std::numeric_limits::min(); + for (vector::const_iterator itr = aRows.begin(), itrEnd = aRows.end(); itr != itrEnd; ++itr) + { + vector aCols; + pTab->getAllCols(*itr, aCols, nDataCol1, nDataCol2); + if (!aCols.empty()) + { + nMinCol = std::min( nMinCol, aCols.front()); + nMaxCol = std::max( nMaxCol, aCols.back()); + } + } - SCSIZE nC = nCol - nDataCol1, nR = nRow - nDataRow1; - switch (pToken->GetType()) + if (nMinCol <= nMaxCol && ((static_cast(nMaxCol-nMinCol+1) < nMatrixColumns) || + (static_cast(nDataRow2-nDataRow1+1) < nMatrixRows))) { - case svDouble: - xMat->PutDouble(pToken->GetDouble(), nC, nR); - break; - case svString: - xMat->PutString(pToken->GetString(), nC, nR); - break; - default: - ; + nMatrixColumns = static_cast(nMaxCol-nMinCol+1); + nMatrixRows = static_cast(nDataRow2-nDataRow1+1); + xMat = new ScFullMatrix( nMatrixColumns, nMatrixRows); + xMat->GetDimensions( nMatCols, nMatRows); + if (nMatCols == nMatrixColumns && nMatRows == nMatrixRows) + { + nDataCol1 = nMinCol; + nDataCol2 = nMaxCol; + bFill = true; + } } } } - if (!bFirstTab) - pArray->AddOpCode(ocSep); + if (bFill) + { + // Only fill non-empty cells, for better performance. + for (vector::const_iterator itr = aRows.begin(), itrEnd = aRows.end(); itr != itrEnd; ++itr) + { + SCROW nRow = *itr; + vector aCols; + pTab->getAllCols(nRow, aCols, nDataCol1, nDataCol2); + for (vector::const_iterator itrCol = aCols.begin(), itrColEnd = aCols.end(); itrCol != itrColEnd; ++itrCol) + { + SCCOL nCol = *itrCol; + TokenRef pToken = pTab->getCell(nCol, nRow); + if (!pToken) + // This should never happen! + return TokenArrayRef(); - ScMatrixToken aToken(xMat); - if (!pArray) - pArray.reset(new ScTokenArray); - pArray->AddToken(aToken); + SCSIZE nC = nCol - nDataCol1, nR = nRow - nDataRow1; + switch (pToken->GetType()) + { + case svDouble: + xMat->PutDouble(pToken->GetDouble(), nC, nR); + break; + case svString: + xMat->PutString(pToken->GetString(), nC, nR); + break; + default: + ; + } + } + } - bFirstTab = false; + if (!bFirstTab) + pArray->AddOpCode(ocSep); - if (!pNewRange) - pNewRange.reset(new ScRange(nDataCol1, nDataRow1, 0, nDataCol2, nDataRow2, 0)); - else - pNewRange->ExtendTo(ScRange(nDataCol1, nDataRow1, 0, nDataCol2, nDataRow2, 0)); + ScMatrixToken aToken(xMat); + if (!pArray) + pArray.reset(new ScTokenArray); + pArray->AddToken(aToken); + + bFirstTab = false; + + if (!pNewRange) + pNewRange.reset(new ScRange(nDataCol1, nDataRow1, nTab, nDataCol2, nDataRow2, nTab)); + else + pNewRange->ExtendTo(ScRange(nDataCol1, nDataRow1, nTab, nDataCol2, nDataRow2, nTab)); + } } - if (pNewRange) + rDoc.maRangeArrays.insert( RangeArrayMap::value_type(aCacheRange, pArray)); + if (pNewRange && *pNewRange != aCacheRange) rDoc.maRangeArrays.insert( RangeArrayMap::value_type(*pNewRange, pArray)); + return pArray; } @@ -791,37 +853,56 @@ pTabData.reset(new Table); const ScMatrixRef& pMat = itrData->mpRangeData; - for (SCROW nRow = nRow1; nRow <= nRow2; ++nRow) + SCSIZE nMatCols, nMatRows; + pMat->GetDimensions( nMatCols, nMatRows); + if (nMatCols > static_cast(nCol2 - nCol1) && nMatRows > static_cast(nRow2 - nRow1)) { - const SCSIZE nR = nRow - nRow1; - for (SCCOL nCol = nCol1; nCol <= nCol2; ++nCol) + for (SCROW nRow = nRow1; nRow <= nRow2; ++nRow) { - const SCSIZE nC = nCol - nCol1; + const SCSIZE nR = nRow - nRow1; + for (SCCOL nCol = nCol1; nCol <= nCol2; ++nCol) + { + const SCSIZE nC = nCol - nCol1; - ScMatrixValue value = pMat->Get(nC, nR); + ScMatrixValue value = pMat->Get(nC, nR); - TokenRef pToken; - - switch (value.nType) { - case SC_MATVAL_VALUE: - case SC_MATVAL_BOOLEAN: - pToken.reset(new formula::FormulaDoubleToken(value.fVal)); - break; - case SC_MATVAL_STRING: - pToken.reset(new formula::FormulaStringToken(value.aStr)); - break; - default: - // Don't cache empty cells. - break; - } + TokenRef pToken; + + switch (value.nType) { + case SC_MATVAL_VALUE: + case SC_MATVAL_BOOLEAN: + pToken.reset(new formula::FormulaDoubleToken(value.fVal)); + break; + case SC_MATVAL_STRING: + pToken.reset(new formula::FormulaStringToken(value.aStr)); + break; + default: + // Don't cache empty cells. + break; + } - if (pToken) - // Don't mark this cell 'cached' here, for better performance. - pTabData->setCell(nCol, nRow, pToken, 0, false); + if (pToken) + // Don't mark this cell 'cached' here, for better performance. + pTabData->setCell(nCol, nRow, pToken, 0, false); + } + } + // Mark the whole range 'cached'. + pTabData->setCachedCellRange(nCol1, nRow1, nCol2, nRow2); + } + else + { + // This may happen due to a matrix not been allocated earlier, in + // which case it should have exactly one error element. + SAL_WARN("sc.ui","ScExternalRefCache::setCellRangeData - matrix size mismatch"); + if (nMatCols != 1 || nMatRows != 1) + SAL_WARN("sc.ui","ScExternalRefCache::setCellRangeData - not a one element matrix"); + else + { + sal_uInt16 nErr = GetDoubleErrorValue( pMat->GetDouble(0,0)); + SAL_WARN("sc.ui","ScExternalRefCache::setCellRangeData - matrix error value is " << nErr << + (nErr ? ", ok" : ", not ok")); } } - // Mark the whole range 'cached'. - pTabData->setCachedCellRange(nCol1, nRow1, nCol2, nRow2); } size_t nTabLastId = nTabFirstId + rRange.aEnd.Tab() - rRange.aStart.Tab(); @@ -1467,9 +1548,9 @@ ScAddress& s = rRange.aStart; ScAddress& e = rRange.aEnd; - SCTAB nTab1 = s.Tab(), nTab2 = e.Tab(); - SCCOL nCol1 = s.Col(), nCol2 = e.Col(); - SCROW nRow1 = s.Row(), nRow2 = e.Row(); + const SCTAB nTab1 = s.Tab(), nTab2 = e.Tab(); + const SCCOL nCol1 = s.Col(), nCol2 = e.Col(); + const SCROW nRow1 = s.Row(), nRow2 = e.Row(); if (nTab2 != nTab1) // For now, we don't support multi-sheet ranges intentionally because @@ -1502,62 +1583,103 @@ else pUsedRange.reset(new ScRange(nDataCol1, nDataRow1, 0, nDataCol2, nDataRow2, 0)); - ScMatrixRef xMat = new ScFullMatrix( - static_cast(nCol2-nCol1+1), static_cast(nRow2-nRow1+1)); - - ColumnBatch aStringBatch(pHostDoc, pSrcDoc, CELLTYPE_STRING, CELLTYPE_EDIT); - ColumnBatch aDoubleBatch(pHostDoc, pSrcDoc, CELLTYPE_VALUE, CELLTYPE_VALUE); + SCSIZE nMatrixColumns = static_cast(nCol2-nCol1+1); + SCSIZE nMatrixRows = static_cast(nRow2-nRow1+1); + ScMatrixRef xMat = new ScFullMatrix( nMatrixColumns, nMatrixRows); + + bool bFill = true; + SCCOL nEffectiveCol1 = nCol1; + SCROW nEffectiveRow1 = nRow1; + + // Check if size could be allocated and if not skip the fill, there's + // one error element instead. But retry first with the actual data area + // if that is smaller than the original range, which works for most + // functions just not some that operate/compare with the original size + // and expect empty values in non-data areas. + // Restrict this though to ranges of entire columns or rows, other + // ranges might be on purpose. (Other special cases to handle?) + /* TODO: sparse matrix could help */ + SCSIZE nMatCols, nMatRows; + xMat->GetDimensions( nMatCols, nMatRows); + if (nMatCols != nMatrixColumns || nMatRows != nMatrixRows) + { + bFill = false; + if ((nCol1 == 0 && nCol2 == MAXCOL) || (nRow1 == 0 && nRow2 == MAXROW)) + { + if ((static_cast(nDataCol2-nDataCol1+1) < nMatrixColumns) || + (static_cast(nDataRow2-nDataRow1+1) < nMatrixRows)) + { + nMatrixColumns = static_cast(nDataCol2-nDataCol1+1); + nMatrixRows = static_cast(nDataRow2-nDataRow1+1); + xMat = new ScFullMatrix( nMatrixColumns, nMatrixRows); + xMat->GetDimensions( nMatCols, nMatRows); + if (nMatCols == nMatrixColumns && nMatRows == nMatrixRows) + { + nEffectiveCol1 = nDataCol1; + nEffectiveRow1 = nDataRow1; + bFill = true; + } + } + } + } - for (SCCOL nCol = nDataCol1; nCol <= nDataCol2; ++nCol) + if (bFill) { - const SCSIZE nC = nCol - nCol1; - for (SCROW nRow = nDataRow1; nRow <= nDataRow2; ++nRow) + ColumnBatch aStringBatch(pHostDoc, pSrcDoc, CELLTYPE_STRING, CELLTYPE_EDIT); + ColumnBatch aDoubleBatch(pHostDoc, pSrcDoc, CELLTYPE_VALUE, CELLTYPE_VALUE); + + for (SCCOL nCol = nDataCol1; nCol <= nDataCol2; ++nCol) { - const SCSIZE nR = nRow - nRow1; + const SCSIZE nC = nCol - nEffectiveCol1; + for (SCROW nRow = nDataRow1; nRow <= nDataRow2; ++nRow) + { + const SCSIZE nR = nRow - nEffectiveRow1; - ScRefCellValue aCell(*pSrcDoc, ScAddress(nCol, nRow, nTab)); + ScRefCellValue aCell(*pSrcDoc, ScAddress(nCol, nRow, nTab)); - aStringBatch.update(aCell, nC, nR, xMat); - aDoubleBatch.update(aCell, nC, nR, xMat); + aStringBatch.update(aCell, nC, nR, xMat); + aDoubleBatch.update(aCell, nC, nR, xMat); - if (aCell.hasEmptyValue()) - // Skip empty cells. Matrix's default values are empty elements. - continue; + if (aCell.hasEmptyValue()) + // Skip empty cells. Matrix's default values are empty elements. + continue; - switch (aCell.meType) - { - case CELLTYPE_FORMULA: + switch (aCell.meType) { - ScFormulaCell* pFCell = aCell.mpFormula; - sal_uInt16 nError = pFCell->GetErrCode(); - if (nError) - xMat->PutDouble( CreateDoubleError( nError), nC, nR); - else if (pFCell->IsValue()) - { - double fVal = pFCell->GetValue(); - xMat->PutDouble(fVal, nC, nR); - } - else - { - svl::SharedString aStr = pFCell->GetString(); - aStr = pHostDoc->GetSharedStringPool().intern(aStr.getString()); - xMat->PutString(aStr, nC, nR); - } + case CELLTYPE_FORMULA: + { + ScFormulaCell* pFCell = aCell.mpFormula; + sal_uInt16 nError = pFCell->GetErrCode(); + if (nError) + xMat->PutDouble( CreateDoubleError( nError), nC, nR); + else if (pFCell->IsValue()) + { + double fVal = pFCell->GetValue(); + xMat->PutDouble(fVal, nC, nR); + } + else + { + svl::SharedString aStr = pFCell->GetString(); + aStr = pHostDoc->GetSharedStringPool().intern(aStr.getString()); + xMat->PutString(aStr, nC, nR); + } + } + break; + // These are handled in batch: + case CELLTYPE_VALUE: + case CELLTYPE_STRING: + case CELLTYPE_EDIT: + break; + default: + OSL_FAIL("attempted to convert an unknown cell type."); } - break; - // These are handled in batch: - case CELLTYPE_VALUE: - case CELLTYPE_STRING: - case CELLTYPE_EDIT: - break; - default: - OSL_FAIL("attempted to convert an unknown cell type."); } - } - aStringBatch.flush(nC, xMat); - aDoubleBatch.flush(nC, xMat); + aStringBatch.flush(nC, xMat); + aDoubleBatch.flush(nC, xMat); + } } + if (!bFirstTab) pArray->AddOpCode(ocSep); diff -Nru libreoffice-5.1.1~rc2/sc/source/ui/pagedlg/scuitphfedit.cxx libreoffice-5.1.2~rc2/sc/source/ui/pagedlg/scuitphfedit.cxx --- libreoffice-5.1.1~rc2/sc/source/ui/pagedlg/scuitphfedit.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/sc/source/ui/pagedlg/scuitphfedit.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -131,11 +131,15 @@ m_pWndCenter->SetFont( aPatAttr ); m_pWndRight->SetFont( aPatAttr ); - // Set size request of 1 widget, the other two will follow as they are - // in the same grid + // Set size request for all 3 widgets Size aSize = LogicToPixel(Size(80, 120), MAP_APPFONT); - m_pWndLeft->set_width_request(aSize.Width()); - m_pWndLeft->set_height_request(aSize.Height()); + VclPtr aEditWindows[] = {m_pWndLeft, m_pWndCenter, m_pWndRight}; + + for (auto &pEditWindow : aEditWindows) + { + pEditWindow->set_width_request(aSize.Width()); + pEditWindow->set_height_request(aSize.Height()); + } m_pWndLeft->SetObjectSelectHdl( LINK(this,ScHFEditPage,ObjectSelectHdl) ); m_pWndCenter->SetObjectSelectHdl( LINK(this,ScHFEditPage,ObjectSelectHdl) ); diff -Nru libreoffice-5.1.1~rc2/sc/source/ui/view/gridwin.cxx libreoffice-5.1.2~rc2/sc/source/ui/view/gridwin.cxx --- libreoffice-5.1.1~rc2/sc/source/ui/view/gridwin.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/sc/source/ui/view/gridwin.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -40,7 +40,7 @@ #include #include #include -#include +#include #include #include #include diff -Nru libreoffice-5.1.1~rc2/sc/source/ui/view/viewfun3.cxx libreoffice-5.1.2~rc2/sc/source/ui/view/viewfun3.cxx --- libreoffice-5.1.1~rc2/sc/source/ui/view/viewfun3.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/sc/source/ui/view/viewfun3.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -30,7 +30,7 @@ #include #include #include -#include +#include #include #include #include diff -Nru libreoffice-5.1.1~rc2/sc/source/ui/view/viewfun5.cxx libreoffice-5.1.2~rc2/sc/source/ui/view/viewfun5.cxx --- libreoffice-5.1.1~rc2/sc/source/ui/view/viewfun5.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/sc/source/ui/view/viewfun5.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -42,7 +42,7 @@ #include #include #include -#include +#include #include #include diff -Nru libreoffice-5.1.1~rc2/scp2/InstallModule_quickstart.mk libreoffice-5.1.2~rc2/scp2/InstallModule_quickstart.mk --- libreoffice-5.1.1~rc2/scp2/InstallModule_quickstart.mk 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/scp2/InstallModule_quickstart.mk 2016-03-29 15:41:04.000000000 +0000 @@ -9,7 +9,7 @@ $(eval $(call gb_InstallModule_InstallModule,scp2/quickstart)) -$(eval $(call gb_installmodule_use_auto_install_libs,scp2/quickstart,\ +$(eval $(call gb_InstallModule_use_auto_install_libs,scp2/quickstart,\ quickstart \ )) diff -Nru libreoffice-5.1.1~rc2/scp2/source/ooo/common_brand.scp libreoffice-5.1.2~rc2/scp2/source/ooo/common_brand.scp --- libreoffice-5.1.1~rc2/scp2/source/ooo/common_brand.scp 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/scp2/source/ooo/common_brand.scp 2016-03-29 15:41:04.000000000 +0000 @@ -921,7 +921,7 @@ Section = "Version"; Order = 17; Key = "UpdateUserAgent"; - Value = " (${buildid}; ${_OS}; ${_ARCH}; BundledLanguages=${AllLanguages})"; + Value = " (${buildid}; ${_OS}; ${_ARCH}; )"; End ProfileItem gid_Brand_Profileitem_Version_Vendor diff -Nru libreoffice-5.1.1~rc2/sd/inc/pch/precompiled_sd.hxx libreoffice-5.1.2~rc2/sd/inc/pch/precompiled_sd.hxx --- libreoffice-5.1.1~rc2/sd/inc/pch/precompiled_sd.hxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/sd/inc/pch/precompiled_sd.hxx 2016-03-29 15:41:04.000000000 +0000 @@ -99,7 +99,7 @@ #include #include #include -#include +#include #include #include #include diff -Nru libreoffice-5.1.1~rc2/sd/inc/pch/precompiled_sdui.hxx libreoffice-5.1.2~rc2/sd/inc/pch/precompiled_sdui.hxx --- libreoffice-5.1.1~rc2/sd/inc/pch/precompiled_sdui.hxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/sd/inc/pch/precompiled_sdui.hxx 2016-03-29 15:41:04.000000000 +0000 @@ -139,7 +139,7 @@ #include #include #include -#include +#include #include #include #include diff -Nru libreoffice-5.1.1~rc2/sd/qa/unit/data/tdf97808.fodp libreoffice-5.1.2~rc2/sd/qa/unit/data/tdf97808.fodp --- libreoffice-5.1.1~rc2/sd/qa/unit/data/tdf97808.fodp 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-5.1.2~rc2/sd/qa/unit/data/tdf97808.fodp 2016-03-29 15:41:04.000000000 +0000 @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff -Nru libreoffice-5.1.1~rc2/sd/qa/unit/import-tests.cxx libreoffice-5.1.2~rc2/sd/qa/unit/import-tests.cxx --- libreoffice-5.1.1~rc2/sd/qa/unit/import-tests.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/sd/qa/unit/import-tests.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -57,6 +57,7 @@ #include #include #include +#include #include #include @@ -73,6 +74,7 @@ void testN778859(); void testMasterPageStyleParent(); void testGradientAngle(); + void testTdf97808(); void testFdo64512(); void testFdo71075(); void testN828390_2(); @@ -114,6 +116,7 @@ CPPUNIT_TEST(testN778859); CPPUNIT_TEST(testMasterPageStyleParent); CPPUNIT_TEST(testGradientAngle); + CPPUNIT_TEST(testTdf97808); CPPUNIT_TEST(testFdo64512); CPPUNIT_TEST(testFdo71075); CPPUNIT_TEST(testN828390_2); @@ -552,6 +555,45 @@ xDocShRef->DoClose(); } +namespace com { namespace sun { namespace star { namespace uno { + +template +std::ostream& operator<<(std::ostream& rStrm, const uno::Reference& xRef) +{ + rStrm << xRef.get(); + return rStrm; +} + +} } } } + +void SdImportTest::testTdf97808() +{ + sd::DrawDocShellRef xDocShRef = loadURL(getURLFromSrc("/sd/qa/unit/data/tdf97808.fodp"), FODP); + + uno::Reference xStyleFamiliesSupplier( + xDocShRef->GetModel(), uno::UNO_QUERY); + uno::Reference xStyleFamilies(xStyleFamiliesSupplier->getStyleFamilies(), uno::UNO_QUERY); + uno::Reference xStyleFamily(xStyleFamilies->getByName("graphics"), uno::UNO_QUERY); + uno::Reference xStyle(xStyleFamily->getByName("objectwithoutfill"), uno::UNO_QUERY); + OUString lineend; + CPPUNIT_ASSERT(xStyle->getPropertyValue("LineEndName") >>= lineend); + CPPUNIT_ASSERT_EQUAL(OUString("Arrow"), lineend); + + // the draw:marker-end="" did not override the style + uno::Reference xDoc( + xDocShRef->GetDoc()->getUnoModel(), uno::UNO_QUERY_THROW); + uno::Reference xPage( + xDoc->getDrawPages()->getByIndex(0), uno::UNO_QUERY_THROW); + uno::Reference xLine( + xPage->getByIndex(0), uno::UNO_QUERY_THROW); + //uno::Reference xParent; + uno::Reference xParent; + CPPUNIT_ASSERT(xLine->getPropertyValue("Style") >>= xParent); + CPPUNIT_ASSERT_EQUAL(xStyle, xParent); + CPPUNIT_ASSERT(xLine->getPropertyValue("LineEndName") >>= lineend); + CPPUNIT_ASSERT_EQUAL(OUString(), lineend); +} + void SdImportTest::testFdo64512() { sd::DrawDocShellRef xDocShRef = loadURL(getURLFromSrc("/sd/qa/unit/data/fdo64512.odp"), ODP); diff -Nru libreoffice-5.1.1~rc2/sd/qa/unit/sdmodeltestbase.hxx libreoffice-5.1.2~rc2/sd/qa/unit/sdmodeltestbase.hxx --- libreoffice-5.1.1~rc2/sd/qa/unit/sdmodeltestbase.hxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/sd/qa/unit/sdmodeltestbase.hxx 2016-03-29 15:41:04.000000000 +0000 @@ -49,6 +49,7 @@ #define HTML_FORMAT_TYPE ( SfxFilterFlags::EXPORT | SfxFilterFlags::ALIEN ) #define PDF_FORMAT_TYPE ( SfxFilterFlags::STARONEFILTER | SfxFilterFlags::ALIEN | SfxFilterFlags::IMPORT | SfxFilterFlags::PREFERED ) #define FODG_FORMAT_TYPE (SfxFilterFlags::STARONEFILTER | SfxFilterFlags::OWN | SfxFilterFlags::IMPORT | SfxFilterFlags::EXPORT) +#define FODP_FORMAT_TYPE (SfxFilterFlags::STARONEFILTER | SfxFilterFlags::OWN | SfxFilterFlags::IMPORT | SfxFilterFlags::EXPORT) /** List of file formats we support in Impress unit tests. @@ -66,6 +67,7 @@ { "html", "graphic_HTML", "graphic_HTML", "", HTML_FORMAT_TYPE }, { "pdf", "draw_pdf_import", "pdf_Portable_Document_Format", "", PDF_FORMAT_TYPE }, { "fodg", "OpenDocument Drawing Flat XML", "Flat XML ODF Drawing", "", FODG_FORMAT_TYPE }, + { "fodp", "OpenDocument Presentation Flat XML", "Flat XML ODF Presentation", "", FODP_FORMAT_TYPE }, { nullptr, nullptr, nullptr, nullptr, SfxFilterFlags::NONE } }; @@ -75,6 +77,7 @@ #define HTML 3 #define PDF 4 #define FODG 5 +#define FODP 6 /// Base class for filter tests loading or roundtriping a document, and asserting the document model. class SdModelTestBase : public test::BootstrapFixture, public unotest::MacrosTest diff -Nru libreoffice-5.1.1~rc2/sd/source/filter/eppt/eppt.cxx libreoffice-5.1.2~rc2/sd/source/filter/eppt/eppt.cxx --- libreoffice-5.1.1~rc2/sd/source/filter/eppt/eppt.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/sd/source/filter/eppt/eppt.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -21,7 +21,7 @@ #include "epptdef.hxx" #include #include -#include +#include #include #include #include diff -Nru libreoffice-5.1.1~rc2/sd/source/filter/eppt/eppt.hxx libreoffice-5.1.2~rc2/sd/source/filter/eppt/eppt.hxx --- libreoffice-5.1.1~rc2/sd/source/filter/eppt/eppt.hxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/sd/source/filter/eppt/eppt.hxx 2016-03-29 15:41:04.000000000 +0000 @@ -23,7 +23,7 @@ #include "escherex.hxx" #include #include -#include +#include #include #include "pptexanimations.hxx" #include diff -Nru libreoffice-5.1.1~rc2/sd/source/filter/eppt/pptx-epptbase.cxx libreoffice-5.1.2~rc2/sd/source/filter/eppt/pptx-epptbase.cxx --- libreoffice-5.1.1~rc2/sd/source/filter/eppt/pptx-epptbase.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/sd/source/filter/eppt/pptx-epptbase.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -24,7 +24,7 @@ #include #include #include -#include +#include #include #include #include diff -Nru libreoffice-5.1.1~rc2/sd/source/filter/html/buttonset.cxx libreoffice-5.1.2~rc2/sd/source/filter/html/buttonset.cxx --- libreoffice-5.1.1~rc2/sd/source/filter/html/buttonset.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/sd/source/filter/html/buttonset.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -29,7 +29,7 @@ #include #include #include -#include +#include #include #include #include diff -Nru libreoffice-5.1.1~rc2/sd/source/filter/html/pubdlg.cxx libreoffice-5.1.2~rc2/sd/source/filter/html/pubdlg.cxx --- libreoffice-5.1.1~rc2/sd/source/filter/html/pubdlg.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/sd/source/filter/html/pubdlg.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -31,7 +31,7 @@ #include #include #include -#include +#include #include #include #include diff -Nru libreoffice-5.1.1~rc2/sd/source/ui/animations/SlideTransitionPane.cxx libreoffice-5.1.2~rc2/sd/source/ui/animations/SlideTransitionPane.cxx --- libreoffice-5.1.1~rc2/sd/source/ui/animations/SlideTransitionPane.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/sd/source/ui/animations/SlideTransitionPane.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -805,7 +805,9 @@ } } aResult.mbEffectAmbiguous = false; - } + + } else if (mpVS_TRANSITION_ICONS->IsNoSelection()) + aResult.mbEffectAmbiguous = false; // speed if( mpLB_SPEED->IsEnabled() && diff -Nru libreoffice-5.1.1~rc2/sd/source/ui/app/sdmod2.cxx libreoffice-5.1.2~rc2/sd/source/ui/app/sdmod2.cxx --- libreoffice-5.1.1~rc2/sd/source/ui/app/sdmod2.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/sd/source/ui/app/sdmod2.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -271,7 +271,8 @@ } else { - aRepresentation = ( ( pDoc->GetDocumentType() == DOCUMENT_TYPE_IMPRESS ) + DocumentType eDocType = pDoc ? pDoc->GetDocumentType() : DOCUMENT_TYPE_IMPRESS; + aRepresentation = ( ( eDocType == DOCUMENT_TYPE_IMPRESS ) ? SdResId(STR_FIELD_PLACEHOLDER_SLIDENAME).toString() : SdResId(STR_FIELD_PLACEHOLDER_PAGENAME).toString() ); } diff -Nru libreoffice-5.1.1~rc2/sd/source/ui/dlg/prltempl.cxx libreoffice-5.1.2~rc2/sd/source/ui/dlg/prltempl.cxx --- libreoffice-5.1.1~rc2/sd/source/ui/dlg/prltempl.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/sd/source/ui/dlg/prltempl.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -28,7 +28,7 @@ #include #include #include -#include +#include #include #include #include diff -Nru libreoffice-5.1.1~rc2/sd/source/ui/func/bulmaper.cxx libreoffice-5.1.2~rc2/sd/source/ui/func/bulmaper.cxx --- libreoffice-5.1.1~rc2/sd/source/ui/func/bulmaper.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/sd/source/ui/func/bulmaper.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -33,7 +33,7 @@ //<- Fonts & Items #include #include -#include +#include #include #include #include diff -Nru libreoffice-5.1.1~rc2/sd/source/ui/inc/sdxfer.hxx libreoffice-5.1.2~rc2/sd/source/ui/inc/sdxfer.hxx --- libreoffice-5.1.1~rc2/sd/source/ui/inc/sdxfer.hxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/sd/source/ui/inc/sdxfer.hxx 2016-03-29 15:41:04.000000000 +0000 @@ -21,7 +21,7 @@ #define INCLUDED_SD_SOURCE_UI_INC_SDXFER_HXX #include -#include +#include #include #include diff -Nru libreoffice-5.1.1~rc2/sd/source/ui/sidebar/PreviewValueSet.cxx libreoffice-5.1.2~rc2/sd/source/ui/sidebar/PreviewValueSet.cxx --- libreoffice-5.1.1~rc2/sd/source/ui/sidebar/PreviewValueSet.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/sd/source/ui/sidebar/PreviewValueSet.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -78,6 +78,7 @@ GetOutputSizePixel().Width())); sal_uInt16 nNewRowCount (CalculateRowCount (nNewColumnCount)); + SetFormat(); SetColCount(nNewColumnCount); SetLineCount(nNewRowCount); } diff -Nru libreoffice-5.1.1~rc2/sd/source/ui/slideshow/showwindow.hxx libreoffice-5.1.2~rc2/sd/source/ui/slideshow/showwindow.hxx --- libreoffice-5.1.1~rc2/sd/source/ui/slideshow/showwindow.hxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/sd/source/ui/slideshow/showwindow.hxx 2016-03-29 15:41:04.000000000 +0000 @@ -23,7 +23,7 @@ #include #include #include -#include +#include #include "Window.hxx" diff -Nru libreoffice-5.1.1~rc2/sd/source/ui/view/drviews2.cxx libreoffice-5.1.2~rc2/sd/source/ui/view/drviews2.cxx --- libreoffice-5.1.1~rc2/sd/source/ui/view/drviews2.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/sd/source/ui/view/drviews2.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -83,7 +83,7 @@ #include -#include +#include #include #include #include diff -Nru libreoffice-5.1.1~rc2/sd/source/ui/view/drviews9.cxx libreoffice-5.1.2~rc2/sd/source/ui/view/drviews9.cxx --- libreoffice-5.1.1~rc2/sd/source/ui/view/drviews9.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/sd/source/ui/view/drviews9.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -39,7 +39,7 @@ #include #include #include -#include +#include #include #include #include diff -Nru libreoffice-5.1.1~rc2/sd/source/ui/view/sdview2.cxx libreoffice-5.1.2~rc2/sd/source/ui/view/sdview2.cxx --- libreoffice-5.1.1~rc2/sd/source/ui/view/sdview2.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/sd/source/ui/view/sdview2.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -26,7 +26,7 @@ #include #include #include -#include +#include #include #include #include diff -Nru libreoffice-5.1.1~rc2/sdext/source/pdfimport/test/outputwrap.hxx libreoffice-5.1.2~rc2/sdext/source/pdfimport/test/outputwrap.hxx --- libreoffice-5.1.1~rc2/sdext/source/pdfimport/test/outputwrap.hxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/sdext/source/pdfimport/test/outputwrap.hxx 2016-03-29 15:41:04.000000000 +0000 @@ -25,6 +25,7 @@ #include #include #include +#include namespace pdfi { @@ -59,6 +60,32 @@ maFile.close(); } }; + + class OutputWrapString : private cppu::BaseMutex, public OutputWrapBase + { + OString& mrString; + OStringBuffer maBuffer; + + public: + + explicit OutputWrapString(OString& rString) : OutputWrapBase(m_aMutex), mrString(rString), maBuffer(rString) + { + } + + virtual void SAL_CALL writeBytes(const css::uno::Sequence< ::sal_Int8 >& aData) throw (css::io::NotConnectedException, css::io::BufferSizeExceededException, css::io::IOException, css::uno::RuntimeException, std::exception) override + { + maBuffer.append(reinterpret_cast(aData.getConstArray()), aData.getLength()); + } + + virtual void SAL_CALL flush() throw (css::io::NotConnectedException, css::io::BufferSizeExceededException, css::io::IOException, css::uno::RuntimeException, std::exception) override + { + } + + virtual void SAL_CALL closeOutput() throw (css::io::NotConnectedException, css::io::BufferSizeExceededException, css::io::IOException, css::uno::RuntimeException, std::exception) override + { + mrString = maBuffer.makeStringAndClear(); + } + }; } #endif diff -Nru libreoffice-5.1.1~rc2/sdext/source/pdfimport/test/tests.cxx libreoffice-5.1.2~rc2/sdext/source/pdfimport/test/tests.cxx --- libreoffice-5.1.1~rc2/sdext/source/pdfimport/test/tests.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/sdext/source/pdfimport/test/tests.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -496,10 +496,41 @@ osl::File::remove( tempFileURL ); } + void testTdf96993() + { + uno::Reference xAdaptor(new pdfi::PDFIRawAdaptor(OUString(), getComponentContext())); + xAdaptor->setTreeVisitorFactory(createDrawTreeVisitorFactory()); + + OString aOutput; + CPPUNIT_ASSERT_MESSAGE("Exporting to ODF", + xAdaptor->odfConvert(getURLFromSrc("/sdext/source/pdfimport/test/testTdf96993.pdf"), + new OutputWrapString(aOutput), + nullptr)); + // This ensures that the imported image arrives properly flipped + CPPUNIT_ASSERT(aOutput.indexOf("draw:transform=\"matrix(18520.8333333333 0 0 26281.9444444444 0 0)\"") != -1); + } + + void testTdf98421() + { + uno::Reference xAdaptor(new pdfi::PDFIRawAdaptor(OUString(), getComponentContext())); + xAdaptor->setTreeVisitorFactory(createWriterTreeVisitorFactory()); + + OString aOutput; + CPPUNIT_ASSERT_MESSAGE("Exporting to ODF", + xAdaptor->odfConvert(getURLFromSrc("/sdext/source/pdfimport/test/testTdf96993.pdf"), + new OutputWrapString(aOutput), + nullptr)); + // This ensures that the imported image arrives properly flipped + CPPUNIT_ASSERT(aOutput.indexOf("draw:transform=\"scale( 1.0 -1.0 ) translate( 0mm 0mm )\"") != -1); + CPPUNIT_ASSERT(aOutput.indexOf("svg:height=\"-262.82mm\"") != -1); + } + CPPUNIT_TEST_SUITE(PDFITest); CPPUNIT_TEST(testXPDFParser); CPPUNIT_TEST(testOdfWriterExport); CPPUNIT_TEST(testOdfDrawExport); + CPPUNIT_TEST(testTdf96993); + CPPUNIT_TEST(testTdf98421); CPPUNIT_TEST_SUITE_END(); }; Binary files /tmp/tmpjVu_CV/d8O1VeJAAp/libreoffice-5.1.1~rc2/sdext/source/pdfimport/test/testTdf96993.pdf and /tmp/tmpjVu_CV/VUSojbs3iI/libreoffice-5.1.2~rc2/sdext/source/pdfimport/test/testTdf96993.pdf differ diff -Nru libreoffice-5.1.1~rc2/sdext/source/pdfimport/tree/writertreevisiting.cxx libreoffice-5.1.2~rc2/sdext/source/pdfimport/tree/writertreevisiting.cxx --- libreoffice-5.1.1~rc2/sdext/source/pdfimport/tree/writertreevisiting.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/sdext/source/pdfimport/tree/writertreevisiting.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -164,6 +164,15 @@ // that ODF rotation is oriented the other way // build transformation string + if (rElem.MirrorVertical) + { + // At some point, rElem.h may start arriving positive, + // so use robust adjusting math + rel_y -= std::abs(rElem.h); + if (!aBuf.isEmpty()) + aBuf.append(' '); + aBuf.append("scale( 1.0 -1.0 )"); + } if( fShearX != 0.0 ) { aBuf.append( "skewX( " ); diff -Nru libreoffice-5.1.1~rc2/sfx2/inc/pch/precompiled_sfx.hxx libreoffice-5.1.2~rc2/sfx2/inc/pch/precompiled_sfx.hxx --- libreoffice-5.1.1~rc2/sfx2/inc/pch/precompiled_sfx.hxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/sfx2/inc/pch/precompiled_sfx.hxx 2016-03-29 15:41:04.000000000 +0000 @@ -105,7 +105,7 @@ #include #include #include -#include +#include #include #include #include diff -Nru libreoffice-5.1.1~rc2/sfx2/source/appl/linkmgr2.cxx libreoffice-5.1.2~rc2/sfx2/source/appl/linkmgr2.cxx --- libreoffice-5.1.1~rc2/sfx2/source/appl/linkmgr2.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/sfx2/source/appl/linkmgr2.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -30,7 +30,7 @@ #include #include #include -#include +#include #include #include #include diff -Nru libreoffice-5.1.1~rc2/sfx2/source/control/templatecontaineritem.cxx libreoffice-5.1.2~rc2/sfx2/source/control/templatecontaineritem.cxx --- libreoffice-5.1.1~rc2/sfx2/source/control/templatecontaineritem.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/sfx2/source/control/templatecontaineritem.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -21,7 +21,7 @@ #include #include #include -#include +#include using namespace basegfx; using namespace basegfx::tools; diff -Nru libreoffice-5.1.1~rc2/sfx2/source/control/templateviewitem.cxx libreoffice-5.1.2~rc2/sfx2/source/control/templateviewitem.cxx --- libreoffice-5.1.1~rc2/sfx2/source/control/templateviewitem.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/sfx2/source/control/templateviewitem.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -19,7 +19,7 @@ #include #include #include -#include +#include #define SUBTITLE_SCALE_FACTOR 0.85 diff -Nru libreoffice-5.1.1~rc2/sfx2/source/control/thumbnailviewitem.cxx libreoffice-5.1.2~rc2/sfx2/source/control/thumbnailviewitem.cxx --- libreoffice-5.1.1~rc2/sfx2/source/control/thumbnailviewitem.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/sfx2/source/control/thumbnailviewitem.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -34,7 +34,7 @@ #include #include #include -#include +#include #include #include diff -Nru libreoffice-5.1.1~rc2/sfx2/source/dialog/dinfdlg.cxx libreoffice-5.1.2~rc2/sfx2/source/dialog/dinfdlg.cxx --- libreoffice-5.1.1~rc2/sfx2/source/dialog/dinfdlg.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/sfx2/source/dialog/dinfdlg.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -1073,7 +1073,8 @@ // determine size and type OUString aSizeText( m_aUnknownSize ); - if ( aURL.GetProtocol() == INetProtocol::File ) + if ( aURL.GetProtocol() == INetProtocol::File || + aURL.isAnyKnownWebDAVScheme() ) aSizeText = CreateSizeText( SfxContentHelper::GetSize( aURL.GetMainURL( INetURLObject::NO_DECODE ) ) ); m_pShowSizeFT->SetText( aSizeText ); @@ -2688,6 +2689,17 @@ { } +SfxCmisPropertiesPage::~SfxCmisPropertiesPage() +{ + disposeOnce(); +} + +void SfxCmisPropertiesPage::dispose() +{ + m_pPropertiesCtrl.ClearAllLines(); + SfxTabPage::dispose(); +} + bool SfxCmisPropertiesPage::FillItemSet( SfxItemSet* rSet ) { const SfxPoolItem* pItem = nullptr; diff -Nru libreoffice-5.1.1~rc2/sfx2/source/dialog/filedlgimpl.hxx libreoffice-5.1.2~rc2/sfx2/source/dialog/filedlgimpl.hxx --- libreoffice-5.1.1~rc2/sfx2/source/dialog/filedlgimpl.hxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/sfx2/source/dialog/filedlgimpl.hxx 2016-03-29 15:41:04.000000000 +0000 @@ -21,7 +21,7 @@ #include #include -#include +#include #include #include #include diff -Nru libreoffice-5.1.1~rc2/sfx2/source/doc/graphhelp.cxx libreoffice-5.1.2~rc2/sfx2/source/doc/graphhelp.cxx --- libreoffice-5.1.1~rc2/sfx2/source/doc/graphhelp.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/sfx2/source/doc/graphhelp.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -34,7 +34,7 @@ #include #include -#include +#include #include #include #include diff -Nru libreoffice-5.1.1~rc2/sfx2/source/doc/objstor.cxx libreoffice-5.1.2~rc2/sfx2/source/doc/objstor.cxx --- libreoffice-5.1.1~rc2/sfx2/source/doc/objstor.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/sfx2/source/doc/objstor.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -2280,8 +2280,19 @@ if ( nState == embed::EmbedStates::LOADED || nState == embed::EmbedStates::RUNNING ) // means that the object is not active { uno::Reference< util::XModifiable > xModifiable( xObj->getComponent(), uno::UNO_QUERY ); - if ( xModifiable.is() ) + if (xModifiable.is() && xModifiable->isModified()) + { + uno::Reference const xPers(xObj, uno::UNO_QUERY); + if (xPers.is()) + { // store it before resetting modified! + xPers->storeOwn(); + } + else + { + SAL_WARN("sfx.doc", "Modified object without persistence!"); + } xModifiable->setModified(sal_False); + } } } } diff -Nru libreoffice-5.1.1~rc2/sfx2/source/menu/mnumgr.cxx libreoffice-5.1.2~rc2/sfx2/source/menu/mnumgr.cxx --- libreoffice-5.1.1~rc2/sfx2/source/menu/mnumgr.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/sfx2/source/menu/mnumgr.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -41,7 +41,7 @@ #include #include #include -#include +#include #include #include diff -Nru libreoffice-5.1.1~rc2/sfx2/source/menu/thessubmenu.cxx libreoffice-5.1.2~rc2/sfx2/source/menu/thessubmenu.cxx --- libreoffice-5.1.1~rc2/sfx2/source/menu/thessubmenu.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/sfx2/source/menu/thessubmenu.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -26,7 +26,7 @@ #include #include #include -#include +#include #include diff -Nru libreoffice-5.1.1~rc2/slideshow/inc/pch/precompiled_slideshow.hxx libreoffice-5.1.2~rc2/slideshow/inc/pch/precompiled_slideshow.hxx --- libreoffice-5.1.1~rc2/slideshow/inc/pch/precompiled_slideshow.hxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/slideshow/inc/pch/precompiled_slideshow.hxx 2016-03-29 15:41:04.000000000 +0000 @@ -126,7 +126,7 @@ #include #include #include -#include +#include #include #include #include diff -Nru libreoffice-5.1.1~rc2/slideshow/opengl/honeycombFragmentShader.glsl libreoffice-5.1.2~rc2/slideshow/opengl/honeycombFragmentShader.glsl --- libreoffice-5.1.1~rc2/slideshow/opengl/honeycombFragmentShader.glsl 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/slideshow/opengl/honeycombFragmentShader.glsl 2016-03-29 15:41:04.000000000 +0000 @@ -29,7 +29,19 @@ void main() { - vec4 fragment = vec4(texture2D(slideTexture, texturePosition).rgb, 1.0); + const vec2 samplingPoints[9] = vec2[]( + vec2(0, 0), + vec2(-1, -1), + vec2(-1, 0), + vec2(-1, 1), + vec2(0, 1), + vec2(1, 1), + vec2(1, 0), + vec2(1, -1), + vec2(0, -1) + ); + + vec4 fragment = vec4(texture(slideTexture, texturePosition).rgb, 1.0); vec3 lightVector = vec3(0.0, 0.0, 1.0); float light = max(dot(lightVector, normal), 0.0); if (hexagonSize > 1.0) { @@ -73,13 +85,23 @@ fragment.rgb *= actualTime; } } + + // Compute the shadow. float visibility = 1.0; const float epsilon = 0.0001; - if (texture2D(depthShadowTexture, shadowCoordinate.xy).r < shadowCoordinate.z - epsilon) - visibility *= 0.7 + 0.3 * (1.0 - texture2D(colorShadowTexture, shadowCoordinate.xy).a); + if (selectedTexture < 0.5) { + float depthShadow = texture(depthShadowTexture, shadowCoordinate.xy).z; + float shadowRadius = (1.0 / (shadowCoordinate.z - depthShadow)) * 1000.0; + // Only the entering slide. + for (int i = 0; i < 9; ++i) { + vec2 coordinate = shadowCoordinate.xy + samplingPoints[i] / shadowRadius; + if (depthShadow < shadowCoordinate.z - epsilon) { + visibility -= 0.05 * texture(colorShadowTexture, coordinate).a; + } + } + } + vec4 black = vec4(0.0, 0.0, 0.0, fragment.a); - if (fragment.a < 0.001) - discard; gl_FragColor = mix(black, fragment, visibility * light); } diff -Nru libreoffice-5.1.1~rc2/slideshow/opengl/honeycombGeometryShader.glsl libreoffice-5.1.2~rc2/slideshow/opengl/honeycombGeometryShader.glsl --- libreoffice-5.1.1~rc2/slideshow/opengl/honeycombGeometryShader.glsl 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/slideshow/opengl/honeycombGeometryShader.glsl 2016-03-29 15:41:04.000000000 +0000 @@ -29,7 +29,7 @@ float snoise(vec2 p) { - return texture2D(permTexture, p).r; + return texture(permTexture, p).r; } mat4 identityMatrix(void) @@ -67,13 +67,14 @@ void main() { - vec2 translateVectors[6]; - translateVectors[0] = vec2(-3, -2); - translateVectors[1] = vec2(0, -4); - translateVectors[2] = vec2(3, -2); - translateVectors[3] = vec2(3, 2); - translateVectors[4] = vec2(0, 4); - translateVectors[5] = vec2(-3, 2); + const vec2 translateVectors[6] = vec2[]( + vec2(-3, -2), + vec2(0, -4), + vec2(3, -2), + vec2(3, 2), + vec2(0, 4), + vec2(-3, 2) + ); vec3 center = gl_in[0].gl_Position.xyz; diff -Nru libreoffice-5.1.1~rc2/slideshow/opengl/honeycombVertexShader.glsl libreoffice-5.1.2~rc2/slideshow/opengl/honeycombVertexShader.glsl --- libreoffice-5.1.1~rc2/slideshow/opengl/honeycombVertexShader.glsl 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/slideshow/opengl/honeycombVertexShader.glsl 2016-03-29 15:41:04.000000000 +0000 @@ -25,10 +25,21 @@ uniform mat4 orthoProjectionMatrix; uniform mat4 orthoViewMatrix; +// Workaround for Intel's Windows driver, to prevent optimisation breakage. +uniform float zero; + out mat4 projectionMatrix; out mat4 modelViewMatrix; out mat4 shadowMatrix; +mat4 identityMatrix(void) +{ + return mat4(1.0, 0.0, 0.0, 0.0, + 0.0, 1.0, 0.0, 0.0, + 0.0, 0.0, 1.0, 0.0, + 0.0, 0.0, 0.0, 1.0); +} + mat4 translationMatrix(vec3 axis) { return mat4(1.0, 0.0, 0.0, 0.0, @@ -61,25 +72,35 @@ void main( void ) { mat4 nmodelViewMatrix = u_modelViewMatrix * u_operationsTransformMatrix * u_sceneTransformMatrix * u_primitiveTransformMatrix; - mat4 transformMatrix; + mat4 transformMatrix = identityMatrix(); // TODO: use the aspect ratio of the slide instead. mat4 slideScaleMatrix = scaleMatrix(vec3(0.75, 1, 1)); mat4 invertSlideScaleMatrix = scaleMatrix(1.0 / vec3(0.75, 1, 1)); + // These ugly zero comparisons are a workaround for Intel's Windows driver optimisation bug. if (selectedTexture > 0.5) { // Leaving texture - transformMatrix = translationMatrix(vec3(0, 0, 6 * time)) - * scaleMatrix(vec3(1 + pow(2 * time, 2.1), 1 + pow(2 * time, 2.1), 0)) - * slideScaleMatrix - * rotationMatrix(vec3(0.0, 0.0, 1.0), -pow(time, 3) * M_PI) - * invertSlideScaleMatrix; + if (zero < 1.0) + transformMatrix = invertSlideScaleMatrix * transformMatrix; + if (zero < 2.0) + transformMatrix = rotationMatrix(vec3(0.0, 0.0, 1.0), -pow(time, 3) * M_PI) * transformMatrix; + if (zero < 3.0) + transformMatrix = slideScaleMatrix * transformMatrix; + if (zero < 4.0) + transformMatrix = scaleMatrix(vec3(1 + pow(2 * time, 2.1), 1 + pow(2 * time, 2.1), 0)) * transformMatrix; + if (zero < 5.0) + transformMatrix = translationMatrix(vec3(0, 0, 6 * time)) * transformMatrix; } else { // Entering texture - transformMatrix = translationMatrix(vec3(0, 0, 28 * (sqrt(time) - 1))) - * slideScaleMatrix - * rotationMatrix(vec3(0.0, 0.0, 1.0), pow(0.8 * (time - 1.0), 2.0) * M_PI) - * invertSlideScaleMatrix; + if (zero < 1.0) + transformMatrix = invertSlideScaleMatrix * transformMatrix; + if (zero < 2.0) + transformMatrix = rotationMatrix(vec3(0.0, 0.0, 1.0), pow(0.8 * (time - 1.0), 2.0) * M_PI) * transformMatrix; + if (zero < 3.0) + transformMatrix = slideScaleMatrix * transformMatrix; + if (zero < 4.0) + transformMatrix = translationMatrix(vec3(0, 0, 28 * (sqrt(time) - 1))) * transformMatrix; } if (shadow < 0.5) { diff -Nru libreoffice-5.1.1~rc2/slideshow/opengl/vortexFragmentShader.glsl libreoffice-5.1.2~rc2/slideshow/opengl/vortexFragmentShader.glsl --- libreoffice-5.1.1~rc2/slideshow/opengl/vortexFragmentShader.glsl 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/slideshow/opengl/vortexFragmentShader.glsl 2016-03-29 15:41:04.000000000 +0000 @@ -18,15 +18,49 @@ in vec4 shadowCoordinate; void main() { - vec3 lightVector = vec3(0.0, 0.0, 1.0); - float light = max(dot(lightVector, v_normal), 0.0); - vec4 fragment = texture2D(slideTexture, v_texturePosition); + const vec2 samplingPoints[9] = vec2[]( + vec2(0, 0), + vec2(-1, -1), + vec2(-1, 0), + vec2(-1, 1), + vec2(0, 1), + vec2(1, 1), + vec2(1, 0), + vec2(1, -1), + vec2(0, -1) + ); + + // Compute the shadow... float visibility = 1.0; const float epsilon = 0.0001; - if (texture2D(leavingShadowTexture, shadowCoordinate.xy).r < shadowCoordinate.z - epsilon) - visibility *= 0.7; - if (texture2D(enteringShadowTexture, shadowCoordinate.xy).r < shadowCoordinate.z - epsilon) - visibility *= 0.7; + + // for the leaving slide, + { + float depthShadow = texture(leavingShadowTexture, shadowCoordinate.xy).r; + float shadowRadius = (1.0 / (shadowCoordinate.z - depthShadow)) * 1000.0; + for (int i = 0; i < 9; ++i) { + vec2 coordinate = shadowCoordinate.xy + samplingPoints[i] / shadowRadius; + if (texture(leavingShadowTexture, coordinate).r < shadowCoordinate.z - epsilon) { + visibility -= 0.05; + } + } + } + + // and for entering slide. + { + float depthShadow = texture(enteringShadowTexture, shadowCoordinate.xy).r; + float shadowRadius = (1.0 / (shadowCoordinate.z - depthShadow)) * 1000.0; + for (int i = 0; i < 9; ++i) { + vec2 coordinate = shadowCoordinate.xy + samplingPoints[i] / shadowRadius; + if (texture(enteringShadowTexture, coordinate).r < shadowCoordinate.z - epsilon) { + visibility -= 0.05; + } + } + } + + vec3 lightVector = vec3(0.0, 0.0, 1.0); + float light = max(dot(lightVector, v_normal), 0.0); + vec4 fragment = texture(slideTexture, v_texturePosition); vec4 black = vec4(0.0, 0.0, 0.0, fragment.a); gl_FragColor = mix(black, fragment, visibility * light); } diff -Nru libreoffice-5.1.1~rc2/slideshow/opengl/vortexGeometryShader.glsl libreoffice-5.1.2~rc2/slideshow/opengl/vortexGeometryShader.glsl --- libreoffice-5.1.1~rc2/slideshow/opengl/vortexGeometryShader.glsl 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/slideshow/opengl/vortexGeometryShader.glsl 2016-03-29 15:41:04.000000000 +0000 @@ -12,11 +12,14 @@ layout(triangles) in; layout(triangle_strip, max_vertices=11) out; +uniform float shadow; +uniform mat4 u_projectionMatrix; +uniform mat4 orthoProjectionMatrix; +uniform mat4 orthoViewMatrix; + in vec2 g_texturePosition[]; in vec3 g_normal[]; -in mat4 projectionMatrix[]; in mat4 modelViewMatrix[]; -in mat4 shadowMatrix[]; in mat4 transform[]; in float nTime[]; in float startTime[]; @@ -52,6 +55,17 @@ void emitHexagonVertex(int index, vec3 translation, float fdsq) { + mat4 projectionMatrix; + mat4 shadowMatrix; + + if (shadow < 0.5) { + projectionMatrix = u_projectionMatrix; + shadowMatrix = orthoProjectionMatrix * orthoViewMatrix; + } else { + projectionMatrix = orthoProjectionMatrix * orthoViewMatrix; + shadowMatrix = mat4(0.0); + } + mat4 normalMatrix = transpose(inverse(modelViewMatrix[index])); vec4 pos = gl_in[index].gl_Position + vec4(translation, 0.0); @@ -62,8 +76,8 @@ v_normal = normalize(vec3(normalMatrix * transform[index] * vec4(g_normal[index], 0.0))); v_normal.z *= fdsq; - gl_Position = projectionMatrix[index] * modelViewMatrix[index] * pos; - shadowCoordinate = translationMatrix(vec3(0.5, 0.5, 0.5)) * scaleMatrix(vec3(0.5, 0.5, 0.5)) * shadowMatrix[index] * modelViewMatrix[index] * pos; + gl_Position = projectionMatrix * modelViewMatrix[index] * pos; + shadowCoordinate = translationMatrix(vec3(0.5, 0.5, 0.5)) * scaleMatrix(vec3(0.5, 0.5, 0.5)) * shadowMatrix * modelViewMatrix[index] * pos; v_texturePosition = g_texturePosition[index]; EmitVertex(); } diff -Nru libreoffice-5.1.1~rc2/slideshow/opengl/vortexVertexShader.glsl libreoffice-5.1.2~rc2/slideshow/opengl/vortexVertexShader.glsl --- libreoffice-5.1.1~rc2/slideshow/opengl/vortexVertexShader.glsl 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/slideshow/opengl/vortexVertexShader.glsl 2016-03-29 15:41:04.000000000 +0000 @@ -16,7 +16,6 @@ in vec2 a_texCoord; in float tileInfo; -uniform mat4 u_projectionMatrix; uniform mat4 u_modelViewMatrix; uniform mat4 u_sceneTransformMatrix; uniform mat4 u_primitiveTransformMatrix; @@ -26,15 +25,13 @@ uniform ivec2 numTiles; uniform sampler2D permTexture; uniform float slide; -uniform float shadow; -uniform mat4 orthoProjectionMatrix; -uniform mat4 orthoViewMatrix; + +// Workaround for Intel's Windows driver, to prevent optimisation breakage. +uniform float zero; out vec2 g_texturePosition; out vec3 g_normal; -out mat4 projectionMatrix; out mat4 modelViewMatrix; -out mat4 shadowMatrix; out mat4 transform; out float nTime; out float startTime; @@ -42,7 +39,7 @@ float snoise(vec2 p) { - return texture2D(permTexture, p).r; + return texture(permTexture, p).r; } mat4 identityMatrix(void) @@ -136,18 +133,14 @@ vec3 translationVector = vec3(rotationFuzz, 0.0, 0.0); // Compute the actual rotation matrix. - transform = translationMatrix(translationVector) - * rotationMatrix(vec3(0.0, 1.0, 0.0), clamp(rotation, -1.0, 1.0) * M_PI) - * translationMatrix(-translationVector) - * transform; - } - if (shadow < 0.5) { - projectionMatrix = u_projectionMatrix; - shadowMatrix = orthoProjectionMatrix * orthoViewMatrix; - } else { - projectionMatrix = orthoProjectionMatrix * orthoViewMatrix; - shadowMatrix = mat4(0.0); + // Intel's Windows driver gives a wrong matrix when all operations are done at once. + if (zero < 1.0) + transform = translationMatrix(translationVector) * transform; + if (zero < 2.0) + transform = rotationMatrix(vec3(0.0, 1.0, 0.0), clamp(rotation, -1.0, 1.0) * M_PI) * transform; + if (zero < 3.0) + transform = translationMatrix(-translationVector) * transform; } modelViewMatrix = u_modelViewMatrix * u_operationsTransformMatrix * u_sceneTransformMatrix * u_primitiveTransformMatrix; diff -Nru libreoffice-5.1.1~rc2/slideshow/source/engine/OGLTrans/generic/OGLTrans_TransitionImpl.cxx libreoffice-5.1.2~rc2/slideshow/source/engine/OGLTrans/generic/OGLTrans_TransitionImpl.cxx --- libreoffice-5.1.1~rc2/slideshow/source/engine/OGLTrans/generic/OGLTrans_TransitionImpl.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/slideshow/source/engine/OGLTrans/generic/OGLTrans_TransitionImpl.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -1557,7 +1557,6 @@ } private: - virtual void prepare( double nTime, double SlideWidth, double SlideHeight, double DispWidth, double DispHeight ) override; virtual void finishTransition() override; virtual GLuint makeShader() const override; virtual void prepareTransition( sal_Int32 glLeavingSlideTex, sal_Int32 glEnteringSlideTex ) override; @@ -1575,19 +1574,6 @@ std::vector mvTileInfo; }; -void VortexTransition::prepare( double, double, double, double, double ) -{ - glBindBuffer(GL_ARRAY_BUFFER, mnTileInfoBuffer); - CHECK_GL_ERROR(); - glEnableVertexAttribArray(mnTileInfoLocation); - CHECK_GL_ERROR(); - glVertexAttribPointer(mnTileInfoLocation, 1, GL_FLOAT, GL_FALSE, 0, nullptr); - CHECK_GL_ERROR(); - - glBindBuffer(GL_ARRAY_BUFFER, 0); - CHECK_GL_ERROR(); -} - void VortexTransition::finishTransition() { PermTextureTransition::finishTransition(); @@ -1669,6 +1655,10 @@ glBindBuffer(GL_ARRAY_BUFFER, mnTileInfoBuffer); CHECK_GL_ERROR(); + glEnableVertexAttribArray(mnTileInfoLocation); + CHECK_GL_ERROR(); + glVertexAttribPointer(mnTileInfoLocation, 1, GL_FLOAT, GL_FALSE, 0, nullptr); + CHECK_GL_ERROR(); glBufferData(GL_ARRAY_BUFFER, mvTileInfo.size()*sizeof(GLfloat), mvTileInfo.data(), GL_STATIC_DRAW); CHECK_GL_ERROR(); @@ -1707,8 +1697,8 @@ for (int i : {0, 1}) { glBindTexture(GL_TEXTURE_2D, mnDepthTextures[i]); glTexImage2D(GL_TEXTURE_2D, 0, GL_DEPTH_COMPONENT16, 2048, 2048, 0, GL_DEPTH_COMPONENT, GL_FLOAT, 0); - glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_NEAREST); - glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_NEAREST); + glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR); + glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR); glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_CLAMP_TO_EDGE); glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_CLAMP_TO_EDGE); @@ -2104,16 +2094,16 @@ glActiveTexture(GL_TEXTURE2); glBindTexture(GL_TEXTURE_2D, mnDepthTextures[0]); glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA, 2048, 2048, 0, GL_RGBA, GL_FLOAT, 0); - glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_NEAREST); - glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_NEAREST); + glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR); + glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR); glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_CLAMP_TO_EDGE); glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_CLAMP_TO_EDGE); glActiveTexture(GL_TEXTURE3); glBindTexture(GL_TEXTURE_2D, mnDepthTextures[1]); glTexImage2D(GL_TEXTURE_2D, 0, GL_DEPTH_COMPONENT16, 2048, 2048, 0, GL_DEPTH_COMPONENT, GL_FLOAT, 0); - glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_NEAREST); - glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_NEAREST); + glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR); + glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR); glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_CLAMP_TO_EDGE); glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_CLAMP_TO_EDGE); @@ -2150,9 +2140,9 @@ glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT); glUniform1f(mnShadowLocation, 1.0); glUniform1f(maSelectedTextureLocation, 1.0); - glUniform1f(maHexagonSizeLocation, 1.0 - borderSize); + glUniform1f(maHexagonSizeLocation, 1.0f - borderSize); displaySlide(nTime, glLeavingSlideTex, getScene().getLeavingSlide(), SlideWidthScale, SlideHeightScale); - glUniform1f(maHexagonSizeLocation, 1.0 + borderSize); + glUniform1f(maHexagonSizeLocation, 1.0f + borderSize); displaySlide(nTime, glLeavingSlideTex, getScene().getLeavingSlide(), SlideWidthScale, SlideHeightScale); // The back (entering) slide needs to be drawn before the front (leaving) one in order for blending to work. @@ -2160,14 +2150,14 @@ glBindFramebuffer(GL_FRAMEBUFFER, 0); glUniform1f(mnShadowLocation, 0.0); glUniform1f(maSelectedTextureLocation, 0.0); - glUniform1f(maHexagonSizeLocation, 1.0 - borderSize); + glUniform1f(maHexagonSizeLocation, 1.0f - borderSize); displaySlide(nTime, glEnteringSlideTex, getScene().getEnteringSlide(), SlideWidthScale, SlideHeightScale); - glUniform1f(maHexagonSizeLocation, 1.0 + borderSize); + glUniform1f(maHexagonSizeLocation, 1.0f + borderSize); displaySlide(nTime, glEnteringSlideTex, getScene().getEnteringSlide(), SlideWidthScale, SlideHeightScale); glUniform1f(maSelectedTextureLocation, 1.0); - glUniform1f(maHexagonSizeLocation, 1.0 - borderSize); + glUniform1f(maHexagonSizeLocation, 1.0f - borderSize); displaySlide(nTime, glLeavingSlideTex, getScene().getLeavingSlide(), SlideWidthScale, SlideHeightScale); - glUniform1f(maHexagonSizeLocation, 1.0 + borderSize); + glUniform1f(maHexagonSizeLocation, 1.0f + borderSize); displaySlide(nTime, glLeavingSlideTex, getScene().getLeavingSlide(), SlideWidthScale, SlideHeightScale); CHECK_GL_ERROR(); } diff -Nru libreoffice-5.1.1~rc2/slideshow/source/engine/shapes/gdimtftools.cxx libreoffice-5.1.2~rc2/slideshow/source/engine/shapes/gdimtftools.cxx --- libreoffice-5.1.1~rc2/slideshow/source/engine/shapes/gdimtftools.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/slideshow/source/engine/shapes/gdimtftools.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -40,7 +40,7 @@ #include #include #include -#include +#include #include diff -Nru libreoffice-5.1.1~rc2/slideshow/source/engine/shapes/viewmediashape.cxx libreoffice-5.1.2~rc2/slideshow/source/engine/shapes/viewmediashape.cxx --- libreoffice-5.1.1~rc2/slideshow/source/engine/shapes/viewmediashape.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/slideshow/source/engine/shapes/viewmediashape.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -30,7 +30,7 @@ #include #include #include -#include +#include #include #include diff -Nru libreoffice-5.1.1~rc2/solenv/gbuild/platform/com_MSC_class.mk libreoffice-5.1.2~rc2/solenv/gbuild/platform/com_MSC_class.mk --- libreoffice-5.1.1~rc2/solenv/gbuild/platform/com_MSC_class.mk 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/solenv/gbuild/platform/com_MSC_class.mk 2016-03-29 15:41:04.000000000 +0000 @@ -171,7 +171,8 @@ $(if $(filter YES,$(LIBRARY_X64)), \ -LIBPATH:$(COMPATH)/lib/amd64 \ -LIBPATH:$(WINDOWS_SDK_HOME)/lib/x64 \ - $(if $(filter 80 81,$(WINDOWS_SDK_VERSION)),-LIBPATH:$(WINDOWS_SDK_HOME)/lib/$(WINDOWS_SDK_LIB_SUBDIR)/um/x64)) \ + $(if $(filter 80 81 10,$(WINDOWS_SDK_VERSION)),-LIBPATH:$(WINDOWS_SDK_HOME)/lib/$(WINDOWS_SDK_LIB_SUBDIR)/um/x64) \ + $(if $(filter-out 120,$(VCVER)),-LIBPATH:$(WINDOWS_SDK_HOME)/lib/$(WINDOWS_SDK_LIB_SUBDIR)/ucrt/x64)) \ $(T_LDFLAGS) \ @$${RESPONSEFILE} \ $(foreach lib,$(LINKED_LIBS),$(call gb_Library_get_ilibfilename,$(lib))) \ diff -Nru libreoffice-5.1.1~rc2/solenv/gbuild/platform/com_MSC_defs.mk libreoffice-5.1.2~rc2/solenv/gbuild/platform/com_MSC_defs.mk --- libreoffice-5.1.1~rc2/solenv/gbuild/platform/com_MSC_defs.mk 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/solenv/gbuild/platform/com_MSC_defs.mk 2016-03-29 15:41:04.000000000 +0000 @@ -164,6 +164,7 @@ -wd4706 \ -wd4800 \ -Zc:wchar_t- \ + $(if $(filter-out 120,$(VCVER)), -Wv:18) \ gb_CXXFLAGS := \ -Gd \ @@ -195,7 +196,7 @@ -wd4800 \ -wd4913 \ -Zc:wchar_t- \ - + $(if $(filter-out 120,$(VCVER)), -Wv:18) \ ifneq ($(ENABLE_LTO),) @@ -262,14 +263,15 @@ $(if $(findstring s,$(filter-out --%,$(MAKEFLAGS))),-nologo,) \ $(patsubst %,-LIBPATH:%,$(filter-out .,$(subst ;, ,$(subst \,/,$(ILIB))))) \ -gb_DEBUGINFO_FLAGS := -Zi +# Prevent warning spamming +# Happens because of the way we link our unit tests with our libraries. +gb_LinkTarget_LDFLAGS += \ + /ignore:4217 -ifeq ($(VCVER),120) -# Use -FS with VS2013: "Force Synchronous PDB Writes. Forces writes to -# the program database (PDB) file--created by /Zi or /ZI--to be -# serialized through MSPDBSRV.EXE" -gb_DEBUGINFO_FLAGS+=-FS -endif + +gb_DEBUGINFO_FLAGS := \ + -FS \ + -Zi \ gb_DEBUG_CFLAGS := $(gb_DEBUGINFO_FLAGS) Binary files /tmp/tmpjVu_CV/d8O1VeJAAp/libreoffice-5.1.1~rc2/src/17df8301bcc459e83f8a8f3aca6183b2-graphite-minimal-1.3.6.tgz and /tmp/tmpjVu_CV/VUSojbs3iI/libreoffice-5.1.2~rc2/src/17df8301bcc459e83f8a8f3aca6183b2-graphite-minimal-1.3.6.tgz differ Binary files /tmp/tmpjVu_CV/d8O1VeJAAp/libreoffice-5.1.1~rc2/src/231adebe5c2f78fded3e3df6e958878e-neon-0.30.1.tar.gz and /tmp/tmpjVu_CV/VUSojbs3iI/libreoffice-5.1.2~rc2/src/231adebe5c2f78fded3e3df6e958878e-neon-0.30.1.tar.gz differ Binary files /tmp/tmpjVu_CV/d8O1VeJAAp/libreoffice-5.1.1~rc2/src/28935e208c311761c29983c739db08d8-graphite2-minimal-1.3.5.tgz and /tmp/tmpjVu_CV/VUSojbs3iI/libreoffice-5.1.2~rc2/src/28935e208c311761c29983c739db08d8-graphite2-minimal-1.3.5.tgz differ Binary files /tmp/tmpjVu_CV/d8O1VeJAAp/libreoffice-5.1.1~rc2/src/478e0e90ebc4a90159549e77021021fd-nss-3.19.4-with-nspr-4.10.10.tar.gz and /tmp/tmpjVu_CV/VUSojbs3iI/libreoffice-5.1.2~rc2/src/478e0e90ebc4a90159549e77021021fd-nss-3.19.4-with-nspr-4.10.10.tar.gz differ Binary files /tmp/tmpjVu_CV/d8O1VeJAAp/libreoffice-5.1.1~rc2/src/6b254cf2f8cb4b27a3f0b8b7b9966ea7-nss-3.22.2-with-nspr-4.12.tar.gz and /tmp/tmpjVu_CV/VUSojbs3iI/libreoffice-5.1.2~rc2/src/6b254cf2f8cb4b27a3f0b8b7b9966ea7-nss-3.22.2-with-nspr-4.12.tar.gz differ diff -Nru libreoffice-5.1.1~rc2/src/fetch.log libreoffice-5.1.2~rc2/src/fetch.log --- libreoffice-5.1.1~rc2/src/fetch.log 2016-02-26 11:53:30.000000000 +0000 +++ libreoffice-5.1.2~rc2/src/fetch.log 2016-03-30 11:19:19.000000000 +0000 @@ -1,322 +1,322 @@ -Fri Feb 26 11:47:10 UTC 2016 +Wed Mar 30 11:14:20 UTC 2016 % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 98 360k 98 355k 0 0 452k 0 --:--:-- --:--:-- --:--:-- 452k 100 360k 100 360k 0 0 456k 0 --:--:-- --:--:-- --:--:-- 455k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 360k 100 360k 0 0 572k 0 --:--:-- --:--:-- --:--:-- 572k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 184k 100 184k 0 0 531k 0 --:--:-- --:--:-- --:--:-- 532k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 99 184k 99 182k 0 0 630k 0 --:--:-- --:--:-- --:--:-- 629k 100 184k 100 184k 0 0 633k 0 --:--:-- --:--:-- --:--:-- 632k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 37 956k 37 359k 0 0 592k 0 0:00:01 --:--:-- 0:00:01 592k 100 956k 100 956k 0 0 728k 0 0:00:01 0:00:01 --:--:-- 728k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 956k 100 956k 0 0 1215k 0 --:--:-- --:--:-- --:--:-- 1216k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 6 853k 6 56381 0 0 183k 0 0:00:04 --:--:-- 0:00:04 183k 100 853k 100 853k 0 0 724k 0 0:00:01 0:00:01 --:--:-- 724k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 10 853k 10 91229 0 0 469k 0 0:00:01 --:--:-- 0:00:01 468k 100 853k 100 853k 0 0 1033k 0 --:--:-- --:--:-- --:--:-- 1033k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 67.1M 0 1201 0 0 8352 0 2:20:27 --:--:-- 2:20:27 8340 1 67.1M 1 708k 0 0 649k 0 0:01:45 0:00:01 0:01:44 649k 2 67.1M 2 1597k 0 0 763k 0 0:01:29 0:00:02 0:01:27 763k 3 67.1M 3 2583k 0 0 835k 0 0:01:22 0:00:03 0:01:19 835k 5 67.1M 5 3465k 0 0 845k 0 0:01:21 0:00:04 0:01:17 845k 6 67.1M 6 4550k 0 0 893k 0 0:01:16 0:00:05 0:01:11 918k 8 67.1M 8 5692k 0 0 934k 0 0:01:13 0:00:06 0:01:07 996k 9 67.1M 9 6814k 0 0 961k 0 0:01:11 0:00:07 0:01:04 1043k 11 67.1M 11 8161k 0 0 1008k 0 0:01:08 0:00:08 0:01:00 1115k 13 67.1M 13 9500k 0 0 1044k 0 0:01:05 0:00:09 0:00:56 1208k 15 67.1M 15 10.3M 0 0 1054k 0 0:01:05 0:00:10 0:00:55 1219k 16 67.1M 16 11.3M 0 0 1044k 0 0:01:05 0:00:11 0:00:54 1178k 18 67.1M 18 12.4M 0 0 1057k 0 0:01:05 0:00:12 0:00:53 1193k 20 67.1M 20 13.6M 0 0 1064k 0 0:01:04 0:00:13 0:00:51 1154k 21 67.1M 21 14.7M 0 0 1072k 0 0:01:04 0:00:14 0:00:50 1123k 23 67.1M 23 15.9M 0 0 1083k 0 0:01:03 0:00:15 0:00:48 1142k 25 67.1M 25 17.1M 0 0 1092k 0 0:01:02 0:00:16 0:00:46 1199k 27 67.1M 27 18.4M 0 0 1107k 0 0:01:02 0:00:17 0:00:45 1230k 29 67.1M 29 19.7M 0 0 1119k 0 0:01:01 0:00:18 0:00:43 1264k 31 67.1M 31 21.0M 0 0 1127k 0 0:01:00 0:00:19 0:00:41 1282k 33 67.1M 33 22.3M 0 0 1137k 0 0:01:00 0:00:20 0:00:40 1299k 35 67.1M 35 23.6M 0 0 1147k 0 0:00:59 0:00:21 0:00:38 1324k 37 67.1M 37 25.0M 0 0 1159k 0 0:00:59 0:00:22 0:00:37 1335k 39 67.1M 39 26.3M 0 0 1170k 0 0:00:58 0:00:23 0:00:35 1353k 41 67.1M 41 27.7M 0 0 1181k 0 0:00:58 0:00:24 0:00:34 1384k 43 67.1M 43 29.0M 0 0 1185k 0 0:00:57 0:00:25 0:00:32 1379k 45 67.1M 45 30.4M 0 0 1194k 0 0:00:57 0:00:26 0:00:31 1394k 47 67.1M 47 31.7M 0 0 1199k 0 0:00:57 0:00:27 0:00:30 1379k 48 67.1M 48 32.8M 0 0 1197k 0 0:00:57 0:00:28 0:00:29 1322k 50 67.1M 50 33.9M 0 0 1196k 0 0:00:57 0:00:29 0:00:28 1271k 52 67.1M 52 35.3M 0 0 1204k 0 0:00:57 0:00:30 0:00:27 1296k 54 67.1M 54 36.7M 0 0 1208k 0 0:00:56 0:00:31 0:00:25 1282k 56 67.1M 56 37.9M 0 0 1209k 0 0:00:56 0:00:32 0:00:24 1263k 58 67.1M 58 39.2M 0 0 1213k 0 0:00:56 0:00:33 0:00:23 1305k 60 67.1M 60 40.5M 0 0 1217k 0 0:00:56 0:00:34 0:00:22 1335k 62 67.1M 62 41.8M 0 0 1222k 0 0:00:56 0:00:35 0:00:21 1330k 64 67.1M 64 43.1M 0 0 1225k 0 0:00:56 0:00:36 0:00:20 1330k 66 67.1M 66 44.4M 0 0 1228k 0 0:00:55 0:00:37 0:00:18 1348k 68 67.1M 68 45.8M 0 0 1232k 0 0:00:55 0:00:38 0:00:17 1354k 70 67.1M 70 47.0M 0 0 1229k 0 0:00:55 0:00:39 0:00:16 1315k 70 67.1M 70 47.3M 0 0 1209k 0 0:00:56 0:00:40 0:00:16 1116k 71 67.1M 71 47.8M 0 0 1193k 0 0:00:57 0:00:41 0:00:16 957k 72 67.1M 72 48.6M 0 0 1183k 0 0:00:58 0:00:42 0:00:16 846k 74 67.1M 74 49.7M 0 0 1180k 0 0:00:58 0:00:43 0:00:15 790k 75 67.1M 75 50.5M 0 0 1173k 0 0:00:58 0:00:44 0:00:14 723k 76 67.1M 76 51.5M 0 0 1171k 0 0:00:58 0:00:45 0:00:13 869k 78 67.1M 78 52.6M 0 0 1168k 0 0:00:58 0:00:46 0:00:12 971k 80 67.1M 80 53.8M 0 0 1171k 0 0:00:58 0:00:47 0:00:11 1076k 82 67.1M 82 55.2M 0 0 1177k 0 0:00:58 0:00:48 0:00:10 1145k 84 67.1M 84 56.6M 0 0 1182k 0 0:00:58 0:00:49 0:00:09 1261k 86 67.1M 86 57.9M 0 0 1185k 0 0:00:57 0:00:50 0:00:07 1309k 87 67.1M 87 58.7M 0 0 1176k 0 0:00:58 0:00:51 0:00:07 1250k 89 67.1M 89 59.7M 0 0 1175k 0 0:00:58 0:00:52 0:00:06 1206k 90 67.1M 90 61.0M 0 0 1177k 0 0:00:58 0:00:53 0:00:05 1180k 92 67.1M 92 62.3M 0 0 1179k 0 0:00:58 0:00:54 0:00:04 1154k 94 67.1M 94 63.4M 0 0 1178k 0 0:00:58 0:00:55 0:00:03 1113k 95 67.1M 95 64.2M 0 0 1172k 0 0:00:58 0:00:56 0:00:02 1130k 97 67.1M 97 65.2M 0 0 1169k 0 0:00:58 0:00:57 0:00:01 1111k 98 67.1M 98 66.3M 0 0 1170k 0 0:00:58 0:00:58 --:--:-- 1092k 100 67.1M 100 67.1M 0 0 1173k 0 0:00:58 0:00:58 --:--:-- 1096k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 67.1M 0 298k 0 0 847k 0 0:01:21 --:--:-- 0:01:21 846k 2 67.1M 2 1470k 0 0 1087k 0 0:01:03 0:00:01 0:01:02 1087k 4 67.1M 4 2838k 0 0 1208k 0 0:00:56 0:00:02 0:00:54 1207k 6 67.1M 6 4157k 0 0 1240k 0 0:00:55 0:00:03 0:00:52 1240k 8 67.1M 8 5623k 0 0 1292k 0 0:00:53 0:00:04 0:00:49 1292k 10 67.1M 10 7042k 0 0 1316k 0 0:00:52 0:00:05 0:00:47 1349k 12 67.1M 12 8572k 0 0 1350k 0 0:00:50 0:00:06 0:00:44 1421k 13 67.1M 13 9464k 0 0 1281k 0 0:00:53 0:00:07 0:00:46 1315k 14 67.1M 14 9.8M 0 0 1209k 0 0:00:56 0:00:08 0:00:48 1188k 15 67.1M 15 10.5M 0 0 1152k 0 0:00:59 0:00:09 0:00:50 1031k 16 67.1M 16 11.2M 0 0 1109k 0 0:01:01 0:00:10 0:00:51 890k 17 67.1M 17 11.8M 0 0 1062k 0 0:01:04 0:00:11 0:00:53 704k 18 67.1M 18 12.6M 0 0 1045k 0 0:01:05 0:00:12 0:00:53 693k 20 67.1M 20 13.5M 0 0 1036k 0 0:01:06 0:00:13 0:00:53 748k 22 67.1M 22 14.7M 0 0 1055k 0 0:01:05 0:00:14 0:00:51 872k 23 67.1M 23 16.0M 0 0 1073k 0 0:01:04 0:00:15 0:00:49 996k 25 67.1M 25 17.3M 0 0 1089k 0 0:01:03 0:00:16 0:00:47 1151k 27 67.1M 27 18.7M 0 0 1106k 0 0:01:02 0:00:17 0:00:45 1258k 29 67.1M 29 20.1M 0 0 1122k 0 0:01:01 0:00:18 0:00:43 1352k 32 67.1M 32 21.5M 0 0 1140k 0 0:01:00 0:00:19 0:00:41 1382k 34 67.1M 34 23.1M 0 0 1164k 0 0:00:59 0:00:20 0:00:39 1442k 36 67.1M 36 24.5M 0 0 1176k 0 0:00:58 0:00:21 0:00:37 1460k 38 67.1M 38 26.1M 0 0 1197k 0 0:00:57 0:00:22 0:00:35 1511k 41 67.1M 41 27.6M 0 0 1212k 0 0:00:56 0:00:23 0:00:33 1542k 43 67.1M 43 29.2M 0 0 1229k 0 0:00:55 0:00:24 0:00:31 1573k 45 67.1M 45 30.7M 0 0 1242k 0 0:00:55 0:00:25 0:00:30 1562k 48 67.1M 48 32.3M 0 0 1256k 0 0:00:54 0:00:26 0:00:28 1598k 50 67.1M 50 33.8M 0 0 1266k 0 0:00:54 0:00:27 0:00:27 1578k 52 67.1M 52 35.3M 0 0 1278k 0 0:00:53 0:00:28 0:00:25 1583k 54 67.1M 54 36.9M 0 0 1287k 0 0:00:53 0:00:29 0:00:24 1571k 57 67.1M 57 38.3M 0 0 1295k 0 0:00:53 0:00:30 0:00:23 1564k 59 67.1M 59 39.9M 0 0 1306k 0 0:00:52 0:00:31 0:00:21 1566k 61 67.1M 61 41.5M 0 0 1316k 0 0:00:52 0:00:32 0:00:20 1588k 64 67.1M 64 43.1M 0 0 1325k 0 0:00:51 0:00:33 0:00:18 1591k 66 67.1M 66 44.7M 0 0 1332k 0 0:00:51 0:00:34 0:00:17 1600k 68 67.1M 68 46.2M 0 0 1340k 0 0:00:51 0:00:35 0:00:16 1610k 71 67.1M 71 47.7M 0 0 1345k 0 0:00:51 0:00:36 0:00:15 1595k 73 67.1M 73 49.3M 0 0 1352k 0 0:00:50 0:00:37 0:00:13 1584k 75 67.1M 75 50.8M 0 0 1357k 0 0:00:50 0:00:38 0:00:12 1573k 78 67.1M 78 52.4M 0 0 1365k 0 0:00:50 0:00:39 0:00:11 1588k 80 67.1M 80 54.0M 0 0 1371k 0 0:00:50 0:00:40 0:00:10 1594k 82 67.1M 82 55.6M 0 0 1377k 0 0:00:49 0:00:41 0:00:08 1603k 84 67.1M 84 57.0M 0 0 1379k 0 0:00:49 0:00:42 0:00:07 1582k 87 67.1M 87 58.5M 0 0 1383k 0 0:00:49 0:00:43 0:00:06 1584k 89 67.1M 89 59.8M 0 0 1382k 0 0:00:49 0:00:44 0:00:05 1519k 91 67.1M 91 61.4M 0 0 1387k 0 0:00:49 0:00:45 0:00:04 1514k 93 67.1M 93 62.9M 0 0 1391k 0 0:00:49 0:00:46 0:00:03 1508k 96 67.1M 96 64.5M 0 0 1396k 0 0:00:49 0:00:47 0:00:02 1542k 98 67.1M 98 66.0M 0 0 1398k 0 0:00:49 0:00:48 0:00:01 1526k 100 67.1M 100 67.1M 0 0 1401k 0 0:00:49 0:00:49 --:--:-- 1584k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 11 1935k 11 213k 0 0 615k 0 0:00:03 --:--:-- 0:00:03 614k 72 1935k 72 1393k 0 0 1033k 0 0:00:01 0:00:01 --:--:-- 1033k 100 1935k 100 1935k 0 0 1049k 0 0:00:01 0:00:01 --:--:-- 1049k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 4 1935k 4 98490 0 0 541k 0 0:00:03 --:--:-- 0:00:03 540k 72 1935k 72 1397k 0 0 1197k 0 0:00:01 0:00:01 --:--:-- 1197k 100 1935k 100 1935k 0 0 1233k 0 0:00:01 0:00:01 --:--:-- 1233k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 36 763k 36 280k 0 0 574k 0 0:00:01 --:--:-- 0:00:01 573k 100 763k 100 763k 0 0 773k 0 --:--:-- --:--:-- --:--:-- 772k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 85 763k 85 656k 0 0 1119k 0 --:--:-- --:--:-- --:--:-- 1119k 100 763k 100 763k 0 0 1135k 0 --:--:-- --:--:-- --:--:-- 1134k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 22.4M 0 226k 0 0 459k 0 0:00:50 --:--:-- 0:00:50 459k 4 22.4M 4 1088k 0 0 729k 0 0:00:31 0:00:01 0:00:30 729k 8 22.4M 8 1976k 0 0 794k 0 0:00:28 0:00:02 0:00:26 794k 13 22.4M 13 3041k 0 0 872k 0 0:00:26 0:00:03 0:00:23 871k 18 22.4M 18 4179k 0 0 930k 0 0:00:24 0:00:04 0:00:20 930k 23 22.4M 23 5365k 0 0 977k 0 0:00:23 0:00:05 0:00:18 1028k 29 22.4M 29 6769k 0 0 1043k 0 0:00:22 0:00:06 0:00:16 1136k 35 22.4M 35 8172k 0 0 1091k 0 0:00:21 0:00:07 0:00:14 1239k 41 22.4M 41 9569k 0 0 1127k 0 0:00:20 0:00:08 0:00:12 1305k 47 22.4M 47 10.6M 0 0 1147k 0 0:00:20 0:00:09 0:00:11 1342k 53 22.4M 53 11.9M 0 0 1170k 0 0:00:19 0:00:10 0:00:09 1381k 59 22.4M 59 13.3M 0 0 1190k 0 0:00:19 0:00:11 0:00:08 1381k 65 22.4M 65 14.7M 0 0 1207k 0 0:00:19 0:00:12 0:00:07 1381k 70 22.4M 70 15.8M 0 0 1204k 0 0:00:19 0:00:13 0:00:06 1334k 76 22.4M 76 17.0M 0 0 1207k 0 0:00:19 0:00:14 0:00:05 1320k 81 22.4M 81 18.3M 0 0 1210k 0 0:00:19 0:00:15 0:00:04 1295k 86 22.4M 86 19.5M 0 0 1212k 0 0:00:18 0:00:16 0:00:02 1263k 92 22.4M 92 20.8M 0 0 1218k 0 0:00:18 0:00:17 0:00:01 1244k 97 22.4M 97 22.0M 0 0 1219k 0 0:00:18 0:00:18 --:--:-- 1260k 100 22.4M 100 22.4M 0 0 1222k 0 0:00:18 0:00:18 --:--:-- 1275k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 4 22.4M 4 992k 0 0 1104k 0 0:00:20 --:--:-- 0:00:20 1103k 10 22.4M 10 2512k 0 0 1323k 0 0:00:17 0:00:01 0:00:16 1323k 17 22.4M 17 3933k 0 0 1356k 0 0:00:16 0:00:02 0:00:14 1356k 22 22.4M 22 5241k 0 0 1343k 0 0:00:17 0:00:03 0:00:14 1343k 29 22.4M 29 6713k 0 0 1367k 0 0:00:16 0:00:04 0:00:12 1367k 35 22.4M 35 8209k 0 0 1391k 0 0:00:16 0:00:05 0:00:11 1443k 42 22.4M 42 9663k 0 0 1400k 0 0:00:16 0:00:06 0:00:10 1430k 48 22.4M 48 10.9M 0 0 1417k 0 0:00:16 0:00:07 0:00:09 1453k 55 22.4M 55 12.4M 0 0 1433k 0 0:00:16 0:00:08 0:00:08 1503k 62 22.4M 62 13.9M 0 0 1448k 0 0:00:15 0:00:09 0:00:06 1526k 69 22.4M 69 15.5M 0 0 1457k 0 0:00:15 0:00:10 0:00:05 1535k 75 22.4M 75 16.9M 0 0 1461k 0 0:00:15 0:00:11 0:00:04 1546k 82 22.4M 82 18.5M 0 0 1473k 0 0:00:15 0:00:12 0:00:03 1560k 89 22.4M 89 20.1M 0 0 1480k 0 0:00:15 0:00:13 0:00:02 1563k 96 22.4M 96 21.6M 0 0 1485k 0 0:00:15 0:00:14 0:00:01 1558k 100 22.4M 100 22.4M 0 0 1489k 0 0:00:15 0:00:15 --:--:-- 1566k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 63 457k 63 290k 0 0 470k 0 --:--:-- --:--:-- --:--:-- 470k 100 457k 100 457k 0 0 500k 0 --:--:-- --:--:-- --:--:-- 499k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 78 457k 78 358k 0 0 903k 0 --:--:-- --:--:-- --:--:-- 903k 100 457k 100 457k 0 0 955k 0 --:--:-- --:--:-- --:--:-- 954k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 63 679k 63 432k 0 0 624k 0 0:00:01 --:--:-- 0:00:01 624k 100 679k 100 679k 0 0 690k 0 --:--:-- --:--:-- --:--:-- 690k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 679k 100 679k 0 0 1094k 0 --:--:-- --:--:-- --:--:-- 1094k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 18 2188k 18 409k 0 0 586k 0 0:00:03 --:--:-- 0:00:03 585k 61 2188k 61 1348k 0 0 796k 0 0:00:02 0:00:01 0:00:01 796k 98 2188k 98 2159k 0 0 798k 0 0:00:02 0:00:02 --:--:-- 798k 100 2188k 100 2188k 0 0 799k 0 0:00:02 0:00:02 --:--:-- 799k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 12 2188k 12 267k 0 0 977k 0 0:00:02 --:--:-- 0:00:02 977k 79 2188k 79 1732k 0 0 1360k 0 0:00:01 0:00:01 --:--:-- 1359k 100 2188k 100 2188k 0 0 1412k 0 0:00:01 0:00:01 --:--:-- 1412k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 58 720k 58 422k 0 0 448k 0 0:00:01 --:--:-- 0:00:01 448k 100 720k 100 720k 0 0 515k 0 0:00:01 0:00:01 --:--:-- 515k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 720k 100 720k 0 0 1184k 0 --:--:-- --:--:-- --:--:-- 1185k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 2 9.8M 2 256k 0 0 480k 0 0:00:21 --:--:-- 0:00:21 480k 8 9.8M 8 864k 0 0 564k 0 0:00:17 0:00:01 0:00:16 563k 17 9.8M 17 1718k 0 0 677k 0 0:00:14 0:00:02 0:00:12 677k 25 9.8M 25 2622k 0 0 743k 0 0:00:13 0:00:03 0:00:10 743k 36 9.8M 36 3638k 0 0 802k 0 0:00:12 0:00:04 0:00:08 802k 47 9.8M 47 4779k 0 0 864k 0 0:00:11 0:00:05 0:00:06 905k 59 9.8M 59 5990k 0 0 917k 0 0:00:11 0:00:06 0:00:05 1025k 72 9.8M 72 7320k 0 0 971k 0 0:00:10 0:00:07 0:00:03 1120k 86 9.8M 86 8740k 0 0 1024k 0 0:00:09 0:00:08 0:00:01 1223k 100 9.8M 100 9.8M 0 0 1069k 0 0:00:09 0:00:09 --:--:-- 1317k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 9.8M 0 1202 0 0 13487 0 0:12:46 --:--:-- 0:12:46 13355 12 9.8M 12 1274k 0 0 1172k 0 0:00:08 0:00:01 0:00:07 1172k 26 9.8M 26 2647k 0 0 1267k 0 0:00:07 0:00:02 0:00:05 1267k 40 9.8M 40 4101k 0 0 1328k 0 0:00:07 0:00:03 0:00:04 1327k 54 9.8M 54 5538k 0 0 1354k 0 0:00:07 0:00:04 0:00:03 1354k 68 9.8M 68 6949k 0 0 1366k 0 0:00:07 0:00:05 0:00:02 1390k 81 9.8M 81 8248k 0 0 1353k 0 0:00:07 0:00:06 0:00:01 1393k 95 9.8M 95 9640k 0 0 1360k 0 0:00:07 0:00:07 --:--:-- 1398k 100 9.8M 100 9.8M 0 0 1368k 0 0:00:07 0:00:07 --:--:-- 1397k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 542k 100 542k 0 0 680k 0 --:--:-- --:--:-- --:--:-- 680k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 542k 100 542k 0 0 906k 0 --:--:-- --:--:-- --:--:-- 908k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 9 931k 9 88325 0 0 316k 0 0:00:02 --:--:-- 0:00:02 315k 84 931k 84 782k 0 0 626k 0 0:00:01 0:00:01 --:--:-- 626k 100 931k 100 931k 0 0 635k 0 0:00:01 0:00:01 --:--:-- 635k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 931k 0 1205 0 0 17627 0 0:00:54 --:--:-- 0:00:54 17463 100 931k 100 931k 0 0 1255k 0 --:--:-- --:--:-- --:--:-- 1255k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 49659 100 49659 0 0 195k 0 --:--:-- --:--:-- --:--:-- 196k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 49659 100 49659 0 0 352k 0 --:--:-- --:--:-- --:--:-- 353k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 6 3284k 6 218k 0 0 426k 0 0:00:07 --:--:-- 0:00:07 426k 20 3284k 20 667k 0 0 441k 0 0:00:07 0:00:01 0:00:06 441k 39 3284k 39 1312k 0 0 521k 0 0:00:06 0:00:02 0:00:04 521k 69 3284k 69 2295k 0 0 651k 0 0:00:05 0:00:03 0:00:02 651k 100 3284k 100 3284k 0 0 762k 0 0:00:04 0:00:04 --:--:-- 762k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 3284k 0 15723 0 0 93015 0 0:00:36 --:--:-- 0:00:36 93035 38 3284k 38 1268k 0 0 1088k 0 0:00:03 0:00:01 0:00:02 1088k 80 3284k 80 2640k 0 0 1219k 0 0:00:02 0:00:02 --:--:-- 1219k 100 3284k 100 3284k 0 0 1234k 0 0:00:02 0:00:02 --:--:-- 1234k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 3 455k 3 17177 0 0 93784 0 0:00:04 --:--:-- 0:00:04 93353 100 455k 100 455k 0 0 518k 0 --:--:-- --:--:-- --:--:-- 518k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 455k 100 455k 0 0 955k 0 --:--:-- --:--:-- --:--:-- 955k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 18 452k 18 85421 0 0 250k 0 0:00:01 --:--:-- 0:00:01 250k 100 452k 100 452k 0 0 481k 0 --:--:-- --:--:-- --:--:-- 481k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 452k 100 452k 0 0 817k 0 --:--:-- --:--:-- --:--:-- 818k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 6 1656k 6 114k 0 0 332k 0 0:00:04 --:--:-- 0:00:04 332k 48 1656k 48 799k 0 0 594k 0 0:00:02 0:00:01 0:00:01 594k 100 1656k 100 1656k 0 0 786k 0 0:00:02 0:00:02 --:--:-- 786k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 23 1656k 23 389k 0 0 886k 0 0:00:01 --:--:-- 0:00:01 885k 91 1656k 91 1511k 0 0 1054k 0 0:00:01 0:00:01 --:--:-- 1053k 100 1656k 100 1656k 0 0 1065k 0 0:00:01 0:00:01 --:--:-- 1064k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 2 549k 2 15725 0 0 52141 0 0:00:10 --:--:-- 0:00:10 52069 90 549k 90 497k 0 0 400k 0 0:00:01 0:00:01 --:--:-- 400k 100 549k 100 549k 0 0 430k 0 0:00:01 0:00:01 --:--:-- 429k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 549k 100 549k 0 0 887k 0 --:--:-- --:--:-- --:--:-- 889k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 2 13.1M 2 335k 0 0 351k 0 0:00:38 --:--:-- 0:00:38 351k 7 13.1M 7 1049k 0 0 539k 0 0:00:24 0:00:01 0:00:23 539k 14 13.1M 14 1959k 0 0 667k 0 0:00:20 0:00:02 0:00:18 666k 22 13.1M 22 3063k 0 0 778k 0 0:00:17 0:00:03 0:00:14 778k 29 13.1M 29 3975k 0 0 805k 0 0:00:16 0:00:04 0:00:12 805k 38 13.1M 38 5168k 0 0 870k 0 0:00:15 0:00:05 0:00:10 970k 48 13.1M 48 6503k 0 0 937k 0 0:00:14 0:00:06 0:00:08 1091k 58 13.1M 58 7910k 0 0 996k 0 0:00:13 0:00:07 0:00:06 1190k 68 13.1M 68 9203k 0 0 1030k 0 0:00:13 0:00:08 0:00:05 1228k 77 13.1M 77 10.1M 0 0 1047k 0 0:00:12 0:00:09 0:00:03 1285k 88 13.1M 88 11.6M 0 0 1088k 0 0:00:12 0:00:10 0:00:02 1347k 99 13.1M 99 13.0M 0 0 1123k 0 0:00:11 0:00:11 --:--:-- 1381k 100 13.1M 100 13.1M 0 0 1122k 0 0:00:11 0:00:11 --:--:-- 1372k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 1 13.1M 1 141k 0 0 607k 0 0:00:22 --:--:-- 0:00:22 607k 10 13.1M 10 1363k 0 0 1104k 0 0:00:12 0:00:01 0:00:11 1104k 18 13.1M 18 2512k 0 0 1124k 0 0:00:11 0:00:02 0:00:09 1124k 27 13.1M 27 3751k 0 0 1160k 0 0:00:11 0:00:03 0:00:08 1160k 37 13.1M 37 4999k 0 0 1181k 0 0:00:11 0:00:04 0:00:07 1181k 48 13.1M 48 6519k 0 0 1245k 0 0:00:10 0:00:05 0:00:05 1275k 59 13.1M 59 8028k 0 0 1288k 0 0:00:10 0:00:06 0:00:04 1333k 71 13.1M 71 9606k 0 0 1328k 0 0:00:10 0:00:07 0:00:03 1418k 83 13.1M 83 10.9M 0 0 1362k 0 0:00:09 0:00:08 0:00:01 1493k 95 13.1M 95 12.4M 0 0 1386k 0 0:00:09 0:00:09 --:--:-- 1559k 100 13.1M 100 13.1M 0 0 1386k 0 0:00:09 0:00:09 --:--:-- 1553k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 51 1512k 51 782k 0 0 829k 0 0:00:01 --:--:-- 0:00:01 828k 100 1512k 100 1512k 0 0 937k 0 0:00:01 0:00:01 --:--:-- 938k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 26 1512k 26 406k 0 0 794k 0 0:00:01 --:--:-- 0:00:01 794k 98 1512k 98 1488k 0 0 983k 0 0:00:01 0:00:01 --:--:-- 983k 100 1512k 100 1512k 0 0 989k 0 0:00:01 0:00:01 --:--:-- 989k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 32 583k 32 188k 0 0 562k 0 0:00:01 --:--:-- 0:00:01 562k 100 583k 100 583k 0 0 800k 0 --:--:-- --:--:-- --:--:-- 800k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 583k 100 583k 0 0 977k 0 --:--:-- --:--:-- --:--:-- 978k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 28 1457k 28 422k 0 0 732k 0 0:00:01 --:--:-- 0:00:01 731k 97 1457k 97 1419k 0 0 896k 0 0:00:01 0:00:01 --:--:-- 895k 100 1457k 100 1457k 0 0 902k 0 0:00:01 0:00:01 --:--:-- 902k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 17 1457k 17 249k 0 0 685k 0 0:00:02 --:--:-- 0:00:02 684k 100 1457k 100 1457k 0 0 1081k 0 0:00:01 0:00:01 --:--:-- 1081k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 85 903k 85 768k 0 0 809k 0 0:00:01 --:--:-- 0:00:01 808k 100 903k 100 903k 0 0 832k 0 0:00:01 0:00:01 --:--:-- 832k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 903k 100 903k 0 0 974k 0 --:--:-- --:--:-- --:--:-- 974k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 11 5166k 11 595k 0 0 699k 0 0:00:07 --:--:-- 0:00:07 699k 33 5166k 33 1750k 0 0 946k 0 0:00:05 0:00:01 0:00:04 946k 55 5166k 55 2852k 0 0 998k 0 0:00:05 0:00:02 0:00:03 998k 74 5166k 74 3846k 0 0 996k 0 0:00:05 0:00:03 0:00:02 996k 97 5166k 97 5060k 0 0 1043k 0 0:00:04 0:00:04 --:--:-- 1043k 100 5166k 100 5166k 0 0 1049k 0 0:00:04 0:00:04 --:--:-- 1123k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 5166k 0 1206 0 0 17882 0 0:04:55 --:--:-- 0:04:55 17735 23 5166k 23 1192k 0 0 1124k 0 0:00:04 0:00:01 0:00:03 1123k 51 5166k 51 2659k 0 0 1291k 0 0:00:04 0:00:02 0:00:02 1291k 83 5166k 83 4314k 0 0 1409k 0 0:00:03 0:00:03 --:--:-- 1409k 100 5166k 100 5166k 0 0 1454k 0 0:00:03 0:00:03 --:--:-- 1454k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 314k 100 314k 0 0 583k 0 --:--:-- --:--:-- --:--:-- 584k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 314k 100 314k 0 0 774k 0 --:--:-- --:--:-- --:--:-- 775k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 150k 100 150k 0 0 439k 0 --:--:-- --:--:-- --:--:-- 439k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 2 150k 2 4109 0 0 59146 0 0:00:02 --:--:-- 0:00:02 58700 100 150k 100 150k 0 0 611k 0 --:--:-- --:--:-- --:--:-- 610k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 67 1155k 67 782k 0 0 779k 0 0:00:01 0:00:01 --:--:-- 778k 100 1155k 100 1155k 0 0 845k 0 0:00:01 0:00:01 --:--:-- 845k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 72 1155k 72 836k 0 0 1024k 0 0:00:01 --:--:-- 0:00:01 1023k 100 1155k 100 1155k 0 0 1080k 0 0:00:01 0:00:01 --:--:-- 1080k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 6 3436k 6 235k 0 0 376k 0 0:00:09 --:--:-- 0:00:09 376k 29 3436k 29 1012k 0 0 609k 0 0:00:05 0:00:01 0:00:04 609k 55 3436k 55 1915k 0 0 724k 0 0:00:04 0:00:02 0:00:02 724k 90 3436k 90 3119k 0 0 860k 0 0:00:03 0:00:03 --:--:-- 860k 100 3436k 100 3436k 0 0 850k 0 0:00:04 0:00:04 --:--:-- 850k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 18 3436k 18 642k 0 0 879k 0 0:00:03 --:--:-- 0:00:03 878k 52 3436k 52 1804k 0 0 1043k 0 0:00:03 0:00:01 0:00:02 1043k 84 3436k 84 2895k 0 0 1060k 0 0:00:03 0:00:02 0:00:01 1060k 100 3436k 100 3436k 0 0 1076k 0 0:00:03 0:00:03 --:--:-- 1076k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 37 962k 37 365k 0 0 644k 0 0:00:01 --:--:-- 0:00:01 644k 100 962k 100 962k 0 0 759k 0 0:00:01 0:00:01 --:--:-- 759k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 37 962k 37 357k 0 0 688k 0 0:00:01 --:--:-- 0:00:01 688k 100 962k 100 962k 0 0 884k 0 0:00:01 0:00:01 --:--:-- 885k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 17 623k 17 106k 0 0 373k 0 0:00:01 --:--:-- 0:00:01 372k 100 623k 100 623k 0 0 718k 0 --:--:-- --:--:-- --:--:-- 718k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 56 623k 56 354k 0 0 853k 0 --:--:-- --:--:-- --:--:-- 853k 100 623k 100 623k 0 0 852k 0 --:--:-- --:--:-- --:--:-- 851k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 24.5M 0 164k 0 0 405k 0 0:01:01 --:--:-- 0:01:01 404k 4 24.5M 4 1060k 0 0 749k 0 0:00:33 0:00:01 0:00:32 749k 7 24.5M 7 1919k 0 0 797k 0 0:00:31 0:00:02 0:00:29 797k 12 24.5M 12 3054k 0 0 886k 0 0:00:28 0:00:03 0:00:25 886k 17 24.5M 17 4274k 0 0 970k 0 0:00:25 0:00:04 0:00:21 970k 22 24.5M 22 5631k 0 0 1040k 0 0:00:24 0:00:05 0:00:19 1092k 27 24.5M 27 6807k 0 0 1062k 0 0:00:23 0:00:06 0:00:17 1151k 32 24.5M 32 8181k 0 0 1104k 0 0:00:22 0:00:07 0:00:15 1252k 38 24.5M 38 9673k 0 0 1150k 0 0:00:21 0:00:08 0:00:13 1334k 43 24.5M 43 10.7M 0 0 1168k 0 0:00:21 0:00:09 0:00:12 1343k 48 24.5M 48 11.8M 0 0 1167k 0 0:00:21 0:00:10 0:00:11 1304k 53 24.5M 53 13.0M 0 0 1170k 0 0:00:21 0:00:11 0:00:10 1308k 58 24.5M 58 14.4M 0 0 1193k 0 0:00:21 0:00:12 0:00:09 1324k 64 24.5M 64 15.7M 0 0 1203k 0 0:00:20 0:00:13 0:00:07 1291k 69 24.5M 69 17.0M 0 0 1208k 0 0:00:20 0:00:14 0:00:06 1282k 74 24.5M 74 18.3M 0 0 1221k 0 0:00:20 0:00:15 0:00:05 1332k 80 24.5M 80 19.7M 0 0 1235k 0 0:00:20 0:00:16 0:00:04 1382k 86 24.5M 86 21.1M 0 0 1244k 0 0:00:20 0:00:17 0:00:03 1372k 91 24.5M 91 22.4M 0 0 1251k 0 0:00:20 0:00:18 0:00:02 1381k 97 24.5M 97 23.8M 0 0 1256k 0 0:00:19 0:00:19 --:--:-- 1393k 100 24.5M 100 24.5M 0 0 1263k 0 0:00:19 0:00:19 --:--:-- 1410k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 2 24.5M 2 674k 0 0 999k 0 0:00:25 --:--:-- 0:00:25 999k 7 24.5M 7 1762k 0 0 1055k 0 0:00:23 0:00:01 0:00:22 1054k 11 24.5M 11 2920k 0 0 1089k 0 0:00:23 0:00:02 0:00:21 1089k 16 24.5M 16 4221k 0 0 1142k 0 0:00:21 0:00:03 0:00:18 1142k 22 24.5M 22 5544k 0 0 1186k 0 0:00:21 0:00:04 0:00:17 1186k 27 24.5M 27 6977k 0 0 1229k 0 0:00:20 0:00:05 0:00:15 1260k 34 24.5M 34 8550k 0 0 1281k 0 0:00:19 0:00:06 0:00:13 1357k 38 24.5M 38 9786k 0 0 1275k 0 0:00:19 0:00:07 0:00:12 1374k 44 24.5M 44 10.8M 0 0 1283k 0 0:00:19 0:00:08 0:00:11 1388k 50 24.5M 50 12.3M 0 0 1310k 0 0:00:19 0:00:09 0:00:10 1426k 56 24.5M 56 13.9M 0 0 1336k 0 0:00:18 0:00:10 0:00:08 1458k 62 24.5M 62 15.4M 0 0 1351k 0 0:00:18 0:00:11 0:00:07 1445k 68 24.5M 68 16.8M 0 0 1365k 0 0:00:18 0:00:12 0:00:06 1505k 75 24.5M 75 18.4M 0 0 1383k 0 0:00:18 0:00:13 0:00:05 1556k 81 24.5M 81 19.9M 0 0 1394k 0 0:00:18 0:00:14 0:00:04 1557k 86 24.5M 86 21.2M 0 0 1391k 0 0:00:18 0:00:15 0:00:03 1508k 90 24.5M 90 22.3M 0 0 1370k 0 0:00:18 0:00:16 0:00:02 1413k 94 24.5M 94 23.0M 0 0 1333k 0 0:00:18 0:00:17 0:00:01 1252k 96 24.5M 96 23.7M 0 0 1298k 0 0:00:19 0:00:18 0:00:01 1066k 99 24.5M 99 24.4M 0 0 1270k 0 0:00:19 0:00:19 --:--:-- 909k 100 24.5M 100 24.5M 0 0 1271k 0 0:00:19 0:00:19 --:--:-- 809k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 55 725k 55 399k 0 0 858k 0 --:--:-- --:--:-- --:--:-- 857k 100 725k 100 725k 0 0 1032k 0 --:--:-- --:--:-- --:--:-- 1032k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 42 725k 42 311k 0 0 336k 0 0:00:02 --:--:-- 0:00:02 336k 100 725k 100 725k 0 0 468k 0 0:00:01 0:00:01 --:--:-- 469k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 202k 100 202k 0 0 676k 0 --:--:-- --:--:-- --:--:-- 677k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 59 202k 59 120k 0 0 307k 0 --:--:-- --:--:-- --:--:-- 307k 100 202k 100 202k 0 0 439k 0 --:--:-- --:--:-- --:--:-- 439k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 83 417k 83 350k 0 0 794k 0 --:--:-- --:--:-- --:--:-- 793k 100 417k 100 417k 0 0 880k 0 --:--:-- --:--:-- --:--:-- 879k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 417k 100 417k 0 0 528k 0 --:--:-- --:--:-- --:--:-- 528k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 14 5615k 14 806k 0 0 845k 0 0:00:06 --:--:-- 0:00:06 844k 34 5615k 34 1916k 0 0 980k 0 0:00:05 0:00:01 0:00:04 980k 51 5615k 51 2905k 0 0 982k 0 0:00:05 0:00:02 0:00:03 982k 70 5615k 70 3970k 0 0 1004k 0 0:00:05 0:00:03 0:00:02 1004k 91 5615k 91 5156k 0 0 1040k 0 0:00:05 0:00:04 0:00:01 1040k 100 5615k 100 5615k 0 0 1058k 0 0:00:05 0:00:05 --:--:-- 1105k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 15 5615k 15 857k 0 0 844k 0 0:00:06 0:00:01 0:00:05 844k 37 5615k 37 2108k 0 0 1046k 0 0:00:05 0:00:02 0:00:03 1045k 63 5615k 63 3560k 0 0 1180k 0 0:00:04 0:00:03 0:00:01 1180k 83 5615k 83 4705k 0 0 1171k 0 0:00:04 0:00:04 --:--:-- 1171k 100 5615k 100 5615k 0 0 1189k 0 0:00:04 0:00:04 --:--:-- 1197k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 53 1152k 53 612k 0 0 978k 0 0:00:01 --:--:-- 0:00:01 978k 100 1152k 100 1152k 0 0 1128k 0 0:00:01 0:00:01 --:--:-- 1129k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 8 1152k 8 99942 0 0 345k 0 0:00:03 --:--:-- 0:00:03 344k 100 1152k 100 1152k 0 0 992k 0 0:00:01 0:00:01 --:--:-- 992k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 28 1363k 28 386k 0 0 649k 0 0:00:02 --:--:-- 0:00:02 649k 89 1363k 89 1222k 0 0 762k 0 0:00:01 0:00:01 --:--:-- 761k 100 1363k 100 1363k 0 0 755k 0 0:00:01 0:00:01 --:--:-- 755k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 1363k 0 1206 0 0 10130 0 0:02:17 --:--:-- 0:02:17 10134 88 1363k 88 1206k 0 0 1099k 0 0:00:01 0:00:01 --:--:-- 1098k 100 1363k 100 1363k 0 0 1135k 0 0:00:01 0:00:01 --:--:-- 1135k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 9 2869k 9 273k 0 0 353k 0 0:00:08 --:--:-- 0:00:08 353k 32 2869k 32 945k 0 0 534k 0 0:00:05 0:00:01 0:00:04 533k 62 2869k 62 1787k 0 0 638k 0 0:00:04 0:00:02 0:00:02 638k 91 2869k 91 2630k 0 0 697k 0 0:00:04 0:00:03 0:00:01 697k 100 2869k 100 2869k 0 0 720k 0 0:00:03 0:00:03 --:--:-- 720k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 34 2869k 34 992k 0 0 1123k 0 0:00:02 --:--:-- 0:00:02 1123k 79 2869k 79 2291k 0 0 1216k 0 0:00:02 0:00:01 0:00:01 1216k 100 2869k 100 2869k 0 0 1224k 0 0:00:02 0:00:02 --:--:-- 1225k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 83 744k 83 625k 0 0 810k 0 --:--:-- --:--:-- --:--:-- 810k 100 744k 100 744k 0 0 842k 0 --:--:-- --:--:-- --:--:-- 842k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 77 744k 77 578k 0 0 1103k 0 --:--:-- --:--:-- --:--:-- 1103k 100 744k 100 744k 0 0 1200k 0 --:--:-- --:--:-- --:--:-- 1198k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 206k 100 206k 0 0 530k 0 --:--:-- --:--:-- --:--:-- 532k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 206k 100 206k 0 0 570k 0 --:--:-- --:--:-- --:--:-- 571k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 9 2860k 9 260k 0 0 542k 0 0:00:05 --:--:-- 0:00:05 541k 39 2860k 39 1132k 0 0 766k 0 0:00:03 0:00:01 0:00:02 765k 70 2860k 70 2007k 0 0 811k 0 0:00:03 0:00:02 0:00:01 811k 100 2860k 100 2860k 0 0 856k 0 0:00:03 0:00:03 --:--:-- 856k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 16 2860k 16 476k 0 0 887k 0 0:00:03 --:--:-- 0:00:03 886k 62 2860k 62 1786k 0 0 1173k 0 0:00:02 0:00:01 0:00:01 1172k 100 2860k 100 2860k 0 0 1188k 0 0:00:02 0:00:02 --:--:-- 1188k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 149k 0 1208 0 0 9270 0 0:00:16 --:--:-- 0:00:16 9221 100 149k 100 149k 0 0 424k 0 --:--:-- --:--:-- --:--:-- 423k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 10 149k 10 15728 0 0 141k 0 0:00:01 --:--:-- 0:00:01 140k 100 149k 100 149k 0 0 664k 0 --:--:-- --:--:-- --:--:-- 661k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 43 976k 43 429k 0 0 569k 0 0:00:01 --:--:-- 0:00:01 569k 100 976k 100 976k 0 0 630k 0 0:00:01 0:00:01 --:--:-- 630k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 976k 100 976k 0 0 1188k 0 --:--:-- --:--:-- --:--:-- 1189k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 3 1532k 3 54927 0 0 276k 0 0:00:05 --:--:-- 0:00:05 275k 68 1532k 68 1051k 0 0 880k 0 0:00:01 0:00:01 --:--:-- 880k 100 1532k 100 1532k 0 0 929k 0 0:00:01 0:00:01 --:--:-- 928k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 79 1532k 79 1214k 0 0 1186k 0 0:00:01 0:00:01 --:--:-- 1186k 100 1532k 100 1532k 0 0 1205k 0 0:00:01 0:00:01 --:--:-- 1205k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 35.7M 0 274k 0 0 519k 0 0:01:10 --:--:-- 0:01:10 518k 3 35.7M 3 1349k 0 0 882k 0 0:00:41 0:00:01 0:00:40 882k 6 35.7M 6 2423k 0 0 957k 0 0:00:38 0:00:02 0:00:36 957k 9 35.7M 9 3495k 0 0 989k 0 0:00:36 0:00:03 0:00:33 989k 12 35.7M 12 4460k 0 0 982k 0 0:00:37 0:00:04 0:00:33 982k 15 35.7M 15 5630k 0 0 1018k 0 0:00:35 0:00:05 0:00:30 1071k 19 35.7M 19 7008k 0 0 1073k 0 0:00:34 0:00:06 0:00:28 1131k 23 35.7M 23 8449k 0 0 1122k 0 0:00:32 0:00:07 0:00:25 1205k 26 35.7M 26 9856k 0 0 1155k 0 0:00:31 0:00:08 0:00:23 1272k 30 35.7M 30 10.9M 0 0 1180k 0 0:00:30 0:00:09 0:00:21 1361k 34 35.7M 34 12.1M 0 0 1182k 0 0:00:30 0:00:10 0:00:20 1364k 37 35.7M 37 13.5M 0 0 1204k 0 0:00:30 0:00:11 0:00:19 1376k 41 35.7M 41 14.9M 0 0 1222k 0 0:00:29 0:00:12 0:00:17 1374k 45 35.7M 45 16.3M 0 0 1237k 0 0:00:29 0:00:13 0:00:16 1377k 49 35.7M 49 17.7M 0 0 1249k 0 0:00:29 0:00:14 0:00:15 1381k 53 35.7M 53 19.0M 0 0 1253k 0 0:00:29 0:00:15 0:00:14 1403k 57 35.7M 57 20.4M 0 0 1265k 0 0:00:28 0:00:16 0:00:12 1404k 60 35.7M 60 21.7M 0 0 1272k 0 0:00:28 0:00:17 0:00:11 1398k 64 35.7M 64 23.2M 0 0 1282k 0 0:00:28 0:00:18 0:00:10 1404k 68 35.7M 68 24.5M 0 0 1288k 0 0:00:28 0:00:19 0:00:09 1399k 72 35.7M 72 25.9M 0 0 1294k 0 0:00:28 0:00:20 0:00:08 1421k 76 35.7M 76 27.3M 0 0 1302k 0 0:00:28 0:00:21 0:00:07 1424k 80 35.7M 80 28.7M 0 0 1306k 0 0:00:28 0:00:22 0:00:06 1423k 84 35.7M 84 30.1M 0 0 1310k 0 0:00:27 0:00:23 0:00:04 1412k 88 35.7M 88 31.5M 0 0 1316k 0 0:00:27 0:00:24 0:00:03 1427k 92 35.7M 92 32.9M 0 0 1320k 0 0:00:27 0:00:25 0:00:02 1425k 95 35.7M 95 34.1M 0 0 1318k 0 0:00:27 0:00:26 0:00:01 1386k 99 35.7M 99 35.5M 0 0 1321k 0 0:00:27 0:00:27 --:--:-- 1389k 100 35.7M 100 35.7M 0 0 1322k 0 0:00:27 0:00:27 --:--:-- 1391k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 2 35.7M 2 785k 0 0 1061k 0 0:00:34 --:--:-- 0:00:34 1061k 5 35.7M 5 2089k 0 0 1200k 0 0:00:30 0:00:01 0:00:29 1200k 9 35.7M 9 3329k 0 0 1215k 0 0:00:30 0:00:02 0:00:28 1215k 12 35.7M 12 4757k 0 0 1271k 0 0:00:28 0:00:03 0:00:25 1271k 16 35.7M 16 6067k 0 0 1280k 0 0:00:28 0:00:04 0:00:24 1280k 20 35.7M 20 7550k 0 0 1314k 0 0:00:27 0:00:05 0:00:22 1352k 24 35.7M 24 8986k 0 0 1333k 0 0:00:27 0:00:06 0:00:21 1379k 28 35.7M 28 10.2M 0 0 1358k 0 0:00:26 0:00:07 0:00:19 1436k 33 35.7M 33 11.8M 0 0 1384k 0 0:00:26 0:00:08 0:00:18 1469k 37 35.7M 37 13.3M 0 0 1404k 0 0:00:26 0:00:09 0:00:17 1522k 41 35.7M 41 14.8M 0 0 1416k 0 0:00:25 0:00:10 0:00:15 1532k 45 35.7M 45 16.3M 0 0 1423k 0 0:00:25 0:00:11 0:00:14 1545k 49 35.7M 49 17.8M 0 0 1434k 0 0:00:25 0:00:12 0:00:13 1551k 54 35.7M 54 19.4M 0 0 1448k 0 0:00:25 0:00:13 0:00:12 1561k 58 35.7M 58 20.9M 0 0 1451k 0 0:00:25 0:00:14 0:00:11 1543k 62 35.7M 62 22.4M 0 0 1458k 0 0:00:25 0:00:15 0:00:10 1550k 67 35.7M 67 23.9M 0 0 1465k 0 0:00:24 0:00:16 0:00:08 1565k 71 35.7M 71 25.4M 0 0 1469k 0 0:00:24 0:00:17 0:00:07 1560k 75 35.7M 75 26.9M 0 0 1470k 0 0:00:24 0:00:18 0:00:06 1530k 79 35.7M 79 28.4M 0 0 1473k 0 0:00:24 0:00:19 0:00:05 1539k 83 35.7M 83 29.9M 0 0 1477k 0 0:00:24 0:00:20 0:00:04 1535k 87 35.7M 87 31.3M 0 0 1476k 0 0:00:24 0:00:21 0:00:03 1509k 91 35.7M 91 32.7M 0 0 1474k 0 0:00:24 0:00:22 0:00:02 1493k 96 35.7M 96 34.3M 0 0 1479k 0 0:00:24 0:00:23 0:00:01 1514k 100 35.7M 100 35.7M 0 0 1484k 0 0:00:24 0:00:24 --:--:-- 1528k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 5 4475k 5 266k 0 0 349k 0 0:00:12 --:--:-- 0:00:12 349k 16 4475k 16 730k 0 0 408k 0 0:00:10 0:00:01 0:00:09 407k 30 4475k 30 1352k 0 0 490k 0 0:00:09 0:00:02 0:00:07 490k 47 4475k 47 2115k 0 0 562k 0 0:00:07 0:00:03 0:00:04 562k 69 4475k 69 3102k 0 0 652k 0 0:00:06 0:00:04 0:00:02 652k 96 4475k 96 4341k 0 0 753k 0 0:00:05 0:00:05 --:--:-- 815k 100 4475k 100 4475k 0 0 764k 0 0:00:05 0:00:05 --:--:-- 921k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 22 4475k 22 1026k 0 0 1006k 0 0:00:04 0:00:01 0:00:03 1006k 47 4475k 47 2109k 0 0 1054k 0 0:00:04 0:00:02 0:00:02 1054k 74 4475k 74 3324k 0 0 1104k 0 0:00:04 0:00:03 0:00:01 1103k 99 4475k 99 4445k 0 0 1110k 0 0:00:04 0:00:04 --:--:-- 1110k 100 4475k 100 4475k 0 0 1113k 0 0:00:04 0:00:04 --:--:-- 1115k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 311k 100 311k 0 0 431k 0 --:--:-- --:--:-- --:--:-- 431k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 311k 100 311k 0 0 948k 0 --:--:-- --:--:-- --:--:-- 950k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 6 254k 6 15725 0 0 79137 0 0:00:03 --:--:-- 0:00:03 79020 100 254k 100 254k 0 0 369k 0 --:--:-- --:--:-- --:--:-- 368k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 254k 100 254k 0 0 757k 0 --:--:-- --:--:-- --:--:-- 758k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 7 1102k 7 88323 0 0 180k 0 0:00:06 --:--:-- 0:00:06 180k 60 1102k 60 663k 0 0 454k 0 0:00:02 0:00:01 0:00:01 454k 100 1102k 100 1102k 0 0 530k 0 0:00:02 0:00:02 --:--:-- 530k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 21 1102k 21 235k 0 0 814k 0 0:00:01 --:--:-- 0:00:01 813k 100 1102k 100 1102k 0 0 1175k 0 --:--:-- --:--:-- --:--:-- 1175k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 98 73106 98 72354 0 0 188k 0 --:--:-- --:--:-- --:--:-- 188k 100 73106 100 73106 0 0 190k 0 --:--:-- --:--:-- --:--:-- 190k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 73266 100 73266 0 0 459k 0 --:--:-- --:--:-- --:--:-- 461k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 58 656k 58 386k 0 0 396k 0 0:00:01 --:--:-- 0:00:01 396k 100 656k 100 656k 0 0 423k 0 0:00:01 0:00:01 --:--:-- 423k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 9 656k 9 62189 0 0 381k 0 0:00:01 --:--:-- 0:00:01 379k 100 656k 100 656k 0 0 865k 0 --:--:-- --:--:-- --:--:-- 865k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 5 1378k 5 73803 0 0 169k 0 0:00:08 --:--:-- 0:00:08 169k 36 1378k 36 503k 0 0 354k 0 0:00:03 0:00:01 0:00:02 354k 80 1378k 80 1105k 0 0 455k 0 0:00:03 0:00:02 0:00:01 455k 100 1378k 100 1378k 0 0 494k 0 0:00:02 0:00:02 --:--:-- 494k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 21 1378k 21 298k 0 0 762k 0 0:00:01 --:--:-- 0:00:01 760k 100 1378k 100 1378k 0 0 1049k 0 0:00:01 0:00:01 --:--:-- 1049k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 3 5348k 3 175k 0 0 287k 0 0:00:18 --:--:-- 0:00:18 286k 14 5348k 14 756k 0 0 462k 0 0:00:11 0:00:01 0:00:10 461k 28 5348k 28 1516k 0 0 580k 0 0:00:09 0:00:02 0:00:07 580k 47 5348k 47 2523k 0 0 698k 0 0:00:07 0:00:03 0:00:04 698k 70 5348k 70 3755k 0 0 814k 0 0:00:06 0:00:04 0:00:02 814k 95 5348k 95 5100k 0 0 908k 0 0:00:05 0:00:05 --:--:-- 984k 100 5348k 100 5348k 0 0 925k 0 0:00:05 0:00:05 --:--:-- 1108k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 5348k 0 1203 0 0 17849 0 0:05:06 --:--:-- 0:05:06 17691 17 5348k 17 951k 0 0 896k 0 0:00:05 0:00:01 0:00:04 895k 38 5348k 38 2050k 0 0 994k 0 0:00:05 0:00:02 0:00:03 994k 62 5348k 62 3323k 0 0 1085k 0 0:00:04 0:00:03 0:00:01 1085k 87 5348k 87 4701k 0 0 1157k 0 0:00:04 0:00:04 --:--:-- 1157k 100 5348k 100 5348k 0 0 1177k 0 0:00:04 0:00:04 --:--:-- 1195k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 20 1613k 20 327k 0 0 404k 0 0:00:03 --:--:-- 0:00:03 404k 69 1613k 69 1124k 0 0 619k 0 0:00:02 0:00:01 0:00:01 619k 100 1613k 100 1613k 0 0 704k 0 0:00:02 0:00:02 --:--:-- 704k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 24 1613k 24 401k 0 0 803k 0 0:00:02 --:--:-- 0:00:02 802k 91 1613k 91 1475k 0 0 983k 0 0:00:01 0:00:01 --:--:-- 983k 100 1613k 100 1613k 0 0 989k 0 0:00:01 0:00:01 --:--:-- 989k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 2 3355k 2 92679 0 0 169k 0 0:00:19 --:--:-- 0:00:19 169k 25 3355k 25 842k 0 0 559k 0 0:00:05 0:00:01 0:00:04 559k 52 3355k 52 1765k 0 0 704k 0 0:00:04 0:00:02 0:00:02 704k 86 3355k 86 2900k 0 0 827k 0 0:00:04 0:00:03 0:00:01 827k 100 3355k 100 3355k 0 0 857k 0 0:00:03 0:00:03 --:--:-- 857k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 21 3355k 21 730k 0 0 855k 0 0:00:03 --:--:-- 0:00:03 854k 52 3355k 52 1750k 0 0 943k 0 0:00:03 0:00:01 0:00:02 943k 88 3355k 88 2968k 0 0 1039k 0 0:00:03 0:00:02 0:00:01 1039k 100 3355k 100 3355k 0 0 1072k 0 0:00:03 0:00:03 --:--:-- 1073k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 20 751k 20 154k 0 0 245k 0 0:00:03 --:--:-- 0:00:03 245k 100 751k 100 751k 0 0 532k 0 0:00:01 0:00:01 --:--:-- 532k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 74 751k 74 558k 0 0 788k 0 --:--:-- --:--:-- --:--:-- 788k 100 751k 100 751k 0 0 847k 0 --:--:-- --:--:-- --:--:-- 846k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 1878k 0 1203 0 0 5670 0 0:05:39 --:--:-- 0:05:39 5647 25 1878k 25 486k 0 0 421k 0 0:00:04 0:00:01 0:00:03 421k 64 1878k 64 1205k 0 0 559k 0 0:00:03 0:00:02 0:00:01 559k 100 1878k 100 1878k 0 0 658k 0 0:00:02 0:00:02 --:--:-- 658k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 39 1878k 39 747k 0 0 923k 0 0:00:02 --:--:-- 0:00:02 923k 100 1878k 100 1878k 0 0 1052k 0 0:00:01 0:00:01 --:--:-- 1053k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 10 149k 10 15725 0 0 46764 0 0:00:03 --:--:-- 0:00:03 46661 100 149k 100 149k 0 0 259k 0 --:--:-- --:--:-- --:--:-- 258k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 149k 100 149k 0 0 636k 0 --:--:-- --:--:-- --:--:-- 634k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 98 110k 98 108k 0 0 156k 0 --:--:-- --:--:-- --:--:-- 156k 100 110k 100 110k 0 0 158k 0 --:--:-- --:--:-- --:--:-- 158k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 110k 100 110k 0 0 638k 0 --:--:-- --:--:-- --:--:-- 640k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 31 1142k 31 355k 0 0 350k 0 0:00:03 0:00:01 0:00:02 350k 79 1142k 79 910k 0 0 455k 0 0:00:02 0:00:01 0:00:01 455k 100 1142k 100 1142k 0 0 497k 0 0:00:02 0:00:02 --:--:-- 497k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 43 1142k 43 494k 0 0 843k 0 0:00:01 --:--:-- 0:00:01 842k 100 1142k 100 1142k 0 0 964k 0 0:00:01 0:00:01 --:--:-- 965k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 4 5118k 4 228k 0 0 336k 0 0:00:15 --:--:-- 0:00:15 335k 19 5118k 19 973k 0 0 580k 0 0:00:08 0:00:01 0:00:07 580k 34 5118k 34 1784k 0 0 666k 0 0:00:07 0:00:02 0:00:05 666k 57 5118k 57 2932k 0 0 797k 0 0:00:06 0:00:03 0:00:03 797k 74 5118k 74 3831k 0 0 813k 0 0:00:06 0:00:04 0:00:02 813k 91 5118k 91 4688k 0 0 826k 0 0:00:06 0:00:05 0:00:01 892k 100 5118k 100 5118k 0 0 840k 0 0:00:06 0:00:06 --:--:-- 939k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 4 5118k 4 235k 0 0 607k 0 0:00:08 --:--:-- 0:00:08 607k 25 5118k 25 1329k 0 0 959k 0 0:00:05 0:00:01 0:00:04 958k 47 5118k 47 2431k 0 0 1018k 0 0:00:05 0:00:02 0:00:03 1018k 69 5118k 69 3537k 0 0 1044k 0 0:00:04 0:00:03 0:00:01 1044k 93 5118k 93 4801k 0 0 1093k 0 0:00:04 0:00:04 --:--:-- 1093k 100 5118k 100 5118k 0 0 1105k 0 0:00:04 0:00:04 --:--:-- 1150k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 16 847k 16 140k 0 0 231k 0 0:00:03 --:--:-- 0:00:03 231k 95 847k 95 808k 0 0 516k 0 0:00:01 0:00:01 --:--:-- 516k 100 847k 100 847k 0 0 534k 0 0:00:01 0:00:01 --:--:-- 533k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 65 847k 65 558k 0 0 751k 0 0:00:01 --:--:-- 0:00:01 750k 100 847k 100 847k 0 0 825k 0 0:00:01 0:00:01 --:--:-- 825k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 29 1302k 29 384k 0 0 389k 0 0:00:03 --:--:-- 0:00:03 389k 94 1302k 94 1227k 0 0 624k 0 0:00:02 0:00:01 0:00:01 624k 100 1302k 100 1302k 0 0 635k 0 0:00:02 0:00:02 --:--:-- 635k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 42 1302k 42 549k 0 0 789k 0 0:00:01 --:--:-- 0:00:01 788k 100 1302k 100 1302k 0 0 938k 0 0:00:01 0:00:01 --:--:-- 938k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 25 2232k 25 559k 0 0 619k 0 0:00:03 --:--:-- 0:00:03 618k 67 2232k 67 1501k 0 0 789k 0 0:00:02 0:00:01 0:00:01 788k 100 2232k 100 2232k 0 0 874k 0 0:00:02 0:00:02 --:--:-- 875k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 9 2232k 9 203k 0 0 688k 0 0:00:03 --:--:-- 0:00:03 686k 58 2232k 58 1301k 0 0 1005k 0 0:00:02 0:00:01 0:00:01 1004k 100 2232k 100 2232k 0 0 1092k 0 0:00:02 0:00:02 --:--:-- 1092k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 2 6496k 2 150k 0 0 439k 0 0:00:14 --:--:-- 0:00:14 438k 12 6496k 12 800k 0 0 597k 0 0:00:10 0:00:01 0:00:09 597k 24 6496k 24 1569k 0 0 671k 0 0:00:09 0:00:02 0:00:07 671k 40 6496k 40 2608k 0 0 781k 0 0:00:08 0:00:03 0:00:05 781k 58 6496k 58 3832k 0 0 883k 0 0:00:07 0:00:04 0:00:03 883k 79 6496k 79 5185k 0 0 971k 0 0:00:06 0:00:05 0:00:01 1008k 100 6496k 100 6496k 0 0 1038k 0 0:00:06 0:00:06 --:--:-- 1158k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 1 6496k 1 128k 0 0 545k 0 0:00:11 --:--:-- 0:00:11 543k 20 6496k 20 1300k 0 0 1043k 0 0:00:06 0:00:01 0:00:05 1042k 36 6496k 36 2377k 0 0 1063k 0 0:00:06 0:00:02 0:00:04 1063k 52 6496k 52 3385k 0 0 1045k 0 0:00:06 0:00:03 0:00:03 1045k 70 6496k 70 4593k 0 0 1083k 0 0:00:05 0:00:04 0:00:01 1083k 90 6496k 90 5861k 0 0 1118k 0 0:00:05 0:00:05 --:--:-- 1146k 100 6496k 100 6496k 0 0 1126k 0 0:00:05 0:00:05 --:--:-- 1149k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 64 455k 64 294k 0 0 275k 0 0:00:01 0:00:01 --:--:-- 275k 100 455k 100 455k 0 0 323k 0 0:00:01 0:00:01 --:--:-- 323k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 84 455k 84 385k 0 0 867k 0 --:--:-- --:--:-- --:--:-- 866k 100 455k 100 455k 0 0 889k 0 --:--:-- --:--:-- --:--:-- 889k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 21 697k 21 152k 0 0 239k 0 0:00:02 --:--:-- 0:00:02 238k 94 697k 94 660k 0 0 400k 0 0:00:01 0:00:01 --:--:-- 400k 100 697k 100 697k 0 0 402k 0 0:00:01 0:00:01 --:--:-- 402k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 697k 100 697k 0 0 868k 0 --:--:-- --:--:-- --:--:-- 869k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 100k 100 100k 0 0 196k 0 --:--:-- --:--:-- --:--:-- 196k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 22 100k 22 22985 0 0 209k 0 --:--:-- --:--:-- --:--:-- 209k 100 100k 100 100k 0 0 491k 0 --:--:-- --:--:-- --:--:-- 490k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 4 1073k 4 44763 0 0 109k 0 0:00:09 --:--:-- 0:00:09 109k 48 1073k 48 524k 0 0 380k 0 0:00:02 0:00:01 0:00:01 380k 100 1073k 100 1073k 0 0 540k 0 0:00:01 0:00:01 --:--:-- 540k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 79 1073k 79 853k 0 0 954k 0 0:00:01 --:--:-- 0:00:01 954k 100 1073k 100 1073k 0 0 996k 0 0:00:01 0:00:01 --:--:-- 996k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 37 419k 37 155k 0 0 409k 0 0:00:01 --:--:-- 0:00:01 408k 100 419k 100 419k 0 0 616k 0 --:--:-- --:--:-- --:--:-- 615k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 419k 100 419k 0 0 870k 0 --:--:-- --:--:-- --:--:-- 871k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 32 1358k 32 440k 0 0 651k 0 0:00:02 --:--:-- 0:00:02 651k 89 1358k 89 1220k 0 0 723k 0 0:00:01 0:00:01 --:--:-- 723k 100 1358k 100 1358k 0 0 675k 0 0:00:02 0:00:02 --:--:-- 675k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 17 1358k 17 232k 0 0 752k 0 0:00:01 --:--:-- 0:00:01 751k 93 1358k 93 1266k 0 0 965k 0 0:00:01 0:00:01 --:--:-- 965k 100 1358k 100 1358k 0 0 969k 0 0:00:01 0:00:01 --:--:-- 968k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 58 494k 58 290k 0 0 445k 0 0:00:01 --:--:-- 0:00:01 445k 100 494k 100 494k 0 0 535k 0 --:--:-- --:--:-- --:--:-- 535k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 494k 100 494k 0 0 848k 0 --:--:-- --:--:-- --:--:-- 849k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 5 4795k 5 264k 0 0 362k 0 0:00:13 --:--:-- 0:00:13 362k 16 4795k 16 792k 0 0 458k 0 0:00:10 0:00:01 0:00:09 458k 31 4795k 31 1494k 0 0 549k 0 0:00:08 0:00:02 0:00:06 549k 52 4795k 52 2532k 0 0 680k 0 0:00:07 0:00:03 0:00:04 680k 76 4795k 76 3659k 0 0 775k 0 0:00:06 0:00:04 0:00:02 775k 100 4795k 100 4795k 0 0 850k 0 0:00:05 0:00:05 --:--:-- 923k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 4 4795k 4 230k 0 0 735k 0 0:00:06 --:--:-- 0:00:06 735k 27 4795k 27 1341k 0 0 1020k 0 0:00:04 0:00:01 0:00:03 1019k 53 4795k 53 2586k 0 0 1124k 0 0:00:04 0:00:02 0:00:02 1123k 80 4795k 80 3880k 0 0 1175k 0 0:00:04 0:00:03 0:00:01 1175k 100 4795k 100 4795k 0 0 1206k 0 0:00:03 0:00:03 --:--:-- 1206k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 93 863k 93 808k 0 0 756k 0 0:00:01 0:00:01 --:--:-- 755k 100 863k 100 863k 0 0 774k 0 0:00:01 0:00:01 --:--:-- 774k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 26 890k 26 233k 0 0 763k 0 0:00:01 --:--:-- 0:00:01 761k 100 890k 100 890k 0 0 995k 0 --:--:-- --:--:-- --:--:-- 994k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 7 8122k 7 640k 0 0 688k 0 0:00:11 --:--:-- 0:00:11 688k 23 8122k 23 1870k 0 0 963k 0 0:00:08 0:00:01 0:00:07 962k 39 8122k 39 3200k 0 0 1092k 0 0:00:07 0:00:02 0:00:05 1091k 57 8122k 57 4647k 0 0 1182k 0 0:00:06 0:00:03 0:00:03 1182k 75 8122k 75 6128k 0 0 1243k 0 0:00:06 0:00:04 0:00:02 1242k 93 8122k 93 7634k 0 0 1286k 0 0:00:06 0:00:05 0:00:01 1397k 100 8122k 100 8122k 0 0 1297k 0 0:00:06 0:00:06 --:--:-- 1448k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 3 8151k 3 293k 0 0 732k 0 0:00:11 --:--:-- 0:00:11 731k 17 8151k 17 1424k 0 0 1004k 0 0:00:08 0:00:01 0:00:07 1004k 31 8151k 31 2591k 0 0 1079k 0 0:00:07 0:00:02 0:00:05 1079k 45 8151k 45 3741k 0 0 1099k 0 0:00:07 0:00:03 0:00:04 1099k 62 8151k 62 5084k 0 0 1155k 0 0:00:07 0:00:04 0:00:03 1155k 80 8151k 80 6597k 0 0 1221k 0 0:00:06 0:00:05 0:00:01 1260k 98 8151k 98 8016k 0 0 1252k 0 0:00:06 0:00:06 --:--:-- 1322k 100 8151k 100 8151k 0 0 1256k 0 0:00:06 0:00:06 --:--:-- 1360k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 43 436k 43 191k 0 0 295k 0 0:00:01 --:--:-- 0:00:01 295k 100 436k 100 436k 0 0 400k 0 0:00:01 0:00:01 --:--:-- 400k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 436k 100 436k 0 0 759k 0 --:--:-- --:--:-- --:--:-- 761k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 9464k 0 92679 0 0 162k 0 0:00:58 --:--:-- 0:00:58 162k 7 9464k 7 694k 0 0 450k 0 0:00:21 0:00:01 0:00:20 450k 17 9464k 17 1697k 0 0 667k 0 0:00:14 0:00:02 0:00:12 667k 29 9464k 29 2744k 0 0 775k 0 0:00:12 0:00:03 0:00:09 774k 39 9464k 39 3743k 0 0 824k 0 0:00:11 0:00:04 0:00:07 823k 52 9464k 52 4979k 0 0 898k 0 0:00:10 0:00:05 0:00:05 980k 67 9464k 67 6411k 0 0 980k 0 0:00:09 0:00:06 0:00:03 1143k 83 9464k 83 7869k 0 0 1043k 0 0:00:09 0:00:07 0:00:02 1234k 98 9464k 98 9348k 0 0 1094k 0 0:00:08 0:00:08 --:--:-- 1320k 100 9464k 100 9464k 0 0 1101k 0 0:00:08 0:00:08 --:--:-- 1412k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 2 9464k 2 215k 0 0 719k 0 0:00:13 --:--:-- 0:00:13 717k 12 9464k 12 1206k 0 0 928k 0 0:00:10 0:00:01 0:00:09 928k 25 9464k 25 2404k 0 0 1045k 0 0:00:09 0:00:02 0:00:07 1045k 38 9464k 38 3621k 0 0 1097k 0 0:00:08 0:00:03 0:00:05 1097k 52 9464k 52 4979k 0 0 1158k 0 0:00:08 0:00:04 0:00:04 1158k 66 9464k 66 6285k 0 0 1185k 0 0:00:07 0:00:05 0:00:02 1213k 81 9464k 81 7704k 0 0 1223k 0 0:00:07 0:00:06 0:00:01 1299k 96 9464k 96 9176k 0 0 1257k 0 0:00:07 0:00:07 --:--:-- 1354k 100 9464k 100 9464k 0 0 1268k 0 0:00:07 0:00:07 --:--:-- 1405k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 13 5316k 13 734k 0 0 800k 0 0:00:06 --:--:-- 0:00:06 799k 34 5316k 34 1841k 0 0 958k 0 0:00:05 0:00:01 0:00:04 958k 54 5316k 54 2898k 0 0 990k 0 0:00:05 0:00:02 0:00:03 990k 71 5316k 71 3799k 0 0 969k 0 0:00:05 0:00:03 0:00:02 969k 94 5316k 94 5040k 0 0 1024k 0 0:00:05 0:00:04 0:00:01 1024k 100 5316k 100 5316k 0 0 1029k 0 0:00:05 0:00:05 --:--:-- 1079k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 13 5316k 13 738k 0 0 910k 0 0:00:05 --:--:-- 0:00:05 909k 34 5316k 34 1834k 0 0 1013k 0 0:00:05 0:00:01 0:00:04 1013k 57 5316k 57 3071k 0 0 1091k 0 0:00:04 0:00:02 0:00:02 1090k 83 5316k 83 4416k 0 0 1158k 0 0:00:04 0:00:03 0:00:01 1158k 100 5316k 100 5316k 0 0 1205k 0 0:00:04 0:00:04 --:--:-- 1205k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 7 5138k 7 374k 0 0 510k 0 0:00:10 --:--:-- 0:00:10 509k 26 5138k 26 1383k 0 0 797k 0 0:00:06 0:00:01 0:00:05 797k 44 5138k 44 2267k 0 0 828k 0 0:00:06 0:00:02 0:00:04 828k 69 5138k 69 3567k 0 0 955k 0 0:00:05 0:00:03 0:00:02 955k 95 5138k 95 4931k 0 0 1041k 0 0:00:04 0:00:04 --:--:-- 1041k 100 5138k 100 5138k 0 0 1053k 0 0:00:04 0:00:04 --:--:-- 1149k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 6 5142k 6 324k 0 0 859k 0 0:00:05 --:--:-- 0:00:05 858k 35 5142k 35 1819k 0 0 1304k 0 0:00:03 0:00:01 0:00:02 1303k 61 5142k 61 3163k 0 0 1323k 0 0:00:03 0:00:02 0:00:01 1323k 91 5142k 91 4711k 0 0 1388k 0 0:00:03 0:00:03 --:--:-- 1388k 100 5142k 100 5142k 0 0 1407k 0 0:00:03 0:00:03 --:--:-- 1407k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 30 1891k 30 578k 0 0 692k 0 0:00:02 --:--:-- 0:00:02 691k 86 1891k 86 1630k 0 0 885k 0 0:00:02 0:00:01 0:00:01 885k 100 1891k 100 1891k 0 0 922k 0 0:00:02 0:00:02 --:--:-- 922k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 44 1891k 44 843k 0 0 1197k 0 0:00:01 --:--:-- 0:00:01 1196k 100 1891k 100 1891k 0 0 1398k 0 0:00:01 0:00:01 --:--:-- 1398k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 45 742k 45 340k 0 0 430k 0 0:00:01 --:--:-- 0:00:01 430k 100 742k 100 742k 0 0 549k 0 0:00:01 0:00:01 --:--:-- 549k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 43 742k 43 321k 0 0 945k 0 --:--:-- --:--:-- --:--:-- 943k 100 742k 100 742k 0 0 1167k 0 --:--:-- --:--:-- --:--:-- 1166k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 48 350k 48 171k 0 0 424k 0 --:--:-- --:--:-- --:--:-- 424k 100 350k 100 350k 0 0 573k 0 --:--:-- --:--:-- --:--:-- 572k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 350k 100 350k 0 0 874k 0 --:--:-- --:--:-- --:--:-- 876k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 17 2526k 17 433k 0 0 553k 0 0:00:04 --:--:-- 0:00:04 553k 47 2526k 47 1209k 0 0 675k 0 0:00:03 0:00:01 0:00:02 675k 85 2526k 85 2157k 0 0 774k 0 0:00:03 0:00:02 0:00:01 774k 100 2526k 100 2526k 0 0 811k 0 0:00:03 0:00:03 --:--:-- 811k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 9 2526k 9 239k 0 0 868k 0 0:00:02 --:--:-- 0:00:02 867k 70 2526k 70 1786k 0 0 1401k 0 0:00:01 0:00:01 --:--:-- 1401k 100 2526k 100 2526k 0 0 1477k 0 0:00:01 0:00:01 --:--:-- 1476k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 1 15.3M 1 281k 0 0 434k 0 0:00:36 --:--:-- 0:00:36 433k 5 15.3M 5 839k 0 0 507k 0 0:00:31 0:00:01 0:00:30 507k 10 15.3M 10 1689k 0 0 637k 0 0:00:24 0:00:02 0:00:22 637k 19 15.3M 19 3001k 0 0 822k 0 0:00:19 0:00:03 0:00:16 822k 27 15.3M 27 4325k 0 0 930k 0 0:00:16 0:00:04 0:00:12 929k 35 15.3M 35 5555k 0 0 983k 0 0:00:16 0:00:05 0:00:11 1054k 43 15.3M 43 6847k 0 0 1029k 0 0:00:15 0:00:06 0:00:09 1201k 51 15.3M 51 8114k 0 0 1060k 0 0:00:14 0:00:07 0:00:07 1284k 60 15.3M 60 9532k 0 0 1102k 0 0:00:14 0:00:08 0:00:06 1306k 69 15.3M 69 10.6M 0 0 1135k 0 0:00:13 0:00:09 0:00:04 1326k 78 15.3M 78 12.0M 0 0 1157k 0 0:00:13 0:00:10 0:00:03 1355k 86 15.3M 86 13.3M 0 0 1172k 0 0:00:13 0:00:11 0:00:02 1363k 95 15.3M 95 14.6M 0 0 1188k 0 0:00:13 0:00:12 0:00:01 1382k 100 15.3M 100 15.3M 0 0 1176k 0 0:00:13 0:00:13 --:--:-- 1311k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 3 15.3M 3 609k 0 0 1108k 0 0:00:14 --:--:-- 0:00:14 1108k 9 15.3M 9 1502k 0 0 970k 0 0:00:16 0:00:01 0:00:15 970k 13 15.3M 13 2096k 0 0 808k 0 0:00:19 0:00:02 0:00:17 808k 17 15.3M 17 2685k 0 0 742k 0 0:00:21 0:00:03 0:00:18 742k 21 15.3M 21 3442k 0 0 741k 0 0:00:21 0:00:04 0:00:17 741k 26 15.3M 26 4117k 0 0 742k 0 0:00:21 0:00:05 0:00:16 701k 30 15.3M 30 4744k 0 0 724k 0 0:00:21 0:00:06 0:00:15 648k 34 15.3M 34 5449k 0 0 721k 0 0:00:21 0:00:07 0:00:14 676k 39 15.3M 39 6179k 0 0 722k 0 0:00:21 0:00:08 0:00:13 708k 46 15.3M 46 7351k 0 0 769k 0 0:00:20 0:00:09 0:00:11 796k 56 15.3M 56 8820k 0 0 836k 0 0:00:18 0:00:10 0:00:08 940k 66 15.3M 66 10.2M 0 0 908k 0 0:00:17 0:00:11 0:00:06 1149k 76 15.3M 76 11.7M 0 0 956k 0 0:00:16 0:00:12 0:00:04 1310k 85 15.3M 85 13.1M 0 0 993k 0 0:00:15 0:00:13 0:00:02 1452k 95 15.3M 95 14.6M 0 0 1033k 0 0:00:15 0:00:14 0:00:01 1535k 100 15.3M 100 15.3M 0 0 1049k 0 0:00:15 0:00:15 --:--:-- 1553k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 37 807k 37 306k 0 0 228k 0 0:00:03 0:00:01 0:00:02 228k 81 807k 81 660k 0 0 291k 0 0:00:02 0:00:02 --:--:-- 291k 100 807k 100 807k 0 0 312k 0 0:00:02 0:00:02 --:--:-- 312k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 54 807k 54 439k 0 0 867k 0 --:--:-- --:--:-- --:--:-- 866k 100 807k 100 807k 0 0 1079k 0 --:--:-- --:--:-- --:--:-- 1078k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 19.1M 0 15721 0 0 20680 0 0:16:09 --:--:-- 0:16:09 20658 1 19.1M 1 254k 0 0 153k 0 0:02:07 0:00:01 0:02:06 153k 2 19.1M 2 522k 0 0 196k 0 0:01:39 0:00:02 0:01:37 196k 6 19.1M 6 1257k 0 0 346k 0 0:00:56 0:00:03 0:00:53 346k 12 19.1M 12 2398k 0 0 516k 0 0:00:37 0:00:04 0:00:33 516k 18 19.1M 18 3602k 0 0 640k 0 0:00:30 0:00:05 0:00:25 736k 25 19.1M 25 5036k 0 0 759k 0 0:00:25 0:00:06 0:00:19 962k 33 19.1M 33 6591k 0 0 864k 0 0:00:22 0:00:07 0:00:15 1222k 41 19.1M 41 8092k 0 0 937k 0 0:00:20 0:00:08 0:00:12 1366k 49 19.1M 49 9643k 0 0 1001k 0 0:00:19 0:00:09 0:00:10 1452k 56 19.1M 56 10.8M 0 0 1046k 0 0:00:18 0:00:10 0:00:08 1502k 63 19.1M 63 12.2M 0 0 1075k 0 0:00:18 0:00:11 0:00:07 1493k 70 19.1M 70 13.5M 0 0 1100k 0 0:00:17 0:00:12 0:00:05 1460k 77 19.1M 77 14.9M 0 0 1120k 0 0:00:17 0:00:13 0:00:04 1434k 84 19.1M 84 16.1M 0 0 1133k 0 0:00:17 0:00:14 0:00:03 1387k 91 19.1M 91 17.5M 0 0 1152k 0 0:00:16 0:00:15 0:00:01 1379k 99 19.1M 99 19.0M 0 0 1172k 0 0:00:16 0:00:16 --:--:-- 1397k 100 19.1M 100 19.1M 0 0 1173k 0 0:00:16 0:00:16 --:--:-- 1400k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 4 19.1M 4 876k 0 0 1163k 0 0:00:16 --:--:-- 0:00:16 1161k 11 19.1M 11 2347k 0 0 1344k 0 0:00:14 0:00:01 0:00:13 1343k 19 19.1M 19 3906k 0 0 1420k 0 0:00:13 0:00:02 0:00:11 1420k 28 19.1M 28 5536k 0 0 1477k 0 0:00:13 0:00:03 0:00:10 1477k 35 19.1M 35 7034k 0 0 1481k 0 0:00:13 0:00:04 0:00:09 1481k 43 19.1M 43 8482k 0 0 1475k 0 0:00:13 0:00:05 0:00:08 1522k 51 19.1M 51 9.8M 0 0 1499k 0 0:00:13 0:00:06 0:00:07 1553k 59 19.1M 59 11.4M 0 0 1510k 0 0:00:12 0:00:07 0:00:05 1559k 67 19.1M 67 12.9M 0 0 1518k 0 0:00:12 0:00:08 0:00:04 1549k 75 19.1M 75 14.4M 0 0 1522k 0 0:00:12 0:00:09 0:00:03 1561k 83 19.1M 83 15.9M 0 0 1517k 0 0:00:12 0:00:10 0:00:02 1566k 91 19.1M 91 17.4M 0 0 1519k 0 0:00:12 0:00:11 0:00:01 1545k 98 19.1M 98 18.8M 0 0 1513k 0 0:00:12 0:00:12 --:--:-- 1518k 100 19.1M 100 19.1M 0 0 1514k 0 0:00:12 0:00:12 --:--:-- 1505k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 41 1746k 41 728k 0 0 815k 0 0:00:02 --:--:-- 0:00:02 814k 93 1746k 93 1624k 0 0 861k 0 0:00:02 0:00:01 0:00:01 861k 100 1746k 100 1746k 0 0 858k 0 0:00:02 0:00:02 --:--:-- 858k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 44 1746k 44 782k 0 0 1022k 0 0:00:01 --:--:-- 0:00:01 1022k 100 1746k 100 1746k 0 0 1177k 0 0:00:01 0:00:01 --:--:-- 1177k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 17 1435k 17 252k 0 0 294k 0 0:00:04 --:--:-- 0:00:04 294k 74 1435k 74 1064k 0 0 578k 0 0:00:02 0:00:01 0:00:01 577k 100 1435k 100 1435k 0 0 658k 0 0:00:02 0:00:02 --:--:-- 659k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 11 1435k 11 165k 0 0 621k 0 0:00:02 --:--:-- 0:00:02 620k 100 1435k 100 1435k 0 0 1255k 0 0:00:01 0:00:01 --:--:-- 1255k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 25 1586k 25 402k 0 0 623k 0 0:00:02 --:--:-- 0:00:02 623k 81 1586k 81 1285k 0 0 776k 0 0:00:02 0:00:01 0:00:01 776k 100 1586k 100 1586k 0 0 798k 0 0:00:01 0:00:01 --:--:-- 798k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 2 1586k 2 33147 0 0 287k 0 0:00:05 --:--:-- 0:00:05 286k 83 1586k 83 1329k 0 0 1198k 0 0:00:01 0:00:01 --:--:-- 1198k 100 1586k 100 1586k 0 0 1202k 0 0:00:01 0:00:01 --:--:-- 1201k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 91 517k 91 473k 0 0 732k 0 --:--:-- --:--:-- --:--:-- 732k 100 517k 100 517k 0 0 754k 0 --:--:-- --:--:-- --:--:-- 754k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 517k 100 517k 0 0 976k 0 --:--:-- --:--:-- --:--:-- 978k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 47 1486k 47 705k 0 0 744k 0 0:00:01 --:--:-- 0:00:01 743k 100 1486k 100 1486k 0 0 912k 0 0:00:01 0:00:01 --:--:-- 912k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 10 1486k 10 162k 0 0 656k 0 0:00:02 --:--:-- 0:00:02 656k 100 1486k 100 1486k 0 0 1247k 0 0:00:01 0:00:01 --:--:-- 1247k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 9796 100 9796 0 0 84581 0 --:--:-- --:--:-- --:--:-- 85182 + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 9796 100 9796 0 0 119k 0 --:--:-- --:--:-- --:--:-- 118k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 8 186k 8 15725 0 0 79221 0 0:00:02 --:--:-- 0:00:02 79020 100 186k 100 186k 0 0 389k 0 --:--:-- --:--:-- --:--:-- 389k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 186k 100 186k 0 0 813k 0 --:--:-- --:--:-- --:--:-- 815k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 96939 100 96939 0 0 386k 0 --:--:-- --:--:-- --:--:-- 387k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 96939 100 96939 0 0 543k 0 --:--:-- --:--:-- --:--:-- 544k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 1 15.7M 1 226k 0 0 518k 0 0:00:31 --:--:-- 0:00:31 517k 5 15.7M 5 915k 0 0 637k 0 0:00:25 0:00:01 0:00:24 637k 9 15.7M 9 1560k 0 0 636k 0 0:00:25 0:00:02 0:00:23 636k 14 15.7M 14 2408k 0 0 701k 0 0:00:23 0:00:03 0:00:20 701k 20 15.7M 20 3344k 0 0 754k 0 0:00:21 0:00:04 0:00:17 754k 27 15.7M 27 4432k 0 0 815k 0 0:00:19 0:00:05 0:00:14 841k 34 15.7M 34 5542k 0 0 861k 0 0:00:18 0:00:06 0:00:12 925k 41 15.7M 41 6742k 0 0 906k 0 0:00:17 0:00:07 0:00:10 1039k 49 15.7M 49 7995k 0 0 947k 0 0:00:17 0:00:08 0:00:09 1117k 57 15.7M 57 9318k 0 0 987k 0 0:00:16 0:00:09 0:00:07 1194k 66 15.7M 66 10.4M 0 0 1023k 0 0:00:15 0:00:10 0:00:05 1248k 74 15.7M 74 11.7M 0 0 1051k 0 0:00:15 0:00:11 0:00:04 1296k 83 15.7M 83 13.1M 0 0 1079k 0 0:00:14 0:00:12 0:00:02 1336k 91 15.7M 91 14.4M 0 0 1099k 0 0:00:14 0:00:13 0:00:01 1355k 100 15.7M 100 15.7M 0 0 1121k 0 0:00:14 0:00:14 --:--:-- 1374k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 3 15.7M 3 585k 0 0 1132k 0 0:00:14 --:--:-- 0:00:14 1132k 11 15.7M 11 1933k 0 0 1276k 0 0:00:12 0:00:01 0:00:11 1276k 20 15.7M 20 3295k 0 0 1309k 0 0:00:12 0:00:02 0:00:10 1309k 28 15.7M 28 4674k 0 0 1329k 0 0:00:12 0:00:03 0:00:09 1329k 35 15.7M 35 5726k 0 0 1268k 0 0:00:12 0:00:04 0:00:08 1268k 43 15.7M 43 7054k 0 0 1279k 0 0:00:12 0:00:05 0:00:07 1294k 51 15.7M 51 8361k 0 0 1283k 0 0:00:12 0:00:06 0:00:06 1285k 60 15.7M 60 9787k 0 0 1301k 0 0:00:12 0:00:07 0:00:05 1297k 69 15.7M 69 11.0M 0 0 1325k 0 0:00:12 0:00:08 0:00:04 1323k 77 15.7M 77 12.2M 0 0 1320k 0 0:00:12 0:00:09 0:00:03 1368k 87 15.7M 87 13.7M 0 0 1337k 0 0:00:12 0:00:10 0:00:02 1402k 97 15.7M 97 15.2M 0 0 1360k 0 0:00:11 0:00:11 --:--:-- 1460k 100 15.7M 100 15.7M 0 0 1367k 0 0:00:11 0:00:11 --:--:-- 1485k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 80 588k 80 476k 0 0 480k 0 0:00:01 --:--:-- 0:00:01 480k 100 588k 100 588k 0 0 529k 0 0:00:01 0:00:01 --:--:-- 529k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 588k 100 588k 0 0 1109k 0 --:--:-- --:--:-- --:--:-- 1110k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 65 641k 65 418k 0 0 477k 0 0:00:01 --:--:-- 0:00:01 477k 100 641k 100 641k 0 0 529k 0 0:00:01 0:00:01 --:--:-- 529k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 3 641k 3 24437 0 0 178k 0 0:00:03 --:--:-- 0:00:03 178k 100 641k 100 641k 0 0 1050k 0 --:--:-- --:--:-- --:--:-- 1049k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 51 387k 51 201k 0 0 312k 0 0:00:01 --:--:-- 0:00:01 312k 100 387k 100 387k 0 0 385k 0 0:00:01 0:00:01 --:--:-- 385k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 387k 100 387k 0 0 1075k 0 --:--:-- --:--:-- --:--:-- 1077k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 24 692k 24 172k 0 0 274k 0 0:00:02 --:--:-- 0:00:02 274k 100 692k 100 692k 0 0 435k 0 0:00:01 0:00:01 --:--:-- 435k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 6 692k 6 44765 0 0 313k 0 0:00:02 --:--:-- 0:00:02 312k 100 692k 100 692k 0 0 1182k 0 --:--:-- --:--:-- --:--:-- 1181k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 23150 100 23150 0 0 82271 0 --:--:-- --:--:-- --:--:-- 82092 + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 23150 100 23150 0 0 193k 0 --:--:-- --:--:-- --:--:-- 194k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 40 557k 40 223k 0 0 305k 0 0:00:01 --:--:-- 0:00:01 305k 100 557k 100 557k 0 0 398k 0 0:00:01 0:00:01 --:--:-- 398k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 49 557k 49 273k 0 0 659k 0 --:--:-- --:--:-- --:--:-- 658k 100 557k 100 557k 0 0 860k 0 --:--:-- --:--:-- --:--:-- 859k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 27 159k 27 44773 0 0 126k 0 0:00:01 --:--:-- 0:00:01 126k 100 159k 100 159k 0 0 274k 0 --:--:-- --:--:-- --:--:-- 274k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 159k 100 159k 0 0 683k 0 --:--:-- --:--:-- --:--:-- 686k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 12288 100 12288 0 0 67078 0 --:--:-- --:--:-- --:--:-- 67147 + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 12288 100 12288 0 0 160k 0 --:--:-- --:--:-- --:--:-- 162k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 24 525k 24 130k 0 0 242k 0 0:00:02 --:--:-- 0:00:02 242k 100 525k 100 525k 0 0 413k 0 0:00:01 0:00:01 --:--:-- 413k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 95 525k 95 500k 0 0 1111k 0 --:--:-- --:--:-- --:--:-- 1109k 100 525k 100 525k 0 0 1136k 0 --:--:-- --:--:-- --:--:-- 1134k Binary files /tmp/tmpjVu_CV/d8O1VeJAAp/libreoffice-5.1.1~rc2/src/ff369e69ef0f0143beb5626164e87ae2-neon-0.29.5.tar.gz and /tmp/tmpjVu_CV/VUSojbs3iI/libreoffice-5.1.2~rc2/src/ff369e69ef0f0143beb5626164e87ae2-neon-0.29.5.tar.gz differ Binary files /tmp/tmpjVu_CV/d8O1VeJAAp/libreoffice-5.1.1~rc2/src/language-subtag-registry-2015-08-04.tar.bz2 and /tmp/tmpjVu_CV/VUSojbs3iI/libreoffice-5.1.2~rc2/src/language-subtag-registry-2015-08-04.tar.bz2 differ Binary files /tmp/tmpjVu_CV/d8O1VeJAAp/libreoffice-5.1.1~rc2/src/language-subtag-registry-2016-02-10.tar.bz2 and /tmp/tmpjVu_CV/VUSojbs3iI/libreoffice-5.1.2~rc2/src/language-subtag-registry-2016-02-10.tar.bz2 differ Binary files /tmp/tmpjVu_CV/d8O1VeJAAp/libreoffice-5.1.1~rc2/src/openssl-1.0.2a.tar.gz and /tmp/tmpjVu_CV/VUSojbs3iI/libreoffice-5.1.2~rc2/src/openssl-1.0.2a.tar.gz differ Binary files /tmp/tmpjVu_CV/d8O1VeJAAp/libreoffice-5.1.1~rc2/src/openssl-1.0.2g.tar.gz and /tmp/tmpjVu_CV/VUSojbs3iI/libreoffice-5.1.2~rc2/src/openssl-1.0.2g.tar.gz differ diff -Nru libreoffice-5.1.1~rc2/starmath/source/dialog.cxx libreoffice-5.1.2~rc2/starmath/source/dialog.cxx --- libreoffice-5.1.1~rc2/starmath/source/dialog.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/starmath/source/dialog.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -1185,6 +1185,8 @@ GrabFocus(); Size aOutputSize(nColumns * nLen, nRows * nLen); + aOutputSize.Width() += nXOffset; + aOutputSize.Height() += nYOffset; Point aPoint(rMEvt.GetPosPixel()); aPoint.X() -= nXOffset; aPoint.Y() -= nYOffset; diff -Nru libreoffice-5.1.1~rc2/stoc/source/javavm/javavm.cxx libreoffice-5.1.2~rc2/stoc/source/javavm/javavm.cxx --- libreoffice-5.1.1~rc2/stoc/source/javavm/javavm.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/stoc/source/javavm/javavm.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -536,8 +536,15 @@ } *pjvm= jvm; - setTimeZone(pjvm); + // rhbz#1285356, native look will be gtk2, which crashes + // when gtk3 is already loaded. Until there is a solution + // java-side force look and feel to something that doesn't + // crash when we are using gtk3 + if (getenv("STOC_FORCE_SYSTEM_LAF")) + pjvm->pushProp("swing.systemlaf=javax.swing.plaf.metal.MetalLookAndFeel"); + + setTimeZone(pjvm); } class DetachCurrentThread: private boost::noncopyable { diff -Nru libreoffice-5.1.1~rc2/svgio/inc/svgio/svgreader/svgstyleattributes.hxx libreoffice-5.1.2~rc2/svgio/inc/svgio/svgreader/svgstyleattributes.hxx --- libreoffice-5.1.1~rc2/svgio/inc/svgio/svgreader/svgstyleattributes.hxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/svgio/inc/svgio/svgreader/svgstyleattributes.hxx 2016-03-29 15:41:04.000000000 +0000 @@ -155,6 +155,7 @@ enum Visibility { + Visibility_notset, Visibility_visible, Visibility_hidden, Visibility_collapse, @@ -412,8 +413,8 @@ void setOpacity(const SvgNumber& rOpacity = SvgNumber()) { maOpacity = rOpacity; } /// Visibility - Visibility getVisibility() const { return maVisibility; } - void setVisibility(Visibility eVisibility) { maVisibility = eVisibility; } + Visibility getVisibility() const; + void setVisibility(const Visibility aVisibility = Visibility_notset) { maVisibility = aVisibility; } // Title content const OUString& getTitle() const { return maTitle; } diff -Nru libreoffice-5.1.1~rc2/svgio/source/svgreader/svgstyleattributes.cxx libreoffice-5.1.2~rc2/svgio/source/svgreader/svgstyleattributes.cxx --- libreoffice-5.1.1~rc2/svgio/source/svgreader/svgstyleattributes.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/svgio/source/svgreader/svgstyleattributes.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -1216,7 +1216,7 @@ maTextAnchor(TextAnchor_notset), maColor(), maOpacity(), - maVisibility(Visibility_visible), + maVisibility(Visibility_notset), maTitle(), maDesc(), maClipPathXLink(), @@ -1242,10 +1242,6 @@ mbIsClipPathContent = pParentStyle->mbIsClipPathContent; } } - if(pParentStyle) - { - maVisibility = pParentStyle->maVisibility; - } } SvgStyleAttributes::~SvgStyleAttributes() @@ -2144,6 +2140,23 @@ return SvgNumber(1.0); } + Visibility SvgStyleAttributes::getVisibility() const + { + if(Visibility_notset == maVisibility || Visibility_inherit == maVisibility) + { + const SvgStyleAttributes* pSvgStyleAttributes = getParentStyle(); + + if(pSvgStyleAttributes) + { + return pSvgStyleAttributes->getVisibility(); + } + //default is Visible + return Visibility_visible; + } + + return maVisibility; + } + FillRule SvgStyleAttributes::getFillRule() const { if(FillRule_notset != maFillRule) diff -Nru libreoffice-5.1.1~rc2/svtools/inc/pch/precompiled_svt.hxx libreoffice-5.1.2~rc2/svtools/inc/pch/precompiled_svt.hxx --- libreoffice-5.1.1~rc2/svtools/inc/pch/precompiled_svt.hxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/svtools/inc/pch/precompiled_svt.hxx 2016-03-29 15:41:04.000000000 +0000 @@ -118,7 +118,7 @@ #include #include #include -#include +#include #include #include #include diff -Nru libreoffice-5.1.1~rc2/svtools/source/filter/exportdialog.cxx libreoffice-5.1.2~rc2/svtools/source/filter/exportdialog.cxx --- libreoffice-5.1.1~rc2/svtools/source/filter/exportdialog.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/svtools/source/filter/exportdialog.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -37,7 +37,7 @@ #include #include #include -#include +#include #include #include #include diff -Nru libreoffice-5.1.1~rc2/svtools/source/graphic/descriptor.cxx libreoffice-5.1.2~rc2/svtools/source/graphic/descriptor.cxx --- libreoffice-5.1.1~rc2/svtools/source/graphic/descriptor.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/svtools/source/graphic/descriptor.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -31,7 +31,7 @@ #include #include -#include +#include #include #include diff -Nru libreoffice-5.1.1~rc2/svtools/source/graphic/descriptor.hxx libreoffice-5.1.2~rc2/svtools/source/graphic/descriptor.hxx --- libreoffice-5.1.1~rc2/svtools/source/graphic/descriptor.hxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/svtools/source/graphic/descriptor.hxx 2016-03-29 15:41:04.000000000 +0000 @@ -24,7 +24,7 @@ #include #include -#include +#include #define MIMETYPE_BMP "image/x-MS-bmp" #define MIMETYPE_GIF "image/gif" diff -Nru libreoffice-5.1.1~rc2/svtools/source/graphic/graphic.cxx libreoffice-5.1.2~rc2/svtools/source/graphic/graphic.cxx --- libreoffice-5.1.1~rc2/svtools/source/graphic/graphic.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/svtools/source/graphic/graphic.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -22,7 +22,7 @@ #include #include #include -#include +#include #include "graphic.hxx" #include #include diff -Nru libreoffice-5.1.1~rc2/svtools/source/graphic/grfcache.hxx libreoffice-5.1.2~rc2/svtools/source/graphic/grfcache.hxx --- libreoffice-5.1.1~rc2/svtools/source/graphic/grfcache.hxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/svtools/source/graphic/grfcache.hxx 2016-03-29 15:41:04.000000000 +0000 @@ -20,7 +20,7 @@ #ifndef INCLUDED_SVTOOLS_SOURCE_GRAPHIC_GRFCACHE_HXX #define INCLUDED_SVTOOLS_SOURCE_GRAPHIC_GRFCACHE_HXX -#include +#include #include #include diff -Nru libreoffice-5.1.1~rc2/svtools/source/misc/transfer2.cxx libreoffice-5.1.2~rc2/svtools/source/misc/transfer2.cxx --- libreoffice-5.1.1~rc2/svtools/source/misc/transfer2.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/svtools/source/misc/transfer2.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -23,7 +23,7 @@ #include #include #include -#include +#include #include #include #include diff -Nru libreoffice-5.1.1~rc2/svtools/source/misc/transfer.cxx libreoffice-5.1.2~rc2/svtools/source/misc/transfer.cxx --- libreoffice-5.1.1~rc2/svtools/source/misc/transfer.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/svtools/source/misc/transfer.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -31,7 +31,7 @@ #include #include #include -#include +#include #include #include #include diff -Nru libreoffice-5.1.1~rc2/svtools/source/uno/treecontrolpeer.cxx libreoffice-5.1.2~rc2/svtools/source/uno/treecontrolpeer.cxx --- libreoffice-5.1.1~rc2/svtools/source/uno/treecontrolpeer.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/svtools/source/uno/treecontrolpeer.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -31,7 +31,7 @@ #include #include -#include +#include #include #include #include diff -Nru libreoffice-5.1.1~rc2/svx/inc/GalleryControl.hxx libreoffice-5.1.2~rc2/svx/inc/GalleryControl.hxx --- libreoffice-5.1.1~rc2/svx/inc/GalleryControl.hxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/svx/inc/GalleryControl.hxx 2016-03-29 15:41:04.000000000 +0000 @@ -20,7 +20,7 @@ #define INCLUDED_SVX_INC_GALLERYCONTROL_HXX #include -#include +#include #include #include "svx/svxdllapi.h" diff -Nru libreoffice-5.1.1~rc2/svx/inc/galobj.hxx libreoffice-5.1.2~rc2/svx/inc/galobj.hxx --- libreoffice-5.1.1~rc2/svx/inc/galobj.hxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/svx/inc/galobj.hxx 2016-03-29 15:41:04.000000000 +0000 @@ -21,7 +21,7 @@ #define INCLUDED_SVX_INC_GALOBJ_HXX #include -#include +#include #include "svx/galmisc.hxx" #define S_THUMB 80 diff -Nru libreoffice-5.1.1~rc2/svx/inc/pch/precompiled_svxcore.hxx libreoffice-5.1.2~rc2/svx/inc/pch/precompiled_svxcore.hxx --- libreoffice-5.1.1~rc2/svx/inc/pch/precompiled_svxcore.hxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/svx/inc/pch/precompiled_svxcore.hxx 2016-03-29 15:41:04.000000000 +0000 @@ -128,7 +128,7 @@ #include #include #include -#include +#include #include #include #include diff -Nru libreoffice-5.1.1~rc2/svx/inc/pch/precompiled_svx.hxx libreoffice-5.1.2~rc2/svx/inc/pch/precompiled_svx.hxx --- libreoffice-5.1.1~rc2/svx/inc/pch/precompiled_svx.hxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/svx/inc/pch/precompiled_svx.hxx 2016-03-29 15:41:04.000000000 +0000 @@ -100,7 +100,7 @@ #include #include #include -#include +#include #include #include #include diff -Nru libreoffice-5.1.1~rc2/svx/source/core/extedit.cxx libreoffice-5.1.2~rc2/svx/source/core/extedit.cxx --- libreoffice-5.1.1~rc2/svx/source/core/extedit.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/svx/source/core/extedit.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -10,7 +10,7 @@ #include #include -#include +#include #include #include #include diff -Nru libreoffice-5.1.1~rc2/svx/source/dialog/compressgraphicdialog.cxx libreoffice-5.1.2~rc2/svx/source/dialog/compressgraphicdialog.cxx --- libreoffice-5.1.1~rc2/svx/source/dialog/compressgraphicdialog.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/svx/source/dialog/compressgraphicdialog.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -18,7 +18,7 @@ */ #include -#include +#include #include #include #include diff -Nru libreoffice-5.1.1~rc2/svx/source/dialog/hdft.cxx libreoffice-5.1.2~rc2/svx/source/dialog/hdft.cxx --- libreoffice-5.1.1~rc2/svx/source/dialog/hdft.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/svx/source/dialog/hdft.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -22,7 +22,7 @@ #include #include #include -#include +#include #include #include #include diff -Nru libreoffice-5.1.1~rc2/svx/source/dialog/svxbmpnumvalueset.cxx libreoffice-5.1.2~rc2/svx/source/dialog/svxbmpnumvalueset.cxx --- libreoffice-5.1.1~rc2/svx/source/dialog/svxbmpnumvalueset.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/svx/source/dialog/svxbmpnumvalueset.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -31,7 +31,7 @@ #include #include #include -#include +#include #include #include #include diff -Nru libreoffice-5.1.1~rc2/svx/source/items/e3ditem.cxx libreoffice-5.1.2~rc2/svx/source/items/e3ditem.cxx --- libreoffice-5.1.1~rc2/svx/source/items/e3ditem.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/svx/source/items/e3ditem.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -19,6 +19,7 @@ #include #include +#include #include @@ -95,7 +96,7 @@ bool SvxB3DVectorItem::QueryValue( uno::Any& rVal, sal_uInt8 /*nMemberId*/ ) const { - assert(!isnan(aVal.getX()) && !isnan(aVal.getY()) && !isnan(aVal.getZ())); + assert(!rtl::math::isNan(aVal.getX()) && !rtl::math::isNan(aVal.getY()) && !rtl::math::isNan(aVal.getZ())); drawing::Direction3D aDirection; @@ -120,7 +121,7 @@ aVal.setY(aDirection.DirectionY); aVal.setZ(aDirection.DirectionZ); - assert(!isnan(aVal.getX()) && !isnan(aVal.getY()) && !isnan(aVal.getZ())); + assert(!rtl::math::isNan(aVal.getX()) && !rtl::math::isNan(aVal.getY()) && !rtl::math::isNan(aVal.getZ())); return true; } diff -Nru libreoffice-5.1.1~rc2/svx/source/sdr/attribute/sdrallfillattributeshelper.cxx libreoffice-5.1.2~rc2/svx/source/sdr/attribute/sdrallfillattributeshelper.cxx --- libreoffice-5.1.1~rc2/svx/source/sdr/attribute/sdrallfillattributeshelper.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/svx/source/sdr/attribute/sdrallfillattributeshelper.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -25,7 +25,7 @@ #include #include #include -#include +#include ////////////////////////////////////////////////////////////////////////////// diff -Nru libreoffice-5.1.1~rc2/svx/source/sidebar/nbdtmg.cxx libreoffice-5.1.2~rc2/svx/source/sidebar/nbdtmg.cxx --- libreoffice-5.1.1~rc2/svx/source/sidebar/nbdtmg.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/svx/source/sidebar/nbdtmg.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -32,7 +32,7 @@ #include #include #include -#include +#include #include #include diff -Nru libreoffice-5.1.1~rc2/svx/source/sidebar/tools/ValueSetWithTextControl.cxx libreoffice-5.1.2~rc2/svx/source/sidebar/tools/ValueSetWithTextControl.cxx --- libreoffice-5.1.1~rc2/svx/source/sidebar/tools/ValueSetWithTextControl.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/svx/source/sidebar/tools/ValueSetWithTextControl.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -25,7 +25,7 @@ #include #include #include -#include +#include #include namespace svx { namespace sidebar { diff -Nru libreoffice-5.1.1~rc2/svx/source/unodraw/UnoGraphicExporter.cxx libreoffice-5.1.2~rc2/svx/source/unodraw/UnoGraphicExporter.cxx --- libreoffice-5.1.1~rc2/svx/source/unodraw/UnoGraphicExporter.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/svx/source/unodraw/UnoGraphicExporter.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -744,6 +744,10 @@ pView->SetPageVisible( false ); pView->ShowSdrPage( pPage ); + // tdf#96922 completely deactivate EditView PageVisualization, including + // PageBackground (formally 'wiese'). + pView->SetPagePaintingAllowed(false); + const Point aNewOrg( pPage->GetLftBorder(), pPage->GetUppBorder() ); aNewSize = Size( aSize.Width() - pPage->GetLftBorder() - pPage->GetRgtBorder(), aSize.Height() - pPage->GetUppBorder() - pPage->GetLwrBorder() ); diff -Nru libreoffice-5.1.1~rc2/svx/source/unodraw/UnoGraphicExporter.hxx libreoffice-5.1.2~rc2/svx/source/unodraw/UnoGraphicExporter.hxx --- libreoffice-5.1.1~rc2/svx/source/unodraw/UnoGraphicExporter.hxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/svx/source/unodraw/UnoGraphicExporter.hxx 2016-03-29 15:41:04.000000000 +0000 @@ -22,7 +22,7 @@ #include -#include +#include class SdrObject; diff -Nru libreoffice-5.1.1~rc2/svx/source/unogallery/unogalitem.cxx libreoffice-5.1.2~rc2/svx/source/unogallery/unogalitem.cxx --- libreoffice-5.1.1~rc2/svx/source/unogallery/unogalitem.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/svx/source/unogallery/unogalitem.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -25,7 +25,7 @@ #include #include #include -#include +#include #include #include #include diff -Nru libreoffice-5.1.1~rc2/sw/CppunitTest_sw_odfexport.mk libreoffice-5.1.2~rc2/sw/CppunitTest_sw_odfexport.mk --- libreoffice-5.1.1~rc2/sw/CppunitTest_sw_odfexport.mk 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/sw/CppunitTest_sw_odfexport.mk 2016-03-29 15:41:04.000000000 +0000 @@ -87,6 +87,7 @@ sd/util/sd \ svx/util/svxcore \ xmloff/source/transform/xof \ + xmlscript/util/xmlscript \ )) $(eval $(call gb_CppunitTest_use_custom_headers,sw_odfexport,\ diff -Nru libreoffice-5.1.1~rc2/sw/CppunitTest_sw_ooxmlimport.mk libreoffice-5.1.2~rc2/sw/CppunitTest_sw_ooxmlimport.mk --- libreoffice-5.1.1~rc2/sw/CppunitTest_sw_ooxmlimport.mk 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/sw/CppunitTest_sw_ooxmlimport.mk 2016-03-29 15:41:04.000000000 +0000 @@ -27,6 +27,7 @@ sw \ tl \ vcl \ + svxcore \ $(gb_UWINAPI) \ )) diff -Nru libreoffice-5.1.1~rc2/sw/inc/list.hxx libreoffice-5.1.2~rc2/sw/inc/list.hxx --- libreoffice-5.1.1~rc2/sw/inc/list.hxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/sw/inc/list.hxx 2016-03-29 15:41:04.000000000 +0000 @@ -39,6 +39,7 @@ const OUString GetListId() const; const OUString GetDefaultListStyleName() const; + void SetDefaultListStyleName(OUString const&); void InsertListItem( SwNodeNum& rNodeNum, const int nLevel ); diff -Nru libreoffice-5.1.1~rc2/sw/inc/pch/precompiled_msword.hxx libreoffice-5.1.2~rc2/sw/inc/pch/precompiled_msword.hxx --- libreoffice-5.1.1~rc2/sw/inc/pch/precompiled_msword.hxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/sw/inc/pch/precompiled_msword.hxx 2016-03-29 15:41:04.000000000 +0000 @@ -141,7 +141,7 @@ #include #include #include -#include +#include #include #include #include diff -Nru libreoffice-5.1.1~rc2/sw/inc/pch/precompiled_sw.hxx libreoffice-5.1.2~rc2/sw/inc/pch/precompiled_sw.hxx --- libreoffice-5.1.1~rc2/sw/inc/pch/precompiled_sw.hxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/sw/inc/pch/precompiled_sw.hxx 2016-03-29 15:41:04.000000000 +0000 @@ -114,7 +114,7 @@ #include #include #include -#include +#include #include #include #include diff -Nru libreoffice-5.1.1~rc2/sw/inc/pch/precompiled_swui.hxx libreoffice-5.1.2~rc2/sw/inc/pch/precompiled_swui.hxx --- libreoffice-5.1.1~rc2/sw/inc/pch/precompiled_swui.hxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/sw/inc/pch/precompiled_swui.hxx 2016-03-29 15:41:04.000000000 +0000 @@ -142,7 +142,7 @@ #include #include #include -#include +#include #include #include #include diff -Nru libreoffice-5.1.1~rc2/sw/inc/pch/precompiled_vbaswobj.hxx libreoffice-5.1.2~rc2/sw/inc/pch/precompiled_vbaswobj.hxx --- libreoffice-5.1.1~rc2/sw/inc/pch/precompiled_vbaswobj.hxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/sw/inc/pch/precompiled_vbaswobj.hxx 2016-03-29 15:41:04.000000000 +0000 @@ -136,7 +136,7 @@ #include #include #include -#include +#include #include #include #include diff -Nru libreoffice-5.1.1~rc2/sw/qa/core/macros-test.cxx libreoffice-5.1.2~rc2/sw/qa/core/macros-test.cxx --- libreoffice-5.1.1~rc2/sw/qa/core/macros-test.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/sw/qa/core/macros-test.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -85,6 +85,7 @@ #endif void testFdo55289(); void testFdo68983(); + void testFdo87530(); void testFindReplace(); CPPUNIT_TEST_SUITE(SwMacrosTest); #if !defined(MACOSX) && !defined(WNT) @@ -100,6 +101,7 @@ #endif CPPUNIT_TEST(testFdo55289); CPPUNIT_TEST(testFdo68983); + CPPUNIT_TEST(testFdo87530); CPPUNIT_TEST(testFindReplace); CPPUNIT_TEST_SUITE_END(); @@ -430,6 +432,90 @@ xDocCloseable->close(false); } +void SwMacrosTest::testFdo87530() +{ + Reference xComponent = + loadFromDesktop("private:factory/swriter", "com.sun.star.text.TextDocument"); + + utl::TempFile aTempFile; + aTempFile.EnableKillingFile(); + + Sequence desc(1); + desc[0].Name = "FilterName"; + desc[0].Value <<= OUString("writer8"); + + { + // insert initial password protected library + Reference xDocScr(xComponent, UNO_QUERY_THROW); + Reference xStorBasLib(xDocScr->getBasicLibraries()); + Reference xBasLib(xStorBasLib, UNO_QUERY_THROW); + Reference xBasLibPwd(xStorBasLib, UNO_QUERY_THROW); + Reference xLibrary(xBasLib->createLibrary("BarLibrary")); + xLibrary->insertByName("BarModule", + uno::makeAny(OUString("Sub Main\nEnd Sub\n"))); + xBasLibPwd->changeLibraryPassword("BarLibrary", "", "foo"); + + Reference xDocStorable(xComponent, UNO_QUERY_THROW); + CPPUNIT_ASSERT(xDocStorable.is()); + + xDocStorable->storeAsURL(aTempFile.GetURL(), desc); + } + + Reference(xComponent, UNO_QUERY_THROW)->close(false); + + // re-load + xComponent = loadFromDesktop(aTempFile.GetURL(), "com.sun.star.text.TextDocument"); + + { + // check that password-protected library survived store and re-load + Reference xDocScr(xComponent, UNO_QUERY_THROW); + Reference xStorBasLib(xDocScr->getBasicLibraries()); + Reference xBasLib(xStorBasLib, UNO_QUERY_THROW); + Reference xBasLibPwd(xStorBasLib, UNO_QUERY_THROW); + CPPUNIT_ASSERT(xBasLibPwd->isLibraryPasswordProtected("BarLibrary")); + CPPUNIT_ASSERT(xBasLibPwd->verifyLibraryPassword("BarLibrary", "foo")); + xBasLib->loadLibrary("BarLibrary"); + CPPUNIT_ASSERT(xBasLib->isLibraryLoaded("BarLibrary")); + Reference xLibrary(xBasLib->getByName("BarLibrary"), UNO_QUERY); + Any module(xLibrary->getByName("BarModule")); + CPPUNIT_ASSERT_EQUAL(module.get(), OUString("Sub Main\nEnd Sub\n")); + + // add a second module now - tdf#87530 happened here + Reference xFooLib(xBasLib->createLibrary("FooLibrary")); + xFooLib->insertByName("FooModule", + uno::makeAny(OUString("Sub Main\nEnd Sub\n"))); + xBasLibPwd->changeLibraryPassword("FooLibrary", "", "foo"); + + // store again + Reference xDocStorable(xComponent, UNO_QUERY_THROW); + CPPUNIT_ASSERT(xDocStorable.is()); + + xDocStorable->store(); + } + + Reference(xComponent, UNO_QUERY_THROW)->close(false); + + // re-load + xComponent = loadFromDesktop(aTempFile.GetURL(), "com.sun.star.text.TextDocument"); + + // check that password-protected library survived store and re-load + Reference xDocScr(xComponent, UNO_QUERY_THROW); + Reference xStorBasLib(xDocScr->getBasicLibraries()); + Reference xBasLib(xStorBasLib, UNO_QUERY_THROW); + Reference xBasLibPwd(xStorBasLib, UNO_QUERY_THROW); + CPPUNIT_ASSERT(xBasLibPwd->isLibraryPasswordProtected("FooLibrary")); + CPPUNIT_ASSERT(xBasLibPwd->verifyLibraryPassword("FooLibrary", "foo")); + xBasLib->loadLibrary("FooLibrary"); + CPPUNIT_ASSERT(xBasLib->isLibraryLoaded("FooLibrary")); + Reference xLibrary(xBasLib->getByName("FooLibrary"), UNO_QUERY); + Any module(xLibrary->getByName("FooModule")); + CPPUNIT_ASSERT_EQUAL(module.get(), OUString("Sub Main\nEnd Sub\n")); + + // close + Reference(xComponent, UNO_QUERY_THROW)->close(false); +} + + void SwMacrosTest::testFindReplace() { // we need a full document with view and layout etc. because ::GetNode() diff -Nru libreoffice-5.1.1~rc2/sw/qa/extras/htmlexport/htmlexport.cxx libreoffice-5.1.2~rc2/sw/qa/extras/htmlexport/htmlexport.cxx --- libreoffice-5.1.1~rc2/sw/qa/extras/htmlexport/htmlexport.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/sw/qa/extras/htmlexport/htmlexport.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -41,7 +41,7 @@ return OString(filename) != "fdo62336.docx"; } - void preTest(const char* filename) override + virtual std::unique_ptr preTest(const char* filename) override { if (getTestName().indexOf("SkipImage") != -1) setFilterOptions("SkipImages"); @@ -50,22 +50,22 @@ if (OString(filename) == "charborder.odt") { + // FIXME if padding-top gets exported as inches, not cms, we get rounding errors. SwGlobals::ensure(); // make sure that SW_MOD() is not 0 + std::unique_ptr pResetter(new Resetter( + [this] () { + SwMasterUsrPref* pPref = const_cast(SW_MOD()->GetUsrPref(false)); + pPref->SetMetric(this->m_eUnit); + })); SwMasterUsrPref* pPref = const_cast(SW_MOD()->GetUsrPref(false)); m_eUnit = pPref->GetMetric(); pPref->SetMetric(FUNIT_CM); + return pResetter; } + return nullptr; } - void postTest(const char* filename) override - { - if (OString(filename) == "charborder.odt") - { - SwMasterUsrPref* pPref = const_cast(SW_MOD()->GetUsrPref(false)); - pPref->SetMetric(m_eUnit); - } - } }; #define DECLARE_HTMLEXPORT_ROUNDTRIP_TEST(TestName, filename) DECLARE_SW_ROUNDTRIP_TEST(TestName, filename, HtmlExportTest) diff -Nru libreoffice-5.1.1~rc2/sw/qa/extras/inc/swmodeltestbase.hxx libreoffice-5.1.2~rc2/sw/qa/extras/inc/swmodeltestbase.hxx --- libreoffice-5.1.1~rc2/sw/qa/extras/inc/swmodeltestbase.hxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/sw/qa/extras/inc/swmodeltestbase.hxx 2016-03-29 15:41:04.000000000 +0000 @@ -145,6 +145,31 @@ bool mbExported; ///< Does maTempFile already contain something useful? protected: + + class Resetter + { + private: + std::function m_Func; + + public: + Resetter(std::function const& rFunc) + : m_Func(rFunc) + { + } + ~Resetter() + { + try + { + m_Func(); + } + catch (...) // has to be reliable + { + fprintf(stderr, "resetter failed with exception\n"); + abort(); + } + } + }; + virtual OUString getTestName() { return OUString(); } public: @@ -193,7 +218,7 @@ { maTempFile.EnableKillingFile(false); header(); - preTest(filename); + std::unique_ptr const pChanges(preTest(filename)); load(mpTestDocumentPath, filename); postTest(filename); verify(); @@ -211,7 +236,7 @@ { maTempFile.EnableKillingFile(false); header(); - preTest(filename); + std::unique_ptr const pChanges(preTest(filename)); load(mpTestDocumentPath, filename); postLoad(filename); reload(mpFilter, filename); @@ -231,7 +256,7 @@ { maTempFile.EnableKillingFile(false); header(); - preTest(filename); + std::unique_ptr const pChanges(preTest(filename)); load(mpTestDocumentPath, filename); save(OUString::createFromAscii(mpFilter), maTempFile); maTempFile.EnableKillingFile(false); @@ -259,8 +284,9 @@ /** * Override this function if some special filename-specific setup is needed */ - virtual void preTest(const char* /*filename*/) + virtual std::unique_ptr preTest(const char* /*filename*/) { + return nullptr; } /// Override this function if some special file-specific setup is needed during export test: after load, but before save. Binary files /tmp/tmpjVu_CV/d8O1VeJAAp/libreoffice-5.1.1~rc2/sw/qa/extras/odfexport/data/2_MathType3.docx and /tmp/tmpjVu_CV/VUSojbs3iI/libreoffice-5.1.2~rc2/sw/qa/extras/odfexport/data/2_MathType3.docx differ diff -Nru libreoffice-5.1.1~rc2/sw/qa/extras/odfexport/odfexport.cxx libreoffice-5.1.2~rc2/sw/qa/extras/odfexport/odfexport.cxx --- libreoffice-5.1.1~rc2/sw/qa/extras/odfexport/odfexport.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/sw/qa/extras/odfexport/odfexport.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -56,27 +56,57 @@ return std::find(aBlacklist.begin(), aBlacklist.end(), filename) == aBlacklist.end(); } - virtual void preTest(const char* pFilename) override + virtual std::unique_ptr preTest(const char* pFilename) override { if (OString(pFilename) == "fdo58949.docx") { + std::unique_ptr pResetter(new Resetter( + [] () { + std::shared_ptr pBatch( + comphelper::ConfigurationChanges::create()); + officecfg::Office::Common::Filter::Microsoft::Import::MathTypeToMath::set(true, pBatch); + return pBatch->commit(); + })); + std::shared_ptr pBatch(comphelper::ConfigurationChanges::create()); officecfg::Office::Common::Filter::Microsoft::Import::MathTypeToMath::set(false, pBatch); pBatch->commit(); + return pResetter; } - } - - virtual void postTest(const char* pFilename) override - { - if (OString(pFilename) == "fdo58949.docx") + if (OString(pFilename) == "2_MathType3.docx") { - std::shared_ptr pBatch(comphelper::ConfigurationChanges::create()); - officecfg::Office::Common::Filter::Microsoft::Import::MathTypeToMath::set(true, pBatch); + std::unique_ptr pResetter(new Resetter( + [this] () { + mpFilter = "writer8"; + std::shared_ptr pBatch( + comphelper::ConfigurationChanges::create()); + officecfg::Office::Common::Cache::Writer::OLE_Objects::set(20, pBatch); + return pBatch->commit(); + })); + mpFilter = "OpenDocument Text Flat XML"; // doesn't happen with ODF package + std::shared_ptr pBatch( + comphelper::ConfigurationChanges::create()); + officecfg::Office::Common::Cache::Writer::OLE_Objects::set(1, pBatch); pBatch->commit(); + return pResetter; } + return nullptr; } }; +DECLARE_ODFEXPORT_TEST(testMathObjectFlatExport, "2_MathType3.docx") +{ + uno::Reference xModifiable(mxComponent, uno::UNO_QUERY); + CPPUNIT_ASSERT(!xModifiable->isModified()); + // see preTest(), set the OLE cache to 1 for this test + // and the problem was that the formulas that were in the cache + // (the second one) were lost + OUString formula1(getFormula(getRun(getParagraph(1), 1))); + CPPUNIT_ASSERT_EQUAL(OUString(" size 12{1+1=2} {}"), formula1); + OUString formula2(getFormula(getRun(getParagraph(2), 1))); + CPPUNIT_ASSERT_EQUAL(OUString(" size 12{2+2=4} {}"), formula2); +} + DECLARE_ODFEXPORT_TEST(testFramebackgrounds, "framebackgrounds.odt") { //Counting the Number of Frames and checking with the expected count diff -Nru libreoffice-5.1.1~rc2/sw/qa/extras/ooxmlexport/ooxmlexport7.cxx libreoffice-5.1.2~rc2/sw/qa/extras/ooxmlexport/ooxmlexport7.cxx --- libreoffice-5.1.1~rc2/sw/qa/extras/ooxmlexport/ooxmlexport7.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/sw/qa/extras/ooxmlexport/ooxmlexport7.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -1114,12 +1114,16 @@ // check rotation angle assertXPath(pXmlDoc, "//a:xfrm", "rot", "13500000"); // check the first few coordinates of the polygon +#ifndef MACOSX /* Retina-reatled rounding rountrip error + * hard to smooth out due to the use of string compare + * instead of number */ assertXPath(pXmlDoc, "//a:custGeom/a:pathLst/a:path/a:lnTo[1]/a:pt", "x", "2351"); assertXPath(pXmlDoc, "//a:custGeom/a:pathLst/a:path/a:lnTo[1]/a:pt", "y", "3171"); assertXPath(pXmlDoc, "//a:custGeom/a:pathLst/a:path/a:lnTo[2]/a:pt", "x", "1695"); assertXPath(pXmlDoc, "//a:custGeom/a:pathLst/a:path/a:lnTo[2]/a:pt", "y", "3171"); assertXPath(pXmlDoc, "//a:custGeom/a:pathLst/a:path/a:lnTo[3]/a:pt", "x", "1695"); assertXPath(pXmlDoc, "//a:custGeom/a:pathLst/a:path/a:lnTo[3]/a:pt", "y", "1701"); +#endif } #endif diff -Nru libreoffice-5.1.1~rc2/sw/qa/extras/ooxmlexport/ooxmlexport.cxx libreoffice-5.1.2~rc2/sw/qa/extras/ooxmlexport/ooxmlexport.cxx --- libreoffice-5.1.1~rc2/sw/qa/extras/ooxmlexport/ooxmlexport.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/sw/qa/extras/ooxmlexport/ooxmlexport.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -637,7 +637,10 @@ DECLARE_OOXMLEXPORT_TEST(testOOxmlOutlineNumNone, "outline-num-none.odt") { if (xmlDocPtr pXmlDoc = parseExport("word/numbering.xml")) + { + assertXPath(pXmlDoc, "/w:numbering/w:abstractNum[1]/w:lvl[1]/w:pStyle", "val", "Heading1"); assertXPath(pXmlDoc, "/w:numbering/w:abstractNum[1]/w:lvl[1]/w:numFmt", "val", "none"); + } } DECLARE_OOXMLEXPORT_TEST(testNumParentStyle, "num-parent-style.docx") Binary files /tmp/tmpjVu_CV/d8O1VeJAAp/libreoffice-5.1.1~rc2/sw/qa/extras/ooxmlimport/data/tdf85523.docx and /tmp/tmpjVu_CV/VUSojbs3iI/libreoffice-5.1.2~rc2/sw/qa/extras/ooxmlimport/data/tdf85523.docx differ Binary files /tmp/tmpjVu_CV/d8O1VeJAAp/libreoffice-5.1.1~rc2/sw/qa/extras/ooxmlimport/data/tdf95376.docx and /tmp/tmpjVu_CV/VUSojbs3iI/libreoffice-5.1.2~rc2/sw/qa/extras/ooxmlimport/data/tdf95376.docx differ Binary files /tmp/tmpjVu_CV/d8O1VeJAAp/libreoffice-5.1.1~rc2/sw/qa/extras/ooxmlimport/data/tdf97371.docx and /tmp/tmpjVu_CV/VUSojbs3iI/libreoffice-5.1.2~rc2/sw/qa/extras/ooxmlimport/data/tdf97371.docx differ diff -Nru libreoffice-5.1.1~rc2/sw/qa/extras/ooxmlimport/ooxmlimport.cxx libreoffice-5.1.2~rc2/sw/qa/extras/ooxmlimport/ooxmlimport.cxx --- libreoffice-5.1.1~rc2/sw/qa/extras/ooxmlimport/ooxmlimport.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/sw/qa/extras/ooxmlimport/ooxmlimport.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -74,10 +74,12 @@ #include #include #include +#include #include #include #include #include +#include #include #include @@ -89,17 +91,20 @@ { } - virtual void preTest(const char* filename) override + virtual std::unique_ptr preTest(const char* filename) override { if (OString(filename) == "smartart.docx" || OString(filename) == "strict-smartart.docx" || OString(filename) == "fdo87488.docx") + { + std::unique_ptr pResetter(new Resetter( + [] () { + SvtFilterOptions::Get().SetSmartArt2Shape(false); + })); SvtFilterOptions::Get().SetSmartArt2Shape(true); + return pResetter; + } + return nullptr; } - virtual void postTest(const char* filename) override - { - if (OString(filename) == "smartart.docx" || OString(filename) == "strict-smartart.docx" || OString(filename) == "fdo87488.docx") - SvtFilterOptions::Get().SetSmartArt2Shape(false); - } protected: /// Copy&paste helper. bool paste(const OUString& rFilename, const uno::Reference& xTextRange) @@ -2116,6 +2121,14 @@ CPPUNIT_ASSERT_EQUAL(awt::FontUnderline::SINGLE, getProperty(getRun(xParagraph, 1), "CharUnderline")); } +DECLARE_OOXMLIMPORT_TEST(testTdf85523, "tdf85523.docx") +{ + auto xTextField = getProperty< uno::Reference >(getRun(getParagraph(1), 6), "TextField"); + auto xText = getProperty< uno::Reference >(xTextField, "TextRange"); + // This was "commentX": an unexpected extra char was added at the comment end. + getParagraphOfText(1, xText, "comment"); +} + DECLARE_OOXMLIMPORT_TEST(testDMLGroupShapeRunFonts, "dml-groupshape-runfonts.docx") { // Fonts defined by w:rFonts was not imported and so the font specified by a:fontRef was used. @@ -2851,6 +2864,15 @@ CPPUNIT_ASSERT_EQUAL(beans::PropertyState_DIRECT_VALUE, xParagraph->getPropertyState("ParaFirstLineIndent")); } +DECLARE_OOXMLIMPORT_TEST(testTdf95376, "tdf95376.docx") +{ + uno::Reference xParagraph(getParagraph(2), uno::UNO_QUERY); + // This was beans::PropertyState_DIRECT_VALUE: indentation-from-numbering + // did not have priority over indentation-from-paragraph-style, due to a + // filter workaround that's not correct here. + CPPUNIT_ASSERT_EQUAL(beans::PropertyState_DEFAULT_VALUE, xParagraph->getPropertyState("ParaFirstLineIndent")); +} + DECLARE_OOXMLIMPORT_TEST(testTdf92124, "tdf92124.docx") { // Get the second paragraph's numbering style's 1st level's suffix. @@ -3044,6 +3066,19 @@ CPPUNIT_ASSERT_EQUAL(awt::FontWeight::NORMAL, getProperty(xStyle, "CharWeight")); } +DECLARE_OOXMLIMPORT_TEST(testTdf97371, "tdf97371.docx") +{ + SwXTextDocument* pTextDoc = dynamic_cast(mxComponent.get()); + CPPUNIT_ASSERT(pTextDoc); + SwDoc* pDoc = pTextDoc->GetDocShell()->GetDoc(); + SdrPage* pPage = pDoc->getIDocumentDrawModelAccess().GetDrawModel()->GetPage(0); + SdrObject* pShape = pPage->GetObj(0); + SdrObject* pTextBox = pPage->GetObj(1); + long nDiff = std::abs(pShape->GetSnapRect().Top() - pTextBox->GetSnapRect().Top()); + // The top of the two shapes were 410 and 3951, now it should be 3950 and 3951. + CPPUNIT_ASSERT(nDiff < 10); +} + CPPUNIT_PLUGIN_IMPLEMENT(); /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff -Nru libreoffice-5.1.1~rc2/sw/qa/extras/rtfexport/data/tdf96175.rtf libreoffice-5.1.2~rc2/sw/qa/extras/rtfexport/data/tdf96175.rtf --- libreoffice-5.1.1~rc2/sw/qa/extras/rtfexport/data/tdf96175.rtf 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-5.1.2~rc2/sw/qa/extras/rtfexport/data/tdf96175.rtf 2016-03-29 15:41:04.000000000 +0000 @@ -0,0 +1,6 @@ +{\rtf1 +{\info +{\*\company foobar} +} +hello +\par} diff -Nru libreoffice-5.1.1~rc2/sw/qa/extras/rtfexport/rtfexport.cxx libreoffice-5.1.2~rc2/sw/qa/extras/rtfexport/rtfexport.cxx --- libreoffice-5.1.1~rc2/sw/qa/extras/rtfexport/rtfexport.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/sw/qa/extras/rtfexport/rtfexport.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -973,6 +973,16 @@ CPPUNIT_ASSERT_EQUAL(sal_Int32(0x92D050), getProperty(xPageStyle, "BackColor")); } +DECLARE_RTFEXPORT_TEST(testTdf96175, "tdf96175.rtf") +{ + // The problem that a user defined property named "Company" was lost on export. + uno::Reference xDocumentPropertiesSupplier(mxComponent, uno::UNO_QUERY); + uno::Reference xDocumentProperties(xDocumentPropertiesSupplier->getDocumentProperties(), uno::UNO_QUERY); + uno::Reference xUserDefinedProperties = xDocumentProperties->getUserDefinedProperties(); + // This resulted in a beans::UnknownPropertyException. + CPPUNIT_ASSERT_EQUAL(OUString("foobar"), getProperty(xUserDefinedProperties, "Company")); +} + CPPUNIT_PLUGIN_IMPLEMENT(); /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ Binary files /tmp/tmpjVu_CV/d8O1VeJAAp/libreoffice-5.1.1~rc2/sw/qa/extras/rtfimport/data/libreoffice.png and /tmp/tmpjVu_CV/VUSojbs3iI/libreoffice-5.1.2~rc2/sw/qa/extras/rtfimport/data/libreoffice.png differ diff -Nru libreoffice-5.1.1~rc2/sw/qa/extras/rtfimport/data/tdf59699.rtf libreoffice-5.1.2~rc2/sw/qa/extras/rtfimport/data/tdf59699.rtf --- libreoffice-5.1.1~rc2/sw/qa/extras/rtfimport/data/tdf59699.rtf 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-5.1.2~rc2/sw/qa/extras/rtfimport/data/tdf59699.rtf 2016-03-29 15:41:04.000000000 +0000 @@ -0,0 +1,10 @@ +{\rtf1 +\pard\plain +{\field +{\*\fldinst +{ INCLUDEPICTURE "libreoffice.png" \\* MERGEFORMAT \\d } +} +{\fldrslt} +} +\par +} diff -Nru libreoffice-5.1.1~rc2/sw/qa/extras/rtfimport/data/tdf87034.rtf libreoffice-5.1.2~rc2/sw/qa/extras/rtfimport/data/tdf87034.rtf --- libreoffice-5.1.1~rc2/sw/qa/extras/rtfimport/data/tdf87034.rtf 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-5.1.2~rc2/sw/qa/extras/rtfimport/data/tdf87034.rtf 2016-03-29 15:41:04.000000000 +0000 @@ -0,0 +1,13 @@ +{\rtf1 +\pard\plain A +{\chftn +{\footnote\chftn F +} +} +B +{\super 3} +C +{\super 4} +D +\par +} diff -Nru libreoffice-5.1.1~rc2/sw/qa/extras/rtfimport/rtfimport.cxx libreoffice-5.1.2~rc2/sw/qa/extras/rtfimport/rtfimport.cxx --- libreoffice-5.1.1~rc2/sw/qa/extras/rtfimport/rtfimport.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/sw/qa/extras/rtfimport/rtfimport.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -48,6 +48,7 @@ #include #include #include +#include #include #include @@ -66,27 +67,32 @@ { } - virtual void preTest(const char* filename) override + virtual std::unique_ptr preTest(const char* filename) override { m_aSavedSettings = Application::GetSettings(); if (OString(filename) == "fdo48023.rtf" || OString(filename) == "fdo72031.rtf") { + std::unique_ptr pResetter(new Resetter( + [this] () { + Application::SetSettings(this->m_aSavedSettings); + })); AllSettings aSettings(m_aSavedSettings); aSettings.SetLanguageTag(LanguageTag("ru")); Application::SetSettings(aSettings); + return pResetter; } else if (OString(filename) == "fdo44211.rtf") { + std::unique_ptr pResetter(new Resetter( + [this] () { + Application::SetSettings(this->m_aSavedSettings); + })); AllSettings aSettings(m_aSavedSettings); aSettings.SetLanguageTag(LanguageTag("lt")); Application::SetSettings(aSettings); + return pResetter; } - } - - virtual void postTest(const char* filename) override - { - if (OString(filename) == "fdo48023.rtf" || OString(filename) == "fdo72031.rtf" || OString(filename) == "fdo44211.rtf") - Application::SetSettings(m_aSavedSettings); + return nullptr; } protected: @@ -147,9 +153,14 @@ uno::Reference xIndexAccess(xTextGraphicObjectsSupplier->getGraphicObjects(), uno::UNO_QUERY); uno::Reference xShape(xIndexAccess->getByIndex(0), uno::UNO_QUERY); awt::Size aActualSize(xShape->getSize()); - - CPPUNIT_ASSERT_EQUAL(sal_Int32(aExpectedSize.Width()), aActualSize.Width); - CPPUNIT_ASSERT_EQUAL(sal_Int32(aExpectedSize.Height()), aActualSize.Height); + if (((((sal_Int32)aExpectedSize.Width()) - aActualSize.Width) / 2) != 0) + { + CPPUNIT_ASSERT_EQUAL(sal_Int32(aExpectedSize.Width()), aActualSize.Width); + } + if (((((sal_Int32)aExpectedSize.Height()) - aActualSize.Height) / 2) != 0) + { + CPPUNIT_ASSERT_EQUAL(sal_Int32(aExpectedSize.Height()), aActualSize.Height); + } } DECLARE_RTFIMPORT_TEST(testFdo45543, "fdo45543.rtf") @@ -623,6 +634,14 @@ CPPUNIT_ASSERT_EQUAL(graphic::GraphicType::PIXEL, getProperty(xGraphic, "GraphicType")); } +DECLARE_OOXMLIMPORT_TEST(testTdf59699, "tdf59699.rtf") +{ + // This resulted in a lang.IndexOutOfBoundsException: the referenced graphic data wasn't imported. + uno::Reference xImage(getShape(1), uno::UNO_QUERY); + auto xGraphic = getProperty >(xImage, "Graphic"); + CPPUNIT_ASSERT(xGraphic.is()); +} + DECLARE_RTFIMPORT_TEST(testFdo46966, "fdo46966.rtf") { /* @@ -2463,6 +2482,13 @@ CPPUNIT_ASSERT(!aTabStops.hasElements()); } +DECLARE_RTFIMPORT_TEST(testTdf87034, "tdf87034.rtf") +{ + // This was A1BC34D, i.e. the first "super" text portion was mis-imported, + // and was inserted instead right before the second "super" text portion. + CPPUNIT_ASSERT_EQUAL(OUString("A1B3C4D"), getParagraph(1)->getString()); +} + CPPUNIT_PLUGIN_IMPLEMENT(); /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff -Nru libreoffice-5.1.1~rc2/sw/source/core/bastyp/swtypes.cxx libreoffice-5.1.2~rc2/sw/source/core/bastyp/swtypes.cxx --- libreoffice-5.1.1~rc2/sw/source/core/bastyp/swtypes.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/sw/source/core/bastyp/swtypes.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -42,7 +42,7 @@ #include #include #include -#include +#include #include using namespace com::sun::star; diff -Nru libreoffice-5.1.1~rc2/sw/source/core/doc/DocumentContentOperationsManager.cxx libreoffice-5.1.2~rc2/sw/source/core/doc/DocumentContentOperationsManager.cxx --- libreoffice-5.1.1~rc2/sw/source/core/doc/DocumentContentOperationsManager.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/sw/source/core/doc/DocumentContentOperationsManager.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -4259,18 +4259,16 @@ rPam.Move( fnMoveBackward, fnGoContent ); if( bChg ) rPam.Exchange(); - - aRg.aEnd = pEnd->nNode; - pEndTextNd = pEnd->nNode.GetNode().GetTextNode(); } else if( rPos == *pEnd ) { // The end was also moved pEnd->nNode--; pEnd->nContent.Assign( pDestTextNd, nContentEnd ); - aRg.aEnd = pEnd->nNode; - pEndTextNd = pEnd->nNode.GetNode().GetTextNode(); } + // tdf#63022 always reset pEndTextNd after SplitNode + aRg.aEnd = pEnd->nNode; + pEndTextNd = pEnd->nNode.GetNode().GetTextNode(); } NUMRULE_STATE diff -Nru libreoffice-5.1.1~rc2/sw/source/core/doc/DocumentListsManager.cxx libreoffice-5.1.2~rc2/sw/source/core/doc/DocumentListsManager.cxx --- libreoffice-5.1.1~rc2/sw/source/core/doc/DocumentListsManager.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/sw/source/core/doc/DocumentListsManager.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -182,6 +182,13 @@ maListStyleLists.erase( sListStyleName ); maListStyleLists[sNewListStyleName] = pList; } + for (auto & it : maLists) // tdf#91131 update these references too + { + if (it.second->GetDefaultListStyleName() == sListStyleName) + { + it.second->SetDefaultListStyleName(sNewListStyleName); + } + } } diff -Nru libreoffice-5.1.1~rc2/sw/source/core/doc/list.cxx libreoffice-5.1.2~rc2/sw/source/core/doc/list.cxx --- libreoffice-5.1.1~rc2/sw/source/core/doc/list.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/sw/source/core/doc/list.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -51,7 +51,6 @@ bool IsListLevelMarked( const int nListLevel ) const; - private: // unique identifier of the list const OUString msListId; // default list style for the list items, identified by the list style name @@ -233,6 +232,11 @@ return mpListImpl->GetDefaultListStyleName(); } +void SwList::SetDefaultListStyleName(OUString const& rNew) +{ + mpListImpl->msDefaultListStyleName = rNew; +} + void SwList::InsertListItem( SwNodeNum& rNodeNum, const int nLevel ) { diff -Nru libreoffice-5.1.1~rc2/sw/source/core/frmedt/fecopy.cxx libreoffice-5.1.2~rc2/sw/source/core/frmedt/fecopy.cxx --- libreoffice-5.1.1~rc2/sw/source/core/frmedt/fecopy.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/sw/source/core/frmedt/fecopy.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -19,7 +19,7 @@ #include -#include +#include #include #include #include @@ -90,6 +90,7 @@ // delete content if ClpDocument contains content SwNodeIndex aSttIdx( pClpDoc->GetNodes().GetEndOfExtras(), 2 ); + SwNodeIndex aEndNdIdx( *aSttIdx.GetNode().EndOfSectionNode() ); SwTextNode* pTextNd = aSttIdx.GetNode().GetTextNode(); if (!pTextNd || !pTextNd->GetText().isEmpty() || aSttIdx.GetIndex()+1 != pClpDoc->GetNodes().GetEndOfContent().GetIndex() ) @@ -102,11 +103,19 @@ } // also delete surrounding FlyFrames if any - for( auto pFormat : *pClpDoc->GetSpzFrameFormats() ) + for( const auto pFly : *pClpDoc->GetSpzFrameFormats() ) { - SwFlyFrameFormat* pFly = static_cast(pFormat); - pClpDoc->getIDocumentLayoutAccess().DelLayoutFormat( pFly ); + SwFormatAnchor const*const pAnchor = &pFly->GetAnchor(); + SwPosition const*const pAPos = pAnchor->GetContentAnchor(); + if (pAPos && + ((FLY_AT_PARA == pAnchor->GetAnchorId()) || + (FLY_AT_CHAR == pAnchor->GetAnchorId())) && + aSttIdx <= pAPos->nNode && pAPos->nNode <= aEndNdIdx ) + { + pClpDoc->getIDocumentLayoutAccess().DelLayoutFormat( pFly ); + } } + pClpDoc->GetDocumentFieldsManager().GCFieldTypes(); // delete the FieldTypes // if a string was passed, copy it to the clipboard- diff -Nru libreoffice-5.1.1~rc2/sw/source/core/layout/pagechg.cxx libreoffice-5.1.2~rc2/sw/source/core/layout/pagechg.cxx --- libreoffice-5.1.1~rc2/sw/source/core/layout/pagechg.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/sw/source/core/layout/pagechg.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -1761,8 +1761,11 @@ if (pSortedObj == nullptr) return; - for (SwAnchoredObject* pAnchoredObj : *pSortedObj) + // note: pSortedObj elements may be removed and inserted from + // MoveObjectIfActive(), invalidating iterators + for (size_t i = 0; i < pSortedObj->size(); ++i) { + SwAnchoredObject *const pAnchoredObj = (*pSortedObj)[i]; const SwFrameFormat& rObjFormat = pAnchoredObj->GetFrameFormat(); const SwFormatAnchor& rAnchor = rObjFormat.GetAnchor(); diff -Nru libreoffice-5.1.1~rc2/sw/source/core/ole/ndole.cxx libreoffice-5.1.2~rc2/sw/source/core/ole/ndole.cxx --- libreoffice-5.1.1~rc2/sw/source/core/ole/ndole.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/sw/source/core/ole/ndole.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -50,7 +50,7 @@ #include #include -#include +#include #include #include #include @@ -84,7 +84,7 @@ void RemoveObj( SwOLEObj& rObj ); }; -SwOLELRUCache* pOLELRU_Cache = nullptr; +std::shared_ptr g_pOLELRU_Cache; class SwOLEListener_Impl : public ::cppu::WeakImplHelper< embed::XStateChangeListener > { @@ -102,7 +102,7 @@ { if ( mpObj->IsOleRef() && mpObj->GetOleRef()->getCurrentState() == embed::EmbedStates::RUNNING ) { - pOLELRU_Cache->InsertObj( *mpObj ); + g_pOLELRU_Cache->InsertObj( *mpObj ); } } @@ -114,29 +114,29 @@ { if ( mpObj && nOldState == embed::EmbedStates::LOADED && nNewState == embed::EmbedStates::RUNNING ) { - if( !pOLELRU_Cache ) - pOLELRU_Cache = new SwOLELRUCache; - pOLELRU_Cache->InsertObj( *mpObj ); + if (!g_pOLELRU_Cache) + g_pOLELRU_Cache.reset(new SwOLELRUCache); + g_pOLELRU_Cache->InsertObj( *mpObj ); } else if ( mpObj && nNewState == embed::EmbedStates::LOADED && nOldState == embed::EmbedStates::RUNNING ) { - if ( pOLELRU_Cache ) - pOLELRU_Cache->RemoveObj( *mpObj ); + if (g_pOLELRU_Cache) + g_pOLELRU_Cache->RemoveObj( *mpObj ); } } void SwOLEListener_Impl::Release() { - if ( mpObj && pOLELRU_Cache ) - pOLELRU_Cache->RemoveObj( *mpObj ); + if (mpObj && g_pOLELRU_Cache) + g_pOLELRU_Cache->RemoveObj( *mpObj ); mpObj=nullptr; release(); } void SAL_CALL SwOLEListener_Impl::disposing( const lang::EventObject& ) throw (uno::RuntimeException, std::exception) { - if ( mpObj && pOLELRU_Cache ) - pOLELRU_Cache->RemoveObj( *mpObj ); + if (mpObj && g_pOLELRU_Cache) + g_pOLELRU_Cache->RemoveObj( *mpObj ); } // TODO/LATER: actually SwEmbedObjectLink should be used here, but because different objects are used to control @@ -810,9 +810,9 @@ else if ( xOLERef->getCurrentState() == embed::EmbedStates::RUNNING ) { // move object to first position in cache - if( !pOLELRU_Cache ) - pOLELRU_Cache = new SwOLELRUCache; - pOLELRU_Cache->InsertObj( *this ); + if (!g_pOLELRU_Cache) + g_pOLELRU_Cache.reset(new SwOLELRUCache); + g_pOLELRU_Cache->InsertObj( *this ); } return xOLERef.GetObject(); @@ -937,6 +937,7 @@ { if (nVal < m_nLRU_InitSize) { + std::shared_ptr tmp(g_pOLELRU_Cache); // prevent delete this // size of cache has been changed sal_Int32 nCount = m_OleObjects.size(); sal_Int32 nPos = nCount; @@ -970,6 +971,7 @@ } if (it == m_OleObjects.end()) { + std::shared_ptr tmp(g_pOLELRU_Cache); // prevent delete this // try to remove objects if necessary sal_Int32 nCount = m_OleObjects.size(); sal_Int32 nPos = nCount-1; @@ -993,7 +995,10 @@ } if (m_OleObjects.empty()) { - DELETEZ( pOLELRU_Cache ); + if (g_pOLELRU_Cache.unique()) // test that we're not in InsertObj() + { + g_pOLELRU_Cache.reset(); + } } } diff -Nru libreoffice-5.1.1~rc2/sw/source/core/text/itrform2.cxx libreoffice-5.1.2~rc2/sw/source/core/text/itrform2.cxx --- libreoffice-5.1.1~rc2/sw/source/core/text/itrform2.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/sw/source/core/text/itrform2.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -2686,7 +2686,7 @@ const sal_Int32 nOldLineEnd, const std::vector &rFlyStarts ) { - SwTextFormatInfo txtFormatInfo = rThis.GetInfo(); + SwTextFormatInfo& txtFormatInfo = rThis.GetInfo(); if ( txtFormatInfo.GetIdx() < txtFormatInfo.GetReformatStart() ) // the reformat position is behind our new line, that means // something of our text has moved to the next line @@ -2733,7 +2733,11 @@ if ( nReformat > txtFormatInfo.GetLineStart() + nMaxContext ) nReformat = nReformat - nMaxContext; else + { nReformat = txtFormatInfo.GetLineStart(); + //reset the margin flag - prevent loops + SwTextCursor::SetRightMargin(false); + } } // Weird situation: Our line used to end with a hole portion diff -Nru libreoffice-5.1.1~rc2/sw/source/core/text/porfld.cxx libreoffice-5.1.2~rc2/sw/source/core/text/porfld.cxx --- libreoffice-5.1.1~rc2/sw/source/core/text/porfld.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/sw/source/core/text/porfld.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -20,7 +20,7 @@ #include #include -#include +#include #include #include #include diff -Nru libreoffice-5.1.1~rc2/sw/source/core/tox/ToxWhitespaceStripper.cxx libreoffice-5.1.2~rc2/sw/source/core/tox/ToxWhitespaceStripper.cxx --- libreoffice-5.1.1~rc2/sw/source/core/tox/ToxWhitespaceStripper.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/sw/source/core/tox/ToxWhitespaceStripper.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -24,7 +24,7 @@ for (sal_Int32 pos = 0; pos < inputString.getLength(); ++pos) { sal_Unicode cur = inputString[pos]; - if (cur == ' ' || cur == '\n') { + if (cur == ' ' || cur == '\n' || cur == '\t') { // merge consecutive whitespaces (and translate them to spaces) if (!lastCharacterWasWhitespace) { buffer.append(' '); diff -Nru libreoffice-5.1.1~rc2/sw/source/core/view/pagepreviewlayout.cxx libreoffice-5.1.2~rc2/sw/source/core/view/pagepreviewlayout.cxx --- libreoffice-5.1.1~rc2/sw/source/core/view/pagepreviewlayout.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/sw/source/core/view/pagepreviewlayout.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -1092,7 +1092,9 @@ Rectangle aPxPaintRect = pOutputDev->LogicToPixel( aPageRect ); if ( aPxOutRect.IsOver( aPxPaintRect) ) { - if ( (*aPageIter)->pPage->IsEmptyPage() ) + const SwPageFrame* pPage = (*aPageIter)->pPage; + + if (pPage->IsEmptyPage()) { const Color aRetouche( mrParentViewShell.Imp()->GetRetoucheColor() ); if( pOutputDev->GetFillColor() != aRetouche ) @@ -1120,16 +1122,20 @@ } else { + const bool bIsLeftShadowed = pPage->IsLeftShadowNeeded(); + const bool bIsRightShadowed = pPage->IsRightShadowNeeded(); + mrParentViewShell.maVisArea = aPageRect; aPxPaintRect.Intersection( aPxOutRect ); Rectangle aPaintRect = pOutputDev->PixelToLogic( aPxPaintRect ); mrParentViewShell.Paint(rRenderContext, aPaintRect); + // --> OD 2007-08-15 #i80691# // paint page border and shadow { SwRect aPageBorderRect; SwPageFrame::GetBorderAndShadowBoundRect( SwRect( aPageRect ), &mrParentViewShell, &rRenderContext, aPageBorderRect, - (*aPageIter)->pPage->IsLeftShadowNeeded(), (*aPageIter)->pPage->IsRightShadowNeeded(), true ); + bIsLeftShadowed, bIsRightShadowed, true ); const vcl::Region aDLRegion(aPageBorderRect.SVRect()); mrParentViewShell.DLPrePaint2(aDLRegion); SwPageFrame::PaintBorderAndShadow( aPageRect, &mrParentViewShell, true, false, true ); @@ -1144,11 +1150,10 @@ break; } - if ( (*aPageIter)->pPage->GetPhyPageNum() == mnSelectedPageNum ) + if (pPage->GetPhyPageNum() == mnSelectedPageNum) { _PaintSelectMarkAtPage(rRenderContext, *aPageIter); } - } } diff -Nru libreoffice-5.1.1~rc2/sw/source/filter/basflt/fltshell.cxx libreoffice-5.1.2~rc2/sw/source/filter/basflt/fltshell.cxx --- libreoffice-5.1.1~rc2/sw/source/filter/basflt/fltshell.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/sw/source/filter/basflt/fltshell.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -22,7 +22,7 @@ #include #include -#include +#include #include #include #include diff -Nru libreoffice-5.1.1~rc2/sw/source/filter/ww8/docxattributeoutput.cxx libreoffice-5.1.2~rc2/sw/source/filter/ww8/docxattributeoutput.cxx --- libreoffice-5.1.1~rc2/sw/source/filter/ww8/docxattributeoutput.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/sw/source/filter/ww8/docxattributeoutput.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -5152,24 +5152,17 @@ if (nWwId == ww::stiUser) return true; + // Allow exported built-in styles UI language neutral + if ( nWwId == ww::stiNormal || + ( nWwId>= ww::stiLev1 && nWwId <= ww::stiLev9 ) || + nWwId == ww::stiCaption || nWwId == ww::stiTitle || + nWwId == ww::stiSubtitle || nWwId == ww::stiStrong || + nWwId == ww::stiEmphasis ) + return true; + static std::set aWhitelist; if (aWhitelist.empty()) { - aWhitelist.insert("Normal"); - aWhitelist.insert("Heading 1"); - aWhitelist.insert("Heading 2"); - aWhitelist.insert("Heading 3"); - aWhitelist.insert("Heading 4"); - aWhitelist.insert("Heading 5"); - aWhitelist.insert("Heading 6"); - aWhitelist.insert("Heading 7"); - aWhitelist.insert("Heading 8"); - aWhitelist.insert("Heading 9"); - aWhitelist.insert("Caption"); - aWhitelist.insert("Title"); - aWhitelist.insert("Subtitle"); - aWhitelist.insert("Strong"); - aWhitelist.insert("Emphasis"); aWhitelist.insert("No Spacing"); aWhitelist.insert("List Paragraph"); aWhitelist.insert("Quote"); @@ -5228,10 +5221,16 @@ SAL_WARN("sw.ww8", "Unhandled style property: " << rGrabBag[i].Name); } + // MSO exports English names and writerfilter only recognize them. + const sal_Char *pEnglishName = nullptr; const char* pType = nullptr; switch (eType) { - case STYLE_TYPE_PARA: pType = "paragraph"; break; + case STYLE_TYPE_PARA: + pType = "paragraph"; + if ( nWwId < ww::stiMax) + pEnglishName = ww::GetEnglishNameFromSti( static_cast(nWwId ) ); + break; case STYLE_TYPE_CHAR: pType = "character"; break; case STYLE_TYPE_LIST: pType = "numbering"; break; } @@ -5243,9 +5242,8 @@ pStyleAttributeList->add(FSNS(XML_w, XML_customStyle), "1"); XFastAttributeListRef xStyleAttributeList(pStyleAttributeList); m_pSerializer->startElementNS( XML_w, XML_style, xStyleAttributeList); - m_pSerializer->singleElementNS( XML_w, XML_name, - FSNS( XML_w, XML_val ), OUStringToOString( OUString( rName ), RTL_TEXTENCODING_UTF8 ).getStr(), + FSNS( XML_w, XML_val ), pEnglishName ? pEnglishName : OUStringToOString( rName, RTL_TEXTENCODING_UTF8 ).getStr(), FSEND ); if ( nBase != 0x0FFF && eType != STYLE_TYPE_LIST) @@ -5933,6 +5931,8 @@ void DocxAttributeOutput::StartAbstractNumbering( sal_uInt16 nId ) { + const SwNumRule* pRule = (*m_rExport.m_pUsedNumTable)[nId - 1]; + m_bExportingOutline = pRule && pRule->IsOutlineRule(); m_pSerializer->startElementNS( XML_w, XML_abstractNum, FSNS( XML_w, XML_abstractNumId ), OString::number( nId ).getStr(), FSEND ); @@ -5971,6 +5971,14 @@ FSEND ); } + if (m_bExportingOutline) + { + sal_uInt16 nId = m_rExport.m_pStyles->GetHeadingParagraphStyleId( nLevel ); + if ( nId != SAL_MAX_UINT16 ) + m_pSerializer->singleElementNS( XML_w, XML_pStyle , + FSNS( XML_w, XML_val ), m_rExport.m_pStyles->GetStyleId(nId).getStr(), + FSEND ); + } // format OString aFormat( impl_LevelNFC( nNumberingType ,pOutSet) ); @@ -8412,6 +8420,7 @@ m_startedHyperlink( false ), m_nHyperLinkCount(0), m_nFieldsInHyperlink( 0 ), + m_bExportingOutline(false), m_nChartCount(0), m_postponedChart( nullptr ), pendingPlaceholder( nullptr ), diff -Nru libreoffice-5.1.1~rc2/sw/source/filter/ww8/docxattributeoutput.hxx libreoffice-5.1.2~rc2/sw/source/filter/ww8/docxattributeoutput.hxx --- libreoffice-5.1.1~rc2/sw/source/filter/ww8/docxattributeoutput.hxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/sw/source/filter/ww8/docxattributeoutput.hxx 2016-03-29 15:41:04.000000000 +0000 @@ -821,6 +821,9 @@ sal_Int32 m_nHyperLinkCount; sal_Int16 m_nFieldsInHyperlink; + // If the exported numbering rule defines the outlines + bool m_bExportingOutline; + struct PostponedGraphic { PostponedGraphic( const SwGrfNode* n, Size s, const SwFlyFrameFormat* pOLEFrameFormat, SwOLENode* pOLENode, const SdrObject* sObj ) diff -Nru libreoffice-5.1.1~rc2/sw/source/filter/ww8/rtfexport.cxx libreoffice-5.1.2~rc2/sw/source/filter/ww8/rtfexport.cxx --- libreoffice-5.1.1~rc2/sw/source/filter/ww8/rtfexport.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/sw/source/filter/ww8/rtfexport.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -443,6 +443,21 @@ if (xDocProps.is()) { + // Handle user-defined properties. + uno::Reference xUserDefinedProperties = xDocProps->getUserDefinedProperties(); + if (xUserDefinedProperties.is()) + { + uno::Reference xPropertySet(xUserDefinedProperties, uno::UNO_QUERY); + uno::Reference xPropertySetInfo = xPropertySet->getPropertySetInfo(); + // Do we have explicit markup in RTF for this property name? + if (xPropertySetInfo->hasPropertyByName("Company")) + { + OUString aValue; + xPropertySet->getPropertyValue("Company") >>= aValue; + OutUnicode(OOO_STRING_SVTOOLS_RTF_IGNORE OOO_STRING_SVTOOLS_RTF_COMPANY, aValue); + } + } + OutUnicode(OOO_STRING_SVTOOLS_RTF_TITLE, xDocProps->getTitle(), true); OutUnicode(OOO_STRING_SVTOOLS_RTF_SUBJECT, xDocProps->getSubject()); diff -Nru libreoffice-5.1.1~rc2/sw/source/filter/ww8/wrtw8nds.cxx libreoffice-5.1.2~rc2/sw/source/filter/ww8/wrtw8nds.cxx --- libreoffice-5.1.1~rc2/sw/source/filter/ww8/wrtw8nds.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/sw/source/filter/ww8/wrtw8nds.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -2330,7 +2330,7 @@ WriteCR( pTextNodeInfoInner ); - if ( bIsEndOfCell ) + if ( (0 != nEnd) && bIsEndOfCell ) { AttrOutput().OutputFKP(true); } diff -Nru libreoffice-5.1.1~rc2/sw/source/filter/ww8/wrtw8sty.cxx libreoffice-5.1.2~rc2/sw/source/filter/ww8/wrtw8sty.cxx --- libreoffice-5.1.1~rc2/sw/source/filter/ww8/wrtw8sty.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/sw/source/filter/ww8/wrtw8sty.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -154,6 +154,7 @@ // somewhat generous ( free for up to 15 ) m_pFormatA = new SwFormat*[ nAlloc ]; memset( m_pFormatA, 0, nAlloc * sizeof( SwFormat* ) ); + memset( m_aHeadingParagraphStyles, -1 , MAXLEVEL * sizeof( sal_uInt16)); BuildStylesTable(); BuildStyleIds(); @@ -289,7 +290,14 @@ for( size_t n = 1; n < rArr2.size(); n++ ) { SwTextFormatColl* pFormat = rArr2[n]; - m_pFormatA[ BuildGetSlot( *pFormat ) ] = pFormat; + sal_uInt16 nId ; + m_pFormatA[ nId = BuildGetSlot( *pFormat ) ] = pFormat; + if ( pFormat->IsAssignedToListLevelOfOutlineStyle() ) + { + int nLvl = pFormat->GetAssignedOutlineStyleLevel() ; + if (nLvl >= 0 && nLvl < MAXLEVEL) + m_aHeadingParagraphStyles[nLvl] = nId ; + } } if (!m_bListStyles) diff -Nru libreoffice-5.1.1~rc2/sw/source/filter/ww8/wrtww8.hxx libreoffice-5.1.2~rc2/sw/source/filter/ww8/wrtww8.hxx --- libreoffice-5.1.1~rc2/sw/source/filter/ww8/wrtww8.hxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/sw/source/filter/ww8/wrtww8.hxx 2016-03-29 15:41:04.000000000 +0000 @@ -36,7 +36,7 @@ #include "../inc/msfilter.hxx" #include -#include +#include #include @@ -1510,6 +1510,7 @@ class MSWordStyles { MSWordExportBase& m_rExport; + sal_uInt16 m_aHeadingParagraphStyles[MAXLEVEL]; SwFormat** m_pFormatA; ///< Slot <-> Character and paragraph style array (0 for list styles). sal_uInt16 m_nUsedSlots; bool m_bListStyles; ///< If list styles are requested to be exported as well. @@ -1561,6 +1562,7 @@ const SwFormat* GetSwFormat(sal_uInt16 nId) const { return m_pFormatA[nId]; } /// Get numbering rule of the nId-th style const SwNumRule* GetSwNumRule(sal_uInt16 nId) const; + sal_uInt16 GetHeadingParagraphStyleId(sal_uInt16 nLevel) const { return m_aHeadingParagraphStyles[ nLevel ]; } }; #define MSWORD_MAX_STYLES_LIMIT 4091 diff -Nru libreoffice-5.1.1~rc2/sw/source/filter/ww8/ww8graf.cxx libreoffice-5.1.2~rc2/sw/source/filter/ww8/ww8graf.cxx --- libreoffice-5.1.1~rc2/sw/source/filter/ww8/ww8graf.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/sw/source/filter/ww8/ww8graf.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -2095,6 +2095,24 @@ pGrfNd->SetAttr( aCrop ); } + bool bFlipH = pRecord->nFlags & SHAPEFLAG_FLIPH; + bool bFlipV = pRecord->nFlags & SHAPEFLAG_FLIPV; + if ( bFlipH || bFlipV ) + { + SwMirrorGrf aMirror = pGrfNd->GetSwAttrSet().GetMirrorGrf(); + if( bFlipH ) + { + if( bFlipV ) + aMirror.SetValue(RES_MIRROR_GRAPH_BOTH); + else + aMirror.SetValue(RES_MIRROR_GRAPH_VERT); + } + else + aMirror.SetValue(RES_MIRROR_GRAPH_HOR); + + pGrfNd->SetAttr( aMirror ); + } + if (pRecord->pObj) { const SfxItemSet& rOldSet = pRecord->pObj->GetMergedItemSet(); diff -Nru libreoffice-5.1.1~rc2/sw/source/filter/ww8/ww8toolbar.cxx libreoffice-5.1.2~rc2/sw/source/filter/ww8/ww8toolbar.cxx --- libreoffice-5.1.1~rc2/sw/source/filter/ww8/ww8toolbar.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/sw/source/filter/ww8/ww8toolbar.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -23,7 +23,7 @@ #include #include #include -#include +#include #include #include diff -Nru libreoffice-5.1.1~rc2/sw/source/ui/dbui/dbui.src libreoffice-5.1.2~rc2/sw/source/ui/dbui/dbui.src --- libreoffice-5.1.1~rc2/sw/source/ui/dbui/dbui.src 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/sw/source/ui/dbui/dbui.src 2016-03-29 15:41:04.000000000 +0000 @@ -78,11 +78,11 @@ }; String STR_FILTER_MDB { - Text [ en-US ] = "Microsoft Access (*.mdb)" ; + Text [ en-US ] = "Microsoft Access (*.mdb;*.mde)" ; }; String STR_FILTER_ACCDB { - Text [ en-US ] = "Microsoft Access 2007 (*.accdb)" ; + Text [ en-US ] = "Microsoft Access 2007 (*.accdb,*.accde)" ; }; String ST_SAVESTART diff -Nru libreoffice-5.1.1~rc2/sw/source/ui/frmdlg/wrap.cxx libreoffice-5.1.2~rc2/sw/source/ui/frmdlg/wrap.cxx --- libreoffice-5.1.1~rc2/sw/source/ui/frmdlg/wrap.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/sw/source/ui/frmdlg/wrap.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -18,7 +18,7 @@ */ #include "hintids.hxx" -#include +#include #include #include diff -Nru libreoffice-5.1.1~rc2/sw/source/uibase/app/swmodule.cxx libreoffice-5.1.2~rc2/sw/source/uibase/app/swmodule.cxx --- libreoffice-5.1.1~rc2/sw/source/uibase/app/swmodule.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/sw/source/uibase/app/swmodule.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -22,7 +22,7 @@ #include #include #include -#include +#include #include #include #include diff -Nru libreoffice-5.1.1~rc2/sw/source/uibase/dbui/dbmgr.cxx libreoffice-5.1.2~rc2/sw/source/uibase/dbui/dbmgr.cxx --- libreoffice-5.1.1~rc2/sw/source/uibase/dbui/dbmgr.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/sw/source/uibase/dbui/dbmgr.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -2506,8 +2506,8 @@ xFltMgr->appendFilter( sFilterTXT, "*.txt" ); xFltMgr->appendFilter( sFilterCSV, "*.csv" ); #ifdef WNT - xFltMgr->appendFilter( sFilterMDB, "*.mdb" ); - xFltMgr->appendFilter( sFilterACCDB, "*.accdb" ); + xFltMgr->appendFilter( sFilterMDB, "*.mdb;*.mde" ); + xFltMgr->appendFilter( sFilterACCDB, "*.accdb;*.accde" ); #endif xFltMgr->setCurrentFilter( sFilterAll ) ; @@ -2570,14 +2570,14 @@ type = DBCONN_FLAT; } #ifdef WNT - else if(sExt.equalsIgnoreAsciiCase("mdb")) + else if (sExt.equalsIgnoreAsciiCase("mdb") || sExt.equalsIgnoreAsciiCase("mde")) { OUString sDBURL("sdbc:ado:access:PROVIDER=Microsoft.Jet.OLEDB.4.0;DATA SOURCE="); sDBURL += aURL.PathToFileName(); aURLAny <<= sDBURL; type = DBCONN_MSJET; } - else if(sExt.equalsIgnoreAsciiCase("accdb")) + else if (sExt.equalsIgnoreAsciiCase("accdb") || sExt.equalsIgnoreAsciiCase("accde")) { OUString sDBURL("sdbc:ado:PROVIDER=Microsoft.ACE.OLEDB.12.0;DATA SOURCE="); sDBURL += aURL.PathToFileName(); diff -Nru libreoffice-5.1.1~rc2/sw/source/uibase/dochdl/swdtflvr.cxx libreoffice-5.1.2~rc2/sw/source/uibase/dochdl/swdtflvr.cxx --- libreoffice-5.1.1~rc2/sw/source/uibase/dochdl/swdtflvr.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/sw/source/uibase/dochdl/swdtflvr.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -47,7 +47,7 @@ #include #include #include -#include +#include #include #include #include diff -Nru libreoffice-5.1.1~rc2/sw/source/uibase/docvw/edtwin.cxx libreoffice-5.1.2~rc2/sw/source/uibase/docvw/edtwin.cxx --- libreoffice-5.1.1~rc2/sw/source/uibase/docvw/edtwin.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/sw/source/uibase/docvw/edtwin.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -31,7 +31,7 @@ #include #include -#include +#include #include #include #include diff -Nru libreoffice-5.1.1~rc2/sw/source/uibase/docvw/romenu.hxx libreoffice-5.1.2~rc2/sw/source/uibase/docvw/romenu.hxx --- libreoffice-5.1.1~rc2/sw/source/uibase/docvw/romenu.hxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/sw/source/uibase/docvw/romenu.hxx 2016-03-29 15:41:04.000000000 +0000 @@ -20,7 +20,7 @@ #define INCLUDED_SW_SOURCE_UIBASE_DOCVW_ROMENU_HXX #include -#include +#include #include #include diff -Nru libreoffice-5.1.1~rc2/sw/source/uibase/frmdlg/colex.cxx libreoffice-5.1.2~rc2/sw/source/uibase/frmdlg/colex.cxx --- libreoffice-5.1.1~rc2/sw/source/uibase/frmdlg/colex.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/sw/source/uibase/frmdlg/colex.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -30,7 +30,7 @@ #include #include #include -#include +#include #include #include #include diff -Nru libreoffice-5.1.1~rc2/sw/source/uibase/inc/bmpwin.hxx libreoffice-5.1.2~rc2/sw/source/uibase/inc/bmpwin.hxx --- libreoffice-5.1.1~rc2/sw/source/uibase/inc/bmpwin.hxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/sw/source/uibase/inc/bmpwin.hxx 2016-03-29 15:41:04.000000000 +0000 @@ -20,7 +20,7 @@ #ifndef INCLUDED_SW_SOURCE_UIBASE_INC_BMPWIN_HXX #define INCLUDED_SW_SOURCE_UIBASE_INC_BMPWIN_HXX -#include +#include #include #include diff -Nru libreoffice-5.1.1~rc2/sw/source/uibase/inc/swdtflvr.hxx libreoffice-5.1.2~rc2/sw/source/uibase/inc/swdtflvr.hxx --- libreoffice-5.1.1~rc2/sw/source/uibase/inc/swdtflvr.hxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/sw/source/uibase/inc/swdtflvr.hxx 2016-03-29 15:41:04.000000000 +0000 @@ -22,7 +22,7 @@ #include #include -#include +#include #include #include diff -Nru libreoffice-5.1.1~rc2/sw/source/uibase/shells/basesh.cxx libreoffice-5.1.2~rc2/sw/source/uibase/shells/basesh.cxx --- libreoffice-5.1.1~rc2/sw/source/uibase/shells/basesh.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/sw/source/uibase/shells/basesh.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -37,7 +37,7 @@ #include #include #include -#include +#include #include #include #include diff -Nru libreoffice-5.1.1~rc2/sw/source/uibase/shells/grfsh.cxx libreoffice-5.1.2~rc2/sw/source/uibase/shells/grfsh.cxx --- libreoffice-5.1.1~rc2/sw/source/uibase/shells/grfsh.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/sw/source/uibase/shells/grfsh.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -151,8 +151,9 @@ convertTwipToMm100(rSh.GetAnyCurRect(RECT_FLY_EMBEDDED).Width()), convertTwipToMm100(rSh.GetAnyCurRect(RECT_FLY_EMBEDDED).Height())); - SfxItemSet aSet( rSh.GetAttrPool(), RES_GRFATR_CROPGRF, RES_GRFATR_CROPGRF ); + SfxItemSet aSet( rSh.GetAttrPool(), RES_GRFATR_MIRRORGRF, RES_GRFATR_CROPGRF ); rSh.GetCurAttr( aSet ); + SwMirrorGrf aMirror( static_cast( aSet.Get(RES_GRFATR_MIRRORGRF)) ); SwCropGrf aCrop( static_cast( aSet.Get(RES_GRFATR_CROPGRF)) ); Rectangle aCropRectangle( @@ -179,6 +180,7 @@ rSh.ReRead(OUString(), OUString(), const_cast(&aCompressedGraphic)); rSh.SetAttrItem(aCrop); + rSh.SetAttrItem(aMirror); rSh.EndUndo(UNDO_END); rSh.EndAllAction(); @@ -353,7 +355,7 @@ if (nSlot == FN_DRAW_WRAP_DLG) pDlg->SetCurPageId("wrap"); - if( pDlg->Execute() ) + if (pDlg->Execute() == RET_OK) { rSh.StartAllAction(); rSh.StartUndo(UNDO_START); diff -Nru libreoffice-5.1.1~rc2/sw/source/uibase/uiview/view0.cxx libreoffice-5.1.2~rc2/sw/source/uibase/uiview/view0.cxx --- libreoffice-5.1.1~rc2/sw/source/uibase/uiview/view0.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/sw/source/uibase/uiview/view0.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -20,7 +20,7 @@ #include #include "hintids.hxx" -#include +#include #include #include #include diff -Nru libreoffice-5.1.1~rc2/sw/source/uibase/uiview/view.cxx libreoffice-5.1.2~rc2/sw/source/uibase/uiview/view.cxx --- libreoffice-5.1.1~rc2/sw/source/uibase/uiview/view.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/sw/source/uibase/uiview/view.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -24,7 +24,7 @@ #include #include #include -#include +#include #include #include #include diff -Nru libreoffice-5.1.1~rc2/sw/source/uibase/wrtsh/wrtsh1.cxx libreoffice-5.1.2~rc2/sw/source/uibase/wrtsh/wrtsh1.cxx --- libreoffice-5.1.1~rc2/sw/source/uibase/wrtsh/wrtsh1.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/sw/source/uibase/wrtsh/wrtsh1.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -46,7 +46,7 @@ #include #include #include -#include +#include #include #include #include diff -Nru libreoffice-5.1.1~rc2/test/source/mtfxmldump.cxx libreoffice-5.1.2~rc2/test/source/mtfxmldump.cxx --- libreoffice-5.1.1~rc2/test/source/mtfxmldump.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/test/source/mtfxmldump.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -124,6 +124,29 @@ return OUString(); } +OUString convertLineJoinToString(basegfx::B2DLineJoin eJoin) +{ + switch (eJoin) + { + default: + case basegfx::B2DLineJoin::NONE: return OUString("none"); + case basegfx::B2DLineJoin::Bevel: return OUString("bevel"); + case basegfx::B2DLineJoin::Miter: return OUString("miter"); + case basegfx::B2DLineJoin::Round: return OUString("round"); + } +} + +OUString convertLineCapToString(css::drawing::LineCap eCap) +{ + switch (eCap) + { + default: + case css::drawing::LineCap_BUTT: return OUString("butt"); + case css::drawing::LineCap_ROUND: return OUString("round"); + case css::drawing::LineCap_SQUARE: return OUString("square"); + } +} + OUString convertFontWeigthToString(FontWeight eFontWeight) { enum FontWeight { WEIGHT_DONTKNOW, WEIGHT_THIN, WEIGHT_ULTRALIGHT, @@ -282,9 +305,12 @@ rWriter.attribute("style", convertLineStyleToString(aLineInfo.GetStyle())); rWriter.attribute("width", aLineInfo.GetWidth()); rWriter.attribute("dashlen", aLineInfo.GetDashLen()); + rWriter.attribute("dashcount", aLineInfo.GetDashCount()); rWriter.attribute("dotlen", aLineInfo.GetDotLen()); + rWriter.attribute("dotcount", aLineInfo.GetDotCount()); rWriter.attribute("distance", aLineInfo.GetDistance()); - + rWriter.attribute("join", convertLineJoinToString(aLineInfo.GetLineJoin())); + rWriter.attribute("cap", convertLineCapToString(aLineInfo.GetLineCap())); rWriter.endElement(); } break; diff -Nru libreoffice-5.1.1~rc2/toolkit/source/controls/controlmodelcontainerbase.cxx libreoffice-5.1.2~rc2/toolkit/source/controls/controlmodelcontainerbase.cxx --- libreoffice-5.1.1~rc2/toolkit/source/controls/controlmodelcontainerbase.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/toolkit/source/controls/controlmodelcontainerbase.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -46,7 +46,7 @@ #include #include -#include +#include #include #include "tree/treecontrol.hxx" diff -Nru libreoffice-5.1.1~rc2/toolkit/source/controls/dialogcontrol.cxx libreoffice-5.1.2~rc2/toolkit/source/controls/dialogcontrol.cxx --- libreoffice-5.1.1~rc2/toolkit/source/controls/dialogcontrol.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/toolkit/source/controls/dialogcontrol.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -41,7 +41,7 @@ #include #include -#include +#include #include #include #include diff -Nru libreoffice-5.1.1~rc2/toolkit/source/controls/tabpagemodel.cxx libreoffice-5.1.2~rc2/toolkit/source/controls/tabpagemodel.cxx --- libreoffice-5.1.1~rc2/toolkit/source/controls/tabpagemodel.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/toolkit/source/controls/tabpagemodel.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -37,7 +37,7 @@ #include #include -#include +#include #include #include #include diff -Nru libreoffice-5.1.1~rc2/toolkit/source/helper/formpdfexport.cxx libreoffice-5.1.2~rc2/toolkit/source/helper/formpdfexport.cxx --- libreoffice-5.1.1~rc2/toolkit/source/helper/formpdfexport.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/toolkit/source/helper/formpdfexport.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -39,6 +39,7 @@ #include #include +#include namespace toolkitform diff -Nru libreoffice-5.1.1~rc2/toolkit/source/helper/vclunohelper.cxx libreoffice-5.1.2~rc2/toolkit/source/helper/vclunohelper.cxx --- libreoffice-5.1.1~rc2/toolkit/source/helper/vclunohelper.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/toolkit/source/helper/vclunohelper.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -46,7 +46,7 @@ #include #include #include -#include +#include #include #include diff -Nru libreoffice-5.1.1~rc2/tools/source/inet/inetmsg.cxx libreoffice-5.1.2~rc2/tools/source/inet/inetmsg.cxx --- libreoffice-5.1.1~rc2/tools/source/inet/inetmsg.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/tools/source/inet/inetmsg.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -204,6 +204,11 @@ (rDateTime.GetHour() > 23) )); } +#ifdef _MSC_VER +#pragma warning(push) +#pragma warning( disable : 4592) +#endif + static const std::map ImplINetMIMEMessageHeaderData = { { InetMessageMime::VERSION, "MIME-Version"}, @@ -212,6 +217,10 @@ { InetMessageMime::CONTENT_TRANSFER_ENCODING, "Content-Transfer-Encoding"} }; +#ifdef _MSC_VER +#pragma warning(pop) +#endif + INetMIMEMessage::INetMIMEMessage() : pParent(nullptr) { diff -Nru libreoffice-5.1.1~rc2/translations/source/af/accessibility/source/helper.po libreoffice-5.1.2~rc2/translations/source/af/accessibility/source/helper.po --- libreoffice-5.1.1~rc2/translations/source/af/accessibility/source/helper.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/af/accessibility/source/helper.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,18 +3,18 @@ msgstr "" "Project-Id-Version: PACKAGE 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 \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 \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 @@ "STR_SVT_ACC_ACTION_EXPAND\n" "string.text" msgid "Expand" -msgstr "" +msgstr "Vou uit" #: accessiblestrings.src msgctxt "" @@ -38,7 +38,7 @@ "STR_SVT_ACC_ACTION_COLLAPSE\n" "string.text" msgid "Collapse" -msgstr "" +msgstr "Vou in" #: accessiblestrings.src msgctxt "" @@ -54,7 +54,7 @@ "RID_STR_ACC_NAME_PREVIEW\n" "string.text" msgid "Preview" -msgstr "" +msgstr "Voorskou" #: accessiblestrings.src msgctxt "" @@ -62,7 +62,7 @@ "RID_STR_ACC_ACTION_CHECK\n" "string.text" msgid "Check" -msgstr "" +msgstr "Merk" #: accessiblestrings.src msgctxt "" @@ -78,7 +78,7 @@ "RID_STR_ACC_ACTION_DOUBLE_CLICK\n" "string.text" msgid "Double click" -msgstr "" +msgstr "Dubbelkliek" #: accessiblestrings.src msgctxt "" @@ -86,7 +86,7 @@ "RID_STR_ACC_SCROLLBAR_NAME_VERTICAL\n" "string.text" msgid "Vertical scroll bar" -msgstr "" +msgstr "Vertikale rolstaaf" #: accessiblestrings.src msgctxt "" @@ -94,7 +94,7 @@ "RID_STR_ACC_SCROLLBAR_NAME_HORIZONTAL\n" "string.text" msgid "Horizontal scroll bar" -msgstr "" +msgstr "Horisontale rolstaaf" #: accessiblestrings.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/af/chart2/source/controller/dialogs.po libreoffice-5.1.2~rc2/translations/source/af/chart2/source/controller/dialogs.po --- libreoffice-5.1.1~rc2/translations/source/af/chart2/source/controller/dialogs.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/af/chart2/source/controller/dialogs.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,18 +3,18 @@ msgstr "" "Project-Id-Version: PACKAGE 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:01+0200\n" -"PO-Revision-Date: 2012-11-13 20:14+0000\n" -"Last-Translator: dwayne \n" +"POT-Creation-Date: 2015-04-22 23:40+0200\n" +"PO-Revision-Date: 2016-02-25 12:38+0000\n" +"Last-Translator: Noel Grandin \n" "Language-Team: LANGUAGE \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: 1456403897.000000\n" #: Strings.src msgctxt "" @@ -812,13 +812,12 @@ msgstr "Hierdie funksie kan nie met die betrokke objekte voltooi word nie." #: Strings.src -#, fuzzy msgctxt "" "Strings.src\n" "STR_ACTION_EDIT_TEXT\n" "string.text" msgid "Edit text" -msgstr "Redigeer teks van %1" +msgstr "Redigeer teks" #: Strings.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/af/connectivity/source/resource.po libreoffice-5.1.2~rc2/translations/source/af/connectivity/source/resource.po --- libreoffice-5.1.1~rc2/translations/source/af/connectivity/source/resource.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/af/connectivity/source/resource.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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 \n" "Language: af\n" @@ -14,7 +14,7 @@ "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 @@ "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 @@ "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 -Nru libreoffice-5.1.1~rc2/translations/source/af/cui/source/dialogs.po libreoffice-5.1.2~rc2/translations/source/af/cui/source/dialogs.po --- libreoffice-5.1.1~rc2/translations/source/af/cui/source/dialogs.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/af/cui/source/dialogs.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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 \n" "Language: af\n" @@ -14,7 +14,7 @@ "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 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/af/cui/source/options.po libreoffice-5.1.2~rc2/translations/source/af/cui/source/options.po --- libreoffice-5.1.1~rc2/translations/source/af/cui/source/options.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/af/cui/source/options.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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:39+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2016-02-25 12:38+0000\n" +"Last-Translator: Noel Grandin \n" "Language-Team: LANGUAGE \n" "Language: af\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1431373145.000000\n" +"X-POOTLE-MTIME: 1456403936.000000\n" #: connpooloptions.src msgctxt "" @@ -1011,7 +1011,7 @@ "Basic Fonts (CTL)\n" "itemlist.text" msgid "Basic Fonts (CTL)" -msgstr "Basiese lettertipes (%1)" +msgstr "Basiese lettertipes (CTL)" #: treeopt.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/af/cui/source/tabpages.po libreoffice-5.1.2~rc2/translations/source/af/cui/source/tabpages.po --- libreoffice-5.1.1~rc2/translations/source/af/cui/source/tabpages.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/af/cui/source/tabpages.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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:58+0000\n" +"PO-Revision-Date: 2016-03-07 14:26+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE \n" "Language: af\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1435269492.000000\n" +"X-POOTLE-MTIME: 1457360788.000000\n" #: border.src msgctxt "" @@ -220,7 +220,7 @@ "A6\n" "itemlist.text" msgid "A6" -msgstr "A" +msgstr "A6" #: page.src msgctxt "" @@ -427,7 +427,7 @@ "#6¾ Envelope\n" "itemlist.text" msgid "#6¾ Envelope" -msgstr "C6-koevert" +msgstr "#6¾-Koevert" #: page.src msgctxt "" @@ -436,7 +436,7 @@ "#7¾ (Monarch) Envelope\n" "itemlist.text" msgid "#7¾ (Monarch) Envelope" -msgstr "#8-koevert (Monarch)" +msgstr "#7¾-koevert (Monarch)" #: page.src msgctxt "" @@ -490,7 +490,7 @@ "A6\n" "itemlist.text" msgid "A6" -msgstr "A" +msgstr "A6" #: page.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/af/cui/uiconfig/ui.po libreoffice-5.1.2~rc2/translations/source/af/cui/uiconfig/ui.po --- libreoffice-5.1.1~rc2/translations/source/af/cui/uiconfig/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/af/cui/uiconfig/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 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 @@ "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 @@ 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 @@ 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 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/af/dbaccess/source/core/resource.po libreoffice-5.1.2~rc2/translations/source/af/dbaccess/source/core/resource.po --- libreoffice-5.1.1~rc2/translations/source/af/dbaccess/source/core/resource.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/af/dbaccess/source/core/resource.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,17 +4,17 @@ "Project-Id-Version: PACKAGE VERSION\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: 2012-11-13 20:14+0000\n" -"Last-Translator: dwayne \n" +"PO-Revision-Date: 2016-03-07 14:32+0000\n" +"Last-Translator: system user <>\n" "Language-Team: LANGUAGE \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: 1457361124.000000\n" #: strings.src msgctxt "" @@ -423,13 +423,12 @@ msgstr "" #: strings.src -#, fuzzy msgctxt "" "strings.src\n" "RID_STR_NO_SUB_FOLDER\n" "string.text" msgid "There exists no folder named \"$folder$\"." -msgstr "Daar is geen tabel genaamd \"$table$\" nie." +msgstr "Daar is geen tabel genaamd \"$folder$\" nie." #: strings.src msgctxt "" @@ -497,13 +496,12 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/af/dbaccess/source/ext/macromigration.po libreoffice-5.1.2~rc2/translations/source/af/dbaccess/source/ext/macromigration.po --- libreoffice-5.1.1~rc2/translations/source/af/dbaccess/source/ext/macromigration.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/af/dbaccess/source/ext/macromigration.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 \n" "Language: af\n" @@ -14,7 +14,7 @@ "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 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/af/dbaccess/uiconfig/ui.po libreoffice-5.1.2~rc2/translations/source/af/dbaccess/uiconfig/ui.po --- libreoffice-5.1.1~rc2/translations/source/af/dbaccess/uiconfig/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/af/dbaccess/uiconfig/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,17 +4,17 @@ "Project-Id-Version: LibO 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 \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 @@ 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 @@ msgstr "" #: queryfilterdialog.ui +#, fuzzy msgctxt "" "queryfilterdialog.ui\n" "cond1\n" "4\n" "stringlist.text" msgid ">" -msgstr "" +msgstr ">" #: queryfilterdialog.ui msgctxt "" @@ -3017,58 +3020,64 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/af/desktop/source/deployment/gui.po libreoffice-5.1.2~rc2/translations/source/af/desktop/source/deployment/gui.po --- libreoffice-5.1.1~rc2/translations/source/af/desktop/source/deployment/gui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/af/desktop/source/deployment/gui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 15:50+0000\n" +"PO-Revision-Date: 2016-03-07 14:34+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE \n" "Language: af\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1440517820.000000\n" +"X-POOTLE-MTIME: 1457361283.000000\n" #: dp_gui_dialog.src msgctxt "" @@ -168,7 +168,6 @@ msgstr "~Wys skyfie" #: dp_gui_dialog.src -#, fuzzy msgctxt "" "dp_gui_dialog.src\n" "RID_STR_WARNING_INSTALL_EXTENSION\n" @@ -178,12 +177,11 @@ "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 @@ "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 @@ "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 @@ "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,17 +234,16 @@ "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 -#, fuzzy msgctxt "" "dp_gui_dialog.src\n" "RID_STR_UNSUPPORTED_PLATFORM\n" "string.text" msgid "The extension '%Name' does not work on this computer." -msgstr "Die uitbreiding \\'%Name\\' werk nie op hierdie rekenaar nie." +msgstr "Die uitbreiding '%Name' werk nie op hierdie rekenaar nie." #: dp_gui_updatedialog.src msgctxt "" @@ -306,7 +300,7 @@ "RID_DLG_UPDATE_NODEPENDENCY\n" "string.text" msgid "Required %PRODUCTNAME version doesn't match:" -msgstr "Vereiste OpenOffice.org-weergawe pas nie:" +msgstr "Vereiste %PRODUCTNAME-weergawe pas nie:" #: dp_gui_updatedialog.src msgctxt "" @@ -314,7 +308,7 @@ "RID_DLG_UPDATE_NODEPENDENCY_CUR_VER\n" "string.text" msgid "You have %PRODUCTNAME %VERSION" -msgstr "%PRODUCTNAME %PRODUCTVERSION" +msgstr "U het %PRODUCTNAME %VERSION" #: dp_gui_updatedialog.src msgctxt "" @@ -362,7 +356,7 @@ "RID_DLG_UPDATE_IGNORED_UPDATE\n" "string.text" msgid "This update will be ignored.\n" -msgstr "Hierdie kenmerk sal volledig verwyder word." +msgstr "Hierdie kenmerk sal volledig verwyder word.\n" #: dp_gui_updateinstalldialog.src msgctxt "" @@ -429,7 +423,6 @@ 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" @@ -440,13 +433,12 @@ "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" @@ -457,13 +449,12 @@ "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" @@ -474,13 +465,12 @@ "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" @@ -491,13 +481,12 @@ "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" @@ -508,13 +497,12 @@ "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" @@ -525,7 +513,7 @@ "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 -Nru libreoffice-5.1.1~rc2/translations/source/af/editeng/source/items.po libreoffice-5.1.2~rc2/translations/source/af/editeng/source/items.po --- libreoffice-5.1.1~rc2/translations/source/af/editeng/source/items.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/af/editeng/source/items.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 \n" "Language: af\n" @@ -14,7 +14,7 @@ "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 @@ 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 @@ 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 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/af/extensions/uiconfig/sabpilot/ui.po libreoffice-5.1.2~rc2/translations/source/af/extensions/uiconfig/sabpilot/ui.po --- libreoffice-5.1.1~rc2/translations/source/af/extensions/uiconfig/sabpilot/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/af/extensions/uiconfig/sabpilot/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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 \n" "Language: af\n" @@ -14,7 +14,7 @@ "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 @@ msgstr "" #: gridfieldsselectionpage.ui +#, fuzzy msgctxt "" "gridfieldsselectionpage.ui\n" "fieldright\n" "label\n" "string.text" msgid "->" -msgstr "" +msgstr "->" #: gridfieldsselectionpage.ui msgctxt "" @@ -299,13 +300,14 @@ msgstr "" #: gridfieldsselectionpage.ui +#, fuzzy msgctxt "" "gridfieldsselectionpage.ui\n" "fieldleft\n" "label\n" "string.text" msgid "<-" -msgstr "" +msgstr "<-" #: gridfieldsselectionpage.ui msgctxt "" @@ -380,22 +382,24 @@ 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 @@ msgstr "" #: tableselectionpage.ui +#, fuzzy msgctxt "" "tableselectionpage.ui\n" "search\n" "label\n" "string.text" msgid "_..." -msgstr "" +msgstr "_..." #: tableselectionpage.ui msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/af/filter/source/config/fragments/filters.po libreoffice-5.1.2~rc2/translations/source/af/filter/source/config/fragments/filters.po --- libreoffice-5.1.1~rc2/translations/source/af/filter/source/config/fragments/filters.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/af/filter/source/config/fragments/filters.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 \n" "Language: af\n" @@ -14,7 +14,7 @@ "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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/af/filter/source/config/fragments/types.po libreoffice-5.1.2~rc2/translations/source/af/filter/source/config/fragments/types.po --- libreoffice-5.1.1~rc2/translations/source/af/filter/source/config/fragments/types.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/af/filter/source/config/fragments/types.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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 \n" "Language: af\n" @@ -14,7 +14,7 @@ "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 @@ 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 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/af/filter/source/xsltdialog.po libreoffice-5.1.2~rc2/translations/source/af/filter/source/xsltdialog.po --- libreoffice-5.1.1~rc2/translations/source/af/filter/source/xsltdialog.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/af/filter/source/xsltdialog.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,18 +3,18 @@ msgstr "" "Project-Id-Version: PACKAGE 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 \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 \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 @@ "STR_XML_FILTER_LISTBOX\n" "string.text" msgid "XML Filter List" -msgstr "XML-filter: %s" +msgstr "XML-filter Leis" diff -Nru libreoffice-5.1.1~rc2/translations/source/af/fpicker/source/office.po libreoffice-5.1.2~rc2/translations/source/af/fpicker/source/office.po --- libreoffice-5.1.1~rc2/translations/source/af/fpicker/source/office.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/af/fpicker/source/office.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 \n" "Language: af\n" @@ -14,7 +14,7 @@ "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 @@ msgstr "Alle lêers" #: iodlg.src -#, fuzzy msgctxt "" "iodlg.src\n" "STR_SVT_ALREADYEXISTOVERWRITE\n" @@ -239,7 +238,8 @@ "\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 -Nru libreoffice-5.1.1~rc2/translations/source/af/librelogo/source/pythonpath.po libreoffice-5.1.2~rc2/translations/source/af/librelogo/source/pythonpath.po --- libreoffice-5.1.1~rc2/translations/source/af/librelogo/source/pythonpath.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/af/librelogo/source/pythonpath.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,18 +3,18 @@ msgstr "" "Project-Id-Version: LibO 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 \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 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/af/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-5.1.2~rc2/translations/source/af/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-5.1.1~rc2/translations/source/af/officecfg/registry/data/org/openoffice/Office/UI.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/af/officecfg/registry/data/org/openoffice/Office/UI.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 \n" "Language: af\n" @@ -14,7 +14,7 @@ "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 @@ 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 @@ 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 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/af/officecfg/registry/data/org/openoffice/Office.po libreoffice-5.1.2~rc2/translations/source/af/officecfg/registry/data/org/openoffice/Office.po --- libreoffice-5.1.1~rc2/translations/source/af/officecfg/registry/data/org/openoffice/Office.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/af/officecfg/registry/data/org/openoffice/Office.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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 \n" "Language: af\n" @@ -14,7 +14,7 @@ "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 @@ msgstr "" #: PresentationMinimizer.xcu +#, fuzzy msgctxt "" "PresentationMinimizer.xcu\n" "..PresentationMinimizer.Strings\n" "STR_FILESIZESEPARATOR\n" "value.text" msgid "." -msgstr "" +msgstr "." #: PresentationMinimizer.xcu msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/af/reportdesign/uiconfig/dbreport/ui.po libreoffice-5.1.2~rc2/translations/source/af/reportdesign/uiconfig/dbreport/ui.po --- libreoffice-5.1.1~rc2/translations/source/af/reportdesign/uiconfig/dbreport/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/af/reportdesign/uiconfig/dbreport/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 \n" "Language: af\n" @@ -14,7 +14,7 @@ "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 @@ msgstr "" #: conditionwin.ui +#, fuzzy msgctxt "" "conditionwin.ui\n" "lhsButton\n" "label\n" "string.text" msgid "..." -msgstr "" +msgstr "..." #: conditionwin.ui msgctxt "" @@ -215,13 +216,14 @@ msgstr "" #: conditionwin.ui +#, fuzzy msgctxt "" "conditionwin.ui\n" "rhsButton\n" "label\n" "string.text" msgid "..." -msgstr "" +msgstr "..." #: conditionwin.ui msgctxt "" @@ -278,13 +280,14 @@ msgstr "" #: conditionwin.ui +#, fuzzy msgctxt "" "conditionwin.ui\n" "removeButton\n" "label\n" "string.text" msgid "-" -msgstr "" +msgstr "-" #: conditionwin.ui msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/af/sc/source/ui/src.po libreoffice-5.1.2~rc2/translations/source/af/sc/source/ui/src.po --- libreoffice-5.1.1~rc2/translations/source/af/sc/source/ui/src.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/af/sc/source/ui/src.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 \n" "Language: af\n" @@ -14,7 +14,7 @@ "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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ #. %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 @@ 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 @@ "%PRODUCTNAME %s\n" "itemlist.text" msgid "%PRODUCTNAME %s" -msgstr "%PRODUCTNAME Calc" +msgstr "%PRODUCTNAME %s" #: scstring.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/af/sc/uiconfig/scalc/ui.po libreoffice-5.1.2~rc2/translations/source/af/sc/uiconfig/scalc/ui.po --- libreoffice-5.1.1~rc2/translations/source/af/sc/uiconfig/scalc/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/af/sc/uiconfig/scalc/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 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 @@ "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 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/af/sd/source/ui/view.po libreoffice-5.1.2~rc2/translations/source/af/sd/source/ui/view.po --- libreoffice-5.1.1~rc2/translations/source/af/sd/source/ui/view.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/af/sd/source/ui/view.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 \n" "Language: af\n" @@ -14,17 +14,16 @@ "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 -Nru libreoffice-5.1.1~rc2/translations/source/af/sd/uiconfig/simpress/ui.po libreoffice-5.1.2~rc2/translations/source/af/sd/uiconfig/simpress/ui.po --- libreoffice-5.1.1~rc2/translations/source/af/sd/uiconfig/simpress/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/af/sd/uiconfig/simpress/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 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 @@ "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 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/af/sfx2/source/appl.po libreoffice-5.1.2~rc2/translations/source/af/sfx2/source/appl.po --- libreoffice-5.1.1~rc2/translations/source/af/sfx2/source/appl.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/af/sfx2/source/appl.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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 \n" "Language: af\n" @@ -14,7 +14,7 @@ "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 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/af/starmath/source.po libreoffice-5.1.2~rc2/translations/source/af/starmath/source.po --- libreoffice-5.1.1~rc2/translations/source/af/starmath/source.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/af/starmath/source.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 \n" "Language: af\n" @@ -14,7 +14,7 @@ "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 @@ "%PRODUCTNAME %s\n" "itemlist.text" msgid "%PRODUCTNAME %s" -msgstr "%PRODUCTNAME Base" +msgstr "%PRODUCTNAME %s" #: smres.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/af/svtools/source/dialogs.po libreoffice-5.1.2~rc2/translations/source/af/svtools/source/dialogs.po --- libreoffice-5.1.1~rc2/translations/source/af/svtools/source/dialogs.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/af/svtools/source/dialogs.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 \n" "Language: af\n" @@ -14,7 +14,7 @@ "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 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/af/svtools/source/misc.po libreoffice-5.1.2~rc2/translations/source/af/svtools/source/misc.po --- libreoffice-5.1.1~rc2/translations/source/af/svtools/source/misc.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/af/svtools/source/misc.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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 \n" "Language: af\n" @@ -14,7 +14,7 @@ "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 @@ 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 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/af/svtools/uiconfig/ui.po libreoffice-5.1.2~rc2/translations/source/af/svtools/uiconfig/ui.po --- libreoffice-5.1.1~rc2/translations/source/af/svtools/uiconfig/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/af/svtools/uiconfig/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 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 @@ "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 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/af/svx/inc.po libreoffice-5.1.2~rc2/translations/source/af/svx/inc.po --- libreoffice-5.1.1~rc2/translations/source/af/svx/inc.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/af/svx/inc.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 \n" "Language: af\n" @@ -14,7 +14,7 @@ "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 @@ "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 -Nru libreoffice-5.1.1~rc2/translations/source/af/svx/source/dialog.po libreoffice-5.1.2~rc2/translations/source/af/svx/source/dialog.po --- libreoffice-5.1.1~rc2/translations/source/af/svx/source/dialog.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/af/svx/source/dialog.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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) \n" +"PO-Revision-Date: 2016-03-07 15:59+0000\n" +"Last-Translator: system user <>\n" "Language-Team: LANGUAGE \n" "Language: af\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "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 @@ #. 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 @@ 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 @@ 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 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/af/svx/source/gallery2.po libreoffice-5.1.2~rc2/translations/source/af/svx/source/gallery2.po --- libreoffice-5.1.1~rc2/translations/source/af/svx/source/gallery2.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/af/svx/source/gallery2.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 \n" "Language: af\n" @@ -14,7 +14,7 @@ "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 @@ 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 @@ 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 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/af/svx/source/src.po libreoffice-5.1.2~rc2/translations/source/af/svx/source/src.po --- libreoffice-5.1.1~rc2/translations/source/af/svx/source/src.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/af/svx/source/src.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,18 +3,18 @@ msgstr "" "Project-Id-Version: PACKAGE 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 \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 \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 @@ "Om sekuriteitsredes is makrosteun gedeaktiveer." #: errtxt.src -#, fuzzy msgctxt "" "errtxt.src\n" "RID_ERRHDL\n" @@ -1031,7 +1030,7 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/af/svx/source/svdraw.po libreoffice-5.1.2~rc2/translations/source/af/svx/source/svdraw.po --- libreoffice-5.1.1~rc2/translations/source/af/svx/source/svdraw.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/af/svx/source/svdraw.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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 \n" "Language: af\n" @@ -14,7 +14,7 @@ "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 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/af/svx/source/tbxctrls.po libreoffice-5.1.2~rc2/translations/source/af/svx/source/tbxctrls.po --- libreoffice-5.1.1~rc2/translations/source/af/svx/source/tbxctrls.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/af/svx/source/tbxctrls.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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 \n" "Language: af\n" @@ -14,7 +14,7 @@ "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 @@ "RID_SVXSTR_DEPTH_2\n" "string.text" msgid "~2.5 cm" -msgstr "~2,5 cm" +msgstr "~2.5 cm" #: extrusioncontrols.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/af/sw/source/ui/config.po libreoffice-5.1.2~rc2/translations/source/af/sw/source/ui/config.po --- libreoffice-5.1.1~rc2/translations/source/af/sw/source/ui/config.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/af/sw/source/ui/config.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 \n" "Language: af\n" @@ -14,7 +14,7 @@ "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 @@ "%PRODUCTNAME %s\n" "itemlist.text" msgid "%PRODUCTNAME %s" -msgstr "%PRODUCTNAME Base" +msgstr "%PRODUCTNAME %s" #: optdlg.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/af/sw/source/ui/dbui.po libreoffice-5.1.2~rc2/translations/source/af/sw/source/ui/dbui.po --- libreoffice-5.1.1~rc2/translations/source/af/sw/source/ui/dbui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/af/sw/source/ui/dbui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 \n" "Language: af\n" @@ -14,7 +14,7 @@ "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 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/af/sw/source/ui/index.po libreoffice-5.1.2~rc2/translations/source/af/sw/source/ui/index.po --- libreoffice-5.1.1~rc2/translations/source/af/sw/source/ui/index.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/af/sw/source/ui/index.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,18 +3,18 @@ msgstr "" "Project-Id-Version: PACKAGE 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 \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 \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 @@ msgstr "" #: cnttab.src +#, fuzzy msgctxt "" "cnttab.src\n" "STR_NOSORTKEY\n" "string.text" msgid "" -msgstr "" +msgstr "" #: cnttab.src +#, fuzzy msgctxt "" "cnttab.src\n" "STR_NO_CHAR_STYLE\n" "string.text" msgid "" -msgstr "" +msgstr "" #: cnttab.src msgctxt "" @@ -106,12 +108,13 @@ msgstr "" #: cnttab.src +#, fuzzy msgctxt "" "cnttab.src\n" "STR_TOKEN_PAGE_NUMS\n" "string.text" msgid "#" -msgstr "" +msgstr "#" #: cnttab.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/af/sw/source/ui/utlui.po libreoffice-5.1.2~rc2/translations/source/af/sw/source/ui/utlui.po --- libreoffice-5.1.1~rc2/translations/source/af/sw/source/ui/utlui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/af/sw/source/ui/utlui.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,18 +3,18 @@ msgstr "" "Project-Id-Version: PACKAGE 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 \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 \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 @@ 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 @@ 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 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/af/sw/uiconfig/swriter/ui.po libreoffice-5.1.2~rc2/translations/source/af/sw/uiconfig/swriter/ui.po --- libreoffice-5.1.1~rc2/translations/source/af/sw/uiconfig/swriter/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/af/sw/uiconfig/swriter/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 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 @@ "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 @@ 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 @@ msgstr "" #: createaddresslist.ui +#, fuzzy msgctxt "" "createaddresslist.ui\n" "PREV\n" "label\n" "string.text" msgid "<" -msgstr "" +msgstr "<" #: createaddresslist.ui msgctxt "" @@ -2521,13 +2523,14 @@ msgstr "" #: createaddresslist.ui +#, fuzzy msgctxt "" "createaddresslist.ui\n" "NEXT\n" "label\n" "string.text" msgid ">" -msgstr "" +msgstr ">" #: createaddresslist.ui msgctxt "" @@ -4434,13 +4437,14 @@ msgstr "" #: fldvarpage.ui +#, fuzzy msgctxt "" "fldvarpage.ui\n" "separator\n" "text\n" "string.text" msgid "." -msgstr "" +msgstr "." #: fldvarpage.ui msgctxt "" @@ -5422,22 +5426,24 @@ msgstr "" #: frmaddpage.ui +#, fuzzy msgctxt "" "frmaddpage.ui\n" "prev\n" "0\n" "stringlist.text" msgid "" -msgstr "" +msgstr "" #: frmaddpage.ui +#, fuzzy msgctxt "" "frmaddpage.ui\n" "next\n" "0\n" "stringlist.text" msgid "" -msgstr "" +msgstr "" #: frmaddpage.ui msgctxt "" @@ -6347,13 +6353,14 @@ 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 @@ 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 @@ msgstr "" #: mmpreparepage.ui +#, fuzzy msgctxt "" "mmpreparepage.ui\n" "prev\n" "label\n" "string.text" msgid "<" -msgstr "" +msgstr "<" #: mmpreparepage.ui msgctxt "" @@ -8725,13 +8734,14 @@ msgstr "" #: mmpreparepage.ui +#, fuzzy msgctxt "" "mmpreparepage.ui\n" "next\n" "label\n" "string.text" msgid ">" -msgstr "" +msgstr ">" #: mmpreparepage.ui #, fuzzy @@ -9579,13 +9589,14 @@ 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 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/af/vcl/source/src.po libreoffice-5.1.2~rc2/translations/source/af/vcl/source/src.po --- libreoffice-5.1.1~rc2/translations/source/af/vcl/source/src.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/af/vcl/source/src.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 \n" "Language: af\n" @@ -14,7 +14,7 @@ "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 @@ msgstr "" #: fpicker.src -#, fuzzy msgctxt "" "fpicker.src\n" "STR_FPICKER_ALLFORMATS\n" "string.text" msgid "All Formats" -msgstr "" +msgstr "Alle Formate" #: fpicker.src msgctxt "" @@ -1192,12 +1191,13 @@ msgstr "" #: print.src +#, fuzzy msgctxt "" "print.src\n" "SV_PRINT_INVALID_TXT\n" "string.text" msgid "" -msgstr "" +msgstr "" #: print.src msgctxt "" @@ -1476,13 +1476,14 @@ msgstr "" #: units.src +#, fuzzy msgctxt "" "units.src\n" "SV_FUNIT_STRINGS\n" "°\n" "itemlist.text" msgid "°" -msgstr "" +msgstr "°" #: units.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/am/cui/source/options.po libreoffice-5.1.2~rc2/translations/source/am/cui/source/options.po --- libreoffice-5.1.1~rc2/translations/source/am/cui/source/options.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/am/cui/source/options.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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 \n" "Language-Team: LANGUAGE \n" "Language: am\n" @@ -14,7 +14,7 @@ "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 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/am/formula/source/core/resource.po libreoffice-5.1.2~rc2/translations/source/am/formula/source/core/resource.po --- libreoffice-5.1.1~rc2/translations/source/am/formula/source/core/resource.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/am/formula/source/core/resource.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\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-24 17:09+0100\n" +"POT-Creation-Date: 2016-03-29 16:07+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -20,7 +20,7 @@ "SC_OPCODE_IF\n" "string.text" msgid "IF" -msgstr "IF" +msgstr "ከሆáŠ" #: core_resource.src msgctxt "" @@ -29,7 +29,7 @@ "SC_OPCODE_IF_ERROR\n" "string.text" msgid "IFERROR" -msgstr "IFERROR" +msgstr "ስህተት ከሆáŠ" #: core_resource.src msgctxt "" @@ -155,7 +155,7 @@ "SC_OPCODE_RANDOM\n" "string.text" msgid "RAND" -msgstr "RAND" +msgstr "በደáˆáŠ“á‹" #: core_resource.src msgctxt "" @@ -188,19 +188,10 @@ msgctxt "" "core_resource.src\n" "RID_STRLIST_FUNCTION_NAMES\n" -"SC_OPCODE_GET_ACT_TIME\n" -"string.text" -msgid "NOW" -msgstr "NOW" - -#: core_resource.src -msgctxt "" -"core_resource.src\n" -"RID_STRLIST_FUNCTION_NAMES\n" "SC_OPCODE_NO_VALUE\n" "string.text" msgid "NA" -msgstr "NA" +msgstr "የለáˆ" #: core_resource.src msgctxt "" @@ -209,7 +200,7 @@ "SC_OPCODE_CURRENT\n" "string.text" msgid "CURRENT" -msgstr "CURRENT" +msgstr "አáˆáŠ•" #: core_resource.src msgctxt "" @@ -551,7 +542,7 @@ "SC_OPCODE_IS_EMPTY\n" "string.text" msgid "ISBLANK" -msgstr "ISBLANK" +msgstr "ባዶ áŠá‹" #: core_resource.src msgctxt "" @@ -560,7 +551,7 @@ "SC_OPCODE_IS_STRING\n" "string.text" msgid "ISTEXT" -msgstr "ISTEXT" +msgstr "ጽáˆá áŠá‹" #: core_resource.src msgctxt "" @@ -569,7 +560,7 @@ "SC_OPCODE_IS_NON_STRING\n" "string.text" msgid "ISNONTEXT" -msgstr "ISNONTEXT" +msgstr "ጽáˆá የለáˆ" #: core_resource.src msgctxt "" @@ -605,7 +596,7 @@ "SC_OPCODE_IS_REF\n" "string.text" msgid "ISREF" -msgstr "ISREF" +msgstr "ማመሳከሪያ áŠá‹" #: core_resource.src msgctxt "" @@ -614,7 +605,7 @@ "SC_OPCODE_IS_VALUE\n" "string.text" msgid "ISNUMBER" -msgstr "ISNUMBER" +msgstr "á‰áŒ¥áˆ­ áŠá‹" #: core_resource.src msgctxt "" @@ -623,16 +614,7 @@ "SC_OPCODE_IS_FORMULA\n" "string.text" msgid "ISFORMULA" -msgstr "ISFORMULA" - -#: core_resource.src -msgctxt "" -"core_resource.src\n" -"RID_STRLIST_FUNCTION_NAMES\n" -"SC_OPCODE_IS_NV\n" -"string.text" -msgid "ISNA" -msgstr "ISNA" +msgstr "መቀመሪያ áŠá‹" #: core_resource.src msgctxt "" @@ -641,16 +623,7 @@ "SC_OPCODE_IS_ERR\n" "string.text" msgid "ISERR" -msgstr "ISERR" - -#: core_resource.src -msgctxt "" -"core_resource.src\n" -"RID_STRLIST_FUNCTION_NAMES\n" -"SC_OPCODE_IS_ERROR\n" -"string.text" -msgid "ISERROR" -msgstr "ISERROR" +msgstr "ስህተት áŠá‹" #: core_resource.src msgctxt "" @@ -659,7 +632,7 @@ "SC_OPCODE_IS_EVEN\n" "string.text" msgid "ISEVEN" -msgstr "ISEVEN" +msgstr "ሙሉ áŠá‹" #: core_resource.src msgctxt "" @@ -668,7 +641,7 @@ "SC_OPCODE_IS_ODD\n" "string.text" msgid "ISODD" -msgstr "ISODD" +msgstr "ጎዶሎ áŠá‹" #: core_resource.src msgctxt "" @@ -677,7 +650,7 @@ "SC_OPCODE_N\n" "string.text" msgid "N" -msgstr "N" +msgstr "á‰" #: core_resource.src msgctxt "" @@ -686,7 +659,7 @@ "SC_OPCODE_GET_DATE_VALUE\n" "string.text" msgid "DATEVALUE" -msgstr "DATEVALUE" +msgstr "የ ቀን ዋጋ" #: core_resource.src msgctxt "" @@ -695,7 +668,7 @@ "SC_OPCODE_GET_TIME_VALUE\n" "string.text" msgid "TIMEVALUE" -msgstr "TIMEVALUE" +msgstr "የ ሰአት ዋጋ" #: core_resource.src msgctxt "" @@ -704,7 +677,7 @@ "SC_OPCODE_CODE\n" "string.text" msgid "CODE" -msgstr "CODE" +msgstr "ኮድ" #: core_resource.src msgctxt "" @@ -713,7 +686,7 @@ "SC_OPCODE_TRIM\n" "string.text" msgid "TRIM" -msgstr "TRIM" +msgstr "መከርከሚያ" #: core_resource.src msgctxt "" @@ -731,7 +704,7 @@ "SC_OPCODE_PROPER\n" "string.text" msgid "PROPER" -msgstr "PROPER" +msgstr "መደበኛ" #: core_resource.src msgctxt "" @@ -749,7 +722,7 @@ "SC_OPCODE_LEN\n" "string.text" msgid "LEN" -msgstr "LEN" +msgstr "እርá‹áˆ˜á‰µ" #: core_resource.src msgctxt "" @@ -758,7 +731,7 @@ "SC_OPCODE_T\n" "string.text" msgid "T" -msgstr "T" +msgstr "ጽ" #: core_resource.src msgctxt "" @@ -785,7 +758,7 @@ "SC_OPCODE_CHAR\n" "string.text" msgid "CHAR" -msgstr "CHAR" +msgstr "ባህሪ" #: core_resource.src msgctxt "" @@ -812,7 +785,7 @@ "SC_OPCODE_UNICODE\n" "string.text" msgid "UNICODE" -msgstr "UNICODE" +msgstr "ዩኒኮድ" #: core_resource.src msgctxt "" @@ -857,7 +830,7 @@ "SC_OPCODE_STD_NORM_DIST\n" "string.text" msgid "NORMSDIST" -msgstr "NORMSDIST" +msgstr "የተጠራቀመ ስርጭት" #: core_resource.src msgctxt "" @@ -866,7 +839,7 @@ "SC_OPCODE_STD_NORM_DIST_MS\n" "string.text" msgid "NORM.S.DIST" -msgstr "NORM.S.DIST" +msgstr "የተጠራቀመ ስርጭት ተáŒá‰£áˆ­" #: core_resource.src msgctxt "" @@ -929,7 +902,7 @@ "SC_OPCODE_ERROR_TYPE\n" "string.text" msgid "ERRORTYPE" -msgstr "ERRORTYPE" +msgstr "የ ስህተትአይáŠá‰µ" #: core_resource.src msgctxt "" @@ -938,7 +911,7 @@ "SC_OPCODE_ERROR_TYPE_ODF\n" "string.text" msgid "ERROR.TYPE" -msgstr "ERROR.TYPE" +msgstr "የ ስህተት.አይáŠá‰µ" #: core_resource.src msgctxt "" @@ -1019,7 +992,7 @@ "SC_OPCODE_FLOOR\n" "string.text" msgid "FLOOR" -msgstr "FLOOR" +msgstr "ወለáˆ" #: core_resource.src msgctxt "" @@ -1055,7 +1028,7 @@ "SC_OPCODE_ROUND\n" "string.text" msgid "ROUND" -msgstr "ROUND" +msgstr "ማጠጋጊያ" #: core_resource.src msgctxt "" @@ -1064,7 +1037,7 @@ "SC_OPCODE_ROUND_UP\n" "string.text" msgid "ROUNDUP" -msgstr "ROUNDUP" +msgstr "ማጠጋጊያ ወደ ላይ" #: core_resource.src msgctxt "" @@ -1073,7 +1046,7 @@ "SC_OPCODE_ROUND_DOWN\n" "string.text" msgid "ROUNDDOWN" -msgstr "ROUNDDOWN" +msgstr "ማጠጋጊያ ወደ ታች" #: core_resource.src msgctxt "" @@ -1082,7 +1055,7 @@ "SC_OPCODE_TRUNC\n" "string.text" msgid "TRUNC" -msgstr "TRUNC" +msgstr "ማሳጠሪያ" #: core_resource.src msgctxt "" @@ -1127,7 +1100,7 @@ "SC_OPCODE_MOD\n" "string.text" msgid "MOD" -msgstr "MOD" +msgstr "ቀሪ" #: core_resource.src msgctxt "" @@ -1136,7 +1109,7 @@ "SC_OPCODE_SUM_PRODUCT\n" "string.text" msgid "SUMPRODUCT" -msgstr "SUMPRODUCT" +msgstr "የ ድáˆáˆ­ á‹áŒ¤á‰µ" #: core_resource.src msgctxt "" @@ -1145,7 +1118,7 @@ "SC_OPCODE_SUM_SQ\n" "string.text" msgid "SUMSQ" -msgstr "SUMSQ" +msgstr "የ ስኴር ድáˆáˆ­" #: core_resource.src msgctxt "" @@ -1208,7 +1181,7 @@ "SC_OPCODE_MIN\n" "string.text" msgid "MIN" -msgstr "MIN" +msgstr "አáŠáˆµá‰°áŠ›" #: core_resource.src msgctxt "" @@ -1217,7 +1190,7 @@ "SC_OPCODE_MIN_A\n" "string.text" msgid "MINA" -msgstr "MINA" +msgstr "ትንሽ ዋጋ" #: core_resource.src msgctxt "" @@ -1226,7 +1199,7 @@ "SC_OPCODE_MAX\n" "string.text" msgid "MAX" -msgstr "MAX" +msgstr "ከáተኛ" #: core_resource.src msgctxt "" @@ -1235,7 +1208,7 @@ "SC_OPCODE_MAX_A\n" "string.text" msgid "MAXA" -msgstr "MAXA" +msgstr "ከáተኛ ዋጋ" #: core_resource.src msgctxt "" @@ -1262,7 +1235,7 @@ "SC_OPCODE_AVERAGE\n" "string.text" msgid "AVERAGE" -msgstr "AVERAGE" +msgstr "መከከለኛ" #: core_resource.src msgctxt "" @@ -1271,7 +1244,7 @@ "SC_OPCODE_AVERAGE_A\n" "string.text" msgid "AVERAGEA" -msgstr "AVERAGEA" +msgstr "መካከለኛ ዋጋ" #: core_resource.src msgctxt "" @@ -1649,7 +1622,7 @@ "SC_OPCODE_SHEETS\n" "string.text" msgid "SHEETS" -msgstr "SHEETS" +msgstr "ወረቀቶች" #: core_resource.src msgctxt "" @@ -1676,7 +1649,7 @@ "SC_OPCODE_SHEET\n" "string.text" msgid "SHEET" -msgstr "SHEET" +msgstr "ወረቀት" #: core_resource.src msgctxt "" @@ -1712,7 +1685,7 @@ "SC_OPCODE_RATE\n" "string.text" msgid "RATE" -msgstr "RATE" +msgstr "የ ወለድ መጠን" #: core_resource.src msgctxt "" @@ -1775,7 +1748,7 @@ "SC_OPCODE_SUB_TOTAL\n" "string.text" msgid "SUBTOTAL" -msgstr "SUBTOTAL" +msgstr "ንዑስ ድáˆáˆ­" #: core_resource.src msgctxt "" @@ -1811,7 +1784,7 @@ "SC_OPCODE_DB_AVERAGE\n" "string.text" msgid "DAVERAGE" -msgstr "DAVERAGE" +msgstr "መካከለኛ ዳታ" #: core_resource.src msgctxt "" @@ -1829,7 +1802,7 @@ "SC_OPCODE_DB_MAX\n" "string.text" msgid "DMAX" -msgstr "DMAX" +msgstr "ከáተኛ ዳታ" #: core_resource.src msgctxt "" @@ -1838,7 +1811,7 @@ "SC_OPCODE_DB_MIN\n" "string.text" msgid "DMIN" -msgstr "DMIN" +msgstr "አáŠáˆµá‰°áŠ› ዳታ" #: core_resource.src msgctxt "" @@ -1919,7 +1892,7 @@ "SC_OPCODE_COUNT_EMPTY_CELLS\n" "string.text" msgid "COUNTBLANK" -msgstr "COUNTBLANK" +msgstr "ባዶ መá‰áŒ áˆªá‹«" #: core_resource.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/am/helpcontent2/source/text/sbasic/shared.po libreoffice-5.1.2~rc2/translations/source/am/helpcontent2/source/text/sbasic/shared.po --- libreoffice-5.1.1~rc2/translations/source/am/helpcontent2/source/text/sbasic/shared.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/am/helpcontent2/source/text/sbasic/shared.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\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 \n" +"PO-Revision-Date: 2016-03-03 16:27+0000\n" +"Last-Translator: system user <>\n" "Language-Team: LANGUAGE \n" "Language: am\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "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 @@ "7\n" "help.text" msgid "MySecondValue = myFunction(MyFirstValue)" -msgstr "" +msgstr "የ እኔ áˆáˆˆá‰°áŠ› ዋጋ = የ እኔ ተáŒá‰£áˆ®á‰½(የ እኔ መጀመሪያ ዋጋ)" #: 01010210.xhp msgctxt "" @@ -1714,7 +1714,7 @@ "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 @@ "3\n" "help.text" msgid "The following describes the basic use of variables in $[officename] Basic." -msgstr "" +msgstr "የሚቀጥለዠየሚገáˆáŒ¸á‹ መሰረታዊ የ ተለዋዋጭ አጠቃቀሠáŠá‹ ለ $[officename] Basic." #: 01020100.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/am/helpcontent2/source/text/scalc/05.po libreoffice-5.1.2~rc2/translations/source/am/helpcontent2/source/text/scalc/05.po --- libreoffice-5.1.1~rc2/translations/source/am/helpcontent2/source/text/scalc/05.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/am/helpcontent2/source/text/scalc/05.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 \n" "Language-Team: LANGUAGE \n" "Language: am\n" @@ -14,7 +14,7 @@ "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 @@ "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 -Nru libreoffice-5.1.1~rc2/translations/source/am/helpcontent2/source/text/scalc.po libreoffice-5.1.2~rc2/translations/source/am/helpcontent2/source/text/scalc.po --- libreoffice-5.1.1~rc2/translations/source/am/helpcontent2/source/text/scalc.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/am/helpcontent2/source/text/scalc.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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 \n" +"PO-Revision-Date: 2016-03-03 16:29+0000\n" +"Last-Translator: system user <>\n" "Language-Team: LANGUAGE \n" "Language: am\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "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 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/am/helpcontent2/source/text/schart/01.po libreoffice-5.1.2~rc2/translations/source/am/helpcontent2/source/text/schart/01.po --- libreoffice-5.1.1~rc2/translations/source/am/helpcontent2/source/text/schart/01.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/am/helpcontent2/source/text/schart/01.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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-18 00:18+0000\n" +"PO-Revision-Date: 2016-03-04 01:20+0000\n" "Last-Translator: Samson B \n" "Language-Team: LANGUAGE \n" "Language: am\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1455754693.000000\n" +"X-POOTLE-MTIME: 1457054449.000000\n" #: 03010000.xhp msgctxt "" @@ -145,7 +145,7 @@ "par_id8111819\n" "help.text" msgid "The order of the data series in the chart is the same as in the data table. Use the Move Series Right icon to switch the current column with its neighbor on the right." -msgstr "" +msgstr "የ ተከታታይ ዳታ ደንብ ተመሳሳይ áŠá‹ ከ chart ዳታ ሰንጠረዥ ጋር: ይጠቀሙ የ ተከታታይ ወደ ቀአማንቀሳቀሻáˆáˆáŠ­á‰µ ለ መቀየር ወደ አáˆáŠ‘ አáˆá‹µ ጎረቤት በ ቀአበኩáˆ" #: 03010000.xhp msgctxt "" @@ -153,7 +153,7 @@ "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 Move Row Down icon to switch the current row with its neighbor below." -msgstr "" +msgstr "የ ተከታታይ ዳታ ደንብ ተመሳሳይ áŠá‹ ከ chart ዳታ ሰንጠረዥ ጋር: ይጠቀሙ የ ረድá ወደ ታች ማንቀሳቀሻáˆáˆáŠ­á‰µ ለ መቀየር ወደ አáˆáŠ‘ ረድá ጎረቤት በ ታች በኩáˆ" #: 03010000.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/am/helpcontent2/source/text/shared/00.po libreoffice-5.1.2~rc2/translations/source/am/helpcontent2/source/text/shared/00.po --- libreoffice-5.1.1~rc2/translations/source/am/helpcontent2/source/text/shared/00.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/am/helpcontent2/source/text/shared/00.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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 16:26+0000\n" -"Last-Translator: Samson B \n" +"PO-Revision-Date: 2016-03-03 17:13+0000\n" +"Last-Translator: system user <>\n" "Language-Team: LANGUAGE \n" "Language: am\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1456158375.000000\n" +"X-POOTLE-MTIME: 1457025219.000000\n" #: 00000001.xhp msgctxt "" @@ -117,7 +117,7 @@ "78\n" "help.text" msgid "You can type a numerical value into the field next to the spin button, or select the value with the up-arrow or down-arrow symbols on the spin button. On the keyboard you can press the up arrow and down arrow keys to increase or reduce the value. You can press the Page Up and Page Down keys to set the maximum and minimum value." -msgstr "" +msgstr "እርስዎ መጻá ይችላሉ የ á‰áŒ¥áˆ­ ዋጋ ወደ ሜዳ á‹áˆµáŒ¥ ከ ማዞሪያ á‰áˆá አጠገብ ባለá‹: ወይንሠይáˆáˆ¨áŒ¡ ዋጋ በ ቀስት ወደ-ላይ ወይንሠቀስት ወደ-ታች áˆáˆáŠ­á‰¶á‰½áŠ• ማዞሪያ á‰áˆá: በ áŠá‹°áˆ ገበታ ላይ ይጫኑ ገጽ ወደ ላይ እና ገጽ ወደ ታች á‰áˆáŽá‰½áŠ•: ከáተኛ እና አáŠáˆµá‰°áŠ› ዋጋዎችን ለማሰናዳት" #: 00000001.xhp msgctxt "" @@ -216,7 +216,7 @@ "7\n" "help.text" msgid "You can enter values in the input fields in different units of measurement. The default unit is inches. However, if you want a space of exactly 1cm, then type \"1cm\". Additional units are available according to the context, for example, 12 pt for a 12 point spacing. If the value of the new unit is unrealistic, the program uses a predefined maximum or minimum value." -msgstr "" +msgstr "እርስዎ ዋጋዎችን ማስገባት ይችላሉ በ ማስገቢያ ሜዳዎች የተለያዩ መለኪያ ክáሎችን: áŠá‰£áˆ­ መለኪያዠኢንች áŠá‹: áŠáŒˆáˆ­ áŒáŠ•: እርስዎ በ ትክክሠስá‹á‰µ ከáˆáˆˆáŒ‰ 1ሲሚ: ይጻበ\"1ሲሚ\". ተጨማሪ መለኪያዎች á‹áŒáŒ ናቸዠእንደ አገባቡ: ለáˆáˆ³áˆŒ: 12 áŠáŒ¥á‰¥ ለ 12 áŠáŒ¥á‰¥ ክáተት: አዲሱ መለኪያ እá‹áŠá‰µáŠ• መሰረት ያላደረገ ከሆአ: á•áˆ®áŒáˆ«áˆ™ በ ቅድሚያ የተወሰአከáተኛ ወይንሠአáŠáˆµá‰°áŠ› ዋጋ ይጠቀማáˆ" #: 00000001.xhp msgctxt "" @@ -475,7 +475,7 @@ "73\n" "help.text" msgid "View the selections in the dialog made in the previous step. The current settings remain unchanged. This button can only be activated from page two on." -msgstr "" +msgstr "ባለáˆá‹ ደረጃ ላይ የ ተመረጠá‹áŠ• ንáŒáŒáˆ­ ማሳያ: የ አáˆáŠ‘ ማሰናጃ እንደ áŠá‰ áˆ­ ይቆያሠይህ ገጽ á‹áŒáŒ የሚሆáŠá‹ ከ ገጽ áˆáˆˆá‰µ በኋላ áŠá‹" #: 00000001.xhp msgctxt "" @@ -9909,7 +9909,7 @@ "69\n" "help.text" msgid "In a database file window, choose Tools - Relationships" -msgstr "ከ ዳታቤዠá‹á‹­áˆ መስኮት á‹áˆµáŒ¥ á‹­áˆáˆ¨áŒ¡ መሳሪያዎች - á‹áˆá‹µáŠ“ቸá‹" +msgstr "ከ ዳታቤዠá‹á‹­áˆ መስኮት á‹áˆµáŒ¥ á‹­áˆáˆ¨áŒ¡ መሳሪያዎች - áŒáŠ•áŠ™áŠá‰³á‰¸á‹" #: 00040500.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/am/helpcontent2/source/text/shared/01.po libreoffice-5.1.2~rc2/translations/source/am/helpcontent2/source/text/shared/01.po --- libreoffice-5.1.1~rc2/translations/source/am/helpcontent2/source/text/shared/01.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/am/helpcontent2/source/text/shared/01.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-22 16:23+0000\n" +"PO-Revision-Date: 2016-03-04 01:11+0000\n" "Last-Translator: Samson B \n" "Language-Team: LANGUAGE \n" "Language: am\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1456158185.000000\n" +"X-POOTLE-MTIME: 1457053893.000000\n" #: 01010000.xhp msgctxt "" @@ -4500,7 +4500,7 @@ "par_id081820091228505\n" "help.text" msgid "The preview shows how each sheet of paper will look. You can browse through all sheets of paper with the buttons below the preview." -msgstr "" +msgstr "ቅድመ እይታ የሚያሳየዠእያንዳንዱ ወረቀት áˆáŠ• እንደሚመስሠáŠá‹: እርስዎ በ áˆáˆ‰áˆ ወረቀቶች á‹áˆµáŒ¥ መቃኘት ይችላሉ ከ ታች በኩሠባሉት á‰áˆáŽá‰½ ከ ቅድመ እይታዠበታች" #: 01130000.xhp msgctxt "" @@ -4516,7 +4516,7 @@ "par_id0818200912285064\n" "help.text" msgid "On the General tab page, you find the most important control elements for printing. You can define which contents of your document are to be printed. You can select the printer and open the printer settings dialog." -msgstr "" +msgstr "በ ባጠቃላይ tab ገጽ á‹áˆµáŒ¥: እርስዎ ያገኛሉ በጣሠአስáˆáˆ‹áŒŠ መቆጣጠሪያ አካላቶች: እርስዎ መáŒáˆˆáŒ½ ይችላሉ የትኞቹ ይዞታዎች ከ እርስዎ ሰáŠá‹µ á‹áˆµáŒ¥ እንደሚታተሙ: እርስዎ ማተሚያ መáˆáˆ¨áŒ¥ ይችላሉ እና መክáˆá‰µ የ ማተሚያ ማሰናጃ ንáŒáŒáˆ­" #: 01130000.xhp msgctxt "" @@ -4572,7 +4572,7 @@ "par_id14\n" "help.text" msgid "If this option is enabled automatically inserted blank pages are printed. This is best if you are printing double-sided. For example, in a book, a \"chapter\" paragraph style has been set to always start with an odd numbered page. If the previous chapter ends on an odd page, %PRODUCTNAME inserts an even numbered blank page. This option controls whether to print that even numbered page." -msgstr "" +msgstr "ይህ áˆáˆ­áŒ« ካስቻሉ ራሱ በራሱ የ ገባ ባዶ ገጽ ይታተማáˆ: ይህ ጥሩ የሚሆáŠá‹ እርስዎ áˆáˆˆá‰µ-በኩሠየሆአሲያትሙ áŠá‹: ለáˆáˆ³áˆŒ: መጽáˆá: \"áˆáŠ¥áˆ«á\" የ አንቀጽ ዘዴ ተሰናድቷሠáˆáˆáŒŠá‹œ በ ጎዶሎ ገጽች እንዲጀáˆáˆ­: ቀደሠያለዠáˆáŠ¥áˆ«á በ ጎዶሎ ገጽ ላይ ጨርሶ ከሆáŠ: %PRODUCTNAME ሌላ መኡሉ á‰áŒ¥áˆ­ ባዶ ገጽ ያስገባáˆ: ይህ áˆáˆ­áŒ« ይቆጣጠራሠለ ማተሠየ ሙሉ á‰áŒ¥áˆ­ ገጽ" #: 01130000.xhp msgctxt "" @@ -25737,7 +25737,7 @@ "6\n" "help.text" msgid "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 To box." -msgstr "" +msgstr "የ አáŒá‹µáˆ ማካካሻ ለ ከáታ ያስገቡ: ይህ 0% ተመሳሳይ áŠá‹ ለ አáŒá‹µáˆ አካባቢ ለ መጨረሻ áŠáŒ¥á‰¥ ቀለሠበ ከáታ á‹áˆµáŒ¥: የ መጨረሻ áŠáŒ¥á‰¥ ቀለሠየ ተመረጠዠቀለሠáŠá‹ በ ለ ሳጥን á‹áˆµáŒ¥" #: 05210300.xhp msgctxt "" @@ -25755,7 +25755,7 @@ "8\n" "help.text" msgid "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 To box." -msgstr "" +msgstr "የ á‰áˆ˜á‰µ ማካካሻ ለ ከáታ ያስገቡ: ይህ 0% ተመሳሳይ áŠá‹ ለ á‰áˆ˜á‰µ አካባቢ ለ መጨረሻ áŠáŒ¥á‰¥ ቀለሠበ ከáታ á‹áˆµáŒ¥: የ መጨረሻ áŠáŒ¥á‰¥ ቀለሠየ ተመረጠዠቀለሠáŠá‹ በ ለ ሳጥን á‹áˆµáŒ¥" #: 05210300.xhp msgctxt "" @@ -25791,7 +25791,7 @@ "12\n" "help.text" msgid "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 To box." -msgstr "" +msgstr "መጠን ያስገቡ አካባቢá‹áŠ• ለማስተካከሠለ መጨረሻ áŠáŒ¥á‰¥ ቀለሠበ ከáታ á‹áˆµáŒ¥: የ መጨረሻ áŠáŒ¥á‰¥ ቀለሠየ ተመረጠዠቀለሠáŠá‹ በ ለ ሳጥን á‹áˆµáŒ¥" #: 05210300.xhp msgctxt "" @@ -26219,7 +26219,7 @@ "2\n" "help.text" msgid "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." -msgstr "" +msgstr "እርስዎ መጠቀሠየሚáˆáˆáŒ‰á‰µáŠ• bitmap á‹­áˆáˆ¨áŒ¡ እንደ መሙያ ድáŒáŒáˆžáˆ½ ወይንሠይáጠሩ የራስዎትን በ pixel ድáŒáŒáˆžáˆ½: እርስዎ bitmaps ማáˆáŒ£á‰µ ይችላሉ እና ማስቀመጥ ወይንሠወደ bitmap á‹áˆ­á‹áˆ­ መጫን " #: 05210500.xhp msgctxt "" @@ -26700,7 +26700,7 @@ "12\n" "help.text" msgid "Applies a transparency gradient to the current fill color. Select this option, and then set the gradient properties." -msgstr "" +msgstr "ወደ አáˆáŠ‘ ቀለሠመሙያ የ áŒáˆáŒ½áŠá‰µ ከáታ መáˆáŒ¸áˆšá‹«: ይህን áˆáˆ­áŒ« á‹­áˆáˆ¨áŒ¡ እና ከዛ የ ከáታ ባህሪዎችን ያሰናዱ" #: 05210700.xhp msgctxt "" @@ -26790,7 +26790,7 @@ "32\n" "help.text" msgid "Enter the amount by which you want to adjust the transparent area of the gradient. The default value is 0%." -msgstr "" +msgstr "እርስዎ ለ áŒáˆáŒ½áŠá‰µáŠ• ቦታ ማስተካከሠየሚáˆáˆáŒ‰á‰ á‰µáŠ• መጠን ያስገቡ: áŠá‰£áˆ­ ዋጋ 0% áŠá‹" #: 05210700.xhp msgctxt "" @@ -26887,7 +26887,7 @@ "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 @@ "6\n" "help.text" msgid "Enter the horizontal distance that you want to move the object relative to the base point selected in the grid." -msgstr "" +msgstr "የ አáŒá‹µáˆ እርá‹áˆ˜á‰µ ያስገቡ እቃá‹áŠ• ማንቀሳቀስ የሚáˆáˆáŒ‰á‰ á‰µáŠ• ከ መሰረታዊ áŠáŒ¥á‰¥ አንጻር በ መጋጠሚያዠከ ተመረጠá‹" #: 05230100.xhp msgctxt "" @@ -27258,7 +27258,7 @@ "8\n" "help.text" msgid "Enter the vertical distance that you want to move the object relative to the base point selected in the grid." -msgstr "" +msgstr "የ á‰áˆ˜á‰µ እርá‹áˆ˜á‰µ ያስገቡ እቃá‹áŠ• ማንቀሳቀስ የሚáˆáˆáŒ‰á‰ á‰µáŠ• ከ መሰረታዊ áŠáŒ¥á‰¥ አንጻር በ መጋጠሚያዠከ ተመረጠá‹" #: 05230100.xhp msgctxt "" @@ -27631,7 +27631,7 @@ "16\n" "help.text" msgid "Click to specify the rotation angle in multiples of 45 degrees." -msgstr "" +msgstr "ይጫኑ የ ተወሰአየ ማዞሪያ አንáŒáˆ ያለ ቀሪ የሚያካáሠ45 ዲáŒáˆªá‹Žá‰½ " #: 05230400.xhp msgctxt "" @@ -27860,7 +27860,7 @@ "11\n" "help.text" msgid "The Length box is only available if you select the Angled connector line callout style, and leave the Optimal checkbox cleared." -msgstr "" +msgstr "የ እርá‹áˆ˜á‰µ ሳጥን á‹áŒáŒ የሚሆáŠá‹ እርስዎ ሲመርጡ áŠá‹ የ አንáŒáˆ አገናአመስመር መጥሪያ ዘዴ: እና ይተዉት የ አጥጋቢ áˆáˆáŠ­á‰µ ማድረጊያ ሳጥን ያጽዱ" #: 05230500.xhp msgctxt "" @@ -27878,7 +27878,7 @@ "13\n" "help.text" msgid "Click here to display a single-angled line in an optimal way." -msgstr "" +msgstr "ይጫኑ እዚህ ለማሳየት የ áŠáŒ áˆ‹-አንáŒáˆ መስመር በ አጥጋቢ ዘዴ" #: 05240000.xhp msgctxt "" @@ -29327,7 +29327,7 @@ "2\n" "help.text" msgid "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. This command does not permanently ungroup the objects." -msgstr "" +msgstr "የ ተመረጠá‹áŠ• ቡድን መክáˆá‰»: ስለዚህ እርስዎ እያንዳንዱን እቃዎች ማረሠይችላሉ: የ ተመረጠá‹áŠ• ቡድን እቅá ቡድን ከያዘ: እርስዎ ይህን ትእዛዠመድገሠይችላሉ በ ንዑስ ቡድኖች ላይ ይህ ትእዛዠእቃዎችን በቋሚáŠá‰µ አይለያይáˆ" #: 05290300.xhp msgctxt "" @@ -29378,7 +29378,7 @@ "2\n" "help.text" msgid "Exits the group, so that you can no longer edit the individual objects in the group. If you are in a nested group, only the nested group is closed." -msgstr "" +msgstr "ከ ቡድን መá‹áŒ«: ስለዚ እርስዎ ማረሠአይችሉሠእያንዳንዱ እቃ በ ቡድን á‹áˆµáŒ¥ እርስዎ በ ታቀዠቡድን á‹áˆµáŒ¥ ካሉ: የሚዘጋዠየ ታቀáˆá‹ ቡድን ብቻ áŠá‹" #: 05290400.xhp msgctxt "" @@ -40803,7 +40803,7 @@ "par_idN1057E\n" "help.text" msgid "Select the entry in the current dictionary that you want to edit. If you want, you can also type a new entry in this box. To move from the Original box to the first text box in the Suggestions area, press Enter." -msgstr "" +msgstr "á‹­áˆáˆ¨áŒ¡ ማስገቢያ ለ አáˆáŠ‘ መá‹áŒˆá‰  ቃላት እርስዎ ማረሠየሚáˆáˆáŒ‰á‰µáŠ•: እርስዎ ከ áˆáˆˆáŒ‰ አዲስ ማስገቢያ በዚህ ሳጥን á‹áˆµáŒ¥ መጻá ይችላሉ ከ ዋናዠሳጥን á‹áˆµáŒ¥ ለማንቀሳቀስ ወደ መጀመሪያዠየ ጽáˆá ሳጥን á‹áˆµáŒ¥ በ ቀረበዠቦታ መሰረት: ይጫኑ ማስገቢያá‹áŠ•" #: 06202000.xhp msgctxt "" @@ -40819,7 +40819,7 @@ "par_idN105CD\n" "help.text" msgid "Type a suggested replacement for the entry that is selected in the Original text box. The replacement word can contain a maximum of eight characters." -msgstr "" +msgstr "ይጻበየ ቀረበá‹áŠ• መቀየሪያ ቃሠለ ተመረጠዠማስገቢያ በ ዋናዠሳጥን á‹áˆµáŒ¥: የ መቀየሪያ ቃሠመያዠየሚችለዠስáˆáŠ•á‰µ ባህሪዎች áŠá‹ " #: 06202000.xhp msgctxt "" @@ -40919,7 +40919,7 @@ "2\n" "help.text" msgid "Opens a new window that displays the contents of the current window. You can now view different parts of the same document at the same time." -msgstr "" +msgstr "አዲስ መስኮት መክáˆá‰» የ አáˆáŠ‘ን ይዞታዎች የሚያሳይእርስዎ አáˆáŠ• የ ተለያዩ ክáሎች ተመሳሳይ ሰáŠá‹¶á‰½ በ ተመሳሳይ ክáሠማየት ይችላሉ በ ተመሳሳይ ጊዜ" #: 07010000.xhp msgctxt "" @@ -40928,7 +40928,7 @@ "3\n" "help.text" msgid "Changes made to a document in one window are automatically applied to all of the windows that are open for that document." -msgstr "" +msgstr "በ ሰáŠá‹± ላይ የ ተáˆáŒ¸áˆ˜á‹ ለá‹áŒ¥ በ አንድ መስኮት ራሱ በራሱ á‹­áˆáŒ½áˆ›áˆ በáˆáˆ‰áˆ የ ተከáˆá‰± መስኮቶች ላይ" #: 07080000.xhp msgctxt "" @@ -40954,7 +40954,7 @@ "2\n" "help.text" msgid "Lists the currently open documents. Select the name of a document in the list to switch to that document." -msgstr "" +msgstr "አáˆáŠ• የ ተከáˆá‰± መስኮቶች á‹áˆ­á‹áˆ­: የ ሰáŠá‹±áŠ• ስሠይáˆáˆ¨áŒ¡ ከ á‹áˆ­á‹áˆ­ á‹áˆµáŒ¥ ሰንድ ለ መቀየር" #: about_meta_tags.xhp msgctxt "" @@ -40962,7 +40962,7 @@ "tit\n" "help.text" msgid "HTML import and export" -msgstr "" +msgstr "HTML ማáˆáŒ« እና መላኪያ" #: about_meta_tags.xhp msgctxt "" @@ -41455,7 +41455,7 @@ "tit\n" "help.text" msgid "Formatting Mark" -msgstr "" +msgstr "የ አቀራረብ áˆáˆáŠ­á‰µ" #: formatting_mark.xhp msgctxt "" @@ -41463,7 +41463,7 @@ "bm_id9930722\n" "help.text" msgid "CTL;(not) wrapping words words;wrapping in CTL" -msgstr "" +msgstr "CTL;(አይደለáˆ) ቃላት መጠቅለያ ቃላት;መጠቅለያ በ CTL" #: formatting_mark.xhp msgctxt "" @@ -41471,7 +41471,7 @@ "hd_id030220091035120\n" "help.text" msgid "Formatting Mark" -msgstr "" +msgstr "የ አቀራረብ áˆáˆáŠ­á‰µ" #: formatting_mark.xhp msgctxt "" @@ -41479,7 +41479,7 @@ "par_id0302200910351248\n" "help.text" msgid "Opens a submenu to insert special formatting marks. Enable CTL for more commands." -msgstr "" +msgstr "ንዑስ á‹áˆ­á‹áˆ­ መክáˆá‰» የተለየ የ አቀራረብ áˆáˆáŠ­á‰µ ለማስገባት: ያስችሉ CTL ለ ተጨማሪ ትእዛዞች" #: formatting_mark.xhp msgctxt "" @@ -41527,7 +41527,7 @@ "par_id9407330\n" "help.text" msgid "Inserts an invisible hyphen within a word that will appear and create a line break once it becomes the last character in a line." -msgstr "" +msgstr "የማይታይ ክáተት ማስገቢያ በ ቃሠá‹áˆµáŒ¥ የሚታይ እና የ መስመር መጨረሻ መáጠሪያ በ መስመር ላይ የ መጨረሻ ባህሪ ሲሆን " #: formatting_mark.xhp msgctxt "" @@ -41631,7 +41631,7 @@ "par_id3150789\n" "help.text" msgid "Opens the Gallery deck of the Sidebar, where you can select images and audio clips to insert into your document." -msgstr "" +msgstr "መክáˆá‰» የ አዳራሽ ማሳረáŠá‹« በ ጎን መደርደሪያ በኩáˆ: እርስዎ መáˆáˆ¨áŒ¥ የሚችሉበት áˆáˆµáˆŽá‰½ እና ድáˆá†á‰½ ናሙና ለማስገባት በ እርስዎ ሰáŠá‹µ á‹áˆµáŒ¥" #: gallery.xhp msgctxt "" @@ -41655,7 +41655,7 @@ "par_id3145346\n" "help.text" msgid "Themes are listed on the left side of the Gallery.Click a theme to view the objects associated with the theme." -msgstr "" +msgstr "የ ገጽታዎች á‹áˆ­á‹áˆ­ በ áŒáˆ« በኩሠáŠá‹ በ አዳራሽ.ይጫኑ ገጽታá‹áŠ• እቃዎች ለ መመáˆáŠ¨á‰µ ከ ገጽታ ጋር የተዛመዱ" #: gallery.xhp msgctxt "" @@ -41928,7 +41928,7 @@ "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 @@ "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 @@ "par_idN10560\n" "help.text" msgid "Opens the Media Player window where you can preview movie and sound files as well as insert these files into the current document." -msgstr "" +msgstr "መክáˆá‰» የ ብዙሀን መገናኛ ማጫወቻ መስኮት እርስዎ በ ቅድመ እይታ የሚያዩበት ሙቪ እና ድáˆá… á‹á‹­áˆŽá‰½ እንዲáˆáˆ የሚያስገቡበት እáŠá‹šáˆ…ን á‹á‹­áˆŽá‰½ ወደ እርስዎ ሰáŠá‹µ á‹áˆµáŒ¥ " #: mediaplayer.xhp msgctxt "" @@ -42088,7 +42088,7 @@ "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 @@ "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 @@ "par_id10292015122231415\n" "help.text" msgid "Toggle the visibility of the Find toolbar to search for text or navigate a document by element." -msgstr "" +msgstr "መቀያየሪያ የሚታየá‹áŠ• የ መáˆáˆˆáŒŠá‹« እቃ መደርደሪያ ለ ጽáˆá መቃኛ ወይንሠሰáŠá‹¶á‰½áŠ• በ አካሠመáˆáˆˆáŒŠá‹«" #: menu_view_sidebar.xhp msgctxt "" @@ -42376,7 +42376,7 @@ "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 @@ "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 @@ "par_idN10700\n" "help.text" msgid "Click the Link 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 "ይጫኑ የ አገናአሳጥን እርስዎ ማገናኘት ከ áˆáˆˆáŒ‰ ከ ዋናዠá‹á‹­áˆ ጋር: áˆáˆáŠ­á‰µ ካáˆá‰°á‹°áˆ¨áŒˆá‰ á‰µ: የ መገናኛ á‹á‹­áˆ‰ ይጣበቃ (በ áˆáˆ‰áˆ የ á‹á‹­áˆ አቀራረብ የ ተደገሠአይደለáˆ)." #: moviesound.xhp msgctxt "" @@ -42408,7 +42408,7 @@ "par_id0120200912190948\n" "help.text" msgid "Alternatively, you can choose Tools - Media Player 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 "በ አማራጭ: እርስዎ መáˆáˆ¨áŒ¥ ይችላሉ መሳሪያዎች - መገናኛ ማጫወቻ ለ መክáˆá‰µ የ መገናኛ ማጫወቻ: ይጠቀሙ የ መገናኛ ማጫወቻ áˆáˆ‰áŠ•áˆ የ ተደገበየ መገናኛ á‹á‹­áˆŽá‰½ በ ቅድመ እይታ ለማየት: ይጫኑ የ መáˆáŒ¸áˆšá‹« á‰áˆá በ መገናኛ ማጫወቻ መስኮት á‹áˆµáŒ¥ ለማስገባት የ አáˆáŠ‘ን የ መገናኛ á‹á‹­áˆ ወደ እርስዎ ሰáŠá‹µ á‹áˆµáŒ¥" #: moviesound.xhp msgctxt "" @@ -42432,7 +42432,7 @@ "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 @@ "par_id0120200912062096\n" "help.text" msgid "The Media Playback toolbar is shown." -msgstr "" +msgstr "የ መገናኛ በድጋሚ ማጫወቻ እቃ መደርደሪያ ይታያáˆ" #: moviesound.xhp msgctxt "" @@ -42496,7 +42496,7 @@ "par_id3174230\n" "help.text" msgid "Mark to enable the automatic check for updates. Choose %PRODUCTNAME - Online Update in the Options dialog box to disable or enable this feature." -msgstr "" +msgstr "ራሱ በራሱ ማሻሻያ እንዲáˆáˆáŒ ለማስቻሠáˆáˆáŠ­á‰µ ያድርጉ: á‹­áˆáˆ¨áŒ¡ %PRODUCTNAME - በ መስመር ላይ ማሻሻያ áˆáˆ­áŒ« ንáŒáŒáˆ­ ሳጥን á‹áˆµáŒ¥ ይህን ገጽታ ለ ማስቻሠወይንሠለ ማሰናከሠ" #: online_update.xhp msgctxt "" @@ -42616,7 +42616,7 @@ "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 @@ "par_id1906491\n" "help.text" msgid "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." -msgstr "" +msgstr "á‹áŒáŒ ማሻሻያ á‹­áˆáˆáŒ‹áˆ ለ እርስዎ እትሠለ %PRODUCTNAME. አዲስ እትሠá‹áŒáŒ ከሆáŠ: እርስዎ መáˆáˆ¨áŒ¥ ይችላሉ ለማá‹áˆ¨á‹µ: ከ ወረደ በኋላ እርስዎ በቂ የ መጻá áቃድ ካለዎት ለ መáŒáŒ áˆšá‹« ዳይሬክቶሪ ላይ: ማሻሻያá‹áŠ• መáŒáŒ áˆ ይችላሉ " #: online_update_dialog.xhp msgctxt "" @@ -42672,7 +42672,7 @@ "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 @@ "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 @@ "par_id4238715\n" "help.text" msgid "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." -msgstr "" +msgstr "ማሻሻያ á‹á‹­áˆ ማá‹áˆ¨áŒƒ እና ማስቀመጫ ወደ ዴስክቶᕠወይንሠáŽáˆá‹°áˆ­ እንደ እርስዎ áˆáˆ­áŒ«: áŽáˆá‹°áˆ­ á‹­áˆáˆ¨áŒ¡ በ %PRODUCTNAME - መስመር ላይ ማሻሻያ áˆáˆ­áŒ«á‹Žá‰½ ንáŒáŒáˆ­ ሳጥን á‹áˆµáŒ¥ " #: online_update_dialog.xhp msgctxt "" @@ -42880,7 +42880,7 @@ "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 @@ "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 http://extensions.libreoffice.org/ page." -msgstr "" +msgstr "እርስዎ ማáŒáŠ˜á‰µ ይችላሉ የ ተጨማሪዎች ስብስብ በ ዌብ ላይ: ይጫኑ \"ተጨማሪ ተጨማሪዎች á‹«áŒáŠ™\" አገናአከ ተጨማሪዎች አስተዳዳሪ ለ መክáˆá‰µ የ ዌብ መቃኛ እና ይመáˆáŠ¨á‰± የ http://extensions.libreoffice.org/ ገጽ" #: packagemanager.xhp msgctxt "" @@ -43000,7 +43000,7 @@ "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 @@ "par_id4856410\n" "help.text" msgid "An extension can show a license dialog. Read the license. Click the Scroll Down button to scroll down if necessary. Click Accept to continue the installation of the extension." -msgstr "" +msgstr "ተእማሪ የ áቃድ ንáŒáŒáˆ­ ያሳያሠáቃዱን ያንብቡ: ይጫኑ መሸብለያá‹áŠ• ወደ ታች ለ መሸብለሠአስáˆáˆ‹áŒŠ ከሆáŠ: ይጫኑ እቀበላለሠእና ለ መቀጠሠተጨማሪá‹áŠ• ለ መáŒáŒ áˆ " #: packagemanager.xhp msgctxt "" @@ -43104,7 +43104,7 @@ "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 @@ "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 @@ "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 -Nru libreoffice-5.1.1~rc2/translations/source/am/helpcontent2/source/text/shared/autopi.po libreoffice-5.1.2~rc2/translations/source/am/helpcontent2/source/text/shared/autopi.po --- libreoffice-5.1.1~rc2/translations/source/am/helpcontent2/source/text/shared/autopi.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/am/helpcontent2/source/text/shared/autopi.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-03 16:30+0000\n" +"PO-Revision-Date: 2016-02-24 17:36+0000\n" "Last-Translator: Samson B \n" "Language-Team: LANGUAGE \n" "Language: am\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1454517054.000000\n" +"X-POOTLE-MTIME: 1456335366.000000\n" #: 01000000.xhp msgctxt "" @@ -637,7 +637,7 @@ "par_idN10634\n" "help.text" msgid "Includes a line with references to a business letter on the letter template." -msgstr "" +msgstr "ለ ንáŒá‹µ ደብዳቤ የ ማመሳከሪያ መስመር ማካተቻ በ ደብዳቤ ቴáˆá•áˆŒá‰µ á‹áˆµáŒ¥ " #: 01010300.xhp msgctxt "" @@ -1125,7 +1125,7 @@ "2\n" "help.text" msgid "Opens the wizard for faxes. The wizard can help you create document templates for fax documents. You can then print the fax documents to a printer or to a fax machine, if fax driver software is available. " -msgstr "" +msgstr "አዋቂá‹áŠ• መክáˆá‰» ለ á‹áŠ­áˆµ አዋቂዠይረዳዎታሠለ መáጠር የ ሰáŠá‹µ ቴáˆá•áˆŒá‰µ ለ á‹áŠ­áˆµ ሰáŠá‹¶á‰½: እርስዎ ከዛ ማተሠይችላሉ የ á‹áŠ­áˆµ ሰáŠá‹¶á‰½ ወደ ማተሚያ ወይንሠወደ á‹áŠ­áˆµ መላኪያ: የ á‹áŠ­áˆµ መላኪያ ሶáትዌር á‹áŒáŒ ከሆአ" #: 01020000.xhp msgctxt "" @@ -1134,7 +1134,7 @@ "3\n" "help.text" msgid "$[officename] comes with a template for fax documents, which you can modify with the wizard to suit your own needs. The wizard leads you step-by-step in creating a document template, and offers numerous layout and design options. The document preview gives you an impression of how the finished fax will appear." -msgstr "" +msgstr "$[officename] ከ á‹áŠ­áˆµ ሰáŠá‹¶á‰½ ቴáˆá•áˆŒá‰µ ጋር አብሮ ይመጣáˆ: እርስዎ ማሻሻሠይችላሉ በ አዋቂዠየ እርስዎን áላጎት እንዲያሟላ አድርገá‹: አዋቂዠደረጃ-በ-ደረጃ ይመራዎታሠየ ሰáŠá‹µ ቴáˆá•áˆŒá‰µ ለ መáጠር: እና በርካታ እቅድ: የ ንድá áˆáˆ­áŒ«á‹Žá‰½ ያቀርባáˆ: የ ሰáŠá‹µ ቅድመ እይታ á‹áŠ­áˆ± áˆáŠ• እንደሚመስሠበ ቅድሚያ ያሳይዎታáˆ" #: 01020000.xhp msgctxt "" @@ -1161,7 +1161,7 @@ "6\n" "help.text" msgid "Click the Back button to view the settings chosen on the previous page. The current settings will not be modified or deleted if you click this button. Back will be active from the second page onwards." -msgstr "" +msgstr "ይጫኑ የ the ወደ ኋላ á‰áˆá ባለáˆá‹ ገጽ የ መረጡትን ማሰናጃ ለ መመáˆáŠ¨á‰µ: የ አáˆáŠ‘ ማሰናጃ አይሻሻáˆáˆ ወይንሠአይጠá‹áˆ እርስዎ ይህን á‰áˆá ከተጫኑ ወደ ኋላ á‹áŒáŒ የሚሆáŠá‹ ከ áˆáˆˆá‰°áŠ›á‹ ገጽ ጀáˆáˆ® áŠá‹ " #: 01020000.xhp msgctxt "" @@ -1783,7 +1783,7 @@ "3\n" "help.text" msgid "$[officename] comes with a sample template for agendas that you can modify to suit your own needs. The wizard offers numerous layout and design options for creating document templates. The preview gives you an impression of how the finished agenda will appear." -msgstr "" +msgstr "$[officename] ከ አጄንዳ ሰáŠá‹¶á‰½ ቴáˆá•áˆŒá‰µ ጋር አብሮ ይመጣáˆ: እርስዎ ማሻሻሠይችላሉ በ አዋቂዠየ እርስዎን áላጎት እንዲያሟላ አድርገá‹: አዋቂዠይመራዎታሠየ ሰáŠá‹µ ቴáˆá•áˆŒá‰µ ለ መáጠር: እና በርካታ እቅድ: የ ንድá áˆáˆ­áŒ«á‹Žá‰½ ያቀርባáˆ: የ ሰáŠá‹µ ቅድመ እይታ á‹áŠ­áˆ± áˆáŠ• እንደሚመስሠበ ቅድሚያ ያሳይዎታáˆ" #: 01040000.xhp msgctxt "" @@ -1792,7 +1792,7 @@ "4\n" "help.text" msgid "Within the wizard, you can modify your entries at any time. You may also skip an entire page or even all the pages, in which case the current (or default) settings remain in effect." -msgstr "" +msgstr "በ አዋቂዠእርስዎ በማንኛá‹áˆ ጊዜ የ እርስዎን ማስገቢያ እና áˆáˆ­áŒ« ማሻሻሠይችላሉ: ጠቅላላ ገጽ መá‹áˆˆáˆ ይችላሉወይንሠባጠቃላይ የ አዋቂá‹áŠ• ገጽ መá‹áˆˆáˆ ይችላሉ: የ አáˆáŠ‘ (ወይንሠáŠá‰£áˆ­) ማሰናጃዠእንደ áŠá‰ áˆ­ á‹áŒ¤á‰± ይቆያáˆ" #: 01040000.xhp msgctxt "" @@ -1810,7 +1810,7 @@ "6\n" "help.text" msgid "Returns to the selections made on the previous page. The current settings remain in effect. This button only becomes active after the first page." -msgstr "" +msgstr "ባለáˆá‹ ገጽ የ ተመረጠá‹áŠ• ይመáˆáˆ³áˆ: የ አáˆáŠ‘ ማሰናጃ እንደ áŠá‰ áˆ­ ይቆያáˆ: ይህ ገጽ á‹áŒáŒ የሚሆáŠá‹ ከ መጀመሪያዠገጽ በኋላ áŠá‹" #: 01040000.xhp msgctxt "" @@ -1828,7 +1828,7 @@ "8\n" "help.text" msgid "The wizard saves the current settings and goes to the next page. Once you reach the last page, this button will become inactive." -msgstr "" +msgstr "አዋቂዠየ አáˆáŠ‘ን ማሰናጃ ያስቀáˆáŒ£áˆ እና ወደሚቀጥለዠገጽ ይሄዳáˆ: መጨረሻዠገጽ ላይ ሲደርሱ ይህ á‰áˆá ንበአይሆንáˆ" #: 01040000.xhp msgctxt "" @@ -1846,7 +1846,7 @@ "10\n" "help.text" msgid "According to your selections, the wizard creates a document template and saves it on your hard disk. A new document based on the template appears in the work area, with the filename \"UntitledX\" (X stands for an automatic number)." -msgstr "" +msgstr "እንደ እርስዎ áˆáˆ­áŒ« አይáŠá‰µ: አዋቂዠየ ሰáŠá‹µ ቴáˆá•áˆŒá‰µ á‹­áˆáŒ¥áˆ­ እና ያስቀáˆáŒ£áˆ በ እርስዎ ሀርድ ዲስክ ላይ: አዲስ ሰáŠá‹µ ቴáˆá•áˆŒá‰±áŠ• መሰረት ያደረገ በ ስራ ቦታ ላይ ይታያáˆ: በ á‹á‹­áˆ ስሠ\"á‹«áˆá‰°áˆ°á‹¨áˆ˜X\" (X የሚወክለዠራሱ በራሱ á‰áŒ¥áˆ­ መስጫ áŠá‹)." #: 01040000.xhp msgctxt "" @@ -1855,7 +1855,7 @@ "13\n" "help.text" msgid "$[officename] saves the current settings in the wizard according to the selected document template. These will be used as the default settings the next time you activate the wizard." -msgstr "" +msgstr "$[officename] የ አáˆáŠ‘ን የ አዋቂá‹áŠ• ማሰናጃዎች ያስቀáˆáŒ£áˆ: እንደ ተመረጠዠቴáˆá•áˆŒá‰µ: እáŠá‹šáˆ…ን ማሰናጃዎች ይጠቀማሠእንደ áŠá‰£áˆ­ ማሰናጃ በሚቀጥለዠጊዜ አዋቂዠሲያስጀáˆáˆ©" #: 01040100.xhp msgctxt "" @@ -2574,7 +2574,7 @@ "7\n" "help.text" msgid "Accepts the new settings and moves to the next page. You will not be able to select this button in the last editing step." -msgstr "" +msgstr "የ አáˆáŠ‘ን ማሰናጃ መቀበያ እና ወደሚቀጥለዠገጽ መሄጃእርስዎ ይህን á‰áˆá መáˆáˆ¨áŒ¥ አይችሉሠበ መጨረሻ የማረሚያ ደረጃ ላይ" #: 01050000.xhp msgctxt "" @@ -2832,7 +2832,7 @@ "26\n" "help.text" msgid "Allows you to select a slide design for the presentation you selected on page 1 of the Wizard. In the upper list box you can choose from three slide design types (education, presentation backgrounds and presentations). In the lower list box, you can select one of the templates for your presentation." -msgstr "" +msgstr "እርስዎን የ ተንሸራታች ንድá መáˆáˆ¨áŒ¥ ያስችሎታሠለ ማቅረቢያ እርስዎ በ ገጽ 1 ላይ በ አዋቂዠየመረጡትን: ከ ላይኛዠየ á‹áˆ­á‹áˆ­ ሳጥን á‹áˆµáŒ¥ እርስዎ ከ ሶስት የ ተንሸራታች ንድá á‹áˆµáŒ¥ መáˆáˆ¨áŒ¥ ይችላሉ (ትáˆáˆ…ርት: የ ማቅረቢያ መደብ: እና ማቅረቢያ) ከ ታችኛዠየ á‹áˆ­á‹áˆ­ ሳጥን á‹áˆµáŒ¥ እርስዎ አንድ ቴáˆá•áˆŒá‰µ መáˆáˆ¨áŒ¥ ይችላሉ ለ እርስዎ ማቅረቢያ" #: 01050200.xhp msgctxt "" @@ -3137,7 +3137,7 @@ "20\n" "help.text" msgid "Click here to continue to page 4 of the Presentation Wizard. The wizard ends here if you selected the \"Empty presentation\" option on page 1 of the Wizard." -msgstr "" +msgstr "ይጫኑ እዚህ ለ መቀጠሠወደ ገጽ 4 የ ማቅረቢያ አዋቂ. አዋቂዠእዚህ ይጨርሳሠእርስዎ ከ መረጡ \"ባዶ ማቅረቢያ\" áˆáˆ­áŒ« በ ገጽ 1 አዋቂዠላይ" #: 01050400.xhp msgctxt "" @@ -3226,7 +3226,7 @@ "36\n" "help.text" msgid "Use this field for further thoughts and ideas that you would like to cover later in your presentation." -msgstr "" +msgstr "ይህን ሜዳ ይጠቀሙ ሀሳቦች ለማስá‹á‰µ እና በ እርስዎ ማቅረቢያ á‹áˆµáŒ¥ በኋላ ማብራራት የሚáˆáˆáŒ‰á‰µáŠ• " #: 01050400.xhp msgctxt "" @@ -3279,7 +3279,7 @@ "21\n" "help.text" msgid "In the list field, you see all pages belonging to the selected presentation template. All pages with a checkmark in the check box next to their names will be included in the created presentation. To not include a page, clear the check box in front of the page name. Click the small plus sign that is next to the page name to display the corresponding sub-items." -msgstr "" +msgstr "በ á‹áˆ­á‹áˆ­ ሜዳ á‹áˆµáŒ¥: ለ እርስዎ áˆáˆ‰áˆ ይታያሠየ ተመረጠዠየ ማቅረቢያ ቴáˆá•áˆŒá‰µ: áˆáˆ‰áˆ ገጾች ከ áˆáˆáŠ­á‰µ ማድረጊያ ጋር ስማቸዠአጠገብ áˆáˆáŠ­á‰µ ማድረጊያ ያላቸዠበሚáˆáŒ áˆ¨á‹ ማቅረቢያ á‹áˆµáŒ¥ ይካተታሉ: እንዳይካተት የሚáˆáˆáŒ‰á‰µ ገጽ ካላ áˆáˆáŠ­á‰±áŠ• ያጥበከ ገጹ ስሠáŠá‰µ ለ áŠá‰µ ያለá‹áŠ•: ይጫኑ ትንሹን የ መደመር áˆáˆáŠ­á‰µ ከ ሚቀጥለዠገጽ ስሠአጠገብ ያለá‹áŠ• ለማሳየት ተመሳሳይ ንዑስ-እቃዎችን" #: 01050500.xhp msgctxt "" @@ -3383,7 +3383,7 @@ "2\n" "help.text" msgid "On this page of the Form Wizard, you can specify the table or query that you need to create the form as well as the fields that you want to include in the form." -msgstr "" +msgstr "በዚህ ገጽ ላይ በ áŽáˆ­áˆ አዋቂ እርስዎ መወሰን ይችላሉ መáጠር የሚáˆáˆáŒ‰á‰µáŠ• ሰንጠረዥ ወይንሠጥያቄ áŽáˆ­áˆ: እርስዎ እንዲáˆáˆ በ áŽáˆ­áˆ™ á‹áˆµáŒ¥ የሚካተቱትን ሜዳዎች መáˆáˆ¨áŒ¥ ይችላሉ" #: 01090100.xhp msgctxt "" @@ -4646,7 +4646,7 @@ "4\n" "help.text" msgid "Displays the names of the fields to be included in the report. At the right you can enter a label for each field that will be printed in the report." -msgstr "" +msgstr "በ መáŒáˆˆáŒ« á‹áˆµáŒ¥ የሚካተቱትን ሜዳዎች ስሞች ማሳያ: በ ቀአበኩሠእርስዎ áˆáˆáŠ­á‰µ ማስገባት ይችላሉ ለ እያንዳንዱ ሜዳ በ መáŒáˆˆáŒ«á‹ ላይ ለታተመዠ" #: 01100150.xhp msgctxt "" @@ -4681,7 +4681,7 @@ "1\n" "help.text" msgid "You can group records in a report based on the values in one or more fields. Select the fields by which the resulting report will be grouped. You can group up to four fields in a report. When you group more than one field, $[officename] nests the groups according to their group level." -msgstr "" +msgstr "እርስዎ መá‹áŒˆá‰¦á‰½áŠ• በ ቡድን ማድረጠይችላሉ የ ዋጋዎችን መáŒáˆˆáŒ« መሰረት ባደረገ በ አንድ ወይንሠተጨማሪ ሜዳዎች á‹áˆµáŒ¥ ሜዳዎች á‹­áˆáˆ¨áŒ¡ á‹áŒ¤á‰± በ ቡድን የሚደረáŒá‰ á‰µ: እርስዎ እስከ አራት ሜዳዎች በ ቡድን መáŒáˆˆáŒ« á‹áˆµáŒ¥ ማድረጠይችላሉ እርስዎ በ ቡድን በሚያደርጉ ጊዜ ከ አንድ ሜዳ በላይ $[officename] እንደ ቡድኑ ደረጃ ቡድኖች ያሰናዳáˆ" #: 01100200.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/am/helpcontent2/source/text/shared/explorer/database.po libreoffice-5.1.2~rc2/translations/source/am/helpcontent2/source/text/shared/explorer/database.po --- libreoffice-5.1.1~rc2/translations/source/am/helpcontent2/source/text/shared/explorer/database.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/am/helpcontent2/source/text/shared/explorer/database.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-22 00:55+0000\n" +"PO-Revision-Date: 2016-03-04 01:25+0000\n" "Last-Translator: Samson B \n" "Language-Team: LANGUAGE \n" "Language: am\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1453424127.000000\n" +"X-POOTLE-MTIME: 1457054717.000000\n" #: 02000000.xhp msgctxt "" @@ -57,7 +57,7 @@ "12\n" "help.text" msgid "Use queries to find records from data tables based on certain criteria. All queries created for a database are listed under the Queries entry. Since this entry contains the database queries, it is also called the \"query container\"." -msgstr "" +msgstr "ጥያቄዎችን ይጠቀሙ መá‹áŒˆá‰¦á‰½ ለማáŒáŠ˜á‰µ የ ዳታ ሰንጠረዥ መሰረት ያደረገ በ አንዳንድ መመዘኛ: áˆáˆ‰áˆ ጥያቄዎች ለ ዳታቤዠየ ተáˆáŒ áˆ©á‰µ ተዘርá‹áˆ¨á‹‹áˆ በ ጥያቄዎች ማስገቢያ á‹áˆµáŒ¥: ይህ ማስገቢያ የ ዳታቤዠጥያቄዎችን ስለያዘ: የ \"ጥያቄ ማጠራቀሚያ\" ይባላáˆ" #: 02000000.xhp msgctxt "" @@ -111,7 +111,7 @@ "44\n" "help.text" msgid "Decide which columns = data fields you want to include. You can also click the AutoFormat button and select a corresponding formatting type. Close the dialog." -msgstr "" +msgstr "ይወስኑ የትኞቹ አáˆá‹¶á‰½ = ዳታ ሜዳ እርስዎ ማካተት እንደሚáˆáˆáŒ‰: እርስዎ እንዲáˆáˆ መጫን ይችላሉ የ በራሱ አቀራረብ á‰áˆá እና á‹­áˆáˆ¨áŒ¡ ተመሳሳይ የ አቀራረብ አይáŠá‰µ: እና ንáŒáŒáˆ©áŠ• á‹­á‹áŒ‰" #: 02000000.xhp msgctxt "" @@ -138,7 +138,7 @@ "47\n" "help.text" msgid "You can also open the data source view (F4), select the entire database table in the data source view (button in the top left corner of the table), and then drag the selection to a text document or spreadsheet." -msgstr "" +msgstr "እርስዎ መክáˆá‰µ ይችላሉ የ ዳታ áˆáŠ•áŒ­ መመáˆáŠ¨á‰» (F4), á‹­áˆáˆ¨áŒ¡ ጠቅላላ የ ዳታቤዠሰንጠረዥ የ ዳታ áˆáŠ•áŒ­ መመáˆáŠ¨á‰» (á‰áˆá ከ ላይ በ áŒáˆ« ሰንጠረዥ በኩáˆ), እና ከዛ ይጎትቱ áˆáˆ­áŒ«á‹Žá‰µáŠ• ወደ ጽáˆá ሰáŠá‹µ ወይንሠሰንጠረዥ á‹áˆµáŒ¥" #: 02000000.xhp msgctxt "" @@ -210,7 +210,7 @@ "32\n" "help.text" msgid "You can find out which operators and commands can be used to formulate the filter conditions for a query." -msgstr "" +msgstr "እርስዎ ማáŒáŠ˜á‰µ ይችላሉ የትኞቹን አንቀሳቃሾች እና ትእዛዞች እንደሚጠቀሙ ለ መቀመሪያ ማጣሪያ áˆáŠ”ታዎች በ ጥያቄ á‹áˆµáŒ¥" #: 02000000.xhp msgctxt "" @@ -228,7 +228,7 @@ "34\n" "help.text" msgid "You can perform calculations with the data of a table and store the results as a query result." -msgstr "" +msgstr "እርስዎ ስሌቶች መáˆáŒ¸áˆ ይችላሉ ከ ዳታ ሰንጠረዥ á‹áˆµáŒ¥ እና á‹áŒ¤á‰±áŠ• ማስቀመጥ ይችላሉ በ ጥያቄ á‹áŒ¤á‰µ á‹áˆµáŒ¥" #: 02000002.xhp msgctxt "" @@ -262,7 +262,7 @@ "2\n" "help.text" msgid "If a query in which tables or fields no longer exist is opened, the Missing Element dialog appears. This dialog names the missing table or the field which cannot be interpreted and allows you to decide how to continue with the procedure." -msgstr "" +msgstr "ጥያቄ ሰንጠረዡ ወይንሠሜዳዎቹ የሌለ ከ ተከáˆá‰° የ ጎደሉ አካላትንáŒáŒáˆ­ ይታያáˆ: ይህ ንáŒáŒáˆ­ ይሰይማሠየ ጎደሉ ሰንጠረዥ ወይንሠሜዳ እና መáŒáˆˆáŒ½ አይቻáˆáˆ እና እርስዎን ሂደቱን መቀጠሠያስችሎታáˆ" #: 02000002.xhp msgctxt "" @@ -307,7 +307,7 @@ "7\n" "help.text" msgid "The query is opened in the Design View (the graphical interface). Missing tables appear blank and invalid fields appear with their (invalid) names in the list of fields. This lets you work with exactly those fields that caused the error." -msgstr "" +msgstr "ጥያቄ የሚከáˆá‰°á‹ በ ንድá መመáˆáŠ¨á‰» áŠá‹ (የ ንድá ገጽታዎች). የ ጎደሉ ሰንጠረዦች እንደ ባዶ ይታያሉ እና ዋጋ የሌላቸዠሜዳዎች ይታያሉ (ዋጋ የሌለá‹) ስሞች በ á‹áˆ­á‹áˆ­ ሜዳ á‹áˆµáŒ¥: ይህ እርስዎን በ ትክክሠበ እáŠá‹šáˆ… ሜዳዎች ችáŒáˆ­ áˆáŒ¥áˆ¨á‹ በáŠá‰ áˆ¨á‹ መስራት ያስችሎታáˆ" #: 02000002.xhp msgctxt "" @@ -325,7 +325,7 @@ "9\n" "help.text" msgid "Allows you to open the query design in the SQL Mode and to interpret the query as a Native SQL. You can only quit the native SQL mode when the $[officename] statement is completely interpreted (only possible if the used tables or fields in the query really exist)." -msgstr "" +msgstr "እርስዎን የ ጥያቄ ንድá መክáˆá‰µ ያስችሎታáˆá‰  SQL Mode እና ጥያቄá‹áŠ• መተርጎሠእንደ Native SQL. እርስዎ ማቋረጥ የሚችሉት የ native SQL mode ይህ $[officename] አረáተ áŠáŒˆáˆ­ ተተርጉሞ ሲጨረስ áŠá‹ (የ ተጠቀሙት ሰንጠረዦች ወይንሠሜዳዎች በ ጥያቄ á‹áˆµáŒ¥ በ ትክክሠሲገአáŠá‹)" #: 02000002.xhp msgctxt "" @@ -343,7 +343,7 @@ "11\n" "help.text" msgid "Allows you to cancel the procedure and specify that the query should not be opened. This option corresponds to the function of the Cancel dialog button." -msgstr "" +msgstr "እርስዎን አሰራሩን መሰረዠያስችሎታሠእና ጥያቄዠመከáˆá‰µ እንደሌለበት መወሰኛ ይህ áˆáˆ­áŒ« የሚመሳሰለዠተáŒá‰£áˆ­ ከ መሰረዣ ንáŒáŒáˆ­ á‰áˆá ጋር áŠá‹" #: 02000002.xhp msgctxt "" @@ -361,7 +361,7 @@ "13\n" "help.text" msgid "If you selected the first option, but you still want to open the query in the graphics view in spite of missing elements, you can specify whether other errors are ignored. Therefore, in the current opening process, no error message will be displayed if the query can not be correctly interpreted." -msgstr "" +msgstr "እርስዎ የ መጀመሪያá‹áŠ• áˆáˆ­áŒ« ከ መረጡ: áŠáŒˆáˆ­ áŒáŠ• መክáˆá‰µ ከ áˆáˆˆáŒ‰ ጥያቄ በ ንድá መመáˆáŠ¨á‰» የ ጎደሉ አካሎች እያሉት: እርስዎ መወሰን ይችላሉ ሌሎች ስህተቶች ይተዉ እንደሆን ስለዚህ በ አáˆáŠ‘ መክáˆá‰» ሂደት á‹áˆµáŒ¥: áˆáŠ•áˆ የ ስህተት መáˆáŠ¥áŠ­á‰µ አይታይሠጥያቄá‹áŠ• በትክክሠመáŒáˆˆáŒ½ አይቻáˆáˆ" #: 02010100.xhp msgctxt "" @@ -403,7 +403,7 @@ "par_id7024140\n" "help.text" msgid "Most databases use queries to filter or to sort database tables to display records on your computer. Views offer the same functionality as queries, but on the server side. If your database is on a server that supports views, you can use views to filter the records on the server to speed up the display time." -msgstr "" +msgstr "በርካታ የ ዳታቤዞች ጥያቄዎችን እንደ ማጣሪያ ይጠቀማሉ: ወይንሠየ ዳታቤዠሰንጠረዥ መለያ ለ መመá‹áŒˆá‰¥ በ እርስዎ ኮáˆá’ዩተር á‹áˆµáŒ¥: መመáˆáŠ¨á‰» ተመሳሳይ ተáŒá‰£áˆ­ ያቀርባሠእንደ ጥያቄዎች: áŠáŒˆáˆ­ áŒáŠ• በ ሰርቨር በኩáˆ: የ እርስዎ ዳታቤዠበ ሰርቨር ላይ ከሆአእና መመáˆáŠ¨á‰»áŠ• የሚደáŒá ከሆáŠ: እርስዎ መመáˆáŠ¨á‰»áŠ• መጠቀሠይችላሉ ለማጣራት መá‹áŒˆá‰¦á‰½áŠ• በ ሰርቨሩ ላይ ለማáጠን የ ማሳያá‹áŠ• ጊዜ" #: 02010100.xhp msgctxt "" @@ -420,7 +420,7 @@ "par_id8307138\n" "help.text" msgid "The Query Design window layout is stored with a created query, but cannot be stored with a created view." -msgstr "" +msgstr "የ ጥያቄ ንድá መስኮት እቅድ የሚጠራቀመዠበ ተáˆáŒ áˆ¨á‹ ጥያቄ á‹áˆµáŒ¥ áŠá‹: áŠáŒˆáˆ­ áŒáŠ• በ ተáˆáŒ áˆ¨á‹ መመáˆáŠ¨á‰» á‹áˆµáŒ¥ ማጠራቀሠአይቻáˆáˆ" #: 02010100.xhp msgctxt "" @@ -456,7 +456,7 @@ "6\n" "help.text" msgid "In the top of the query Design View window, the icons of the Query Design Bar and the Design bar are displayed." -msgstr "" +msgstr "በ ጥያቄ ንድá መመáˆáŠ¨á‰» መስኮት ከ ላይ በኩáˆ: የ áˆáˆáŠ­á‰µ በ ጥያቄ ንድá መደርደሪያ እና የ ንድá መደርደሪያ ይታያáˆ" #: 02010100.xhp msgctxt "" @@ -465,7 +465,7 @@ "287\n" "help.text" msgid "If you want to test a query, double-click the query name in the database document. The query result is displayed in a table similar to the Data Source View. Note: the table displayed is only temporary." -msgstr "" +msgstr "እርስዎ ጥያቄን መሞከር ከáˆáˆˆáŒ‰: áˆáˆˆá‰µ ጊዜ-ይጫኑ የ ጥያቄá‹áŠ• ስሠከ ዳታቤዠሰáŠá‹µ á‹áˆµáŒ¥: የ ጥያቄዠá‹áŒ¤á‰µ ይታያሠበ ሰንጠረዥ á‹áˆµáŒ¥ ተመሳሳይ áŠá‹ ከ ዳታ áˆáŠ•áŒ­ መመáˆáŠ¨á‰» ማስታወሻ ጋር: ሰንጠረዡ የሚታየዠጊዚያዊ áŠá‹" #: 02010100.xhp msgctxt "" @@ -555,7 +555,7 @@ "8\n" "help.text" msgid "When you open the query design for the first time, in order to create a new query, you can click Add Tables. You then see a dialog in which you must first select the table that will be the basis for the query." -msgstr "" +msgstr "እርስዎ ለ መጀመሪያ ጊዜ የ ጥያቄ ንድá ሲከáቱ: እርስዎ ይጫኑ ሰንጠረዥ መጨመሪያ. ይህ ንáŒáŒáˆ­ ለ እርስዎ ይታያሠእርስዎ በ መጀመሪያ ሰንጠረዥ መáˆáˆ¨áŒ¥ አለብዎት ለ ጥያቄዠመሰረት የሚሆን" #: 02010100.xhp msgctxt "" @@ -564,7 +564,7 @@ "10\n" "help.text" msgid "Double-click fields to add them to the query. Drag-and-drop to define relations." -msgstr "" +msgstr "áˆáˆˆá‰µ ጊዜ-ይጫኑ ሜዳዎቹ ላይ ለ መጨመር ወደ ጥያቄ: መጎተቻ-እና-መጣያ áŒáŠ•áŠ™áŠá‰µ ለ መáŒáˆˆáŒ½ " #: 02010100.xhp msgctxt "" @@ -591,7 +591,7 @@ "12\n" "help.text" msgid "To remove the table from Design View, click the upper border of the table window and display the context menu. You can use the Delete command to remove the table from the Design View. Another option is to press the Delete key." -msgstr "" +msgstr "ሰንጠረዥ ከ ንድá መመáˆáŠ¨á‰» á‹áˆµáŒ¥ ለ ማስወገድ: ይጫኑ የ ላይኛá‹áŠ• ድንበር የ ሰንጠረዡን መስኮት እና የ አገባብ á‹áˆ­á‹áˆ­ ማሳያ: እርስዎ መጠቀሠይችላሉ የ ማጥáŠá‹« ትእዛዠሰንጠረዥ ለ ማስወገድ ከ ንድá መመáˆáŠ¨á‰» á‹áˆµáŒ¥: ሌላዠáˆáˆ­áŒ« የ ማጥáŠá‹« á‰áˆá መጫን áŠá‹" #: 02010100.xhp msgctxt "" @@ -609,7 +609,7 @@ "143\n" "help.text" msgid "You can resize and arrange the tables according to your preferences. To move tables, drag the upper border to the desired position. Enlarge or reduce the size in which the table is displayed by positioning the mouse cursor on a border or on a corner and dragging the table until it is the desired size." -msgstr "" +msgstr "እርስዎ እንደገና መመጠን እና ማዘጋጀት ይችላሉ ሰንጠረዦችን የ እርስዎን áላጎት እንዲያሟላ አድርገá‹: ሰንጠረዥ ለማንቀሳቀá‹áˆµ: ይጎትቱ የ ላይኛá‹áŠ• ድንበር የሚáˆáˆˆáŒˆá‹áŠ• ቦታ: መጠኑን ማሳደጠወይንሠማሳáŠáˆµ ይችላሉ ሰንጠረዡ የሚታይበትን ቦታ በ አይጥ መጠቆሚያ በ ድንበሩ ወይንሠበ ድንበሩ ጠርዠላይ አድርገዠበ መጎተት ሰንጠረዡ የሚáˆáˆáŒ‰á‰µ መጠን ላይ እስኪደርስ ድረስ" #: 02010100.xhp msgctxt "" @@ -627,7 +627,7 @@ "14\n" "help.text" msgid "If there are data relations between a field name in one table and a field name in another table, you can use these relations for your query." -msgstr "" +msgstr "የ ዳታ áŒáŠ•áŠ™áŠá‰µ ካለ በ ሜዳ ስሠመካከሠበ አንድ ሰንጠረዥ á‹áˆµáŒ¥ እና የ ሜዳ ስሠበሌላ ሰንጠረዥ á‹áˆµáŒ¥: እርስዎ መጠቀሠይችላሉ እáŠá‹šáˆ…ን áŒáŠ•áŠ™áŠá‰¶á‰½ በ እርስዎ ጥያቄ á‹áˆµáŒ¥" #: 02010100.xhp msgctxt "" @@ -636,7 +636,7 @@ "15\n" "help.text" msgid "If, for example, you have a spreadsheet for articles identified by an article number, and a spreadsheet for customers in which you record all articles that a customer orders using the corresponding article numbers, then there is a relationship between the two \"article number\" data fields. If you now want to create a query that returns all articles that a customer has ordered, you must retrieve data from two spreadsheets. To do this, you must tell $[officename] what the relationship exists between the data in the two spreadsheets." -msgstr "" +msgstr "ለáˆáˆ³áˆŒ: እርስዎ ሰንጠረዥ ካለዎት ለ ጽáˆáŽá‰½ የሚለይ በ ጽáˆá á‰áŒ¥áˆ­: እና ሰንጠረዥ ለ ደንበኞች እርስዎ የ የሚመዘáŒá‰¡á‰ á‰µ áˆáˆ‰áŠ•áˆ ደንበኛዠያዘዘá‹áŠ• ጽáˆáŽá‰½ ተመሳሳይ የ ጽáˆá á‰áŒ¥áˆ­ የሚጠቀáˆ: ስለዚህ በáŠá‹šáˆ… áˆáˆˆá‰µ ጽáˆáŽá‰½ መካከሠáŒáŠ•áŠ™áŠá‰µ አለ \"የ ጽáˆá á‰áŒ¥áˆ­\" ዳታ ሜዳዎች: እርስዎ አáˆáŠ• ከáˆáˆˆáŒ‰ ጥያቄ መáጠር የ áˆáˆ‰áŠ•áˆ ደንበኞች የያዘዙትን ጽáˆá ለ መመለስ: እርስዎ ዳታ áˆáˆáŒˆá‹ ማáŒáŠ˜á‰µ አለብዎት ከ áˆáˆˆá‰± ሰንጠረዦች á‹áˆµáŒ¥: ይህን ለማድረáŒ: እርስዎ መናገር አለብዎት $[officename] በ áˆáˆˆá‰± ሰንጠረዦች á‹áˆµáŒ¥ ያለá‹áŠ• የ ዳታ áŒáŠ•áŠ™áŠá‰µ" #: 02010100.xhp msgctxt "" @@ -645,7 +645,7 @@ "16\n" "help.text" msgid "To do this, click a field name in a table (for example, the field name \"Item-Number\" from the Customer table), hold down the mouse button and then drag the field name to the field name of the other table (\"Item-Number\" from the Item table). When you release the mouse button, a line connecting the two fields in the two windows appears. The corresponding condition that the content of the two field names must be identical is entered in the resulting SQL query." -msgstr "" +msgstr "ይህን ለማድረáŒ: ይጫኑ የ ሜዳá‹áŠ• ስሠበ ሰንጠረዥ á‹áˆµáŒ¥ (ለáˆáˆ³áˆŒ: የ ሜዳ ስሠ\"የ እቃ-á‰áŒ¥áˆ­\" ከ ደንበኛ ሰንጠረዥ á‹áˆµáŒ¥), ተጭáŠá‹ á‹­á‹«á‹™ የ አይጥ á‰áˆá እና ከዛ ይጎትቱ የ ሜዳá‹áŠ• ስሠወደ ሌላዠሰንጠረዥ ሜዳ ስሠá‹áˆµáŒ¥ (\"የ እቃ-á‰áŒ¥áˆ­\" ከ እቃ ሰንጠረዥ á‹áˆµáŒ¥). እርስዎ የ አይጥ á‰áˆá‰áŠ• ሲለá‰: መስመር ይታያሠáˆáˆˆá‰±áŠ• ሜዳዎች የሚያገናአበ áˆáˆˆá‰±áˆ መስኮቶች á‹áˆµáŒ¥ ይታያáˆ: ተመሳሳይ áˆáŠ”ታ ለ ይዞታዠለ áˆáˆˆá‰± ሜዳዎች ተመሳሳይ መሆን አለበት ያስገቡት á‹áŒ á‰µ በ SQL ጥያቄ á‹áˆµáŒ¥" #: 02010100.xhp msgctxt "" @@ -654,7 +654,7 @@ "137\n" "help.text" msgid "The creation of a query that is based on several related sheets is only possible if you use $[officename] as the interface for a relational database." -msgstr "" +msgstr "ጥያቄ መáጠር በርካታ የ ተዛመዱ ወረቀቶን መሰረት ያደረገ የሚቻለዠእርስዎ ከ ተጠቀሙ áŠá‹ $[officename] እንደ ገጽታ ለ ተዛመዱ ዳታቤዞች" #: 02010100.xhp msgctxt "" @@ -663,7 +663,7 @@ "246\n" "help.text" msgid "You cannot access tables from different databases in a query. Queries involving multiple tables can only be created within one database." -msgstr "" +msgstr "እርስዎ በ ጥያቄ á‹áˆµáŒ¥ ወደ ተለያዩ የ ዳታቤዠá‹áˆµáŒ¥ መድረስ አይችሉáˆ: ጥያቄዎች በርካታ ሰንጠረዦች የሚያካትቱ መáጠር የሚቻለዠከ አንድ ዳታቤዠá‹áˆµáŒ¥ ብቻ áŠá‹" #: 02010100.xhp msgctxt "" @@ -690,7 +690,7 @@ "285\n" "help.text" msgid "Edit Join Properties. Alternatively, press Tab until the line is selected, then press Shift+F10 to display the context menu and there choose the command Edit. Some databases support only a subset of the possible join types." -msgstr "" +msgstr "ማረሚያ ባህሪዎች ማጋጠሚያ በ አማራጭ ይጫኑ Tab መስመሩ እስከሚመረጥ ድረስ: እና ከዛ ይጫኑ Shift+F10 ለ ማሳየት የ አገባብ á‹áˆ­á‹áˆ­ እና ከዛ á‹­áˆáˆ¨áŒ¡ ትእዛዠማረሚያ አንዳንድ ዳታቤዞች የሚደáŒá‰á‰µ ንዑስ ስብስብ ብቻ áŠá‹ የሚቻለá‹áŠ• የ መጋጠሚያ አይáŠá‰µ" #: 02010100.xhp msgctxt "" @@ -708,7 +708,7 @@ "146\n" "help.text" msgid "To delete a relation between two tables, click the connection line and then press the Delete key." -msgstr "" +msgstr "በ áˆáˆˆá‰µ ሰንጠረዦች መካከሠያለá‹áŠ• áŒáŠ•áŠ™áŠá‰µ ለማጥá‹á‰µ: ይጫኑ በ መገናኛዠመስመር ላይ እና ከዛ ይጫኑ ማጥáŠá‹« á‰áˆá" #: 02010100.xhp msgctxt "" @@ -717,7 +717,7 @@ "284\n" "help.text" msgid "Alternatively, delete the respective entries in Fields involved in the Relations dialog. Or press Tab until the connecting vector is displayed highlighted, then press Shift+F10 to open the context menu and select Delete command." -msgstr "" +msgstr "በ አማራጭ: ማጥáŠá‹« የ ተወሰአማስገቢያ በ ሜዳዎች ዙሪያ በ ተዛማቹ ንáŒáŒáˆ­ á‹áˆµáŒ¥: ወይንሠይጫኑ Tab አገናኙ አቅጣጫ እስከሚታይ እና እስከሚደáˆá‰… ድረስ: እና ከዛ ይጫኑ Shift+F10 ለ መክáˆá‰µ የ አገባብ á‹áˆ­á‹áˆ­ እና á‹­áˆáˆ¨áŒ¡ ማጥáŠá‹« ትእዛá‹" #: 02010100.xhp msgctxt "" @@ -735,7 +735,7 @@ "18\n" "help.text" msgid "Select conditions to define the query. Each column of the design table accepts a data field for the query. The conditions in one row are linked with a Boolean AND." -msgstr "" +msgstr "áˆáŠ”ታዎች á‹­áˆáˆ¨áŒ¡ ጥያቄá‹áŠ• ለ መáŒáˆˆáŒ½ እያንዳንዱ አáˆá‹µ በ ንድá ሰንጠረዥ á‹áˆµáŒ¥ የ ዳታ ሜዳ ይቀበላሠለ ጥያቄ: áˆáŠ”ታዎቹ በ አንድ ረድá ላይ ተገናáŠá‰°á‹‹áˆ ከ Boolean AND. ጋር" #: 02010100.xhp msgctxt "" @@ -753,7 +753,7 @@ "20\n" "help.text" msgid "First, select all field names from the tables that you want to add to the query. You can do this either with drag-and-drop or by double-clicking a field name in the table window. With the drag-and-drop method, use the mouse to drag a field name from the table window into the lower area of the query design. As you do this, you can decide which column you want to add the field to. Select a field name by double-clicking. It will then be added to the next free column." -msgstr "" +msgstr "መጀመሪያ á‹­áˆáˆ¨áŒ¡ áˆáˆ‰áŠ•áˆ የ ሜዳ ስሞች ከ ሰንጠረዥ á‹áˆµáŒ¥ እርስዎ ወደ ጥያቄ á‹áˆµáŒ¥ መጨመር የሚáˆáˆáŒ‰á‰µáŠ•: ይህን ለማድረጠይጎትቱ-እና-ይጣሉ ወይንሠáˆáˆˆá‰µ ጊዜ-ይጫኑ በ ሜዳዠስሠላይ ሰንጠረዥ መስኮት ላይ: በ መጎተቻ-እና-መጣያ ዘዴ አይጡን ይጠቀሙ የ ሜዳ ስሠከ ሰንጠረዥ መስኮት á‹áˆµáŒ¥ ወደ ታችኛዠየ ጥያቄ ንድá ቦታ : ይህን ሲያደርጉ: እርስዎ መወሰን ይችላሉ የትኛá‹áŠ• አáˆá‹µ መጨመር እንደሚáˆáˆáŒ‰ ወደ ሜዳá‹: á‹­áˆáˆ¨áŒ¡ የ ሜዳ ስሠáˆáˆˆá‰µ ጊዜ-በመጫን ከዛ ወደሚቀጥለዠáŠáƒ አáˆá‹µ ይጨመራáˆ" #: 02010100.xhp msgctxt "" @@ -771,7 +771,7 @@ "22\n" "help.text" msgid "To remove a field name from the query, click the column header of the field and choose the Delete command on the context menu for the column." -msgstr "" +msgstr "የ ሜዳ ስሠከ ጥያቄ á‹áˆµáŒ¥ ለማስወገድ: ይጫኑ በ አáˆá‹µ ራስጌ ሜዳ ላይ እና á‹­áˆáˆ¨áŒ¡ የ ማጥáŠá‹« ትእዛዠከ አáˆá‹µ አገባብ á‹áˆ­á‹áˆ­ á‹áˆµáŒ¥" #: 02010100.xhp msgctxt "" @@ -789,7 +789,7 @@ "278\n" "help.text" msgid "Use the Save icon on the Standard Bar to save the query. You see a dialog that asks you to enter a name for the query. If the database supports schemas, you can also enter a schema." -msgstr "" +msgstr "ይጠቀሙ የ ማስቀመጫ áˆáˆáŠ­á‰µ በ መደበኛ መደርደሪያ ላይ ጥያቄ ለ ማስቀመጥ: ለ እርስዎ ይህ ንáŒáŒáˆ­ ይታያሠእና ይጠይቃሠስሠእንዲያስገቡ ለ ጥያቄá‹: የ ዳታቤዠንድá የሚደáŒá ከሆáŠ: እርስዎ ንድá ማስገባት ይችላሉ" #: 02010100.xhp msgctxt "" @@ -807,7 +807,7 @@ "280\n" "help.text" msgid "Enter the name of the schema that is assigned to the query or table view." -msgstr "" +msgstr "ስሠያስገቡ ለ ንድá ለ ጥያቄዠለ ተመደበዠወይንሠለ ሰንጠረዥ መመáˆáŠ¨á‰»" #: 02010100.xhp msgctxt "" @@ -843,7 +843,7 @@ "24\n" "help.text" msgid "To filter data for the query, set the desired preferences in the lower area of the Design View. The following lines are available:" -msgstr "" +msgstr "ለ ጥያቄዠዳታ ለማጣራት: የሚáˆáˆˆáŒˆá‹áŠ• áˆáˆ­áŒ« ያሰናዱ ከ ታች በኩሠበ ንድá መመáˆáŠ¨á‰» á‹áˆµáŒ¥: የሚቀጥሉት መስመሮች á‹áŒáŒ ናቸá‹:" #: 02010100.xhp msgctxt "" @@ -861,7 +861,7 @@ "26\n" "help.text" msgid "Enter the name of the data field that you referred to in the Query. All settings made in the lower rows refer to this field. If you activate a cell with a mouse click you'll see an arrow button, which enables you to select a field. The \"Table name.*\" option selects all data fields and the criteria is valid for all table fields." -msgstr "" +msgstr "የ ዳታ ሜዳ ስሠያስገቡ እርስዎ በ ጥያቄ á‹áˆµáŒ¥ ያመሳከሩትን: áˆáˆ‰áˆ ማሰናጃዎች በ ታችኛዠረድá በኩሠያሉት የሚያመሳክሩት ይህን ሜዳ áŠá‹ እርስዎ በ አይጥ ክáሠካስጀመሩ ይጫኑ ለ እርስዎ የ ቀስት á‰áˆá ይታያáˆ: እርስዎን ሜዳ መáˆáˆ¨áŒ¥ ያስችሎታáˆ: የ \"ሰንጠረዥ ስáˆ.*\" áˆáˆ­áŒ« ይመርጣሠáˆáˆ‰áŠ•áˆ የ ዳታ ሜዳዎች እና መለያዠለ áˆáˆ‰áˆ ሰንጠረዥ ሜዳዎች ዋጋ አለá‹" #: 02010100.xhp msgctxt "" @@ -879,7 +879,7 @@ "149\n" "help.text" msgid "Specifies an alias. This alias will be listed in a query instead of the field name. This makes it possible to use user-defined column labels. For example, if the data field has the name PtNo and, instead of that name, you would like to have PartNum appear in the query, enter PartNum as alias." -msgstr "" +msgstr "ሀሰት መወሰኛ: ይህ ሀሰት በ ጥያቄ á‹áˆ­á‹áˆ­ á‹áˆµáŒ¥ ይቀመጣሠበ ሜዳ ስሠá‹áˆµáŒ¥ ከ ማስቀመጥ á‹­áˆá‰…: ይህ áˆáŠ”ታ በተጠቃሚ-የሚገለጽ የ አáˆá‹µ áˆáˆáŠ­á‰¶á‰½ መጠቀሠያስችለዋሠለáˆáˆ³áˆŒ: የ ዳታ ሜዳዠስሠካለዠየ አካሠá‰áŒ¥áˆ­ እና ከ ስሠይáˆá‰…: እርስዎ እንዲታይ ከ áˆáˆˆáŒ‰ የ አካሠá‰áŒ¥áˆ­ በ ጥያቄ á‹áˆµáŒ¥ ይታያáˆ: ያስገቡ የ አካሠá‰áŒ¥áˆ­ እንደ ሀሰት" #: 02010100.xhp msgctxt "" @@ -888,7 +888,7 @@ "193\n" "help.text" msgid "In an SQL statement, aliases are defined as following:" -msgstr "" +msgstr "በ SQL አረáተ áŠáŒˆáˆ­ á‹áˆµáŒ¥: ሀሰቶች የሚገለጹት እንደሚከተለዠáŠá‹:" #: 02010100.xhp msgctxt "" @@ -915,7 +915,7 @@ "196\n" "help.text" msgid "SELECT \"PtNo\" AS \"PartNum\" FROM \"Parts\"" -msgstr "" +msgstr "á‹­áˆáˆ¨áŒ¡ \"የ አካሠá‰áŒ¥áˆ­\" እንደ \"የ አካሠá‰áŒ¥áˆ­\" ከ \"አካáˆ\" á‹áˆµáŒ¥" #: 02010100.xhp msgctxt "" @@ -933,7 +933,7 @@ "28\n" "help.text" msgid "The corresponding database table of the selected data field is listed here. If you activate the a cell with a mouse click, an arrow will appear which enables you to select another table of the current query." -msgstr "" +msgstr "ተመሳሳይ የ ዳታቤዠሰንጠረዥ ለ ተመረጠዠየ ዳታ ሜዳ እዚህ ተዘርá‹áˆ¯áˆ እርስዎ ክáሉን ካስጀመሩ አይጥ በ መጫን: ለ እርስዎ የ ቀስት á‰áˆá ይታያáˆ: እርስዎን ሌላ ሰንጠረዥ መáˆáˆ¨áŒ¥ ያስችሎታሠለ አáˆáŠ‘ ጥያቄ" #: 02010100.xhp msgctxt "" @@ -951,7 +951,7 @@ "30\n" "help.text" msgid "If you click the cell, you can select among the sorting options: ascending, descending and not sorted. Text fields will be sorted alphabetically and numerical fields numerically. For most databases, administrators can set the sorting options." -msgstr "" +msgstr "እርስዎ ክáሠከ ተጫኑ የ መለያ áˆáˆ­áŒ«á‹Žá‰½ መáˆáˆ¨áŒ¥ ይችላሉ: እየጨመረ በሚሄድ: እየቀáŠáˆ° በሚሄድ እና አለመáˆáˆ¨áŒ¥ የ ጽáˆá ሜዳዎች የሚለዩት በ áŠá‹°áˆ ቅደሠተከተሠእና በ á‰áŒ¥áˆ­ ሜዳ áŠá‹: የ በርካታ ዳታቤዠአስተዳዳሪዎች የ መለያ áˆáˆ­áŒ« ማሰናዳት ይችላሉ" #: 02010100.xhp msgctxt "" @@ -969,7 +969,7 @@ "32\n" "help.text" msgid "If you mark the Visible property for a data field, that field will be visible in the query. If you only use a data field to formulate a condition, you do not necessarily need to show it." -msgstr "" +msgstr "እርስዎ áˆáˆáŠ­á‰µ ካደረጉ የሚታይ ባህሪዎች ለ ዳታ ሜዳ: ሜዳዠይታያሠበ ጥያቄ á‹áˆµáŒ¥ እርስዎ የሚጠቀሙ ከሆአየ ዳታ ሜዳ ለ áˆáŠ”ታዎች መቀመሪያ: እርስዎ ማሳየት የለብዎትáˆ" #: 02010100.xhp msgctxt "" @@ -1005,7 +1005,7 @@ "36\n" "help.text" msgid "Here you can enter one additional criterion for filtering in each line. Multiple criteria in one column will be connected by an OR link." -msgstr "" +msgstr "እዚህ ተጨማሪ መመዘኛ ለ ማጣሪያ ማስገባት ይችላሉ በ እያንሳንዱ መስመር: በርካታ መለያዎች በ አንድ አáˆá‹µ á‹áˆµáŒ¥ ይገናኛሉ በ ወይንሠአገናáŠ" #: 02010100.xhp msgctxt "" @@ -1014,7 +1014,7 @@ "150\n" "help.text" msgid "You can also use the context menu of the line headers in the lower area of the query design to insert another line for functions:" -msgstr "" +msgstr "እርስዎ እንዲáˆáˆ መጠቀሠይችላሉ የ አገባብ á‹áˆ­á‹áˆ­ ለ መስመር ራስጌዎች ከ ታች ከ ጥያቄ ንድá በኩሠባለዠቦታ ለ ተáŒá‰£áˆ®á‰½ ሌላ መስመር ለማስገባት:" #: 02010100.xhp msgctxt "" @@ -1032,7 +1032,7 @@ "152\n" "help.text" msgid "Select a function to run in the query here. The functions you can run here depend on the database." -msgstr "" +msgstr "á‹­áˆáˆ¨áŒ¡ እዚህ በ ጥያቄ á‹áˆµáŒ¥ ማስኬድ የሚáˆáˆáŒ‰á‰µáŠ• ተáŒá‰£áˆ­ እዚህ የሚያስኬዱት ተáŒá‰£áˆ­ እንደ ዳታቤዙ አይáŠá‰µ የወሰናáˆ" #: 02010100.xhp msgctxt "" @@ -1040,7 +1040,7 @@ "par_id8760818\n" "help.text" msgid "If you are working with the HSQL database, the list box in the Function row offers you the following options:" -msgstr "" +msgstr "እርስዎ በ HSQL ዳታቤዠየሚሰሩ ከሆáŠ: የ á‹áˆ­á‹áˆ­ ሳጥን የ ተáŒá‰£áˆ­ ረድá የሚያቀርበዠáˆáˆ­áŒ«á‹Žá‰½ እንደሚከተለዠáŠá‹:" #: 02010100.xhp msgctxt "" @@ -1139,7 +1139,7 @@ "167\n" "help.text" msgid "Determines the number of records in the table. Empty fields can either be counted (a) or not (b)." -msgstr "" +msgstr "በ ሰንጠረዥ á‹áˆµáŒ¥ የ መá‹áŒˆá‰¥ á‰áŒ¥áˆ­ መወሰኛ: ባዶ ሜዳዎች ይቆጠራሉ (a) ወይንሠአይቆጠሩሠ(b)." #: 02010100.xhp msgctxt "" @@ -1148,7 +1148,7 @@ "197\n" "help.text" msgid "a) COUNT(*): Passing an asterisk as the argument counts all records in the table." -msgstr "" +msgstr "a) መá‰áŒ áˆªá‹«(*): ኮከብ ማለá እንደ ክርክር áˆáˆ‰áˆ መá‹áŒˆá‰¦á‰½ በ ሰንጠረዥ á‹áˆµáŒ¥ ይቆጥራáˆ" #: 02010100.xhp msgctxt "" @@ -1157,7 +1157,7 @@ "198\n" "help.text" msgid "b) COUNT(column): Passing a field name as an argument counts only fields in which the field name in question contains a value. Null values (empty fields) will not be counted." -msgstr "" +msgstr "b) መá‰áŒ áˆªá‹«(አáˆá‹µ): የ ሜዳ ስሠማለá እንደ ክርክር ሜዳዎችን ብቻ ይቆጥራሠየ ሜዳ ስሠበ ጥያቄ á‹áˆµáŒ¥ የያዘá‹áŠ• ዋጋ: ባዶ ዋጋዎች (ባዶ ዋጋዎች) አይቆጠሩáˆ" #: 02010100.xhp msgctxt "" @@ -1238,7 +1238,7 @@ "173\n" "help.text" msgid "Calculates the sum of values of associated fields." -msgstr "" +msgstr "የ ተዛመዱትን ሜዳዎች ዋጋዎች ድáˆáˆ­ ማስሊያ" #: 02010100.xhp msgctxt "" @@ -1274,7 +1274,7 @@ "189\n" "help.text" msgid "You can also enter function calls directly into the SQL statement. The syntax is:" -msgstr "" +msgstr "እርስዎ የ ተáŒá‰£áˆ­ መጥሪያዎች በ ቀጥታ ማስገባት ይችላሉ ወደ SQL አረáተ áŠáŒˆáˆ­: አገባቡሠእንደሚከተለዠáŠá‹:" #: 02010100.xhp msgctxt "" @@ -1283,7 +1283,7 @@ "190\n" "help.text" msgid "SELECT FUNCTION(column) FROM table." -msgstr "" +msgstr "á‹­áˆáˆ¨áŒ¡ ተáŒá‰£áˆ­(አáˆá‹µ) ከ ሰንጠረዥ á‹áˆµáŒ¥" #: 02010100.xhp msgctxt "" @@ -1292,7 +1292,7 @@ "191\n" "help.text" msgid "For example, the function call in SQL for calculating a sum is:" -msgstr "" +msgstr "ለáˆáˆ³áˆŒ: የ ተáŒá‰£áˆ­ መጥሪያ ለ SQL ድáˆáˆ­ ለ ማስሊያ ይህ áŠá‹:" #: 02010100.xhp msgctxt "" @@ -1310,7 +1310,7 @@ "176\n" "help.text" msgid "Except for the Group function, the above functions are so-called Aggregate functions. These are functions that calculate data to create summaries from the results. Additional functions that are not listed in the list box might be also possible. These depend on the specific database system in use and on the current state of the Base driver." -msgstr "" +msgstr "ከ ቡድን ተáŒá‰£áˆ®á‰½ በስተቀር ከ ላይ ያሉት ተáŒá‰£áˆ®á‰½ የ ስብስብ ተáŒá‰£áˆ®á‰½ ይባ-ላሉ እáŠá‹šáˆ… ተáŒá‰£áˆ®á‰½ ዳታ የሚያሰሉ ናቸዠለ á‹áŒ¤á‰± ማጠቃለያ መáጠሪያ: ተጨማሪ ተáŒá‰£áˆ®á‰½ በ ሳጥን á‹áˆµáŒ¥ á‹«áˆá‰°á‹˜áˆ¨á‹˜áˆ© ሊካተቱ ይችሉ ይሆናáˆ: ይህን የሚወሰáŠá‹ የ ዳታቤዠስርአት አáˆáŠ• የሚጠቀሙት እና የ አáˆáŠ‘ áˆáŠ”ታ Base driver áŠá‹" #: 02010100.xhp msgctxt "" @@ -1319,7 +1319,7 @@ "177\n" "help.text" msgid "To use other functions not listed in the list box, you must enter them under Field." -msgstr "" +msgstr "ሌላ ተáŒá‰£áˆ­ ለ መጠቀሠበ á‹áˆ­á‹áˆ­ ሳጥን á‹áˆµáŒ¥ የሌለ: እርስዎ ማስገባት አለብዎት በ ሜዳስር" #: 02010100.xhp msgctxt "" @@ -1328,7 +1328,7 @@ "178\n" "help.text" msgid "You can also assign aliases to function calls. If the query is not to be displayed in the column header, enter the desired name under Alias." -msgstr "" +msgstr "እርስዎ መመደብ ይችላሉ የ ሀሰት ተáŒá‰£áˆ­ መጥሪያዎች: ጥያቄዠበ አáˆá‹µ ራስጌ ላይ የማይታይ ከሆáŠ: የሚáˆáˆáŒ‰á‰µáŠ• ስሠያስገቡ በ ሀስትስር" #: 02010100.xhp msgctxt "" @@ -1337,7 +1337,7 @@ "199\n" "help.text" msgid "The corresponding function in an SQL statement is:" -msgstr "" +msgstr "ተመሳሳዩ ተáŒá‰£áˆ­ ለ SQL አረáተ áŠáŒˆáˆ­ áŠá‹:" #: 02010100.xhp msgctxt "" @@ -1364,7 +1364,7 @@ "202\n" "help.text" msgid "SELECT COUNT(*) AS count FROM \"Item\"" -msgstr "" +msgstr "á‹­áˆáˆ¨áŒ¡ መá‰áŒ áˆªá‹«(*) እንደ መá‰áŒ áˆªá‹« ከ \"እቃ\" á‹áˆµáŒ¥" #: 02010100.xhp msgctxt "" @@ -1373,7 +1373,7 @@ "203\n" "help.text" msgid "If you run this function, you cannot insert any additional columns for the query other than receiving these columns as a \"Group\" function." -msgstr "" +msgstr "ይህን ተáŒá‰£áˆ­ የሚያስኬዱ ከሆáŠ: እርስዎ ማስገባት አይችሉሠተጨማሪ አáˆá‹¶á‰½ ለ ጥያቄ እáŠá‹šáˆ…ን አáˆá‹¶á‰½ ከ መቀበሠይáˆá‰… እንደ \"ቡድን\" ተáŒá‰£áˆ­" #: 02010100.xhp msgctxt "" @@ -1391,7 +1391,7 @@ "205\n" "help.text" msgid "In the following example, a query is run through two tables: an \"Item\" table with the \"Item_No\" field and a \"Suppliers\" table with the \"Supplier_Name\" field. In addition, both tables have a common field name \"Supplier_No.\"" -msgstr "" +msgstr "በሚቀጥለዠáˆáˆ³áˆŒ á‹áˆµáŒ¥: ጥያቄ በ áˆáˆˆá‰µ ሰንጠረዥ á‹áˆµáŒ¥ ይሄዳáˆ: የ \"እቃ\" ሰንጠረዥ በ \"እቃ_á‰áŒ¥áˆ­\" ሜዳ ጋር እና ከ \"አቅራቢ\" ሰንጠረዥ ጋር በ \"አቅራቢ_ስáˆ\" ሜዳ ጋር: በ ተጨማሪ áˆáˆˆá‰±áˆ ሰንጠረዦች የ ጋራ ሜዳ ስሠአላቸዠየ \"አቅራቢ_á‰áŒ¥áˆ­\"" #: 02010100.xhp msgctxt "" @@ -1400,7 +1400,7 @@ "206\n" "help.text" msgid "The following steps are required to create a query containing all suppliers who deliver more than three items." -msgstr "" +msgstr "የሚቀጥሉት ደረጃዎች አስáˆáˆ‹áŒŠ ናቸዠጥያቄ ለ መáጠር: ከ ሶስት እቃ በላይ ለሚያቀርቡ አቅራቢዎችን የያዘ" #: 02010100.xhp msgctxt "" @@ -1409,7 +1409,7 @@ "207\n" "help.text" msgid "Insert the \"Item\" and \"Suppliers\" tables into the query design." -msgstr "" +msgstr "ያስገቡ የ \"እቃ\" እና \"አቅራቢዎች\" ሰንጠረዥ ወደ ጥያቄ ንድá á‹áˆµáŒ¥" #: 02010100.xhp msgctxt "" @@ -1418,7 +1418,7 @@ "208\n" "help.text" msgid "Link the \"Supplier_No\" fields of the two tables if there is not already a relation of this type." -msgstr "" +msgstr "አገናአየ \"አቅራቢ_á‰áŒ¥áˆ­\" ሜዳዎች ለ áˆáˆˆá‰± ሰንጠረዦች እስከ አáˆáŠ• ካáˆáŠá‰ áˆ¨ የዚህ አይáŠá‰µ áŒáŠ•áŠ™áŠá‰µ" #: 02010100.xhp msgctxt "" @@ -1427,7 +1427,7 @@ "209\n" "help.text" msgid "Double-click the \"Item_No\" field from the \"Item\" table. Display the Function line using the context menu and select the Count function." -msgstr "" +msgstr "áˆáˆˆá‰µ ጊዜ-ይጫኑ በ \"እቃ_á‰áŒ¥áˆ­\" ሜዳ ላይ በ \"እቃ\" ሰንጠረዥ ላይ: ማሳያ የ ተáŒá‰£áˆ­ መስመር በ መጠቀሠየ አገባብ á‹áˆ­á‹áˆ­ እና á‹­áˆáˆ¨áŒ¡ የ መá‰áŒ áˆªá‹« ተáŒá‰£áˆ­" #: 02010100.xhp msgctxt "" @@ -1445,7 +1445,7 @@ "211\n" "help.text" msgid "Double-click the \"Supplier_Name\" field in the \"Suppliers\" table and choose the Group function." -msgstr "" +msgstr "áˆáˆˆá‰µ ጊዜ-ይጫኑ በ \"አቅራቢ_ስáˆ\" ሜዳ ላይ በ \"አቅራቢዎች\" ሰንጠረዥ ላይ: እና á‹­áˆáˆ¨áŒ¡ የ ቡድን ተáŒá‰£áˆ­" #: 02010100.xhp msgctxt "" @@ -1463,7 +1463,7 @@ "213\n" "help.text" msgid "If the \"price\" (for the individual price of an article) and \"Supplier_No\" (for the supplier of the article) fields exist in the \"Item\" table, you can obtain the average price of the item that a supplier provides with the following query:" -msgstr "" +msgstr "ይህ \"ዋጋ\" (ለ እያንዳንዱ እቃ ዋጋ) እና \"አቅራቢá‹_á‰áŒ¥áˆ­\" (ለ እቃ አቅራቢá‹) ሜዳዎች የሚኖረዠበ \"እቃ\" ሰንጠረዥ á‹áˆµáŒ¥ áŠá‹: እርስዎ መከከለኛ ዋጋ ማáŒáŠ˜á‰µ ይችላሉ አቅራቢዠየሚያቀርበá‹áŠ• በሚቀጥሉት ጥያቄዎች:" #: 02010100.xhp msgctxt "" @@ -1472,7 +1472,7 @@ "214\n" "help.text" msgid "Insert the \"Item\" table into the query design." -msgstr "" +msgstr "ያስገቡ የ \"እቃ\" ሰንጠረዥ ወደ ጥያቄ ንድá á‹áˆµáŒ¥" #: 02010100.xhp msgctxt "" @@ -1481,7 +1481,7 @@ "215\n" "help.text" msgid "Double-click the \"Price\" and \"Supplier_No\" fields." -msgstr "" +msgstr "áˆáˆˆá‰µ ጊዜ-ይጫኑ በ \"ዋጋ\" እና \"አቅራቢ_á‰áŒ¥áˆ­\" ሜዳዎች ላይ" #: 02010100.xhp msgctxt "" @@ -1490,7 +1490,7 @@ "216\n" "help.text" msgid "Enable the Function line and select the Average function from the \"Price\" field." -msgstr "" +msgstr "ማስቻያ የ ተáŒá‰£áˆ­ መስመር እና á‹­áˆáˆ¨áŒ¡ የ መከከለኛ ተáŒá‰£áˆ­ ከ \"ዋጋ\" ሜዳ á‹áˆµáŒ¥" #: 02010100.xhp msgctxt "" @@ -1499,7 +1499,7 @@ "217\n" "help.text" msgid "You can also enter \"Average\" in the line for the alias name (without quotation marks)." -msgstr "" +msgstr "እርስዎ ማስገባት ይችላሉ \"መከከለኛ\" በ መስመር ላይ ለ ሀሰት ስሠ(ያለ ትáˆáˆ…ርተ ጥቅስ)" #: 02010100.xhp msgctxt "" @@ -1508,7 +1508,7 @@ "218\n" "help.text" msgid "Choose Group for the \"Supplier_No\" field." -msgstr "" +msgstr "á‹­áˆáˆ¨áŒ¡ ቡድን ለ \"አቅራቢ_á‰áŒ¥áˆ­\" ሜዳ" #: 02010100.xhp msgctxt "" @@ -1526,7 +1526,7 @@ "247\n" "help.text" msgid "The following context menu commands and symbols are available:" -msgstr "" +msgstr "የሚቀጥሉት የ አገባብ á‹áˆ­á‹áˆ­ ትእዛዞች እና áˆáˆáŠ­á‰¶á‰½ á‹áŒáŒ ናቸá‹:" #: 02010100.xhp msgctxt "" @@ -1544,7 +1544,7 @@ "249\n" "help.text" msgid "Shows or hides a row for selection of functions." -msgstr "" +msgstr "ለ ተመረጡት ተáŒá‰£áˆ®á‰½ ረድá ማሳያ ወይንሠመደበቂያ" #: 02010100.xhp msgctxt "" @@ -1562,7 +1562,7 @@ "154\n" "help.text" msgid "Shows or hides the row for the table name." -msgstr "" +msgstr "ለ ሰንጠረዥ ስሠረድá ማሳያ ወይንሠመደበቂያ" #: 02010100.xhp msgctxt "" @@ -1580,7 +1580,7 @@ "156\n" "help.text" msgid "Shows or hides the row for the alias name." -msgstr "" +msgstr "ለ ሀስት ስሠረድá ማሳያ ወይንሠመደበቂያ" #: 02010100.xhp msgctxt "" @@ -1598,7 +1598,7 @@ "158\n" "help.text" msgid "Applies only distinct values to the query. This applies to records containing data that appears several times in the selected fields. If the Distinct Values command is active, you will see only one record in the query (DISTINCT). Otherwise, you will see all records corresponding to the query criteria (ALL)." -msgstr "" +msgstr "ለ ጥያቄዠየተለየ ዋጋዎች መáˆáŒ¸áˆšá‹« ይህ የሚáˆáŒ¸áˆ˜á‹ ለ መá‹áŒˆá‰¦á‰½ ዳታ ለያዙ በርካታ ጊዜ ለሚታዩ áŠá‹ በ ተመረጠዠሜዳ á‹áˆµáŒ¥ የተለየ ዋጋዎች ትእዛዠንበáŠá‹: ለ እርስዎ የሚታየዠአንድ መá‹áŒˆá‰¥ áŠá‹ በ ጥያቄ á‹áˆµáŒ¥ (የተለየ) ያለበለዚያ: ለ እርስዎ ይታያሠáˆáˆ‰áŠ•áˆ መá‹áŒˆá‰¥ የሚመሳሰሠለ ጥያቄ መመዘኛ (áˆáˆ‰áŠ•áˆ)" #: 02010100.xhp msgctxt "" @@ -1641,7 +1641,7 @@ "par_id3147501\n" "help.text" msgid "Allows you to maximize the number of records with which query returns." -msgstr "" +msgstr "እርስዎን ያስችሎታሠከáተኛ á‰áŒ¥áˆ­ የ መá‹áŒˆá‰¦á‰½ ጥያቄ የሚመáˆáˆ°á‹áŠ•" #: 02010100.xhp msgctxt "" @@ -1649,7 +1649,7 @@ "par_id3152350\n" "help.text" msgid "If there is added a Limit, you will get at most as many rows as the number you specify. Otherwise, you will see all records corresponding to the query criteria." -msgstr "" +msgstr "የ ተጨመረ መጠንካለ: እርስዎ ማáŒáŠ˜á‰µ ይችላሉ ከáተኛá‹áŠ• የ መá‹áŒˆá‰¥ á‰áŒ¥áˆ­ እርስዎ የወሰኑትን: ያለበለዚያ: ለ እርስዎ áˆáˆ‰áŠ•áˆ መá‹áŒˆá‰¦á‰½ ያሳያሠተመሳሳይ ለ ጥያቄ መመዘኛ" #: 02010100.xhp msgctxt "" @@ -1658,7 +1658,7 @@ "37\n" "help.text" msgid "Formulating filter conditions" -msgstr "" +msgstr "የ ማጣሪያ áˆáŠ”ታዎች መቀመሪያ" #: 02010100.xhp msgctxt "" @@ -1667,7 +1667,7 @@ "38\n" "help.text" msgid "When formulating filter conditions, various operators and commands are available to you. Apart from the relational operators, there are SQL-specific commands that query the content of database fields. If you use these commands in the $[officename] syntax, $[officename] automatically converts these into the corresponding SQL syntax. You can also enter the SQL command directly. The following tables give an overview of the operators and commands:" -msgstr "" +msgstr "የ ማጣሪያ áˆáŠ”ታዎች በሚቀáˆáˆ© ጊዜ: በርካታ አንቀሳቃሽ እና ትእዛዞች ለ እርስዎ á‹áŒáŒ ናቸá‹: ከ ተዛማጅ አንቀሳቃሾች በስተቀር: እáŠá‹šáˆ… SQL-የተወሰኑ ትእዛዞች ይዞታá‹áŠ• ይጠይቃሉ የ ዳታቤዠሜዳዎች: እርስዎ እáŠá‹šáˆ…ን ትእዛዞች የሚጠቀሙ ከሆአበ $[officename] አገባብ: $[officename] ራሱ በራሱ ይቀይራሠእáŠá‹šáˆ…ን ተመሳሳይ SQL አገባብ: እርስዎ ማስገባት ይችላሉ የ SQL ትእዛዠበ ቀጥታ ማስገባት ይችላሉ: የሚቀጥለዠሰንጠረዥ ባጠቃላይ የ አንቀሳቃሾች እይታ ለ አንቀሳቃሾች እና ትእዛዞች ያሳያáˆ" #: 02010100.xhp msgctxt "" @@ -1694,7 +1694,7 @@ "41\n" "help.text" msgid "Condition is satisfied if..." -msgstr "" +msgstr "áˆáŠ”ታዠተሟáˆá‰·áˆ ይህ ከሆáŠ..." #: 02010100.xhp msgctxt "" @@ -1721,7 +1721,7 @@ "44\n" "help.text" msgid "... the content of the field is identical to the indicated expression." -msgstr "" +msgstr "... የ ሜዳዠይዞታ ተመሳሳይ ይሆናሠለ ተጠቆመዠመáŒáˆˆáŒ«" #: 02010100.xhp msgctxt "" @@ -1730,7 +1730,7 @@ "250\n" "help.text" msgid "The operator = will not be displayed in the query fields. If you enter a value without any operator, the operator = will be automatically adopted." -msgstr "" +msgstr "አንቀሳቃሽ = አይታይሠበ ጥያቄ ሜዳዎች á‹áˆµáŒ¥: እርስዎ ዋጋ ካስገቡ ያለ áˆáŠ•áˆ አንቀሳቃሽ: ማንቀሳቀሻዠ= ራሱ በራሱ ይቀበለዋáˆ" #: 02010100.xhp msgctxt "" @@ -1757,7 +1757,7 @@ "47\n" "help.text" msgid "... the content of the field does not correspond to the specified expression." -msgstr "" +msgstr "...የ ሜዳዠይዞታ ተመሳሳይ አይደለሠከ ተወሰáŠá‹ መáŒáˆˆáŒ« ጋር" #: 02010100.xhp msgctxt "" @@ -1784,7 +1784,7 @@ "50\n" "help.text" msgid "... the content of the field is greater than the specified expression." -msgstr "" +msgstr "...የ ሜዳዠይዞታ ይበáˆáŒ£áˆ ከ ተወሰáŠá‹ መáŒáˆˆáŒ« ጋር" #: 02010100.xhp msgctxt "" @@ -1811,7 +1811,7 @@ "53\n" "help.text" msgid "... the content of the field is less than the specified expression." -msgstr "" +msgstr "...የ ሜዳዠይዞታ ያንሳሠከ ተወሰáŠá‹ መáŒáˆˆáŒ« ጋር" #: 02010100.xhp msgctxt "" @@ -1838,7 +1838,7 @@ "56\n" "help.text" msgid "... the content of the field is greater than or equal to the specified expression." -msgstr "" +msgstr "...የ ሜዳዠይዞታ ይበáˆáŒ£áˆ ወይን እኩሠይሆናሠከ ተወሰáŠá‹ መáŒáˆˆáŒ« ጋር" #: 02010100.xhp msgctxt "" @@ -1865,7 +1865,7 @@ "59\n" "help.text" msgid "... the content of the field is less than or equal to the specified expression." -msgstr "" +msgstr "...የ ሜዳዠይዞታ ያንሳሠወይንሠእኩሠይሆናሠከ ተወሰáŠá‹ መáŒáˆˆáŒ« ጋር" #: 02010100.xhp msgctxt "" @@ -1883,7 +1883,7 @@ "61\n" "help.text" msgid "SQL command" -msgstr "" +msgstr "የ SQL ትእዛá‹" #: 02010100.xhp msgctxt "" @@ -1901,7 +1901,7 @@ "63\n" "help.text" msgid "Condition is satisfied if..." -msgstr "" +msgstr "áˆáŠ”ታዠተሟáˆá‰·áˆ ይህ ከሆáŠ..." #: 02010100.xhp msgctxt "" @@ -1919,7 +1919,7 @@ "65\n" "help.text" msgid "IS NULL" -msgstr "" +msgstr "ባዶ áŠá‹" #: 02010100.xhp msgctxt "" @@ -1937,7 +1937,7 @@ "67\n" "help.text" msgid "... The field name is empty. For Yes/No fields with three states, this command automatically queries the undetermined state (neither Yes nor No)." -msgstr "" +msgstr "... የ ሜዳ ስሠባዶ áŠá‹: ለ አዎ/አይ ሜዳዎች በ ሶስት áˆáŠ”ታዎች á‹áˆµáŒ¥: ይህ ትእዛዠራሱ ባራሱ ይጠይቃሠáŒáˆáŒ½ á‹«áˆáˆ†áŠ áˆáŠ”ታ (አንዱን አዎ ወይንሠአይ)." #: 02010100.xhp msgctxt "" @@ -1982,7 +1982,7 @@ "72\n" "help.text" msgid "LIKE" -msgstr "" +msgstr "እወደዋለáˆ" #: 02010100.xhp msgctxt "" @@ -2009,7 +2009,7 @@ "75\n" "help.text" msgid "LIKE" -msgstr "" +msgstr "እወደዋለáˆ" #: 02010100.xhp msgctxt "" @@ -2017,7 +2017,7 @@ "bm_id3157985\n" "help.text" msgid "placeholders; in SQL queries" -msgstr "" +msgstr "ቦታ ያዢዎች; በ SQL ጥያቄዎች" #: 02010100.xhp msgctxt "" @@ -2044,7 +2044,7 @@ "78\n" "help.text" msgid "is an element of" -msgstr "" +msgstr "አካሠáŠá‹ ለ" #: 02010100.xhp msgctxt "" @@ -2053,7 +2053,7 @@ "79\n" "help.text" msgid "... the data field contains the indicated expression. The (*) placeholder indicates whether the expression x occurs at the beginning of (x*), at the end of (*x) or inside the field content (*x*). You can enter as a placeholder in SQL queries either the SQL % character or the familiar (*) file system placeholder in the $[officename] interface." -msgstr "" +msgstr "... የ ዳታ ሜዳ የያዘዠመጠቆሚያ መáŒáˆˆáŒ« የ (*) ቦታ ያዢዎች የሚጠá‰áˆ˜á‹ አገላለጹ x መጀመሪያ በ (x*), በ መጨረሻ በ (*x) ወይንሠመሀከሠበ ሜዳ ይዞታ መካከሠ(*x*). ይታይ እንደሆን áŠá‹: እርስዎ ማስገባት ይችላሉ የ ቦታ ያዢዎች በ SQL ጥያቄ በ አንዱ በ SQL % ባህሪ ወይንሠየ ተለመደ (*) á‹á‹­áˆ ስርአት ቦታ ያዢዎች በ $[officename] ገጽታ á‹áˆµáŒ¥ áŠá‹" #: 02010100.xhp msgctxt "" @@ -2062,7 +2062,7 @@ "80\n" "help.text" msgid "The * or % placeholder stands for any number of characters. The question mark (?) in the $[officename] interface or the underscore (_) in SQL queries is used to represent exactly one character." -msgstr "" +msgstr "የ * ወይንሠ% ቦታ ያዢዎች የሚወክሉት ማንኛá‹áŠ•áˆ ባህሪዎች áŠá‹: የ ጥያቄ áˆáˆáŠ­á‰µ (?) በ $[officename] ገጽታ ወይንሠunderscore (_) በ SQL ጥያቄዎች የሚወክሉት አንድ ባህሪ áŠá‹" #: 02010100.xhp msgctxt "" @@ -2071,7 +2071,7 @@ "81\n" "help.text" msgid "NOT LIKE" -msgstr "" +msgstr "አáˆá‹ˆá‹°á‹áˆ" #: 02010100.xhp msgctxt "" @@ -2080,7 +2080,7 @@ "82\n" "help.text" msgid "NOT LIKE" -msgstr "" +msgstr "አáˆá‹ˆá‹°á‹áˆ" #: 02010100.xhp msgctxt "" @@ -2089,7 +2089,7 @@ "83\n" "help.text" msgid "Is not an element of" -msgstr "" +msgstr "አካሠአይደለሠየ" #: 02010100.xhp msgctxt "" @@ -2098,7 +2098,7 @@ "84\n" "help.text" msgid "... the field name does not contain the specified expression." -msgstr "" +msgstr "...የ ሜዳዠስሠየ ተወሰáŠá‹ መáŒáˆˆáŒ« አይá‹áˆ" #: 02010100.xhp msgctxt "" @@ -2107,7 +2107,7 @@ "85\n" "help.text" msgid "BETWEEN x AND y" -msgstr "" +msgstr "መካከሠx እና y" #: 02010100.xhp msgctxt "" @@ -2116,7 +2116,7 @@ "86\n" "help.text" msgid "BETWEEN x AND y" -msgstr "" +msgstr "መካከሠx እና y" #: 02010100.xhp msgctxt "" @@ -2125,7 +2125,7 @@ "87\n" "help.text" msgid "falls within the interval [x,y]" -msgstr "" +msgstr "በ ክáተቱ á‹áˆµáŒ¥ ይወድቃሠ[x,y]" #: 02010100.xhp msgctxt "" @@ -2134,7 +2134,7 @@ "88\n" "help.text" msgid "... the field name contains a value that lies between the two values x and y." -msgstr "" +msgstr "... የ ሜዳዠስሠዋጋ አይá‹áˆ በ áˆáˆˆá‰µ ዋጋዎች በ x እና y መካከáˆ" #: 02010100.xhp msgctxt "" @@ -2143,7 +2143,7 @@ "89\n" "help.text" msgid "NOT BETWEEN x AND y" -msgstr "" +msgstr "መካከሠአይደለሠበ x እና y" #: 02010100.xhp msgctxt "" @@ -2152,7 +2152,7 @@ "90\n" "help.text" msgid "NOT BETWEEN x AND y" -msgstr "" +msgstr "መካከሠአይደለሠበ x እና y" #: 02010100.xhp msgctxt "" @@ -2161,7 +2161,7 @@ "91\n" "help.text" msgid "Does not fall within the interval [x,y]" -msgstr "" +msgstr "በ ክáተቱ á‹áˆµáŒ¥ አይወድቅሠ[x,y]" #: 02010100.xhp msgctxt "" @@ -2170,7 +2170,7 @@ "92\n" "help.text" msgid "... the field name contains a value that does not lie between the two values x and y." -msgstr "" +msgstr "... የ ሜዳዠስሠዋጋ አይá‹áˆ በ áˆáˆˆá‰µ ዋጋዎች መካከሠየማያርá በ x እና y መካከáˆ" #: 02010100.xhp msgctxt "" @@ -2215,7 +2215,7 @@ "96\n" "help.text" msgid "... the field name contains one of the specified expressions a, b, c,... Any number of expressions can be specified, and the result of the query is determined by an Or link. The expressions a, b, c... can be either numbers or characters" -msgstr "" +msgstr "... የ ሜዳ ስሠየያዘዠአንድ የተወሰአመáŒáˆˆáŒ« áŠá‹ a, b, c,... ማንኛá‹áŠ•áˆ የ መáŒáˆˆáŒ« á‰áŒ¥áˆ­ መáŒáˆˆáŒ½ ይቻላሠእና á‹áŒ¤á‰± በ ጥያቄ ይወሰናሠበ ወይንሠአገናáŠ: ይህ አገላለጽ a, b, c... á‰áŒ¥áˆ­ ወይንሠባህሪ ሊሆን ይችላáˆ" #: 02010100.xhp msgctxt "" @@ -2251,7 +2251,7 @@ "100\n" "help.text" msgid "... the field name does not contain one of the specified expressions a, b, c,..." -msgstr "" +msgstr "...የ ሜዳዠስሠየያዘዠአንድ የ ተወሰáŠá‹ መáŒáˆˆáŒ« áŠá‹ a, b, c,..." #: 02010100.xhp msgctxt "" @@ -2278,7 +2278,7 @@ "103\n" "help.text" msgid "has the value True" -msgstr "" +msgstr "ዋጋዠእá‹áŠá‰µ áŠá‹" #: 02010100.xhp msgctxt "" @@ -2287,7 +2287,7 @@ "104\n" "help.text" msgid "... the field name has the value True." -msgstr "" +msgstr "... የ ሜዳ ስሠየያዘዠዋጋ እá‹áŠá‰µ áŠá‹" #: 02010100.xhp msgctxt "" @@ -2314,7 +2314,7 @@ "107\n" "help.text" msgid "has the value false" -msgstr "" +msgstr "ዋጋዠሀሰት áŠá‹" #: 02010100.xhp msgctxt "" @@ -2323,7 +2323,7 @@ "108\n" "help.text" msgid "... the field name has the value false." -msgstr "" +msgstr "... የ ሜዳ ስሠየያዘዠዋጋ ሀሰት áŠá‹" #: 02010100.xhp msgctxt "" @@ -2341,7 +2341,7 @@ "118\n" "help.text" msgid "='Ms.'" -msgstr "" +msgstr "='ወይዘሪት'" #: 02010100.xhp msgctxt "" @@ -2350,7 +2350,7 @@ "119\n" "help.text" msgid "returns field names with the field content \"Ms.\"" -msgstr "" +msgstr "የ ሜዳ ስሞች ይመáˆáˆ³áˆ: የ ሜዳ ስሠይዞታ በ \"ወይዘሪት\"" #: 02010100.xhp msgctxt "" @@ -2368,7 +2368,7 @@ "119\n" "help.text" msgid "returns dates that occurred before January 10, 2001" -msgstr "" +msgstr "ከ ጥር 10, 2001 በáŠá‰µ የሆኑ ቀኖች ይመáˆáˆ³áˆ" #: 02010100.xhp msgctxt "" @@ -2413,7 +2413,7 @@ "124\n" "help.text" msgid "BETWEEN 10 AND 20" -msgstr "" +msgstr "በ 10 እና 20 መካከáˆ" #: 02010100.xhp msgctxt "" @@ -2431,7 +2431,7 @@ "126\n" "help.text" msgid "IN (1; 3; 5; 7)" -msgstr "" +msgstr "á‹áˆµáŒ¥ (1; 3; 5; 7)" #: 02010100.xhp msgctxt "" @@ -2440,7 +2440,7 @@ "127\n" "help.text" msgid "returns field names with the values 1, 3, 5, 7. If the field name contains an item number, for example, you can create a query that returns the item having the specified number." -msgstr "" +msgstr "የ ሜዳ ስሞች ይመáˆáˆ³áˆ ዋጋቸዠየሆአ1, 3, 5, 7. የ ሜዳዠስሠየ እቃ á‰áŒ¥áˆ­ ከያዘ: ለáˆáˆ³áˆŒ: እርስዎ መáጠር ይችላሉ ጥያቄ የሚመáˆáˆµ እቃዠየ ተወሰአá‰áŒ¥áˆ­ ሲኖረá‹" #: 02010100.xhp msgctxt "" @@ -2449,7 +2449,7 @@ "128\n" "help.text" msgid "NOT IN ('Smith')" -msgstr "" +msgstr "á‹áˆµáŒ¥ አይደለሠ('Smith')" #: 02010100.xhp msgctxt "" @@ -2467,7 +2467,7 @@ "268\n" "help.text" msgid "Like Escape Sequence: {escape 'escape-character'}" -msgstr "" +msgstr "እንደ መá‹áˆˆá‹« ቅደሠተከተáˆ: {መá‹áˆˆá‹« 'መá‹áˆˆá‹«-ባህሪ'}" #: 02010100.xhp msgctxt "" @@ -2476,7 +2476,7 @@ "269\n" "help.text" msgid "Example: select * from Item where ItemName like 'The *%' {escape '*'}" -msgstr "" +msgstr "ለáˆáˆ³áˆŒ: á‹­áˆáˆ¨áŒ¡ * ከ እቃዎች á‹áˆµáŒ¥ ከ እቃዠስሠእንደ 'የ *%' {መá‹áˆˆá‹« '*'}" #: 02010100.xhp msgctxt "" @@ -2485,7 +2485,7 @@ "270\n" "help.text" msgid "The example will give you all of the entries where the item name begins with 'The *'. This means that you can also search for characters that would otherwise be interpreted as placeholders, such as *, ?, _, % or the period." -msgstr "" +msgstr "ይህ áˆáˆ³áˆŒ ለ እርስዎ áˆáˆ‰áŠ•áˆ ማስገቢያዎች ይሰጣሠየ እቃዠስሠየሚጀáˆáˆ­á‰ á‰µáŠ• በ 'የ *': ይህ ማለት እርስዎ መáˆáˆˆáŒ ይችላሉ ባህሪዎችን ያለበለዚያ እንደ ቦታ ያዢዎች የሚወሰዱ: እንደ *, ?, _, % ወይንሠáŠáŒ¥á‰¥." #: 02010100.xhp msgctxt "" @@ -2512,7 +2512,7 @@ "109\n" "help.text" msgid "Querying text fields" -msgstr "" +msgstr "የ ጽáˆá ሜዳዎች ጥያቄ" #: 02010100.xhp msgctxt "" @@ -2521,7 +2521,7 @@ "110\n" "help.text" msgid "To query the content of a text field, you must put the expression between single quotes. The distinction between uppercase and lowercase letters depends on the database in use. LIKE, by definition, is case-sensitive (though some databases don't see it that strict)." -msgstr "" +msgstr "የ ጽáˆá ሜዳ ይዞታ ለ መጠየቅ: እርስዎ ማስገባት አለብዎት áŠáŒ áˆ‹ ትáˆáˆ…ርተ ጥቅስ በ አገላለጽ መካከáˆ: መለያዠበ አቢይ áŠá‹°áˆ እና በ ትንንሽ áŠá‹°áˆ መካከሠእንደ ዳታቤዠአጠቃቀሠይለያያሠ: እንደ ትርጉሙ: is case-sensitive (አንዳንድ ዳታቤዠይህን መከáˆáŠ¨á‹« አያዩትáˆ)" #: 02010100.xhp msgctxt "" @@ -2530,7 +2530,7 @@ "111\n" "help.text" msgid "Querying date fields" -msgstr "" +msgstr "የ ቀን ሜዳዎች ጥያቄ" #: 02010100.xhp msgctxt "" @@ -2539,7 +2539,7 @@ "252\n" "help.text" msgid "Date fields are represented as #Date# to clearly identify them as dates. Date, time and date/time constants (literals) used in conditions can be of either the SQL Escape Syntax type, or default SQL2 syntax." -msgstr "" +msgstr "የ ቀን ሜዳዎች የሚወከሉት በ #Date# በ áŒáˆáŒ½ ለ መለየት እንደ ቀን: ቀን: ሰአት: እና/ሰአት መደበኛ (የተለዩ) የሚጠቅሙት በ áˆáŠ”ታ á‹áˆµáŒ¥ áŠá‹ በ አንዱ በ SQL መá‹áˆˆá‹« አገባብ ወይንሠበ áŠá‰£áˆ­ የ SQL2 አገባብ" #: 02010100.xhp msgctxt "" @@ -2548,7 +2548,7 @@ "253\n" "help.text" msgid "Date Type Element" -msgstr "" +msgstr "የ ቀን አይáŠá‰µ አካáˆ" #: 02010100.xhp msgctxt "" @@ -2557,7 +2557,7 @@ "253\n" "help.text" msgid "SQL Escape syntax #1 - may be obsolete" -msgstr "" +msgstr "የ SQL መá‹áˆˆá‹« አገባብ #1 - አይሰራ ይሆናáˆ" #: 02010100.xhp msgctxt "" @@ -2566,7 +2566,7 @@ "253\n" "help.text" msgid "SQL Escape syntax #2" -msgstr "" +msgstr "የ SQL መá‹áˆˆá‹« አገባብ #2" #: 02010100.xhp msgctxt "" @@ -2575,7 +2575,7 @@ "253\n" "help.text" msgid "SQL2 syntax" -msgstr "" +msgstr "የ SQL2 አገባብ" #: 02010100.xhp msgctxt "" @@ -2691,7 +2691,7 @@ "267\n" "help.text" msgid "Example: select {d '1999-12-31'} from world.years" -msgstr "" +msgstr "ለáˆáˆ³áˆŒ: á‹­áˆáˆ¨áŒ¡ {d '1999-12-31'} ከ አለሠአመቶች" #: 02010100.xhp msgctxt "" @@ -2699,7 +2699,7 @@ "par_id3149540\n" "help.text" msgid "Example: select * from mytable where years='1999-12-31'" -msgstr "" +msgstr "ለáˆáˆ³áˆŒ: á‹­áˆáˆ¨áŒ¡ * ከ የኔ ሰንጠረዥ አመቶች='1999-12-31'" #: 02010100.xhp msgctxt "" @@ -2708,7 +2708,7 @@ "112\n" "help.text" msgid "All date expressions (literals) must be enclosed with single quotation marks. (Consult the reference for the particular database and connector you are using for more details.)" -msgstr "" +msgstr "áˆáˆ‰áˆ የ ቀን አገላለጾች (የተለዩ) በ áŠáŒ áˆ‹ ትáˆáˆ…ርተ ጥቅስ መከበብ አለባቸá‹: (ለ በለጠ መረጃ የ ተወሰአዳታቤዠእና አገናኞች እርስዎ የሚጠቀሙትን ያመሳክሩ)" #: 02010100.xhp msgctxt "" @@ -2717,7 +2717,7 @@ "228\n" "help.text" msgid "Querying Yes/No fields" -msgstr "" +msgstr "የ አዎ/አይ ሜዳዎች ጥያቄ" #: 02010100.xhp msgctxt "" @@ -2726,7 +2726,7 @@ "229\n" "help.text" msgid "To query Yes/No fields, use the following syntax for dBASE tables:" -msgstr "" +msgstr "ለ ጥያቄ አዎ/አይ ሜዳዎች: የሚቀጥለá‹áŠ• አገባብ ከ ዳታቤዠá‹áˆµáŒ¥ ይጠቀሙ" #: 02010100.xhp msgctxt "" @@ -2744,7 +2744,7 @@ "231\n" "help.text" msgid "Query criterion" -msgstr "" +msgstr "የ ጥያቄ መመዘኛ" #: 02010100.xhp msgctxt "" @@ -2771,7 +2771,7 @@ "234\n" "help.text" msgid "for dBASE tables: not equal to any given value" -msgstr "" +msgstr "ከ ዳታቤዠሰንጠረዦች: እኩሠአይደለሠከ ማንኛá‹áˆ ዋጋ ጋር" #: 02010100.xhp msgctxt "" @@ -2780,7 +2780,7 @@ "236\n" "help.text" msgid "=1 returns all records where the Yes/No field has the status \"Yes\" or \"On\" (selected in black)," -msgstr "" +msgstr "=1 ይመáˆáˆ³áˆ ለ áˆáˆ‰áˆ መá‹áŒˆá‰¦á‰½ ለ አዎ/አይ ሜዳ አንዱን áˆáŠ”ታ \"አዎ\" ወይንሠ\"አይ\" (በ ተመረጠዠጥá‰áˆ­ á‹áˆµáŒ¥)" #: 02010100.xhp msgctxt "" @@ -2798,7 +2798,7 @@ "239\n" "help.text" msgid "." -msgstr "" +msgstr "." #: 02010100.xhp msgctxt "" @@ -2807,7 +2807,7 @@ "240\n" "help.text" msgid "=0 returns all records for which the Yes/No field has the status \"No\" or \"Off\" (no selection)." -msgstr "" +msgstr "=0 ይመáˆáˆ³áˆ ለ áˆáˆ‰áˆ መá‹áŒˆá‰¦á‰½ ለ አዎ/አይ ሜዳ አንዱን áˆáŠ”ታ \"አዎ\" ወይንሠ\"አይ\" (áˆáˆ­áŒ« የለáˆ)" #: 02010100.xhp msgctxt "" @@ -2825,7 +2825,7 @@ "242\n" "help.text" msgid "IS NULL" -msgstr "" +msgstr "ባዶ áŠá‹" #: 02010100.xhp msgctxt "" @@ -2834,7 +2834,7 @@ "243\n" "help.text" msgid "IS NULL returns all records for which the Yes/No field has neither of the states Yes or No (selected in gray)." -msgstr "" +msgstr "ባዶ áŠá‹ ይመáˆáˆ³áˆ ለ áˆáˆ‰áˆ መá‹áŒˆá‰¦á‰½ ለ አዎ/አይ ሜዳ አንዱን áˆáŠ”ታ አዎ ወይንሠአይ (በ áŒáˆ«áŒ« የተመረጠá‹áŠ•)" #: 02010100.xhp msgctxt "" @@ -2843,7 +2843,7 @@ "244\n" "help.text" msgid "The syntax depends on the database system used. You should also note that Yes/No fields can be defined differently (only 2 states instead of 3)." -msgstr "" +msgstr "አገባቡ ይለያያሠእንደ ዳታቤዠስርአት እንደሚጠቀሙት: እርስዎ ማስታወስ አለብዎት አዎ/አይ ሜዳዎች መáŒáˆˆáŒ½ እንደሚቻሠበ ተለያዩ (ለ 2 ብቻ áˆáŠ”ታዎች ከ 3 á‹­áˆá‰…)" #: 02010100.xhp msgctxt "" @@ -2852,7 +2852,7 @@ "113\n" "help.text" msgid "Parameter queries" -msgstr "" +msgstr "የ ጥያቄዎች ደንብ" #: 02010100.xhp msgctxt "" @@ -2861,7 +2861,7 @@ "114\n" "help.text" msgid "You must place the variable between square brackets (=[x]) to create a query with variable parameters. Alternatively, you can use an equal sign followed by a colon (=:x). When the query is executed, the program will display a dialog asking you for the expression to which the variable x should be assigned." -msgstr "" +msgstr "እርስዎ ተለዋዋጭ በ ስኴር ቅንá á‹áˆµáŒ¥ ማስገባት አለብዎት (=[x]) ጥያቄ ለ መáጠር በ ተለዋዋጭ ደንብ: በአማራጭ እርስዎ መጠቀሠይችላሉ የ እኩሠáˆáˆáŠ­á‰µ መጠቀሠáˆáˆˆá‰µ áŠáŒ¥á‰¥ አስከትሎ (=:x). ጥያቄá‹áŠ• በሚáˆáŒ½áˆ™ ጊዜ: á•áˆ®áŒáˆ«áˆ™ ንáŒáŒáˆ­ ያሳያሠእና እርስዎን አገላለጽ ይጠቃሠተለዋዋጭ x የት እንደሚመደብ" #: 02010100.xhp msgctxt "" @@ -2879,7 +2879,7 @@ "115\n" "help.text" msgid "Parameter queries with placeholders (*, _) or special characters (for example, ?) are not possible." -msgstr "" +msgstr "የ ጥያቄዎች ደንብ ከ ቦታ ያዢዎች ጋር (*, _) ወይንሠከ ተለዩ ባህሪዎች (ለáˆáˆ³áˆŒ: ?) አይቻáˆáˆ" #: 02010100.xhp msgctxt "" @@ -2897,7 +2897,7 @@ "139\n" "help.text" msgid "Parameter Input" -msgstr "" +msgstr "የ ማስገቢያ ደንብ" #: 02010100.xhp msgctxt "" @@ -2906,7 +2906,7 @@ "140\n" "help.text" msgid "The Parameter Input dialog asks you which variables you defined in the query. Enter a value for each query variable and confirm by clicking OK." -msgstr "" +msgstr "የ ማስገቢያ ደንብ ንáŒáŒáˆ­ እርስዎን ይጠይቃሠየትኞቹን ተለዋዋጮች እርስዎ በ ጥያቄ á‹áˆµáŒ¥ እንደ ገለጹ: ዋጋ ያስገቡ ለ እያንዳንዱ ተለዋዋጭ ጥያቄ እና ያረጋáŒáŒ¡ በ መጫን አሺ." #: 02010100.xhp msgctxt "" @@ -2924,7 +2924,7 @@ "274\n" "help.text" msgid "A parameter query can have the following form in an SQL statement:" -msgstr "" +msgstr "የ ጥያቄ ደንብ የሚከተሉት áŽáˆ­áˆ በ SQL አረáተ áŠáŒˆáˆ­ á‹áˆµáŒ¥ ይኖራቸዋáˆ:" #: 02010100.xhp msgctxt "" @@ -2933,7 +2933,7 @@ "275\n" "help.text" msgid "select * from 'addresses' where 'name' = :placeholder" -msgstr "" +msgstr "á‹­áˆáˆ¨áŒ¡ * ከ 'አድራሻዎች' ይህ 'ስáˆ' = :ባታያዢ" #: 02010100.xhp msgctxt "" @@ -2942,7 +2942,7 @@ "135\n" "help.text" msgid "SQL Mode" -msgstr "" +msgstr "የ SQL ዘዴ" #: 02010100.xhp msgctxt "" @@ -2951,7 +2951,7 @@ "220\n" "help.text" msgid "SQL stands for \"Structured Query Language\" and describes instructions for updating and administering relational databases." -msgstr "" +msgstr "SQL ማለት የ \"Structured Query Language\" እና መáŒáˆˆáŒ« ለ መáˆáˆªá‹«: ለ ማሻሻያ እና ለ ማስተዳደሪያ ተዛማጅ ዳታቤዞች" #: 02010100.xhp msgctxt "" @@ -2960,7 +2960,7 @@ "136\n" "help.text" msgid "In $[officename] you do not need any knowledge of SQL for most queries, since you do not have to enter the SQL code. If you create a query in the query design, $[officename] automatically converts your instructions into the corresponding SQL syntax. If, with the help of the Switch Design View On/Off button, you change to the SQL view, you can see the SQL commands for a query that has been created previously." -msgstr "" +msgstr "ለ $[officename] እርስዎ áˆáŠ•áˆ እá‹á‰€á‰µ አያስáˆáˆáŒŽá‰µáˆ የ SQL ለ በርካታ ጥያቄዎች: እርስዎ áˆáŠ•áˆ ማስገባት የለቦትሠየ SQL ኮድ: እርስዎ ከ áˆáŒ áˆ© ጥያቄ በ ጥያቄ ንድá $[officename] ራሱ በራሱ ይቀይራሠየ እርስዎን ትእዛዠወደ ተመሳሳይ የ SQL አጋባብ: ከሆአእርስዎ እርዳታ በ ንድá መቀየሪያ መመáˆáŠ¨á‰» ማብሪያ/ማጥáŠá‹« á‰áˆá: እርስዎ መቀየር ይችላሉ የ SQL መመáˆáŠ¨á‰»: እርስዎ መመáˆáŠ¨á‰µ ይችላሉ የ SQL ትእዛዞች ለ ጥያቄ ቀደሠብሎ ለ ተáˆáŒ áˆ¨á‹" #: 02010100.xhp msgctxt "" @@ -2969,7 +2969,7 @@ "226\n" "help.text" msgid "You can formulate your query directly in the SQL code. Note, however, that the special syntax is dependent upon the database system that you use." -msgstr "" +msgstr "እርስዎ መቀመር ይችላሉ የ ራስዎትን ጥያቄ በ ቀጥታ በ SQL ኮድ á‹áˆµáŒ¥: ማስታወሻ: áŠáŒˆáˆ­ áŒáŠ• የ ተለዩ አገባቦች ጥገኞች ናቸዠእርስዎ ለሚጠቀሙበት ዳታቤዠስርአት" #: 02010100.xhp msgctxt "" @@ -2978,7 +2978,7 @@ "227\n" "help.text" msgid "If you enter the SQL code manually, you can create SQL-specific queries that are not supported by the graphical interface in Query design. These queries must be executed in native SQL mode." -msgstr "" +msgstr "እርስዎ በ እጅ የ SQL ካስገቡ: እርስዎ መáጠር ይችላሉ SQL-የተወሰአጥያቄዎች በ ንድá ገጽታ á‹«áˆá‰°á‹°áŒˆá‰ በ ጥያቄ ንድáእáŠá‹šáˆ… ጥያቄዎች መáˆáŒ¸áˆ አለባቸዠበ native SQL ዘዴ" #: 02010100.xhp msgctxt "" @@ -2987,7 +2987,7 @@ "223\n" "help.text" msgid "By clicking the Run SQL command directly icon in the SQL view, you can formulate a query that is not processed by $[officename]." -msgstr "" +msgstr "በ መጫን የ SQL ትእዛዠበቀጥታ ማስኬጃ áˆáˆáŠ­á‰µ በ SQL መመáˆáŠ¨á‰» á‹áˆµáŒ¥: እርስዎ መቀመር ይችላሉ ጥያቄ áˆáŠ•áˆ ሂደቱ á‹«áˆá‰°áˆ°áˆ« በ $[officename]." #: 02010101.xhp msgctxt "" @@ -2995,7 +2995,7 @@ "tit\n" "help.text" msgid "Join Properties" -msgstr "" +msgstr "ማገናኛ ባህሪዎች" #: 02010101.xhp msgctxt "" @@ -3003,7 +3003,7 @@ "bm_id3154015\n" "help.text" msgid "links;relational databases (Base) inner joins (Base) joins in databases (Base) left joins (Base) right joins (Base) full joins (Base)" -msgstr "" +msgstr "አገናኞች;ተዛማጅ ዳታቤዠ(Base) የ á‹áˆµáŒ¥ ማገናኛ (Base) ማገናኛ በ ዳታቤዠ(Base) በ áŒáˆ« ማገናኛ (Base) በ ቀአማገናኛ (Base) በ ሙሉ ማገናኛ (Base)" #: 02010101.xhp msgctxt "" @@ -3012,7 +3012,7 @@ "1\n" "help.text" msgid "Join Properties" -msgstr "" +msgstr "ማገናኛ ባህሪዎች" #: 02010101.xhp msgctxt "" @@ -3021,7 +3021,7 @@ "2\n" "help.text" msgid "If you double-click a connection between two linked fields in the query design, or if you choose Insert - New Relation, the Join Properties dialog appears. These properties will be used in all queries created in the future." -msgstr "" +msgstr "እርስዎ áˆáˆˆá‰µ ጊዜ-ይጫኑ መካከሠበ áˆáˆˆá‰µ የ ተገናኙ ሜዳዎች መካከሠበ ጥያቄ ንድá á‹áˆµáŒ¥: ወይንሠእርስዎ ከ መረጡ ማስገቢያ - አዲስ áŒáŠ•áŠ™áŠá‰µ በ አገናአባህሪዎችንáŒáŒáˆ­ á‹áˆµáŒ¥ ይታያáˆ: እáŠá‹šáˆ…ን ባህሪዎች ይጠቀማሠለ áˆáˆ‰áˆ ወደáŠá‰µ ለሚáˆáŒ áˆ© ጥያቄዎች" #: 02010101.xhp msgctxt "" @@ -3030,7 +3030,7 @@ "17\n" "help.text" msgid "Tables involved" -msgstr "" +msgstr "ሰንጠረዦች ተጠቃለዋáˆ" #: 02010101.xhp msgctxt "" @@ -3039,7 +3039,7 @@ "16\n" "help.text" msgid "Specifies two different tables that you want to join." -msgstr "" +msgstr "áˆáˆˆá‰µ የ ተለያዩ ሰንጠረዦች እርስዎ ማጋጠሠየሚáˆáˆáŒ‰á‰µáŠ• መወሰኛ" #: 02010101.xhp msgctxt "" @@ -3048,7 +3048,7 @@ "15\n" "help.text" msgid "Fields involved" -msgstr "" +msgstr "ሜዳዎች ተጠቃለዋáˆ" #: 02010101.xhp msgctxt "" @@ -3057,7 +3057,7 @@ "14\n" "help.text" msgid "Specifies two data fields that will be joined by a relation." -msgstr "" +msgstr "áˆáˆˆá‰µ የ ዳታ ሜዳዎችን በ áŒáŠ•áŠ™áŠá‰µ እርስዎ ማጋጠሠየሚáˆáˆáŒ‰á‰µáŠ• መወሰኛ" #: 02010101.xhp msgctxt "" @@ -3084,7 +3084,7 @@ "4\n" "help.text" msgid "Specifies the link type of the selected link. Some databases support only a subset of the possible types." -msgstr "" +msgstr "የ አገናአአይáŠá‰µ መወሰኛ ለ ተመረጠዠአገናáŠáŠ áŠ•á‹³áŠ•á‹µ ዳታቤዞች ንዑስ ስብስብ የሚቻለá‹áŠ• አይáŠá‰µ á‹­á‹°áŒá‹áˆ‰" #: 02010101.xhp msgctxt "" @@ -3093,7 +3093,7 @@ "5\n" "help.text" msgid "Inner Join" -msgstr "" +msgstr "የ á‹áˆµáŒ¥ ማገናኛ" #: 02010101.xhp msgctxt "" @@ -3111,7 +3111,7 @@ "7\n" "help.text" msgid "Left Join" -msgstr "" +msgstr "የ áŒáˆ« ማገናኛ" #: 02010101.xhp msgctxt "" @@ -3129,7 +3129,7 @@ "9\n" "help.text" msgid "Right Join" -msgstr "" +msgstr "የ ቀአማገናኛ" #: 02010101.xhp msgctxt "" @@ -3147,7 +3147,7 @@ "11\n" "help.text" msgid "Full Join" -msgstr "" +msgstr "ሙሉ ማገናኛ" #: 02010101.xhp msgctxt "" @@ -3197,7 +3197,7 @@ "bm_id3156136\n" "help.text" msgid "forms; general information (Base)" -msgstr "" +msgstr "መáጠሪያ; ባጠቃላይ መረጃ (Base)" #: 04000000.xhp msgctxt "" @@ -3206,7 +3206,7 @@ "2\n" "help.text" msgid "Forms can be used to enter or to edit existing database contents easily." -msgstr "" +msgstr "áŽáˆ­áˆžá‰½áŠ• መጠቀሠይችላሉ ለማስገባት ወይንሠለ ማረሠየ áŠá‰ áˆ© ዳታቤዞች ይዞታዎች በ ቀላሉ" #: 04000000.xhp msgctxt "" @@ -3233,7 +3233,7 @@ "23\n" "help.text" msgid "The Form Controls toolbar offers the tools required to create a form in a text, table, drawing, or presentation document." -msgstr "" +msgstr "የ áŽáˆ­áˆ መቆጣጠሪያ እቃ መደርደሪያ የሚያቀርበዠመሳሪያዎች በ áŽáˆ­áˆ á‹áˆµáŒ¥ ጽáˆá ለ መáጠር áŠá‹: በሰንጠረዥ: በ መሳያ: ወይንሠበ ማቅረቢያ ሰáŠá‹µ á‹áˆµáŒ¥" #: 04000000.xhp msgctxt "" @@ -3251,7 +3251,7 @@ "25\n" "help.text" msgid "In design mode, the form is designed and the properties of the form and the controls contained in it are defined." -msgstr "" +msgstr "በ ንድá ዘዴ á‹áˆµáŒ¥: የ áŽáˆ­áˆ ንድá እና ባህሪዎች ለ áŽáˆ­áˆ እና መቆጣጠሪያ የያዘዠየ ተገለጸ áŠá‹" #: 04000000.xhp msgctxt "" @@ -3269,7 +3269,7 @@ "28\n" "help.text" msgid "You will find the sorting and filter functions in the toolbar when you open a form in user mode." -msgstr "" +msgstr "እርስዎ ያገኛሉ መለያ እና ማጣሪያ ተáŒá‰£áˆ®á‰½ በ እቃ መደርደሪያ á‹áˆµáŒ¥ áŽáˆ­áˆ በሚከáቱ ጊዜ በ ተጠቃሚ ዘዴ" #: 04000000.xhp msgctxt "" @@ -3278,7 +3278,7 @@ "29\n" "help.text" msgid "Subforms" -msgstr "" +msgstr "ንዑስ áŽáˆ­áˆžá‰½" #: 04030000.xhp msgctxt "" @@ -3294,7 +3294,7 @@ "bm_id3148668\n" "help.text" msgid "forms; designing (Base)" -msgstr "" +msgstr "áŽáˆ­áˆžá‰½; ንድá (Base)" #: 04030000.xhp msgctxt "" @@ -3303,7 +3303,7 @@ "1\n" "help.text" msgid "Form Design" -msgstr "" +msgstr "የ áŽáˆ­áˆ ንድá" #: 04030000.xhp msgctxt "" @@ -3312,7 +3312,7 @@ "2\n" "help.text" msgid "Any $[officename] document can be expanded into a form. Simply add one or more form controls." -msgstr "" +msgstr "ማንኛá‹áˆ $[officename] ሰáŠá‹µ ማስá‹á‰µ ይቻላሠወደ áŽáˆ­áˆ በ ቀላሉ አንድ ወይን ተጨማሪ የ áŽáˆ­áˆ መቆጣጠሪያ በ መጨመር" #: 04030000.xhp msgctxt "" @@ -3321,7 +3321,7 @@ "3\n" "help.text" msgid "Open the Form Controls toolbar. The Form Controls toolbar contains the functions needed to edit a form. More functions can be found in the Form Design bar and More Controls bar." -msgstr "" +msgstr "መክáˆá‰» የ áŽáˆ­áˆ መቆጣጠሪያ እቃ መደርደሪያ: የ áŽáˆ­áˆ መቆጣጠሪያ እቃ መደርደሪያ የያዘዠየ ተáŒá‰£áˆ®á‰½ áŽáˆ­áˆ ለማረሠáŠá‹: ተጨማሪ ተáŒá‰£áˆ®á‰½ እዚህ ይገኛሉ በ áŽáˆ­áˆ ንድá መደርደሪያ ላይ እና ተጨማሪ መቆጣጠሪያ መደርደሪያ" #: 04030000.xhp msgctxt "" @@ -3330,7 +3330,7 @@ "5\n" "help.text" msgid "In the form design you can include controls, apply properties to them, define Form properties, and define subforms." -msgstr "" +msgstr "በ áŽáˆ­áˆ ንድá á‹áˆµáŒ¥ እርስዎ ይችላሉ መቆጣጠሪያ ማካተት, ባህሪዎች መáˆáŒ¸áˆ ወደ እáŠáˆ± á‹áˆµáŒ¥: መáŒáˆˆáŒ« የ áŽáˆ­áˆ ባህሪዎች እና ንዑስ áŽáˆ­áˆžá‰½ መáŒáˆˆáŒ½." #: 04030000.xhp msgctxt "" @@ -3339,7 +3339,7 @@ "9\n" "help.text" msgid "The Form Navigator icon Icon on the Form Design bar opens the Form Navigator." -msgstr "" +msgstr "የ áŽáˆ­áˆ መቃኛ áˆáˆáŠ­á‰µ áˆáˆáŠ­á‰µ በ áŽáˆ­áˆ ንድá መደርደሪያ ላይ መክáˆá‰» የ áŽáˆ­áˆ መቃኛ." #: 04030000.xhp msgctxt "" @@ -3348,7 +3348,7 @@ "6\n" "help.text" msgid "The Open in Design Mode icon Icon allows you to save a form document so that it always opens in editing mode." -msgstr "" +msgstr "የ ንድá ዘዴ መክáˆá‰» በ áˆáˆáŠ­á‰µ áˆáˆáŠ­á‰µ እርስዎን ማስቀመጥ ያስችሎታሠየ áŽáˆ­áˆ ሰáŠá‹µ ስለዚህ áˆáˆáŒŠá‹œ የሚከáˆá‰°á‹ በ ማረሚያ ዘዴ áŠá‹" #: 04030000.xhp msgctxt "" @@ -3357,7 +3357,7 @@ "8\n" "help.text" msgid "If there is an error when assigning properties to the objects contained in the form (for example, when assigning a non-existent database table to an object), a corresponding error message appears. This error message may contain a More button. If you click More, a dialog displaying more information about the current problem appears." -msgstr "" +msgstr "ስህተት ከ ተáˆáŒ áˆ¨ ባህሪዎች በሚመድቡ ጊዜ በ áŽáˆ­áˆ á‹áˆµáŒ¥ ላለ እቃ ከ (ለáˆáˆ³áˆˆ: በሚመድቡ ጊዜ áˆáŠ•áˆ-የሌለ ዳታቤዠሰንጠረዥ ወደ እቃ), ተመሳሳይ የ ስህተት መáˆáŠ¥áŠ­á‰µ ይታያáˆ: የ ስህተት መáˆáŠ¥áŠ­á‰± ሊይዠይችላሠተጨማሪ á‰áˆá እርስዎ ከ ተጫኑ ተጨማሪንáŒáŒáˆ­ ይታያሠተጨማሪ መረጃ የያዘ ስለ አáˆáŠ‘ ችáŒáˆ­" #: 05000000.xhp msgctxt "" @@ -3383,7 +3383,7 @@ "2\n" "help.text" msgid "Data sources tables allow you see your data line by line. You can make new entries and deletions." -msgstr "" +msgstr "የ ዳታ áˆáŠ•áŒ­ ሰንጠረዥ እርስዎን የሚያስችለዠየ እርስዎን ዳታ መስመር በ መስመር መመáˆáŠ¨á‰µ áŠá‹: እርስዎ አዲስ ማስገቢያዎች መጨመር እና ማጥá‹á‰µ ይችላሉ" #: 05000000.xhp msgctxt "" @@ -3392,7 +3392,7 @@ "43\n" "help.text" msgid "In the $[officename] Help, you will find further information on the following subjects:" -msgstr "" +msgstr "በ $[officename] እርዳታ á‹áˆµáŒ¥ እርስዎ ተጨማሪ መረጃ ማáŒáŠ˜á‰µ ይችላሉ:" #: 05000000.xhp msgctxt "" @@ -3401,7 +3401,7 @@ "54\n" "help.text" msgid "Create new or edit table design" -msgstr "" +msgstr "የ ሰንጠረዥ ንድá መáጠሪያ ወይንሠማረሚያ" #: 05000000.xhp msgctxt "" @@ -3419,7 +3419,7 @@ "40\n" "help.text" msgid "Relations, Primary and External Key" -msgstr "" +msgstr "áŒáŠ‘ኘáŠá‰¶á‰½: ቀዳሚ እና የ á‹áŒª á‰áˆá" #: 05000001.xhp msgctxt "" @@ -3445,7 +3445,7 @@ "2\n" "help.text" msgid "The context menu of the table container offers various functions that apply to all database tables. To edit a special table within the database, select the corresponding table and open its context menu." -msgstr "" +msgstr "የ አገባብ á‹áˆ­á‹áˆ­ በ ሰንጠረዥ ማጠራቀሚያ á‹áˆµáŒ¥ የሚያቀርበዠየ ተለያዩ ተáŒá‰£áˆ®á‰½ áŠá‹ እርስዎ ዳታቤዠሰንጠረዥ á‹áˆµáŒ¥ መáˆáŒ¸áˆ የሚችሉት: የ ተለየ ሰንጠረዥ ለማረሠከ ዳታቤዠá‹áˆµáŒ¥: á‹­áˆáˆ¨áŒ¡ ተመሳሳይ ሰንጠረዥ እና ይክáˆá‰± የ አገባብ á‹áˆ­á‹áˆ­" #: 05000001.xhp msgctxt "" @@ -3454,7 +3454,7 @@ "4\n" "help.text" msgid "Depending on the context, it is possible that not all the functions for your current database are listed in the context menus. For example, the Relationships command for defining relationships between various tables is only available with relational databases." -msgstr "" +msgstr "እንደ አገባቡ አይáŠá‰µ ይቻላáˆ: áˆáˆ‰áˆ ተáŒá‰£áˆ®á‰½ በ እርስዎ በ አáˆáŠ‘ ዳታቤዠየ አገባብ á‹áˆ­á‹áˆ­ á‹áˆµáŒ¥ ላይታይ ይችላሉ: ለáˆáˆ³áˆŒ: የ áŒáŠ•áŠ™áŠá‰µá‰µáŠ¥á‹›á‹ ለ áŒáŠ•áŠ™áŠá‰µáŠ• ለ መáŒáˆˆáŒ½ በ ተለያየ ሰንጠረዥ á‹áŒáŒ የ áŒáŠ•áŠ™áŠá‰µ ዳታቤዠá‹áˆµáŒ¥" #: 05000001.xhp msgctxt "" @@ -3463,7 +3463,7 @@ "3\n" "help.text" msgid "Depending on the database system used, you will find the following entries on the context menus:" -msgstr "" +msgstr "እንደ ዳታቤዠስርአት አጠቃቀáˆ: እርስዎ የሚከተሉትን የ አገባብ á‹áˆ­á‹áˆ­ ማስገቢያዎች ያገኛሉ:" #: 05000001.xhp msgctxt "" @@ -3472,7 +3472,7 @@ "9\n" "help.text" msgid "If a table is open, there are several functions available to edit the data." -msgstr "" +msgstr "ይህ ሰንጠረዥ ክáት ከሆአበርካታ ተáŒá‰£áˆ®á‰½ አሉ á‹áŒáŒ ዳታ ለማረáˆ" #: 05000002.xhp msgctxt "" @@ -3516,7 +3516,7 @@ "4\n" "help.text" msgid "Allows you to select the user, define a new user, delete a user, and change a password." -msgstr "" +msgstr "እርስዎን ተጠቃሚ መáˆáˆ¨áŒ¥: አዲስ ተጠቃሚ መáŒáˆˆáŒ½: ተጠቃሚ ማጥá‹á‰µ: እና የ መáŒá‰¢á‹« ቃሠመቀየር ያስችሎታáˆ" #: 05000002.xhp msgctxt "" @@ -3534,7 +3534,7 @@ "6\n" "help.text" msgid "Specifies the user, whose settings you want to edit." -msgstr "" +msgstr "ተጠቃሚ ይወስኑ: እርስዎ ማሰናጃá‹áŠ• ማረሠየሚáˆáˆáŒ‰á‰µáŠ•" #: 05000002.xhp msgctxt "" @@ -3552,7 +3552,7 @@ "10\n" "help.text" msgid "Creates a new user. The Enter Password dialog appears." -msgstr "" +msgstr "አዲስ ተጠቃሚ መáጠሪያ የ የ መáŒá‰¢á‹« ቃሠያስገቡ ንáŒáŒáˆ­ ይታያáˆ" #: 05000002.xhp msgctxt "" @@ -3561,7 +3561,7 @@ "11\n" "help.text" msgid "Change password" -msgstr "" +msgstr "የ መáŒá‰¢á‹« ቃሠመቀየሪያ" #: 05000002.xhp msgctxt "" @@ -3570,7 +3570,7 @@ "12\n" "help.text" msgid "Changes the password for the selected user. The Change Password dialog appears." -msgstr "" +msgstr "ለ ተመረጠዠተጠቃሚ የ መáŒá‰¢á‹« ቃሠመቀየሪያ የ የ መáŒá‰¢á‹« ቃሠመቀየሪያ ንáŒáŒáˆ­ ይታያáˆ" #: 05000002.xhp msgctxt "" @@ -3597,7 +3597,7 @@ "15\n" "help.text" msgid "Access rights for user selected" -msgstr "" +msgstr "ለ ተመረጠዠተጠቃሚ የ መድረሻ áቃድ" #: 05000002.xhp msgctxt "" @@ -3606,7 +3606,7 @@ "16\n" "help.text" msgid "Allows you to view and assign access rights for the selected user." -msgstr "" +msgstr "ለ ተመረጠዠተጠቃሚ የ áቃድ መብት መመáˆáŠ¨á‰µ እና መመደብ ያስችሎታáˆ" #: 05000003.xhp msgctxt "" @@ -3632,7 +3632,7 @@ "2\n" "help.text" msgid "Allows you to enter and confirm a new or changed password. If you have defined a new user, enter the user's name in this dialog." -msgstr "" +msgstr "እርስዎን አዲስ ወይንሠየተቀየር የ መáŒá‰¢á‹« ቃሠማስገባት እና ማረጋገጥ ያስችሎታáˆ: እርስዎ አዲስ ተጠቃሚ ከ ወሰኑ: የ ተጠቃሚá‹áŠ• ስሠበዚህ ንáŒáŒáˆ­ á‹áˆµáŒ¥ ያስገቡ" #: 05000003.xhp msgctxt "" @@ -3650,7 +3650,7 @@ "4\n" "help.text" msgid "Specifies the name of the new user. This field is only visible if you have defined a new user." -msgstr "" +msgstr "የ አዲስ ተጠቃሚ ስሠመወሰኛ ይህ ሜዳ የሚታየዠእርስዎ አዲስ ተጠቃሚ ከገለጹ áŠá‹" #: 05000003.xhp msgctxt "" @@ -3668,7 +3668,7 @@ "10\n" "help.text" msgid "Enter the old password. This field is visible when you have started the dialog via Change password." -msgstr "" +msgstr "አሮጌá‹áŠ• የ መáŒá‰¢á‹« ቃሠያስገቡ ይህ ሜዳ የሚታየዠእርስዎ ካስጀመሩ áŠá‹ ይህን ንáŒáŒáˆ­ ከ የ መáŒá‰¢á‹« ቃሠመቀየሪያ." #: 05000003.xhp msgctxt "" @@ -3730,7 +3730,7 @@ "2\n" "help.text" msgid "In the Table Design window you define new tables or edit the structure of a table." -msgstr "" +msgstr "በ ሰንጠረዥ ንድá መስኮት á‹áˆµáŒ¥ እርስዎ አዲስ ሰንጠረዥ መáŒáˆˆáŒ½ ወይንሠየ ሰንጠረዡን አካሠማረሠይችላሉ" #: 05010000.xhp msgctxt "" @@ -3739,7 +3739,7 @@ "3\n" "help.text" msgid "The window has its own menu bar. It also contains the following new command: Index Design" -msgstr "" +msgstr "መስኮቱ የራሱ á‹áˆ­á‹áˆ­ መደርደሪያ አለá‹: እንዲáˆáˆ እáŠá‹šáˆ…ን አዲስ ትእዛዠያካትታሠ: የ ማá‹áŒ« ንድá" #: 05010000.xhp msgctxt "" @@ -3748,7 +3748,7 @@ "4\n" "help.text" msgid "Table definition area" -msgstr "" +msgstr "የ ሰንጠረዥ ትርጉሠቦታ" #: 05010000.xhp msgctxt "" @@ -3757,7 +3757,7 @@ "5\n" "help.text" msgid "This area is where you define the table structure." -msgstr "" +msgstr "እርስዎ እዚህ áŠá‹ የ ሰንጠረዥ አካሠመáŒáˆˆáŒ½ የሚችሉት" #: 05010000.xhp msgctxt "" @@ -3775,7 +3775,7 @@ "7\n" "help.text" msgid "Specifies the name of the data field. Note the database restrictions, such as the length of the name, special characters and spaces." -msgstr "" +msgstr "የ ዳታ ሜዳ ስሠመáŒáˆˆáŒ«: ማስታወሻ: የ ዳታቤዠገደብ: እንደ ስሠእርá‹áˆ˜á‰µ: የተለየ ባህሪዎች እና ክáተቶች " #: 05010000.xhp msgctxt "" @@ -3793,7 +3793,7 @@ "9\n" "help.text" msgid "Specifies the field type." -msgstr "" +msgstr "የ ሜዳ አይáŠá‰µ á‹­áŒáˆˆáŒ¹" #: 05010000.xhp msgctxt "" @@ -3811,7 +3811,7 @@ "11\n" "help.text" msgid "Specifies an optional description." -msgstr "" +msgstr "የ áˆáˆ­áŒ« መáŒáˆˆáŒ« መወሰኛ " #: 05010000.xhp msgctxt "" @@ -3820,7 +3820,7 @@ "12\n" "help.text" msgid "The row headers contain the following context menu commands:" -msgstr "" +msgstr "የ ረድá ራስጌዎች የያዛቸዠየሚቀጥሉትን የ አገባብ á‹áˆ­á‹áˆ­ ትእዛዞች áŠá‹:" #: 05010000.xhp msgctxt "" @@ -3838,7 +3838,7 @@ "14\n" "help.text" msgid "Cuts the selected row to the clipboard." -msgstr "" +msgstr "መá‰áˆ¨áŒ« የ ተመረጠá‹áŠ• ረድá ከ á‰áˆ«áŒ­ ስሌዳ á‹áˆµáŒ¥" #: 05010000.xhp msgctxt "" @@ -3856,7 +3856,7 @@ "16\n" "help.text" msgid "Copies the selected row to the clipboard." -msgstr "" +msgstr "ኮᒠማድረጊያ የ ተመረጠá‹áŠ• ረድá ከ á‰áˆ«áŒ­ ስሌዳ á‹áˆµáŒ¥" #: 05010000.xhp msgctxt "" @@ -3874,7 +3874,7 @@ "18\n" "help.text" msgid "Pastes the content of the clipboard." -msgstr "" +msgstr "የ á‰áˆ«áŒ­ ሰሌዳ ይዞታá‹áŠ• መለጠáŠá‹«" #: 05010000.xhp msgctxt "" @@ -3910,7 +3910,7 @@ "22\n" "help.text" msgid "Inserts an empty row above the current row, if the table has not been saved. Inserts an empty row at the end of the table if the table has been saved." -msgstr "" +msgstr "ባዶ ረድá ማስገቢያ ከ አáˆáŠ‘ ረድá ከ ላይ በኩáˆ: ሰንጠረዡ ካáˆá‰°á‰€áˆ˜áŒ : ባዶ ረድá ከ ሰንጠረዡ መጨረሻ በኩሠያስገባáˆ: ሰንጠረዡ ተቀáˆáŒ¦ ከ áŠá‰ áˆ­" #: 05010000.xhp msgctxt "" @@ -3928,7 +3928,7 @@ "24\n" "help.text" msgid "If this command has a check mark, the data field in this line is a primary key. By clicking the command you activate/deactivate the status. The command is only visible if the data source supports primary keys." -msgstr "" +msgstr "ይህ ትእዛዠየ áˆáˆáŠ­á‰µ ማድረጊያ ካለá‹: በዚህ መስመር ላይ ያለዠዳታ ቀዳሚ á‰áˆá áŠá‹ ትእዛዙ ላይ በ መጫን እርስዎ ማስጀመር/ማቦዘን ይችላሉ áˆáŠ”ታá‹áŠ•: ትእዛዙ የሚታየዠየ ዳታ áˆáŠ•áŒ­ ቀዳሚ á‰áˆá የሚደáŒá ከሆአáŠá‹" #: 05010000.xhp msgctxt "" @@ -3946,7 +3946,7 @@ "26\n" "help.text" msgid "Defines the field properties of the currently selected field." -msgstr "" +msgstr "አáˆáŠ• በ ተመረጠዠሜዳ á‹áˆµáŒ¥ የ ሜዳ ባህሪዎች መወሰኛ" #: 05010000.xhp msgctxt "" @@ -3964,7 +3964,7 @@ "28\n" "help.text" msgid "Specifies the length of the data field." -msgstr "" +msgstr "የ ዳታ ሜዳ እርá‹áˆ˜á‰µ መወሰኛ" #: 05010000.xhp msgctxt "" @@ -3982,7 +3982,7 @@ "30\n" "help.text" msgid "Specifies the number of decimal places for a numerical field or decimal field." -msgstr "" +msgstr "ይወስኑ የ á‰áŒ¥áˆ­ ዴሲማሠቦታ ለ á‰áŒ¥áˆ­ ሜዳ ወይንሠለ ዴሲማሠሜዳ" #: 05010000.xhp msgctxt "" @@ -4000,7 +4000,7 @@ "32\n" "help.text" msgid "Specifies the value that is the default in new data records." -msgstr "" +msgstr "በ አዲስ ዳታ መá‹áŒˆá‰¦á‰½ á‹áˆµáŒ¥ áŠá‰£áˆ­ ዋጋá‹áŠ• ይወስኑ " #: 05010000.xhp msgctxt "" @@ -4009,7 +4009,7 @@ "33\n" "help.text" msgid "Format example" -msgstr "" +msgstr "የ አቀራረብ áˆáˆ³áˆŒ" #: 05010000.xhp msgctxt "" @@ -4018,7 +4018,7 @@ "34\n" "help.text" msgid "Displays the format code that you can select with the ... button." -msgstr "" +msgstr "እርስዎ የሚመርጡትን የ አቀራረብ ኮድ ማሳያ ... á‰áˆá" #: 05010000.xhp msgctxt "" @@ -4036,7 +4036,7 @@ "36\n" "help.text" msgid "This button opens the Field Format dialog." -msgstr "" +msgstr "Tይህ á‰áˆá መክáˆá‰» áŠá‹ ለ ሜዳ አቀራረብ ንáŒáŒáˆ­" #: 05010000.xhp msgctxt "" @@ -4080,7 +4080,7 @@ "2\n" "help.text" msgid "The Index Design dialog allows you edit the indexes for the current table." -msgstr "" +msgstr "የ ማá‹áŒ« ንድá ንáŒáŒáˆ­ እርስዎን የሚያስችለዠማá‹áŒ«á‹Žá‰½áŠ• ማረሠáŠá‹ በ አáˆáŠ‘ ሰንጠረዥ á‹áˆµáŒ¥ " #: 05010100.xhp msgctxt "" @@ -4089,7 +4089,7 @@ "3\n" "help.text" msgid "Index list" -msgstr "" +msgstr "የ ማá‹áŒ« á‹áˆ­á‹áˆ­" #: 05010100.xhp msgctxt "" @@ -4098,7 +4098,7 @@ "4\n" "help.text" msgid "Displays the available indexes. Select an index from the list to edit. The details of the selected index are displayed in the dialog." -msgstr "" +msgstr "á‹áŒáŒ ማá‹áŒ«á‹Žá‰½áŠ• ማሳያ: ማá‹áŒ« á‹­áˆáˆ¨áŒ¡ ከ á‹áˆ­á‹áˆ­ á‹áˆµáŒ¥ ለማረáˆ: የ ተመረጠዠማá‹áŒ« á‹áˆ­á‹áˆ­ ይታያሠበ ንáŒáŒáˆ­ á‹áˆµáŒ¥ " #: 05010100.xhp msgctxt "" @@ -4107,7 +4107,7 @@ "5\n" "help.text" msgid "New Index" -msgstr "" +msgstr "አዲስ ማá‹áŒ«" #: 05010100.xhp msgctxt "" @@ -4188,7 +4188,7 @@ "14\n" "help.text" msgid "Resets the current index to the setting that it had when the dialog was started." -msgstr "" +msgstr "የ አáˆáŠ‘ን ማá‹áŒ« እንደ áŠá‰ áˆ­ መመለሻ ይህ ንáŒáŒáˆ­ ከ መጀመሩ በáŠá‰µ ወደ áŠá‰ áˆ¨á‰ á‰µ ማሰናጃ " #: 05010100.xhp msgctxt "" @@ -4206,7 +4206,7 @@ "16\n" "help.text" msgid "As soon as you change a detail of the current index and then select another index, the change is immediately passed to the data source. You can only leave the dialog, or select another index, if the change has been successfully acknowledged by the data source. However, you can undo the change by clicking the Reset Current Index icon." -msgstr "" +msgstr "የ አáˆáŠ‘ን ማá‹áŒ« á‹áˆ­á‹áˆ­ ሲቀይሩ እና ከዛ ሌላ ማá‹áŒ« ሲመርጡ: ለá‹áŒ¡ ወዲያá‹áŠ‘ ወደ ዳታ áˆáŠ•áŒ­ ይተላለá‹áˆ: እርስዎ ንáŒáŒáˆ©áŠ• መተዠይችላሉ: ወይንሠሌላ ማá‹áŒ« መáˆáˆ¨áŒ¥: ለá‹áŒ¡ ተሳክቶ የ ዳታ áˆáŠ•áŒ© ካወቀá‹: áŠáŒˆáˆ­ áŒáŠ•: እርስዎ መተዠይችላሉ ለá‹áŒ¡áŠ• በ መጫን የ የ አáˆáŠ‘ን ማá‹áŒ« እንደ áŠá‰ áˆ­ መመለሻ áˆáˆáŠ­á‰µ" #: 05010100.xhp msgctxt "" @@ -4215,7 +4215,7 @@ "17\n" "help.text" msgid "Unique" -msgstr "" +msgstr "የተለየ" #: 05010100.xhp msgctxt "" @@ -4224,7 +4224,7 @@ "18\n" "help.text" msgid "Specifies whether the current index allows only unique values. Checking the Unique option prevents duplicate data from being entered in the field and ensures data integrity." -msgstr "" +msgstr "የ አáˆáŠ‘ ማá‹áŒ« የተለዩ ዋጋዎችን á‹­áˆá‰…ድ እንደሆን ይወስኑáˆáˆáŠ­á‰µ ማድረጠየተለዩ áˆáˆ­áŒ«á‹Žá‰½ ላይ የ ተባዙ ዳታዎች ወደ ሜዳ á‹áˆµáŒ¥ ማስገባት ይከለክላáˆ: እርáŒáŒ áŠ› á‹­áˆáŠ‘ ዳታዠትክክሠመሆኑን" #: 05010100.xhp msgctxt "" @@ -4242,7 +4242,7 @@ "20\n" "help.text" msgid "The Fields area displays a list of fields in the current table. You can also select multiple fields. In order to remove a field from the selection, select the empty entry at the start of the list." -msgstr "" +msgstr "የ ሜዳዎች ቦታ የሚያሳየዠá‹áˆ­á‹áˆ­ ሜዳዎችን áŠá‹ በ አáˆáŠ‘ ሰንጠረዥ á‹áˆµáŒ¥: እርስዎ በርካታ ሜዳዎች መáˆáˆ¨áŒ¥ ይችላሉ: ከ áˆáˆ­áŒ« á‹áˆµáŒ¥ ሜዳ ለማስወገድ: á‹­áˆáˆ¨áŒ¡ ባዶ ማስገቢያ በ á‹áˆ­á‹áˆ­ መጀመሪያ ላይ" #: 05010100.xhp msgctxt "" @@ -4260,7 +4260,7 @@ "22\n" "help.text" msgid "Displays a list of the fields in the current table. You can select more than one field." -msgstr "" +msgstr "በ አáˆáŠ‘ ሰንጠረዥ á‹áˆµáŒ¥ የ ሜዳዎች á‹áˆ­á‹áˆ­ ማሳያ: እርስዎ ከ አንድ በላይ ሜዳ መáˆáˆ¨áŒ¥ ይችላሉ " #: 05010100.xhp msgctxt "" @@ -4269,7 +4269,7 @@ "23\n" "help.text" msgid "Sort order" -msgstr "" +msgstr "መለያ ደንብ" #: 05010100.xhp msgctxt "" @@ -4278,7 +4278,7 @@ "24\n" "help.text" msgid "Determines the sort order." -msgstr "" +msgstr "የ መለያ ደንብ መወሰኛ" #: 05010100.xhp msgctxt "" @@ -4321,7 +4321,7 @@ "bm_id3146957\n" "help.text" msgid "relational databases (Base)" -msgstr "" +msgstr "የ ዳታቤዠáŒáŠ•áŠ™áŠá‰µ (Base)" #: 05020000.xhp msgctxt "" @@ -4330,7 +4330,7 @@ "2\n" "help.text" msgid "This command opens the Relation Design window, which allows you to define relationships between various database tables." -msgstr "" +msgstr "ይህ ትእዛዠየሚከáተዠየ ዳታቤዠáŒáŠ•áŠ™áŠá‰µ መስኮት áŠá‹: እርስዎን áŒáŠ•áŠ™áŠá‰±áŠ• መáŒáˆˆáŒ½ ያስችሎታሠበ ተለያዩ የ ዳታቤዠሰንጠረዥ መካከáˆ" #: 05020000.xhp msgctxt "" @@ -4348,7 +4348,7 @@ "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 @@ "4\n" "help.text" msgid "When you choose Tools - Relationships, 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 Add Tables icon. The Add Tables dialog opens in which you can select the tables that you want." -msgstr "" +msgstr "እርስዎ በሚመርጡ ጊዜ መሳሪያዎች – áŒáŠ•áŠ™áŠá‰¶á‰½, መስኮት ይከáˆá‰³áˆ áˆáˆ‰áŠ•áˆ የ áŠá‰ áˆ© áŒáŠ•áŠ™áŠá‰¶á‰½ በ ሰንጠረዦች እና በ አáˆáŠ‘ የ ዳታቤዠያሉ ይታያሉ: áˆáŠ•áˆ áŒáŠ•áŠ™áŠá‰µ ካáˆá‰°áŒˆáˆˆáŒ¸: ወይንሠእርስዎ ሌሎች ሰንጠረዦች ጋር áŒáŠ•áŠ™áŠá‰µ ማድረጠከáˆáˆˆáŒ‰ ከ ዳታቤዠá‹áˆµáŒ¥ ከ እያንዳንዳቸዠጋራ: ይጫኑ የ ሰንጠረዥ መጨመሪያ áˆáˆáŠ­á‰µ: የ ሰንጠረዥ መጨመሪያ ንáŒáŒáˆ­ ይከáˆá‰³áˆ እርስዎ የሚáˆáˆáŒ‰á‰µáŠ• ሰንጠረዥ የሚመርጡበት" #: 05020000.xhp msgctxt "" @@ -4366,7 +4366,7 @@ "17\n" "help.text" msgid "If the Relation Design 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 "ይህ የ áŒáŠ•áŠ™áŠá‰µ ንድá መስኮት áŠá‹: የ ተመረጠá‹áŠ• ሰንጠረዥ ማሻሻሠአይቻáˆáˆ: በ ሰንጠረዥ ንድá ዘዴሠá‹áˆµáŒ¥ እንኳን: ይህ ማረጋገጫ áŠá‹ ሰንጠረዦች እንደማይቀየሩ áŒáŠ•áŠ™áŠá‰µ በሚáˆáŒ áˆ­ ጊዜ" #: 05020000.xhp msgctxt "" @@ -4375,7 +4375,7 @@ "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 "" @@ -4383,7 +4383,7 @@ "bm_id3148922\n" "help.text" msgid "primary keys;inserting (Base)keys;primary keys (Base)external keys (Base)" -msgstr "" +msgstr "ቀዳሚ á‰áˆáŽá‰½;ማስገቢያ (Base)á‰áˆáŽá‰½;ቀዳሚ á‰áˆáŽá‰½ (Base)የ á‹áŒª á‰áˆáŽá‰½ (Base)" #: 05020000.xhp msgctxt "" @@ -4392,7 +4392,7 @@ "6\n" "help.text" msgid "Primary key and other key" -msgstr "" +msgstr "ቀዳሚ á‰áˆá እና ሌላ á‰áˆá" #: 05020000.xhp msgctxt "" @@ -4401,7 +4401,7 @@ "7\n" "help.text" msgid "If you want to define a relation among the different tables, you should enter a primary key 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 "እርስዎ በ ተለያዩ ሰንጠረዦች á‹áˆµáŒ¥ áŒáŠ•áŠ™áŠá‰µ መáŒáˆˆáŒ½ ከáˆáˆˆáŒ‰: እርስዎ ማስገባት አለብዎት የ ቀዳሚ á‰áˆá በ áŒáˆáŒ½ የ ዳታ ሜዳ የሚለይ በ áŠá‰ áˆ¨á‹ ሰንጠረዥ á‹áˆµáŒ¥: እርስዎ ማመሳከር ይችላሉ ወደ ቀዳሚ á‰áˆá ከ ሌላ ሰንጠረዥ á‹áˆµáŒ¥ እንዲደርሱ ወደ እዚህ ሰንጠረዥ ዳታ á‹áˆµáŒ¥: áˆáˆ‰áˆ የ ዳታ ሜዳዎች ቀዳሚ á‰áˆá የሚያመሳክሩ በ á‹áŒª á‰áˆá ይለያሉ" #: 05020000.xhp msgctxt "" @@ -4410,7 +4410,7 @@ "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 @@ "bm_id3155430\n" "help.text" msgid "relations; creating and deleting (Base)" -msgstr "" +msgstr "áŒáŠ•áŠ™áŠá‰µ; መáጠሪያ እና ማጥáŠá‹« (Base)" #: 05020000.xhp msgctxt "" @@ -4436,7 +4436,7 @@ "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 @@ "18\n" "help.text" msgid "Alternatively, you can also click the New Relation icon in the top area of the relation field and define the relation between two tables in the Relations dialog." -msgstr "" +msgstr "በ አማራጭ እርስዎ ይጫኑ የ አዲስ áŒáŠ•áŠ™áŠá‰µ áˆáˆáŠ­á‰µ ከ áŒáŠ•áŠ™áŠá‰µ ሜዳ በ ላይ በኩሠእና á‹­áŒáˆˆáŒ¹ áŒáŠ•áŠ™áŠá‰µ በ áˆáˆˆá‰µ ሰንጠረዦች መካከሠበ áŒáŠ•áŠ™áŠá‰¶á‰½ ንáŒáŒáˆ­ á‹áˆµáŒ¥" #: 05020000.xhp msgctxt "" @@ -4454,7 +4454,7 @@ "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 @@ "15\n" "help.text" msgid "By double-clicking a connection line, you can assign certain properties to the relation. The Relations dialog opens." -msgstr "" +msgstr "áˆáˆˆá‰µ ጊዜ-በ መጫን የ áŒáŠ•áŠ™áŠá‰µ መስመር ላይ: እርስዎ አንዳንድ ባህሪዎች መመደብ ይችላሉ ወደ áŒáŠ•áŠ™áŠá‰µ የ áŒáŠ•áŠ™áŠá‰¶á‰½ ንáŒáŒáˆ­ ይከáˆá‰³áˆ" #: 05020100.xhp msgctxt "" @@ -4479,7 +4479,7 @@ "bm_id3150499\n" "help.text" msgid "relations; properties (Base)key fields for relations (Base)cascading update (Base)" -msgstr "" +msgstr "áŒáŠ•áŠ™áŠá‰¶á‰½; ባህሪዎች (Base)á‰áˆá ሜዳዎች ለ áŒáŠ•áŠ™áŠá‰¶á‰½ (Base)cascading ማሻሻያ (Base)" #: 05020100.xhp msgctxt "" @@ -4497,7 +4497,7 @@ "2\n" "help.text" msgid "Allows you to define and edit a relation between two tables." -msgstr "" +msgstr "እርስዎን በ áˆáˆˆá‰µ ሰንጠረዥ መካከሠያለá‹áŠ• áŒáŠ•áŠ™áŠá‰µ መáŒáˆˆáŒ½ እና ማረሠያስችሎታሠ" #: 05020100.xhp msgctxt "" @@ -4506,7 +4506,7 @@ "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 @@ "28\n" "help.text" msgid "This is where the two related tables are listed. 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 "እዚህ áŠá‹ የ ተገናኙ ሰንጠረዦች የሚታዩት እርስዎ አዲስ áŒáŠ•áŠ™áŠá‰µ ከ áˆáŒ áˆ©: እርስዎ መáˆáˆ¨áŒ¥ ይችላሉ አንድ ሰንጠረዥ ከ እያንዳንዱ መቀላቀያ ሳጥኖች ከ ንáŒáŒáˆ© በ ላይ በኩáˆ" #: 05020100.xhp msgctxt "" @@ -4533,7 +4533,7 @@ "29\n" "help.text" msgid "If you opened the Relations 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 "እርስዎ ከ ከáˆá‰± የ áŒáŠ•áŠ™áŠá‰¶á‰½ ንኅáŒáˆ­ ለ áŠá‰ áˆ¨ áŒáŠ•áŠ™áŠá‰µ áˆáˆˆá‰µ ጊዜ-በ መጫን የ áŒáŠ•áŠ™áŠá‰µ መስመር በ áŒáŠ•áŠ™áŠá‰µ መስኮት á‹áˆµáŒ¥: እና ከዛ የ ተገናኙትን ሰንጠረዦቹ ማሻሻሠአይችሉáˆ" #: 05020100.xhp msgctxt "" @@ -4551,7 +4551,7 @@ "5\n" "help.text" msgid "Defines the key fields for the relation." -msgstr "" +msgstr "ለ áŒáŠ•áŠ™áŠá‰µ á‰áˆá ሜዳዎች መáŒáˆˆáŒ« " #: 05020100.xhp msgctxt "" @@ -4560,7 +4560,7 @@ "30\n" "help.text" msgid "The names of the tables selected for the link appear here as column names. 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 "የ ተመረጠዠሰንጠረዥ ስሞች ለ አገናአይታያሠእዚህ እንደ አáˆá‹µ ስሞች: እርስዎ ሜዳ ላይ ከ ተጫኑ: እርስዎ መጠቀሠይችላሉ የ ቀስት á‰áˆáŽá‰½ ሜዳ ለ መáˆáˆ¨áŒ¥ ከ ሰንጠረዥ á‹áˆµáŒ¥: እያንዳንዱ áŒáŠ•áŠ™áŠá‰µ የሚጻáˆá‹ በ ረድá áŠá‹" #: 05020100.xhp msgctxt "" @@ -4578,7 +4578,7 @@ "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 @@ "9\n" "help.text" msgid "Specifies that any change made to a primary key does not affect other external key fields." -msgstr "" +msgstr "በ ቀዳሚ á‰áˆá ላይ የተደረገ ማንኛá‹áˆ ለá‹áŒ¥ በ á‹áŒª á‰áˆá ሜዳዎች ላይ ተጽእኖ እንዳይáˆáŒ¥áˆ­ መወሰኛ " #: 05020100.xhp msgctxt "" @@ -4605,7 +4605,7 @@ "10\n" "help.text" msgid "Updating cascade" -msgstr "" +msgstr "cascade ማሻሻያ" #: 05020100.xhp msgctxt "" @@ -4614,7 +4614,7 @@ "11\n" "help.text" msgid "Updates all the external key fields if the value of the corresponding primary key has been modified (Cascading Update)." -msgstr "" +msgstr "ማሻሻያ áˆáˆ‰áˆ የ á‹áŒª á‰áˆá ሜዳዎች ዋጋ ተመሳሳይ ቀዳሚ á‰áˆá ከ ተሻሻለ (Cascading Update)." #: 05020100.xhp msgctxt "" @@ -4632,7 +4632,7 @@ "13\n" "help.text" msgid " 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." -msgstr "" +msgstr "ይህ ተመሳሳይ ቀዳሚ á‰áˆá ከ ተሻሻለ: ይህን áˆáˆ­áŒ« ይጠቀሙ ለ ማሰናዳት \"ባዶ áŠá‹\" ዋጋ ለ áˆáˆ‰áˆ የ á‹áŒª á‰áˆá ሜዳዎች: ባዶ áŠá‹ ማለት ሜዳዠባዶ áŠá‹ ማለት áŠá‹ " #: 05020100.xhp msgctxt "" @@ -4650,7 +4650,7 @@ "15\n" "help.text" msgid " If the corresponding primary key has been modified, use this option to set a default value to all external key fields. 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 " ይህ ተመሳሳይ á‰áˆá ቀዳሚ á‰áˆá ከ ተሻሻለ: ይህን áˆáˆ­áŒ« ይጠቀሙ áŠá‰£áˆ­ ዋጋ ለማሰናዳት ለ áˆáˆ‰áˆ የ á‹áŒª á‰áˆá ሜዳዎች ተመሳሳይ ሰንጠረዥ በሚáˆáŒ¥áˆ© ጊዜ: የ á‹áŒª á‰áˆá ሜዳ áŠá‰£áˆ­ ዋጋ ይገለጻሠእርስዎ የ ሜዳ ባህሪዎች በሚመድቡ ጊዜ" #: 05020100.xhp msgctxt "" @@ -4668,7 +4668,7 @@ "17\n" "help.text" msgid "Here you can select options that take effect when a primary key field is deleted." -msgstr "" +msgstr "እዚህ መáˆáˆ¨áŒ¥ ይችላሉ áˆáˆ­áŒ«á‹Žá‰½ ተጽእኖ የሚáˆáŒ¥áˆ© የ ቀዳሚ á‰áˆá ሜዳ በሚጠዠጊዜ" #: 05020100.xhp msgctxt "" @@ -4686,7 +4686,7 @@ "19\n" "help.text" msgid "Specifies that the deletion of a primary key will not have any effect on other external key fields." -msgstr "" +msgstr "የ ቀዳሚ á‰áˆá በሚያጠበጊዜ በ ሌሎች የ á‹áŒª á‰áˆá ሜዳዎች ላይ ተጽእኖ እንዳይáˆáŒ¥áˆ­ መወሰኛ " #: 05020100.xhp msgctxt "" @@ -4695,7 +4695,7 @@ "20\n" "help.text" msgid "Delete cascade" -msgstr "" +msgstr "cascade ማጥáŠá‹«" #: 05020100.xhp msgctxt "" @@ -4704,7 +4704,7 @@ "21\n" "help.text" msgid "Specifies that all external key fields will be deleted if you delete the corresponding primary key field." -msgstr "" +msgstr "áˆáˆ‰áˆ የ á‹áŒª á‰áˆá ሜዳዎች ይጠበእንደሆን መወሰኛ እርስዎ ቀዳሚ á‰áˆá ሜዳ ሲያጠበ" #: 05020100.xhp msgctxt "" @@ -4731,7 +4731,7 @@ "24\n" "help.text" msgid "If you delete the corresponding primary key, the \"IS NULL\" value will be assigned to all external key fields." -msgstr "" +msgstr "እርስዎ ተመሳሳይ ቀዳሚ á‰áˆá ካጠá‰: የ \"ባዶ áŠá‹\" ዋጋ ለ áˆáˆ‰áˆ የ á‹áŒª á‰áˆá ሜዳዎች ይመደባáˆ" #: 05020100.xhp msgctxt "" @@ -4749,7 +4749,7 @@ "26\n" "help.text" msgid "If you delete the corresponding primary key, a set value will be set to all external key fields." -msgstr "" +msgstr "እርስዎ ተመሳሳይ ቀዳሚ á‰áˆá ካጠá‰: የ ዋጋ ማሰናጃ ለ áˆáˆ‰áˆ የ á‹áŒª á‰áˆá ሜዳዎች ይሰናዳሠ" #: 05030000.xhp msgctxt "" @@ -4774,7 +4774,7 @@ "bm_id3155535\n" "help.text" msgid "queries; copying (Base)tables in databases; copying database tables (Base)" -msgstr "" +msgstr "ጥያቄዎች; ኮᒠበማድረጠላይ (Base)ሰንጠረዦች ከ ዳታቤዠá‹áˆµáŒ¥; ኮᒠበማድረጠላይ ከ ዳታቤዠሰንጠረዥ á‹áˆµáŒ¥ (Base)" #: 05030000.xhp msgctxt "" @@ -4783,7 +4783,7 @@ "2\n" "help.text" msgid "Dragging-and-dropping a query or table opens the Copy Table dialog, which allows you to define the options for copying a query or a table." -msgstr "" +msgstr "በ መጎተት-እና-በ መጣሠጥያቄ ወይንሠሰንጠረዥ ይከáታሠየሰንጠረዥ ኮᒠማድረጊያንáŒáŒáˆ­: እርስዎን መáˆáˆ¨áŒ¥ ያስችሎታሠጥያቄ ወይንሠሰንጠረዥ ኮᒠለማድረáŒ" #: 05030000.xhp msgctxt "" @@ -4792,7 +4792,7 @@ "16\n" "help.text" msgid "With the Copy Table dialog you can:" -msgstr "" +msgstr "በ ሰንጠርዥ ኮᒠማድረጊያ ንáŒáŒáˆ­ እርስዎ ይችላሉ:" #: 05030000.xhp msgctxt "" @@ -4801,7 +4801,7 @@ "18\n" "help.text" msgid "copy the data from the table into another table," -msgstr "" +msgstr "ዳታ ከ ሰንጠረዥ á‹áˆµáŒ¥ ኮᒠማድረጊያ ወደ ሌላ ሰንጠረዥ á‹áˆµáŒ¥" #: 05030000.xhp msgctxt "" @@ -4810,7 +4810,7 @@ "19\n" "help.text" msgid "use the structure of the table as the basis for creating a new table." -msgstr "" +msgstr "አዲስ ሰንጠረዥ ለመáጠር የ ሰንጠረዡን አካሠእንደ መሰረት ይጠቀሙ" #: 05030000.xhp msgctxt "" @@ -4819,7 +4819,7 @@ "20\n" "help.text" msgid "You can copy within the same database or between different databases." -msgstr "" +msgstr "እርስዎ ኮᒠማድረጠይችላሉ ከ ተመሳሳይ ዳታቤዠá‹áˆµáŒ¥ ወይንሠየ ተለየ ዳታቤዠá‹áˆµáŒ¥" #: 05030100.xhp msgctxt "" @@ -4827,7 +4827,7 @@ "tit\n" "help.text" msgid "Copy Table" -msgstr "" +msgstr "ሰንጠረዥ ኮᒠማድረጊያ" #: 05030100.xhp msgctxt "" @@ -4845,7 +4845,7 @@ "29\n" "help.text" msgid "You can copy a table by dragging and dropping the table onto the table area of a database file window. The Copy table dialog appears." -msgstr "" +msgstr "እርስዎ ኮᒠማድረጠይችላሉ በ መጎተት እና በ መጣሠሰንጠረዥ ወደ ዳታቤዠá‹á‹­áˆ መስኮት ቦታ: የ ኮᒠሰንጠረዥ ንáŒáŒáˆ­ ይታያáˆ" #: 05030100.xhp msgctxt "" @@ -4863,7 +4863,7 @@ "4\n" "help.text" msgid "Specifies a name for the copy. Some databases only accept names containing eight or fewer characters." -msgstr "" +msgstr "ኮᒠየሚደረገá‹áŠ• ስሠመወሰኛ አንዳንድ ዳታቤዞች የሚቀበሉት ስáˆáŠ•á‰µ ወይንሠከዚያ á‹«áŠáˆ° ባህሪዎች áŠá‹" #: 05030100.xhp msgctxt "" @@ -4908,7 +4908,7 @@ "10\n" "help.text" msgid "Copies only the table definition and not the corresponding data." -msgstr "" +msgstr "የ ሰንጠረዥ ትርጉሠብቻ ኮᒠማድረጊያ እና ተመሳሳይ ዳታ አይደለሠ" #: 05030100.xhp msgctxt "" @@ -4917,7 +4917,7 @@ "22\n" "help.text" msgid "As table view" -msgstr "" +msgstr "እንደ ሰንጠረዥ መመáˆáŠ¨á‰»" #: 05030100.xhp msgctxt "" @@ -4953,7 +4953,7 @@ "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 "" @@ -4962,7 +4962,7 @@ "31\n" "help.text" msgid "Match the data field names in the Copy Table dialog on the Apply Columns page." -msgstr "" +msgstr "የ ዳታ ሜዳ ስሞች ማመሳሰያ በ ሰንጠረዥ ኮᒠማድረጊያ ንáŒáŒáˆ­ በ አáˆá‹¶á‰½ መáˆáŒ¸áˆšá‹« ገጽ á‹áˆµáŒ¥" #: 05030100.xhp msgctxt "" @@ -4971,7 +4971,7 @@ "14\n" "help.text" msgid "If the data cannot be attached, you will see a list of fields in the Column Info dialog whose data cannot be copied. If you confirm this dialog with OK, only the data that does not appear in the list will be attached." -msgstr "" +msgstr "ዳታ ማያያዠካáˆá‰°á‰»áˆˆ: ለ እርስዎ á‹áˆ­á‹áˆ­ ሜዳዎች ይታይዎታሠበ አáˆá‹µ መረጃ ንáŒáŒáˆ­ á‹áˆµáŒ¥: ዳታዠን ኮᒠማድረጠአይችሉሠእርስዎ ይህን ንáŒáŒáˆ­ ካረጋገጡ በ መጫን እሺ: በ á‹áˆ­á‹áˆ­ á‹áˆµáŒ¥ á‹«áˆá‰³á‹¨ ዳታ ብቻ á‹­á‹«á‹«á‹›áˆ" #: 05030100.xhp msgctxt "" @@ -4980,7 +4980,7 @@ "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 "" @@ -4988,7 +4988,7 @@ "bm_id3149164\n" "help.text" msgid "primary keys; defining" -msgstr "" +msgstr "ቀዳሚ á‰áˆáŽá‰½; መáŒáˆˆáŒ«" #: 05030100.xhp msgctxt "" @@ -4997,7 +4997,7 @@ "24\n" "help.text" msgid "Create primary key" -msgstr "" +msgstr "ቀዳሚ á‰áˆá መáጠሪያ" #: 05030100.xhp msgctxt "" @@ -5006,7 +5006,7 @@ "25\n" "help.text" msgid "Automatically generates a primary key data field and fills it with values. You should always use this field, since a primary key must always be available in order to edit the table." -msgstr "" +msgstr "ራሱ በራሱ ያመáŠáŒ«áˆ የ ቀዳሚ á‰áˆá ሜዳ እና በ ዋጋዎች ይሞላሠእርስዎ áˆáˆáŒŠá‹œ ይህን ሜዳ መጠቀሠአለብዎት: ቀዳሚ á‰áˆá áˆáˆáŒŠá‹œ á‹áŒáŒ መሆን አለበት ሰንጠረዡን ለማረáˆ" #: 05030100.xhp msgctxt "" @@ -5024,7 +5024,7 @@ "27\n" "help.text" msgid "Specifies a name for the primary key generated. This name is optional." -msgstr "" +msgstr "ለ ቀዳሚ á‰áˆá ማመንጫ ስሠይወስኑ: ይህ ስሠበ áˆáˆ­áŒ« ይሆናáˆ" #: 05030100.xhp msgctxt "" @@ -5059,7 +5059,7 @@ "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 Apply columns dialog is the second window of the Copy table dialog." -msgstr "" +msgstr "የ ዳታ áˆáŠ•áŒ­ áˆáˆ‹áŒŠ: እርስዎ ሰንጠረዥ በ መጎተት እና በ መጣሠኮᒠማድረጠይችላሉ ወደ ሰንጠረዥ ማጠራቀሚያ: የ አáˆá‹¶á‰½ መáˆáŒ¸áˆšá‹« ንáŒáŒáˆ­ áˆáˆˆá‰°áŠ›á‹ መስኮት áŠá‹ የ ሰንጠረዥ ኮᒠማድረጊያ ንáŒáŒáˆ­ á‹áˆµáŒ¥" #: 05030200.xhp msgctxt "" @@ -5086,7 +5086,7 @@ "5\n" "help.text" msgid "Lists the available data fields that you can include in the copied table. To copy a data field, click its name, and then click the > button. To copy all of the fields, click the >> button." -msgstr "" +msgstr "á‹áŒáŒ የ ዳታ ሜዳዎች á‹áˆ­á‹áˆ­ እርስዎ ማካተት የሚችሉት ኮᒠወደ ተደረገዠሰንጠረዥ: የ ዳታ ሜዳ ኮᒠለማድረáŒ: ይጫኑ በ ስሙ ላይ: እና ከዛ ይጫኑ የ > á‰áˆá: áˆáˆ‰áŠ•áˆ ሜዳዎች ኮᒠለማድረáŒ: ይጫኑ የ >> á‰áˆá " #: 05030200.xhp msgctxt "" @@ -5104,7 +5104,7 @@ "7\n" "help.text" msgid "Lists the fields that you want to include in the copied table." -msgstr "" +msgstr "የ ዳታ ሜዳዎች á‹áˆ­á‹áˆ­ እርስዎ ማካተት የሚችሉት ኮᒠወደ ተደረገዠሰንጠረዥ" #: 05030200.xhp msgctxt "" @@ -5122,7 +5122,7 @@ "9\n" "help.text" msgid "Adds or removes the selected field (> or < button) or all of the fields (<< or >> button)." -msgstr "" +msgstr "መጨመሪያ ወይንሠማስወገጃ የ ተመረጠá‹áŠ• ሜዳ (> ወይንሠ< á‰áˆá) ወይንሠáˆáˆ‰áŠ•áˆ ሜዳዎች (<< ወይንሠ>> á‰áˆá)." #: 05030200.xhp msgctxt "" @@ -5139,7 +5139,7 @@ "tit\n" "help.text" msgid "Type formatting" -msgstr "" +msgstr "የ ጽáˆá አቀራረብ" #: 05030300.xhp msgctxt "" @@ -5157,7 +5157,7 @@ "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 Type formatting dialog is the third window of the Copy table dialog." -msgstr "" +msgstr "የ ዳታ áˆáŠ•áŒ­ መቃኛ á‹áˆµáŒ¥: እርስዎ ሰንጠረዥ በ መጎተት እና በ መጣሠኮᒠማድረጠይችላሉ ወደ ሰንጠረዥ ማጠራቀሚያ: የ አቀራረብ አይáŠá‰µ ንáŒáŒáˆ­ በ ሶስተኛዠመስኮት áŠá‹ የ ሰንጠረዥ ኮᒠማድረጊያ ንáŒáŒáˆ­ á‹áˆµáŒ¥" #: 05030300.xhp msgctxt "" @@ -5220,7 +5220,7 @@ "10\n" "help.text" msgid "Select a field type." -msgstr "" +msgstr "የ ሜዳ አይáŠá‰µ á‹­áˆáˆ¨áŒ¡" #: 05030300.xhp msgctxt "" @@ -5238,7 +5238,7 @@ "12\n" "help.text" msgid "Enter the number of characters for the data field." -msgstr "" +msgstr "ለ ዳታ ሜዳ የ ባህሪዎች á‰áŒ¥áˆ­ ያስገቡ " #: 05030300.xhp msgctxt "" @@ -5274,7 +5274,7 @@ "16\n" "help.text" msgid "Select the default value for a Yes/No field." -msgstr "" +msgstr "á‹­áˆáˆ¨áŒ¡ áŠá‰£áˆ­ ዋጋ ለ አዎ/አይ ሜዳ " #: 05030300.xhp msgctxt "" @@ -5283,7 +5283,7 @@ "17\n" "help.text" msgid "Automatic type recognition" -msgstr "" +msgstr "ራሱ በራሱ የሚጽá‰á‰µáŠ• ማስታወሻ" #: 05030300.xhp msgctxt "" @@ -5328,7 +5328,7 @@ "22\n" "help.text" msgid "Enables automatic type recognition." -msgstr "" +msgstr "ራሱ በራሱ የሚጽá‰á‰µáŠ• ማስታወሻ ማስቻያ " #: 05030400.xhp msgctxt "" @@ -5363,7 +5363,7 @@ "4\n" "help.text" msgid "Source table" -msgstr "" +msgstr "የ ሰንጠረዥ áˆáŠ•áŒ­" #: 05030400.xhp msgctxt "" @@ -5408,7 +5408,7 @@ "9\n" "help.text" msgid "Moves the selected entry up one position in the list." -msgstr "" +msgstr "የ ተመረጠá‹áŠ• ማስገቢያ አንድ ደረጃ ወደ ላይ በ á‹áˆ­á‹áˆ­ á‹áˆµáŒ¥ ማንቀሳቀሻ" #: 05030400.xhp msgctxt "" @@ -5426,7 +5426,7 @@ "11\n" "help.text" msgid "Moves the selected entry down one position in the list." -msgstr "" +msgstr "የ ተመረጠá‹áŠ• ማስገቢያ አንድ ደረጃ ወደ ታች በ á‹áˆ­á‹áˆ­ á‹áˆµáŒ¥ ማንቀሳቀሻ" #: 05030400.xhp msgctxt "" @@ -5444,7 +5444,7 @@ "13\n" "help.text" msgid "Selects all of the data fields in the list." -msgstr "" +msgstr "áˆáˆ‰áŠ•áˆ የ ዳታ ሜዳዎች ከ á‹áˆ­á‹áˆ­ á‹áˆµáŒ¥ መáˆáˆ¨áŒ« " #: 05030400.xhp msgctxt "" @@ -5462,7 +5462,7 @@ "15\n" "help.text" msgid "Clears all of the check boxes in the list." -msgstr "" +msgstr "áˆáˆ‰áŠ•áˆ የ áˆáˆáŠ­á‰µ ማድረጊያዎች ከ á‹áˆ­á‹áˆ­ á‹áˆµáŒ¥ ማጽጃ " #: 05040000.xhp msgctxt "" @@ -5513,7 +5513,7 @@ "bm_id3152594\n" "help.text" msgid "access rights for database tables (Base)tables in databases; access rights to (Base)" -msgstr "" +msgstr "መድረሻ áቃድ ለ ዳታቤዠሰንጠረዥ (Base)ሰንጠረዥ ዳታቤዠá‹áˆµáŒ¥; መድረሻ áቃድ ወደ (Base)" #: 05040100.xhp msgctxt "" @@ -5522,7 +5522,7 @@ "12\n" "help.text" msgid "If you are not the administrator, you can use the General tab to view your access rights for the selected table." -msgstr "" +msgstr "እርስዎ አስተዳዳሪ ካáˆáˆ†áŠ‘: እርስዎ መጠቀሠይችላሉ የ ባጠቃላይtab የ እርስዎን áቃድ ለ መመáˆáŠ¨á‰µ ለ ተመረጠዠሰንጠረዥ" #: 05040100.xhp msgctxt "" @@ -5576,7 +5576,7 @@ "17\n" "help.text" msgid "Displays the complete path of the database table." -msgstr "" +msgstr "የ ዳታቤዠሰንጠረዥ ሙሉ መንገድ ማሳያ" #: 05040100.xhp msgctxt "" @@ -5657,7 +5657,7 @@ "8\n" "help.text" msgid "Change table structure" -msgstr "" +msgstr "የ ሰንጠረዥ አካሠመቀየሪያ" #: 05040100.xhp msgctxt "" @@ -5666,7 +5666,7 @@ "22\n" "help.text" msgid "Allows a user to change the table structure." -msgstr "" +msgstr "ተጠቃሚá‹áŠ• የ ሰንጠረዥ አካሠመቀየሪያ ያስችለዋáˆ" #: 05040100.xhp msgctxt "" @@ -5684,7 +5684,7 @@ "23\n" "help.text" msgid "Allows the user to delete the table structure." -msgstr "" +msgstr "ተጠቃሚá‹áŠ• የ ሰንጠረዥ አካሠማጥá‹á‰µ ያስችለዋáˆ" #: 05040100.xhp msgctxt "" @@ -5753,7 +5753,7 @@ "bm_id3155449\n" "help.text" msgid "databases;drag and drop (Base)" -msgstr "" +msgstr "ዳታቤዞች;መጎተቻ እና መጣያ (Base)" #: 11000002.xhp msgctxt "" @@ -5762,7 +5762,7 @@ "93\n" "help.text" msgid "Data sources in $[officename]" -msgstr "" +msgstr "የ ዳታ áˆáŠ•áŒ­ በ $[officename]" #: 11000002.xhp msgctxt "" @@ -5771,7 +5771,7 @@ "49\n" "help.text" msgid "Selecting the Address Book" -msgstr "" +msgstr "የ አድራሻ ደብተር በ መáˆáˆ¨áŒ¥ ላይ" #: 11000002.xhp msgctxt "" @@ -5780,7 +5780,7 @@ "101\n" "help.text" msgid "To select the address book that you want to use, choose Tools - Address Book Source." -msgstr "" +msgstr "እርስዎ መጠቀሠየሚáˆáˆáŒ‰á‰µáŠ• የ አድራሻ ደብተር ለ መáˆáˆ¨áŒ¥: á‹­áˆáˆ¨áŒ¡ መሳሪያዎች - የ አድራሻ ደብተር áˆáŠ•áŒ­." #: 11000002.xhp msgctxt "" @@ -5789,7 +5789,7 @@ "26\n" "help.text" msgid "Opening a Data Source" -msgstr "" +msgstr "የ ዳታ áˆáŠ•áŒ­ በ መክáˆá‰µ ላይ" #: 11000002.xhp msgctxt "" @@ -5798,7 +5798,7 @@ "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 @@ "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 @@ "2\n" "help.text" msgid "Specifies the settings for ODBC databases. This includes your user access data, driver settings, and font definitions." -msgstr "" +msgstr "ማሰናጃዎች መወሰኛ ለ ODBC ዳታቤዞች: ይህ የ እርስዎን መድረሻ ዳታ ያካትታáˆ: driver ማሰናጃዎች: እና የ áŠá‹°áˆ ትርጉሞች " #: 11020000.xhp msgctxt "" @@ -5869,7 +5869,7 @@ "7\n" "help.text" msgid "Prevents an unauthorized user from accessing the database. You only need to enter the password once per session." -msgstr "" +msgstr "áቃድ የሌላቸá‹áŠ• ተጠቃሚዎች ወደ ዳታቤዠእንዳይደርሱ መከáˆáŠ¨á‹«: እርስዎ የ መáŒá‰¢á‹« ቃሠአንድ ጊዜ በ ክáˆáˆˆ ጊዜ ማስገባት አለብዎት" #: 11020000.xhp msgctxt "" @@ -5878,7 +5878,7 @@ "10\n" "help.text" msgid "Driver Settings" -msgstr "" +msgstr "Driver ማሰናጃዎች" #: 11020000.xhp msgctxt "" @@ -5941,7 +5941,7 @@ "26\n" "help.text" msgid "Auto-increment statement" -msgstr "" +msgstr "በራሱ-መጨመሪያ አáŠáŒ‹áŒˆáˆ­" #: 11020000.xhp msgctxt "" @@ -5959,7 +5959,7 @@ "28\n" "help.text" msgid "CREATE TABLE \"table1\" (\"id\" INTEGER)" -msgstr "" +msgstr "ሰንጠረዥ መáጠሪያ \"ሰንጠረዥ1\" (\"id\" INTEGER)" #: 11020000.xhp msgctxt "" @@ -5977,7 +5977,7 @@ "30\n" "help.text" msgid "CREATE TABLE \"table1\" (\"id\" INTEGER AUTO_INCREMENT)" -msgstr "" +msgstr "ሰንጠረዥ መáጠሪያ \"ሰንጠረዥ1\" (\"id\" INTEGER በራሱ_መጨመሪያ)" #: 11020000.xhp msgctxt "" @@ -5986,7 +5986,7 @@ "31\n" "help.text" msgid "In other words, enter AUTO_INCREMENT into Auto-increment statement box." -msgstr "" +msgstr "በ ሌላ አáŠáŒ‹áŒˆáˆ­: ያስገቡ በራሱ_መጨመሪያ ወደ በራሱ-መጨመሪያ አáŠáŒ‹áŒˆáˆ­ ሳጥን á‹áˆµáŒ¥" #: 11020000.xhp msgctxt "" @@ -5995,7 +5995,7 @@ "32\n" "help.text" msgid "Query of generated values" -msgstr "" +msgstr "የ መáŠáŒ© ዋጋዎች ጥያቄ" #: 11020000.xhp msgctxt "" @@ -6013,7 +6013,7 @@ "34\n" "help.text" msgid "SELECT LAST_INSERT_D();" -msgstr "" +msgstr "á‹­áˆáˆ¨áŒ¡ መጨረሻ_የገባá‹_ን();" #: 11020000.xhp msgctxt "" @@ -6057,7 +6057,7 @@ "tit\n" "help.text" msgid "dBASE" -msgstr "" +msgstr "ዳታቤá‹" #: 11030000.xhp msgctxt "" @@ -6093,7 +6093,7 @@ "4\n" "help.text" msgid "Display inactive records" -msgstr "" +msgstr "ንበያáˆáˆ†áŠ‘ መá‹áŒˆá‰¦á‰½ ማሳያ" #: 11030000.xhp msgctxt "" @@ -6146,7 +6146,7 @@ "9\n" "help.text" msgid "Opens the Indexes dialog, where you can organize the table indexes in the current dBASE database." -msgstr "" +msgstr "መክáˆá‰» የ ማá‹áŒ«á‹Žá‰½ ንáŒáŒáˆ­: እርስዎ የሚያደራáŒá‰ á‰µ የ ሰንጠረዥ ማá‹áŒ« ለ አáˆáŠ‘ ዳታቤዠዳታቤá‹" #: 11030100.xhp msgctxt "" @@ -6190,7 +6190,7 @@ "10\n" "help.text" msgid "Select the database table that you want to index." -msgstr "" +msgstr "á‹­áˆáˆ¨áŒ¡ የ ሰንጠረዥ ዳታቤዠእርስዎ ማá‹áŒ« መáጠር የሚáˆáˆáŒ‰á‰µáŠ• " #: 11030100.xhp msgctxt "" @@ -6235,7 +6235,7 @@ "6\n" "help.text" msgid "<" -msgstr "" +msgstr "<" #: 11030100.xhp msgctxt "" @@ -6244,7 +6244,7 @@ "13\n" "help.text" msgid "Moves the selected index to the Table Indexes list." -msgstr "" +msgstr "የ ተመረጠá‹áŠ• ማá‹áŒ« ማንቀሳቀሻ ወደ ሰንጠረዥ ማá‹áŒ« á‹áˆ­á‹áˆ­" #: 11030100.xhp msgctxt "" @@ -6262,7 +6262,7 @@ "14\n" "help.text" msgid "Moves all of the free indexes to the Table Indexes list." -msgstr "" +msgstr "የ ተመረጡትን áˆáˆ‰áŠ•áˆ áŠáƒ ማá‹áŒ« ማንቀሳቀሻ ወደ ሰንጠረዥ ማá‹áŒ« á‹áˆ­á‹áˆ­" #: 11030100.xhp msgctxt "" @@ -6271,7 +6271,7 @@ "8\n" "help.text" msgid ">" -msgstr "" +msgstr ">" #: 11030100.xhp msgctxt "" @@ -6280,7 +6280,7 @@ "15\n" "help.text" msgid "Moves the selected table indexes to the Free Indexes list." -msgstr "" +msgstr "የ ተመረጡትን የ ሰንጠረዥ ማá‹áŒ«á‹Žá‰½ ማንቀሳቀሻ ወደ áŠáƒ ማá‹áŒ« á‹áˆ­á‹áˆ­" #: 11030100.xhp msgctxt "" @@ -6298,7 +6298,7 @@ "16\n" "help.text" msgid "Moves all of the table indexes to the Free Indexes list." -msgstr "" +msgstr "የ ተመረጡትን áˆáˆ‰áŠ•áˆ የ ሰንጠረዥ ማá‹áŒ« ማንቀሳቀሻ ወደ áŠáƒ ማá‹áŒ« á‹áˆ­á‹áˆ­" #: 11080000.xhp msgctxt "" @@ -6546,7 +6546,7 @@ "6\n" "help.text" msgid "Select the user whose settings you want to modify." -msgstr "" +msgstr "ተጠቃሚ á‹­áˆáˆ¨áŒ¡ እርስዎ ማሰናጃá‹áŠ• ማሻሻሠየሚáˆáˆáŒ‰á‰µáŠ•" #: 11150200.xhp msgctxt "" @@ -6555,7 +6555,7 @@ "7\n" "help.text" msgid "Add user" -msgstr "" +msgstr "ተጠቃሚ መጨመሪያ" #: 11150200.xhp msgctxt "" @@ -6564,7 +6564,7 @@ "8\n" "help.text" msgid "Adds a new user for accessing the selected database." -msgstr "" +msgstr "አዲስ ተጠቃሚ መጨመሪያ እንዲደርስ ወደ ተመረጠዠዳታቤዠጋር " #: 11150200.xhp msgctxt "" @@ -6573,7 +6573,7 @@ "9\n" "help.text" msgid "Change password" -msgstr "" +msgstr "የ መáŒá‰¢á‹« ቃሠመቀየሪያ" #: 11150200.xhp msgctxt "" @@ -6582,7 +6582,7 @@ "10\n" "help.text" msgid "Changes the current user password for accessing the database." -msgstr "" +msgstr "የ አáˆáŠ‘ን ተጠቃሚ የ መáŒá‰¢á‹« ቃሠመቀየሪያ እንዲደርስ ወደ ዳታቤዠጋር " #: 11150200.xhp msgctxt "" @@ -6609,7 +6609,7 @@ "13\n" "help.text" msgid "Access rights for selected user." -msgstr "" +msgstr "ለ ተመረጠዠተጠቃሚ የ መድረሻ áቃድ" #: 11150200.xhp msgctxt "" @@ -6680,7 +6680,7 @@ "6\n" "help.text" msgid "Increment size" -msgstr "" +msgstr "የ ጭማሪ መጠን" #: 11170000.xhp msgctxt "" @@ -6734,7 +6734,7 @@ "12\n" "help.text" msgid "Shut down the service when closing $[officename]" -msgstr "" +msgstr "áŒáˆáŒ‹áˆŽá‰±áŠ• መá‹áŒŠá‹« በሚዘጋ ጊዜ $[officename]" #: 11170000.xhp msgctxt "" @@ -6752,7 +6752,7 @@ "14\n" "help.text" msgid "Extended" -msgstr "" +msgstr "የ ተስá‹á‰" #: 11170000.xhp msgctxt "" @@ -6769,7 +6769,7 @@ "tit\n" "help.text" msgid "Database Statistics" -msgstr "" +msgstr "የ ዳታቤዠStatistics" #: 11170100.xhp msgctxt "" @@ -6778,7 +6778,7 @@ "1\n" "help.text" msgid "Database Statistics" -msgstr "" +msgstr "የ ዳታቤዠStatistics" #: 11170100.xhp msgctxt "" @@ -7001,7 +7001,7 @@ "39\n" "help.text" msgid "Choose File - New - Database to open the Database Wizard." -msgstr "" +msgstr "á‹­áˆáˆ¨áŒ¡ á‹á‹­áˆ - አዲስ - ዳታቤዠለ መክáˆá‰µ የ ዳታቤዠአዋቂ" #: 30000000.xhp msgctxt "" @@ -7162,7 +7162,7 @@ "12\n" "help.text" msgid "Enter a password." -msgstr "" +msgstr "የ መáŒá‰¢á‹« ቃሠያስገቡ" #: 30100000.xhp msgctxt "" @@ -7171,7 +7171,7 @@ "13\n" "help.text" msgid "Database settings" -msgstr "" +msgstr "የ ዳታቤዠማሰናጃዎች" #: 30100000.xhp msgctxt "" @@ -7397,7 +7397,7 @@ "par_id7679372\n" "help.text" msgid "In a database window, choose Edit - Database - Advanced Settings" -msgstr "" +msgstr "ከ ዳታቤዠመስኮት á‹áˆµáŒ¥ á‹­áˆáˆ¨áŒ¡ ማረሚያ - ዳታቤዠ- የ ረቀበማሰናጃዎች " #: dabaadvpropdat.xhp msgctxt "" @@ -7477,7 +7477,7 @@ "par_idN105A5\n" "help.text" msgid "Use Outer Join syntax '{OJ }'" -msgstr "" +msgstr "ይጠቀሙ የ á‹áŒ­ ማገናኛ አገባብ ለ '{OJ }'" #: dabaadvpropdat.xhp msgctxt "" @@ -7525,7 +7525,7 @@ "par_idN105CB\n" "help.text" msgid "Replace named parameters with ?" -msgstr "" +msgstr "የ ተሰየሙ ደንቦችን áˆá‰€á‹­áˆ­ በ ?" #: dabaadvpropdat.xhp msgctxt "" @@ -7533,7 +7533,7 @@ "par_idN105CF\n" "help.text" msgid "Replaces named parameters in a data source with a question mark (?)." -msgstr "" +msgstr "የ ተሰየሙ ደንቦችን መቀየሪያ ከ ዳታ áˆáŠ•áŒ­ á‹áˆµáŒ¥ በ ጥያቄ áˆáˆáŠ­á‰µ (?)." #: dabaadvpropdat.xhp msgctxt "" @@ -7557,7 +7557,7 @@ "par_idN105FA\n" "help.text" msgid "Use the catalog name in SELECT statements" -msgstr "" +msgstr "የ መá‹áŒˆá‰¥ ስሠይጠቀሙ በ መáˆáˆ¨áŒ« አáŠáŒ‹áŒˆáˆ­" #: dabaadvpropdat.xhp msgctxt "" @@ -7589,7 +7589,7 @@ "par_idN1061A\n" "help.text" msgid "Create index with ASC or DESC statement" -msgstr "" +msgstr "ማá‹áŒ« መáጠሪያ እየጨመረ ወይንሠእየቀáŠáˆ° በሚሄድ አሰራር" #: dabaadvpropdat.xhp msgctxt "" @@ -7597,7 +7597,7 @@ "par_idN1061E\n" "help.text" msgid "Creates an index with ASC or DESC statements." -msgstr "" +msgstr "ማá‹áŒ« መáጠሪያ እየጨመረ ወይንሠእየቀáŠáˆ° በሚሄድ አሰራር " #: dabaadvpropdat.xhp msgctxt "" @@ -7621,7 +7621,7 @@ "hd_id1101718\n" "help.text" msgid "Form data input checks for required fields" -msgstr "" +msgstr "ለሚáˆáˆˆáŒ‰á‰µ ሜዳዎች የ ዳታ ማስገቢያ áŽáˆ­áˆ መመርመሪያ" #: dabaadvpropdat.xhp msgctxt "" @@ -7685,7 +7685,7 @@ "hd_id04092009442139524\n" "help.text" msgid "Supports primary keys" -msgstr "" +msgstr "ቀዳሚ á‰áˆá á‹­á‹°áŒá‹áˆ" #: dabaadvpropdat.xhp msgctxt "" @@ -7725,7 +7725,7 @@ "tit\n" "help.text" msgid "Generated Values" -msgstr "" +msgstr "የ መáŠáŒ© ዋጋዎች" #: dabaadvpropgen.xhp msgctxt "" @@ -7773,7 +7773,7 @@ "par_idN10593\n" "help.text" msgid "Auto-increment statement" -msgstr "" +msgstr "በራሱ-መጨመሪያ አáŠáŒ‹áŒˆáˆ­" #: dabaadvpropgen.xhp msgctxt "" @@ -12418,12 +12418,13 @@ msgstr "አዲስ የረድá መቆጣጠሪያዎች መጨመሪያ" #: querywizard04.xhp +#, fuzzy msgctxt "" "querywizard04.xhp\n" "par_idN105F1\n" "help.text" msgid "-" -msgstr "" +msgstr "-" #: querywizard04.xhp msgctxt "" @@ -14442,12 +14443,13 @@ msgstr "" #: tablewizard02.xhp +#, fuzzy msgctxt "" "tablewizard02.xhp\n" "par_idN10574\n" "help.text" msgid "-" -msgstr "" +msgstr "-" #: tablewizard02.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/am/helpcontent2/source/text/shared/guide.po libreoffice-5.1.2~rc2/translations/source/am/helpcontent2/source/text/shared/guide.po --- libreoffice-5.1.1~rc2/translations/source/am/helpcontent2/source/text/shared/guide.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/am/helpcontent2/source/text/shared/guide.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-21 16:40+0000\n" +"PO-Revision-Date: 2016-02-25 16:54+0000\n" "Last-Translator: Samson B \n" "Language-Team: LANGUAGE \n" "Language: am\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1456072820.000000\n" +"X-POOTLE-MTIME: 1456419282.000000\n" #: aaa_start.xhp msgctxt "" @@ -434,7 +434,7 @@ "7\n" "help.text" msgid "Open the Optional Components entry and find the ActiveX Control entry. Open the sub menu of the icon and select to install the feature." -msgstr "" +msgstr "መክáˆá‰» በ በ áˆáˆ­áŒ« አካላቶች ማስገቢያ እና መáˆáˆˆáŒŠá‹« በ ActiveX Control ማስገቢያ á‹áˆµáŒ¥: ይክáˆá‰± የ ንዑስ á‹áˆ­á‹áˆ­ áˆáˆáŠ­á‰µ የ ተመረጠá‹áŠ• ገጽታ ለ መáŒáŒ áˆ" #: activex.xhp msgctxt "" @@ -549,7 +549,7 @@ "25\n" "help.text" msgid "$[officename] supports some assistive technology tools like screen magnification software, screen readers, and on-screen keyboards." -msgstr "" +msgstr "$[officename] á‹­á‹°áŒá‹áˆ አንዳንድ የ እርዳታ ቴክኖሎጂ መሳሪያዎች እንደ መመáˆáŠ¨á‰»á‹áŠ• ማጉሊያ ሶáትዌር: መመáˆáŠ¨á‰»á‹áŠ• አንባቢ: እና በ-መመáˆáŠ¨á‰»á‹ ላይ የ áŠá‹°áˆ ገበታ" #: assistive.xhp msgctxt "" @@ -557,7 +557,7 @@ "par_id8847010\n" "help.text" msgid "A current list of supported assistive tools can be found on the Wiki at http://wiki.documentfoundation.org/Accessibility." -msgstr "" +msgstr "የ እርዳታ ቴክኖሎጂ መሳሪያዎች á‹áˆ­á‹áˆ­ ይገኛሠበ ዊኪ በ http://wiki.documentfoundation.org/Accessibility." #: assistive.xhp msgctxt "" @@ -1964,7 +1964,7 @@ "5\n" "help.text" msgid "Double-click on an existing title text. A gray border appears around the text and you can now make changes. Press Enter to create a new line." -msgstr "" +msgstr "áˆáˆˆá‰µ ጊዜ-ይጫኑ በ áŠá‰ áˆ¨á‹ የ ጽáˆá ሰáŠá‹µ ላይ: áŒáˆ«áŒ« ድንበር ይታያሠበ ጽáˆá‰ ዙሪያ እና አáˆáŠ• እርስዎ መቀየር ይችላሉ: ይጫኑ ማስገቢያá‹áŠ• አዲስ መስመር ለ መáጠር" #: chart_title.xhp msgctxt "" @@ -2049,7 +2049,7 @@ "par_id5821710\n" "help.text" msgid "In %PRODUCTNAME Writer, Impress, and Draw, only one user at a time can open any document for writing. In Calc, many users can open the same spreadsheet for writing at the same time." -msgstr "" +msgstr "በ %PRODUCTNAME መጻáŠá‹«: ማስደáŠá‰‚á‹« እና መሳያ á‹áˆµáŒ¥ አንድ ተጠቃሚ ብቻ በ አንድ ጊዜ ሰáŠá‹µ መክáˆá‰µ ይችላሠለ መጻá: በ ሰንጠረዥ á‹áˆµáŒ¥ በርካታ ተጠቃሚዎች በ ተመሳሳይ ጊዜ መክáˆá‰µ እና በ ሰንጠረዥ ላይ በ ተመሳሳይ ጊዜ መጻá ይችላሉ" #: collab.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/am/helpcontent2/source/text/shared/optionen.po libreoffice-5.1.2~rc2/translations/source/am/helpcontent2/source/text/shared/optionen.po --- libreoffice-5.1.1~rc2/translations/source/am/helpcontent2/source/text/shared/optionen.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/am/helpcontent2/source/text/shared/optionen.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "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-24 14:25+0000\n" +"PO-Revision-Date: 2016-02-24 15:10+0000\n" "Last-Translator: Samson B \n" "Language-Team: LANGUAGE \n" "Language: am\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1456323909.000000\n" +"X-POOTLE-MTIME: 1456326654.000000\n" #: 01000000.xhp msgctxt "" @@ -65,7 +65,7 @@ "par_idN10607\n" "help.text" msgid "You see only the entries that are applicable to the current document. If the current document is a text document, you see the %PRODUCTNAME Writer entry, and so on for all modules of %PRODUCTNAME. %PRODUCTNAME Impress and %PRODUCTNAME Draw are treated as the same in this dialog. The common entries are always visible." -msgstr "" +msgstr "ለ እርስዎ የሚታየዠማስገቢያ ለ አáˆáŠ‘ ሰáŠá‹µ መáˆáŒ¸áˆšá‹« ብቻ áŠá‹: የ አáˆáŠ‘ ሰáŠá‹µ የ ጽáˆá ሰáŠá‹µ ከሆáŠ: ለ እርስዎ ይህ ይታያሠየ %PRODUCTNAME መጻáŠá‹« ማስገቢያ: እና ለ áˆáˆ‰áˆ ክáሎች: %PRODUCTNAME. %PRODUCTNAME ማስደáŠá‰‚á‹« እና %PRODUCTNAME መሳያ በዚህ ንáŒáŒáˆ­ á‹áˆµáŒ¥ የሚታዩት እንደ አንድ áŠá‹: መደበኛ ማስገቢያዎች áˆáˆáŒŠá‹œ ይታያሉ" #: 01000000.xhp msgctxt "" @@ -82,7 +82,7 @@ "par_id1013200911280529\n" "help.text" msgid "Note for Mac OS X users: The Help mentions the menu path Tools - Options at numerous places. Replace this path with %PRODUCTNAME - Preferences on your Mac OS X main menu. Both menu entries open the Options dialog box." -msgstr "" +msgstr "ማስታወሻ ለ: Mac OS X ተጠቃሚዎች: እርዳታ ይገáˆáŒ»áˆ ስለ á‹áˆ­á‹áˆ­ መንገድ መሳሪያዎች - áˆáˆ­áŒ« በ ተለያዩ ቦታዎች: ይህን መንገድ ይቀይሩ በ %PRODUCTNAME - áˆáˆ­áŒ«á‹Žá‰½ በ እርስዎ የ Mac OS X ዋና á‹áˆ­á‹áˆ­ ላይ: áˆáˆˆá‰±áˆ á‹áˆ­á‹áˆ­ ማስገቢያዎች የሚከáቱት የ áˆáˆ­áŒ« ንáŒáŒáˆ­ ሳጥን áŠá‹" #: 01000000.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/am/helpcontent2/source/text/simpress/01.po libreoffice-5.1.2~rc2/translations/source/am/helpcontent2/source/text/simpress/01.po --- libreoffice-5.1.1~rc2/translations/source/am/helpcontent2/source/text/simpress/01.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/am/helpcontent2/source/text/simpress/01.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "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-19 18:27+0000\n" -"Last-Translator: Samson B \n" +"PO-Revision-Date: 2016-03-03 18:18+0000\n" +"Last-Translator: system user <>\n" "Language-Team: LANGUAGE \n" "Language: am\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1455906430.000000\n" +"X-POOTLE-MTIME: 1457029087.000000\n" #: 01170000.xhp msgctxt "" @@ -3324,7 +3324,7 @@ "2\n" "help.text" msgid "Creates a new slide that contains a bulleted list from the titles of the slides that follow the selected slide. The summary slide is inserted behind the last slide." -msgstr "" +msgstr "አዲስ ተንሸራታች መáጠሪያ የ áŠáŒ¥á‰¥ á‹áˆ­á‹áˆ­ የያዘ በ ተንሸራታች አርእስቶች á‹áˆµáŒ¥ የ ተመረጠá‹áŠ• ተንሸራታች የሚከተáˆ: የ ማጠቃለያ ተንሸራታች የሚገባዠከ መጨረሻዠተንሸራታች በኋላ áŠá‹ " #: 04990000.xhp msgctxt "" @@ -4462,7 +4462,7 @@ "4\n" "help.text" msgid "Sets the distance properties of the dimension line and the guides with respect to each other and to the baseline." -msgstr "" +msgstr "የ አቅጣጫ ባህሪዎችን እርቀት ማሰናጃ እና መáˆáˆªá‹«á‹Žá‰½ ለ እያንዳንዳቸዠእና መሰረታዊ መስመር" #: 05150000.xhp msgctxt "" @@ -4997,7 +4997,7 @@ "2\n" "help.text" msgid "Changes the stacking order by moving the selected object in front of an object that you specify. The screen location of the selected object does not change." -msgstr "" +msgstr "የ መደርደሪያá‹áŠ• ደንብ መቀየሪያ በማንቀሳቀስ የ ተመረጠá‹áŠ• እቃ ከ እቃ áŠá‰µ ለ áŠá‰µ እርስዎ በሚወስኑት: የ ተመረጠዠእቃ መመáˆáŠ¨á‰» አካባቢ አይቀየርሠ" #: 05250500.xhp msgctxt "" @@ -5040,7 +5040,7 @@ "2\n" "help.text" msgid "Changes the stacking order by moving the selected object behind an object that you specify. The screen location of the selected object does not change." -msgstr "" +msgstr "የ መደርደሪያá‹áŠ• ደንብ መቀየሪያ በማንቀሳቀስ የ ተመረጠá‹áŠ• እቃ ከ እቃ በኋላ እርስዎ በሚወስኑት: የ ተመረጠዠእቃ መመáˆáŠ¨á‰» አካባቢ አይቀየርሠ" #: 05250600.xhp msgctxt "" @@ -5304,7 +5304,7 @@ "par_idN10751\n" "help.text" msgid "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." -msgstr "" +msgstr "á‹­áˆáˆ¨áŒ¡ ለ መቀጠሠወደሚቀጥለዠተንሻራታች ከ ተወሰአሰከንድ በኋላ: ሰከንዶቹን ያስገቡ በ á‰áŒ¥áˆ­ ሜዳ á‹áˆµáŒ¥ ከ ማዞሪያዠá‰áˆá አጠገብ " #: 06040000.xhp msgctxt "" @@ -5569,7 +5569,7 @@ "16\n" "help.text" msgid "Indicates the position of the current image in the animation sequence. If you want to view another image, enter its number or click the up and down arrows." -msgstr "" +msgstr "በ እንቅስቃሴዠሂደት á‹áˆµáŒ¥ የ አáˆáŠ‘ን áˆáˆµáˆ ቦታ መጠቆሚያ እርስዎ ሌላ áˆáˆµáˆ ማየት ከ áˆáˆˆáŒ‰: á‰áŒ¥áˆ©áŠ• ያስገቡ እና ይጫኑ ቀስት ወደ ላይ ወይንሠቀስት ወደ ታች" #: 06050000.xhp msgctxt "" @@ -5685,7 +5685,7 @@ "85\n" "help.text" msgid "You can also select an animation, such as an animated GIF, and click this icon to open it for editing. When you are finished editing the animation, click Create to insert a new animation into your slide." -msgstr "" +msgstr "እርስዎ እንዲáˆáˆ መáˆáˆ¨áŒ¥ ይችላሉ እንቅስቃሴ: እንደ animated GIF እና ይጫኑ ይህን áˆáˆáŠ­á‰µ ለ መክáˆá‰µ እና ለማረáˆ: እርስዎ ማረሙን ሲጨርሱ: ይጫኑ መáጠሪያለ ማስገባት አዲሱን እንቅስቃሴ ወደ እርስዎ ተንሸራታች á‹áˆµáŒ¥" #: 06050000.xhp msgctxt "" @@ -7581,7 +7581,7 @@ "13\n" "help.text" msgid "Fills the color gaps caused by applying a point reduction." -msgstr "" +msgstr "áŠáŒ¥á‰¥ በሚቀንሱ ጊዜ ለ ተáˆáŒ¸áˆ˜á‹ ክáተት ቀለሠመሙያ" #: 13050200.xhp msgctxt "" @@ -7838,7 +7838,7 @@ "3\n" "help.text" msgid "You can also copy the selected object and choose Edit - Paste Special and select the bitmap format from the list." -msgstr "" +msgstr "እርስዎ የተመረጠá‹áŠ• እቃ ኮᒠማድረጠይችላሉ እና ከዛ á‹­áˆáˆ¨áŒ¡ ማረሚያ - የተለየ መለጠáŠá‹« እና ከዛ á‹­áˆáˆ¨áŒ¡ የ bitmap አቀራረብ ከ á‹áˆ­á‹áˆ­ á‹áˆµáŒ¥" #: 13050600.xhp msgctxt "" @@ -9098,7 +9098,7 @@ "par_idN10762\n" "help.text" msgid "Applies the master page or the slide design to the selected slides." -msgstr "ዋናá‹áŠ• ገጽ ወይንሠየ ተንሸራታች ንድá ለ ተመረጠዠተንሻራታች መáˆáŒ¸áˆšá‹«" +msgstr "ዋናá‹áŠ• ገጽ ወይንሠየ ተንሸራታች ንድá ለ ተመረጠዠተንሸራታች መáˆáŒ¸áˆšá‹«" #: taskpanel.xhp msgctxt "" @@ -9122,7 +9122,7 @@ "par_idN107CB\n" "help.text" msgid "Click to apply a slide design to all selected slides. Right-click for a submenu." -msgstr "ይጫኑ የ ተንሻራታች ንድá ለ áˆáˆ‰áˆ ተንሸራታቾች ለመáˆáŒ¸áˆ: በ ቀáŠ-ይጫኑ ለ ንዑስ á‹áˆ­á‹áˆ­" +msgstr "ይጫኑ የ ተንሸራታች ንድá ለ áˆáˆ‰áˆ ተንሸራታቾች ለመáˆáŒ¸áˆ: በ ቀáŠ-ይጫኑ ለ ንዑስ á‹áˆ­á‹áˆ­" #: taskpanel.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/am/helpcontent2/source/text/simpress/guide.po libreoffice-5.1.2~rc2/translations/source/am/helpcontent2/source/text/simpress/guide.po --- libreoffice-5.1.1~rc2/translations/source/am/helpcontent2/source/text/simpress/guide.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/am/helpcontent2/source/text/simpress/guide.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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: 2016-02-03 22:36+0000\n" +"PO-Revision-Date: 2016-02-28 18:08+0000\n" "Last-Translator: Samson B \n" "Language-Team: LANGUAGE \n" "Language: am\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1454538962.000000\n" +"X-POOTLE-MTIME: 1456682935.000000\n" #: 3d_create.xhp msgctxt "" @@ -3601,7 +3601,7 @@ "tit\n" "help.text" msgid "Applying a Slide Design to a Slide Master" -msgstr "የተንሸራታች ንድá ወደ ዋናዠትá‹áŠ•áˆ¸áˆ«á‰³á‰½ መáˆáŒ¸áˆšá‹«" +msgstr "የተንሸራታች ንድá ወደ ዋናዠተንሸራታች መáˆáŒ¸áˆšá‹«" #: masterpage.xhp msgctxt "" @@ -3618,7 +3618,7 @@ "13\n" "help.text" msgid "Applying a Slide Design to a Slide Master" -msgstr "የተንሸራታች ንድá ወደ ዋናዠትá‹áŠ•áˆ¸áˆ«á‰³á‰½ መáˆáŒ¸áˆšá‹«" +msgstr "የተንሸራታች ንድá ወደ ዋናዠተንሸራታች መáˆáŒ¸áˆšá‹«" #: masterpage.xhp msgctxt "" @@ -3627,7 +3627,7 @@ "14\n" "help.text" msgid "Every slide in a presentation has exactly one slide master, also known as master page. A slide master determines the text formatting style for the title and outline and the background design for all slides that use this slide master." -msgstr "" +msgstr "áˆáˆ‰áˆ ተንሸራታች በ ማቅረቢያ á‹áˆµáŒ¥ አንድ ዋና ተንሸራታች አለá‹: እንዲáˆáˆ ዋናዠየ ተንሸራታች ገጽ ይባላáˆ: የ ዋናዠተንሸራታች የ ጽáˆá አቀራረብ ዘዴ ለ አርእስት እና ረቂቅ እና ለ መደብ ንድá ለ áˆáˆ‰áˆ ተንሸራታቾች ዋናá‹áŠ• ተንሸራታች ለሚጠቀሙ áˆáˆ‰ ይወስናáˆ" #: masterpage.xhp msgctxt "" @@ -3699,7 +3699,7 @@ "18\n" "help.text" msgid "To apply the slide design to all of the slides in your presentation, select the Exchange background page check box, and then click OK." -msgstr "" +msgstr "በ እርስዎ ተንሸራታች ላይ የ ተንሸራታች ንድá ለáˆáˆ‰áˆ ተንሸራታቾች ለ መáˆáŒ¸áˆ: á‹­áˆáˆ¨áŒ¡ የ መደብ ገጾች መቀያየሪያ ሳጥን á‹áˆµáŒ¥ áˆáˆáŠ­á‰µ ያድርጉ: እና ከዛ ይጫኑ እሺ." #: masterpage.xhp msgctxt "" @@ -3708,7 +3708,7 @@ "29\n" "help.text" msgid "To apply the slide design to the current slide only, clear the Exchange background page check box, and then click OK." -msgstr "" +msgstr "በ እርስዎ ተንሸራታች ላይ የ ተንሸራታች ንድá ለ አáˆáŠ‘ ተንሸራታች ብቻ ለ መáˆáŒ¸áˆ: ያጽዱ የ መደብ ገጾች መቀያየሪያ ሳጥን á‹áˆµáŒ¥ áˆáˆáŠ­á‰±áŠ• ያጥá‰: እና ከዛ ይጫኑ እሺ." #: masterpage.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/am/helpcontent2/source/text/swriter/01.po libreoffice-5.1.2~rc2/translations/source/am/helpcontent2/source/text/swriter/01.po --- libreoffice-5.1.1~rc2/translations/source/am/helpcontent2/source/text/swriter/01.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/am/helpcontent2/source/text/swriter/01.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 14:10+0000\n" +"PO-Revision-Date: 2016-03-04 01:10+0000\n" "Last-Translator: Samson B \n" "Language-Team: LANGUAGE \n" "Language: am\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1456323022.000000\n" +"X-POOTLE-MTIME: 1457053807.000000\n" #: 01120000.xhp msgctxt "" @@ -4355,7 +4355,7 @@ "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 @@ "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 @@ "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 @@ "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 "" @@ -10589,7 +10589,7 @@ "25\n" "help.text" msgid "Makes the selected text the main entry in an alphabetical index. $[officename] displays the page number of the main entry in a different format than the other entries in the index." -msgstr "" +msgstr "የ ተመረጠá‹áŠ• ጽáˆá ዋናዠማስገቢያ ማድረጊያ ለ በ áŠá‹°áˆ ቅደሠተከተሠማá‹áŒ« $[officename] የ ገጽ á‰áŒ¥áˆ­ ማሳያ በ ዋናዠማስገቢያ á‹áˆµáŒ¥ በ ተለየ አቀራረብ ከ ሌሎቹ ማስገቢያዎች በ ማá‹áŒ« á‹áˆµáŒ¥" #: 04120100.xhp msgctxt "" @@ -11536,7 +11536,7 @@ "37\n" "help.text" msgid "Select numeric when you want to sort numbers by value, such as in 1, 2, 12. Select alphanumeric, when you want to sort the numbers by character code, such as in 1, 12, 2." -msgstr "" +msgstr "á‰áŒ¥áˆ­ á‹­áˆáˆ¨áŒ¡ እርስዎ á‰áŒ¥áˆ®á‰½áŠ• በ ዋጋ መለየት በሚáˆáˆáŒ‰ ጊዜ: እንደ በ 1, 2, 12. á‹­áˆáˆ¨áŒ¡ á‰áŒ¥áˆ­ እና áŠá‹°áˆ: እርስዎ á‰áŒ¥áˆ®á‰½áŠ• መለየት በሚáˆáˆáŒ‰ ጊዜ በ ባህሪዎች እንደ በ 1, 12, 2." #: 04120213.xhp msgctxt "" @@ -12266,7 +12266,7 @@ "7\n" "help.text" msgid "The Structure 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 "የ አካሠመስመር የሚገáˆáŒ¸á‹ በ ማá‹áŒ« á‹áˆµáŒ¥ ማስገቢያዎች እንዴት እንደሚሰንሰናዱ áŠá‹: አቀራረቡን ለ መቀየር ማስገቢያá‹áŠ• እርስዎ ኮድ ማስገባት ይችላሉ ወይንሠጽáˆá ወደ ባዶ ሳጥኖች በዚህ መስመር ላይ: እርስዎ እንዲáˆáˆ መጫን ይችላሉ በ ባዶ ሳጥን ወይንሠኮድ ላይ እና ከዛ ይጫኑ የ ኮድ á‰áˆá" #: 04120221.xhp msgctxt "" @@ -12356,7 +12356,7 @@ "16\n" "help.text" msgid "Inserts a tab stop. To add leader dots to the tab stop, select a character in the Fill character box. To change the position of the tab stop, enter a value in the Tab stop position box, or select the Align right check box." -msgstr "" +msgstr "የ ማስረጊያ ማስቆሚያ: ቀዳሚ áŠáŒ¥á‰¦á‰½ ለ መጨመር ወደ ማስረጊያ ማስቆሚያ: á‹­áˆáˆ¨áŒ¡ ባህሪ በ ባህሪ መሙያ ሳጥን á‹áˆµáŒ¥ የ ማስረጊያ ማስቆሚያ ቦታ ለ መቀየር: ዋጋ ያስገቡ በ ማስረጊያ ማስቆሚያ ቦታ ሳጥን á‹áˆµáŒ¥: ወይንሠይáˆáˆ¨áŒ¡ የ በ ቀአማሰለáŠá‹« ሳጥን á‹áˆµáŒ¥ áˆáˆáŠ­á‰µ ያድርጉ" #: 04120221.xhp msgctxt "" @@ -12526,7 +12526,7 @@ "33\n" "help.text" msgid "Tab position relative to Paragraph Style indent" -msgstr "" +msgstr "የ ማስረጊያ ቦታ ከ አንቀጽ ዘዴ ማስረጊያ አንጻር" #: 04120221.xhp msgctxt "" @@ -12535,7 +12535,7 @@ "34\n" "help.text" msgid "Positions the tab stop relative to the \"indent from left\" value defined in the paragraph style selected on the Styles tab. Otherwise the tab stop is positioned relative to the left text margin." -msgstr "" +msgstr "የ ማስረጊያ ማስቆሚያ ቦታ ከ \"በ áŒáˆ« ማስረጊያ\" ዋጋ አንጻር áŠá‹ የሚገለጸá‹: በ ተመረጠዠየ አንቀጽ ዘዴ á‹áˆµáŒ¥: በ ዘዴዎች ማስረጊያ á‹áˆµáŒ¥: ያለበለዚያ የ ማስረጊያ ማስቆሚያ ቦታ በ áŒáˆ« የ ጽáˆá መስመር አንጻር áŠá‹" #: 04120222.xhp msgctxt "" @@ -12622,7 +12622,7 @@ "par_id6739402\n" "help.text" msgid "Enter the maximum hierarchy level down to which objects are shown in the generated index." -msgstr "" +msgstr "ያስገቡ ከáተኛ ቅደሠተከተሠደረጃ እስከ ታች የሚታዩት እቃዎች ድረስ በ ማá‹áŒ« ማመንጫዠá‹áˆµáŒ¥ " #: 04120222.xhp msgctxt "" @@ -12640,7 +12640,7 @@ "9\n" "help.text" msgid "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 Edit - Index Entry." -msgstr "" +msgstr "መወሰኛ የ አቀራረብ ዘዴ ለ ዋናዠማስገቢያ በ áŠá‹°áˆ ቅደሠተከተሠማá‹áŒ«: በ ዋናዠማስገቢያ የ ማá‹áŒ« ማስገቢያ ለ መቀይር: ይጫኑ ከ ማá‹áŒ« ሜዳ áŠá‰µ ለ áŠá‰µ በ ሰáŠá‹µ á‹áˆµáŒ¥ እና ከዛ á‹­áˆáˆ¨áŒ¡ ማረሚያ - ማá‹áŒ« ማስገቢያ." #: 04120222.xhp msgctxt "" @@ -12967,7 +12967,7 @@ "15\n" "help.text" msgid "Sorts the bibliography entries by the Sort keys that you specify, for example, by author or by year of publication." -msgstr "" +msgstr "መለያ በ bibliography ማስገቢያ በ መለያ á‰áˆáŽá‰½ እርስዎ በወሰኑት: ለáˆáˆ³áˆŒ: በ ደራሲዠወይንሠበ ታተመበት አመት " #: 04120227.xhp msgctxt "" @@ -12994,7 +12994,7 @@ "19\n" "help.text" msgid "Select the entry by which to sort the bibliography entries. This option is only available if you select the Content radio button in the Sort by area." -msgstr "" +msgstr "á‹­áˆáˆ¨áŒ¡ ማስገቢያ የሚለይበት bibliography ማስገቢያ: ይህ áˆáˆ­áŒ« á‹áŒáŒ የሚሆáŠá‹ እርስዎ ሲመርጡ áŠá‹ የ ይዞታ ራዲዮ á‰áˆá በ መለያ በ ቦታ" #: 04120227.xhp msgctxt "" @@ -13179,7 +13179,7 @@ "19\n" "help.text" msgid "To access the Edit Concordance File dialog:" -msgstr "" +msgstr "በ áŠá‹°áˆ ቅደሠተከተሠá‹á‹­áˆ ንáŒáŒáˆ­ ለ ማረሠመድረሻ:" #: 04120250.xhp msgctxt "" @@ -13242,7 +13242,7 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "2\n" "help.text" msgid "Inserts a frame that you can use to create a layout of one or more columns of text and objects." -msgstr "" +msgstr "እርስዎ አንድ ወይንሠተጨማሪ አáˆá‹¶á‰½ ለ ጽáˆá እና እቃዎች ማስገቢያ ክáˆá እቅድ ለ መáጠር የሚጠቀሙበት " #: 04130000.xhp msgctxt "" @@ -13663,7 +13663,7 @@ "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 @@ "4\n" "help.text" msgid "To move a selected frame or object, press an arrow key. To move by one pixel, hold down OptionAlt, and then press an arrow key." -msgstr "" +msgstr "የ ተመረጠá‹áŠ• ክáˆá ወይንሠእቃ ለ ማንቀሳቀስ: ይጫኑ የ ቀስት á‰áˆá: ለ ማንቀሳቀስ በ አንድ á’ክስáˆ: ተጭáŠá‹ á‹­á‹«á‹™ áˆáˆ­áŒ«Alt እና ከዛ ይጫኑ የ ቀስት á‰áˆá" #: 04130100.xhp msgctxt "" @@ -13733,7 +13733,7 @@ "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 OptionAlt, and then press an arrow key." -msgstr "" +msgstr "እንደገና ለ መመጠን የ ተመረጠá‹áŠ• ክáˆá ወይንሠእቃ: መጀመሪያ ይጫኑ Ctrl+Tab. አáˆáŠ• አንዱ እጄታ ብáˆáŒ­ ድርáŒáˆ ይላሠመመረጡን ለማሳየት: ሌላ እጄታ ለ መáˆáˆ¨áŒ¥: ይጫኑ Ctrl+Tab እንደገና: ይጫኑ የ ቀስት á‰áˆá እቃá‹áŠ• እንደገና ለ መመጠን በ አንድ መጋጠሚያ áŠáŒ¥á‰¥ መለኪያ: እቃá‹áŠ• እንደገና ለ መመጠን በ አንድ á’ክስሠተጭáŠá‹ á‹­á‹«á‹™ áˆáˆ­áŒ«Alt እና ከዛ ይጫኑ የ ቀስት á‰áˆá" #: 04130100.xhp msgctxt "" @@ -13742,7 +13742,7 @@ "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 %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Writer - Grid." -msgstr "" +msgstr "እርስዎ እቃ የሚያንቀሳቅሱበት ጭማሪ በ áŠá‹°áˆ ገበታ የ ተወሰáŠá‹ በ ሰáŠá‹µ መጋጠሚያ áŠá‹: የ ሰáŠá‹µ መጋጠሚያ ባህሪ ለ መቀየር: á‹­áˆáˆ¨áŒ¡ %PRODUCTNAME - áˆáˆ­áŒ«á‹Žá‰½áˆ˜áˆ³áˆªá‹«á‹Žá‰½ – áˆáˆ­áŒ« - %PRODUCTNAME መጻáŠá‹« - መጋጠሚያ." #: 04150000.xhp msgctxt "" @@ -13768,7 +13768,7 @@ "2\n" "help.text" msgid "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." -msgstr "" +msgstr "ሰንጠረዥ ወደ ሰáŠá‹µ á‹áˆµáŒ¥ ማስገቢያ: እርስዎ እንዲáˆáˆ መጫን ይችላሉ የ ቀስት á‰áˆáŽá‰½: ይጎትቱ ለ መáˆáˆ¨áŒ¥ የ ረድáŽá‰½ እና አáˆá‹¶á‰½ á‰áŒ¥áˆ­ በ ሰንጠረዥ á‹áˆµáŒ¥ ለማካተት: እና ከዛ ይጫኑ በ መጨረሻዠክáሠላይ" #: 04150000.xhp msgctxt "" @@ -13929,7 +13929,7 @@ "44\n" "help.text" msgid "Repeats the heading of the table at the top of subsequent page if the table spans more than one page." -msgstr "" +msgstr "የ ሰንጠረዥ ራስጌ መድገሚያ በ áŠá‰ áˆ¨á‹ ገጽ ላይ ከ ላይ በኩሠሰንጠረዡ ከ አንድ ገጽ በላይ በሚሆን ጊዜ" #: 04150000.xhp msgctxt "" @@ -14017,7 +14017,7 @@ "16\n" "help.text" msgid "On the Insert toolbar, click the Table icon to open the Insert Table 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 "በ እቃ መደርደሪያ ማስገቢያ ላይ: ይጫኑ የ ሰንጠረዥáˆáˆáŠ­á‰µ ለ መክáˆá‰µ የ ሰንጠረዥ ማስገቢያንáŒáŒáˆ­: እርስዎ ሰንጠረዥ ወደ አáˆáŠ‘ ሰአየሚያስገቡበት: እርስዎ እንዲáˆáˆ ቀስት መጫን ይችላሉ: ይጎትቱ ለ መáˆáˆ¨áŒ¥ የ ረድáŽá‰½ እና አáˆá‹¶á‰½ á‰áŒ¥áˆ­ በ ሰንጠረዥ á‹áˆµáŒ¥ ለማካተት: እና ከዛ ይጫኑ በ መጨረሻዠክáሠላይ" #: 04150000.xhp msgctxt "" @@ -14067,7 +14067,7 @@ "par_id3156384\n" "help.text" msgid "Change the data sources for the current document. To correctly display the contents of inserted fields, the replacement database must contain identical field names. " -msgstr "" +msgstr "ለ አáˆáŠ‘ ሰáŠá‹µ የ ዳታ áˆáŠ•áŒ­ መቀየሪያ የ ገቡትን ሜዳዎች ይዞታዎች በ ትክክሠለማሳየት: የ ተቀየረዠዳታቤዠተመሳሳይ ስሠመያዠአለበት " #: 04180400.xhp msgctxt "" @@ -14075,7 +14075,7 @@ "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 @@ "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 @@ "par_id3149053\n" "help.text" msgid "Lists the databases that are currently in use. The current document contains at least one data field from each of the databases in the list." -msgstr "" +msgstr "አáˆáŠ• እየተጠቀሙ ያሉት ዳታቤዠá‹áˆ­á‹áˆ­ የ አáˆáŠ‘ ሰáŠá‹µ ቢያንስ አንድ የ ዳታ ሜዳ ከ እያንዳንዱ ዳታቤዠá‹áˆµáŒ¥ á‹­á‹Ÿáˆ" #: 04180400.xhp msgctxt "" @@ -14155,7 +14155,7 @@ "par_id3145827\n" "help.text" msgid "Replaces the current data source with the data source that you selected in the Available Databases list." -msgstr "" +msgstr "የ አáˆáŠ‘ን ዳታ áˆáŠ•áŒ­ መቀየሪያ እርስዎ በ መረጡት የ ዳታ áˆáŠ•áŒ­ በ á‹áŒáŒ ዳታቤዠá‹áˆ­á‹áˆ­" #: 04180400.xhp msgctxt "" @@ -14171,7 +14171,7 @@ "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 @@ "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 insert a section for details." -msgstr "" +msgstr "áˆáˆáŒŠá‹œ የ á‹á‹­áˆ ይዞታዎች ዘመናዊ እትሠእንዲኖሮት: ወደ እርስዎ ሰáŠá‹µ á‹áˆµáŒ¥ áˆáˆ­áŒ« ያስገቡ: እና ከዛ አገናአያስገቡ ወደ ጽáˆá á‹á‹­áˆ áˆáˆ­áŒ«: ይህን ይመáˆáŠ¨á‰± ክáሠማስገቢያ ለ á‹áˆ­á‹áˆ­" #: 04200000.xhp msgctxt "" @@ -14271,7 +14271,7 @@ "2\n" "help.text" msgid "Inserts a script at the current cursor position in an HTML or text document." -msgstr "" +msgstr "script ማስገቢያ መጠቆሚያዠአáˆáŠ• ባለበት ቦታ በ HTML ወይንሠየ ጽáˆá ሰáŠá‹µ á‹áˆµáŒ¥ " #: 04200000.xhp msgctxt "" @@ -14289,7 +14289,7 @@ "5\n" "help.text" msgid "If your document contains more than one script, the Edit Script dialog contains previous and next buttons to jump from script to script." -msgstr "" +msgstr "የ እርስዎ ሰáŠá‹µ ከ አንድ በላይ script ከያዘ: የ script ማረሚያ ንáŒáŒáˆ­ የያዛቸዠያለáˆá‹ እና ወደሚቀጥለዠá‰áˆáŽá‰½ መá‹áˆˆá‹« áŠá‹ ከ script ወደ script" #: 04200000.xhp msgctxt "" @@ -14332,7 +14332,7 @@ "10\n" "help.text" msgid "Enter the type of script that you want to insert. The script is identified in the HTML source code by the tag " -msgstr "" +msgstr "" #: 04200000.xhp msgctxt "" @@ -27729,12 +27734,13 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ msgstr "" #: mm_newaddblo.xhp +#, fuzzy msgctxt "" "mm_newaddblo.xhp\n" "par_idN10577\n" "help.text" msgid "<" -msgstr "" +msgstr "<" #: mm_newaddblo.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/bs/helpcontent2/source/text/swriter/02.po libreoffice-5.1.2~rc2/translations/source/bs/helpcontent2/source/text/swriter/02.po --- libreoffice-5.1.1~rc2/translations/source/bs/helpcontent2/source/text/swriter/02.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/bs/helpcontent2/source/text/swriter/02.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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 \n" "Language: bs\n" @@ -14,7 +14,7 @@ "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 @@ msgstr "" #: 14020000.xhp +#, fuzzy msgctxt "" "14020000.xhp\n" "par_id3150087\n" "12\n" "help.text" msgid "-" -msgstr "" +msgstr "-" #: 14020000.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/bs/reportdesign/uiconfig/dbreport/ui.po libreoffice-5.1.2~rc2/translations/source/bs/reportdesign/uiconfig/dbreport/ui.po --- libreoffice-5.1.1~rc2/translations/source/bs/reportdesign/uiconfig/dbreport/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/bs/reportdesign/uiconfig/dbreport/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 \n" "Language: bs\n" @@ -14,7 +14,7 @@ "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 @@ msgstr "" #: conditionwin.ui +#, fuzzy msgctxt "" "conditionwin.ui\n" "lhsButton\n" "label\n" "string.text" msgid "..." -msgstr "" +msgstr "..." #: conditionwin.ui msgctxt "" @@ -216,13 +217,14 @@ msgstr "" #: conditionwin.ui +#, fuzzy msgctxt "" "conditionwin.ui\n" "rhsButton\n" "label\n" "string.text" msgid "..." -msgstr "" +msgstr "..." #: conditionwin.ui msgctxt "" @@ -279,13 +281,14 @@ msgstr "" #: conditionwin.ui +#, fuzzy msgctxt "" "conditionwin.ui\n" "removeButton\n" "label\n" "string.text" msgid "-" -msgstr "" +msgstr "-" #: conditionwin.ui msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/bs/sw/source/ui/utlui.po libreoffice-5.1.2~rc2/translations/source/bs/sw/source/ui/utlui.po --- libreoffice-5.1.1~rc2/translations/source/bs/sw/source/ui/utlui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/bs/sw/source/ui/utlui.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\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-12 13:26+0200\n" +"POT-Creation-Date: 2016-03-29 16:07+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-5.1.1~rc2/translations/source/bs/sw/uiconfig/swriter/ui.po libreoffice-5.1.2~rc2/translations/source/bs/sw/uiconfig/swriter/ui.po --- libreoffice-5.1.1~rc2/translations/source/bs/sw/uiconfig/swriter/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/bs/sw/uiconfig/swriter/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 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 @@ "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 @@ msgstr "" #: createaddresslist.ui +#, fuzzy msgctxt "" "createaddresslist.ui\n" "PREV\n" "label\n" "string.text" msgid "<" -msgstr "" +msgstr "<" #: createaddresslist.ui msgctxt "" @@ -2508,13 +2509,14 @@ msgstr "" #: createaddresslist.ui +#, fuzzy msgctxt "" "createaddresslist.ui\n" "NEXT\n" "label\n" "string.text" msgid ">" -msgstr "" +msgstr ">" #: createaddresslist.ui msgctxt "" @@ -8608,13 +8610,14 @@ msgstr "" #: mmpreparepage.ui +#, fuzzy msgctxt "" "mmpreparepage.ui\n" "prev\n" "label\n" "string.text" msgid "<" -msgstr "" +msgstr "<" #: mmpreparepage.ui msgctxt "" @@ -8626,13 +8629,14 @@ msgstr "" #: mmpreparepage.ui +#, fuzzy msgctxt "" "mmpreparepage.ui\n" "next\n" "label\n" "string.text" msgid ">" -msgstr "" +msgstr ">" #: mmpreparepage.ui #, fuzzy diff -Nru libreoffice-5.1.1~rc2/translations/source/bs/vcl/source/src.po libreoffice-5.1.2~rc2/translations/source/bs/vcl/source/src.po --- libreoffice-5.1.1~rc2/translations/source/bs/vcl/source/src.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/bs/vcl/source/src.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 \n" "Language: bs\n" @@ -14,7 +14,7 @@ "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 @@ msgstr "" #: print.src +#, fuzzy msgctxt "" "print.src\n" "SV_PRINT_INVALID_TXT\n" "string.text" msgid "" -msgstr "" +msgstr "" #: print.src msgctxt "" @@ -1456,13 +1457,14 @@ msgstr "" #: units.src +#, fuzzy msgctxt "" "units.src\n" "SV_FUNIT_STRINGS\n" "°\n" "itemlist.text" msgid "°" -msgstr "" +msgstr "°" #: units.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/ca/basctl/source/basicide.po libreoffice-5.1.2~rc2/translations/source/ca/basctl/source/basicide.po --- libreoffice-5.1.1~rc2/translations/source/ca/basctl/source/basicide.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ca/basctl/source/basicide.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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-20 15:50+0000\n" +"PO-Revision-Date: 2016-03-16 10:55+0000\n" "Last-Translator: Joan Montané \n" "Language-Team: LANGUAGE \n" "Language: ca\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1429545056.000000\n" +"X-POOTLE-MTIME: 1458125729.000000\n" #: basicprint.src msgctxt "" @@ -735,7 +735,7 @@ "SID_BASICIDE_RENAMECURRENT\n" "menuitem.text" msgid "Rename" -msgstr "Reanomena" +msgstr "Canvia el nom" #: basidesh.src msgctxt "" @@ -826,7 +826,7 @@ "RID_STR_DLGIMP_CLASH_RENAME\n" "string.text" msgid "Rename" -msgstr "Reanomena" +msgstr "Canvia el nom" #: basidesh.src msgctxt "" @@ -861,7 +861,7 @@ "\n" "$(ARG1)\n" "\n" -"Reanomeneu el nou diàleg per conservar-lo, o bé substituïu el diàleg existent.\n" +"Canvieu el nom de diàleg nou per a conservar-lo, o bé substituïu el diàleg existent.\n" " " #: basidesh.src diff -Nru libreoffice-5.1.1~rc2/translations/source/ca/basic/source/classes.po libreoffice-5.1.2~rc2/translations/source/ca/basic/source/classes.po --- libreoffice-5.1.1~rc2/translations/source/ca/basic/source/classes.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ca/basic/source/classes.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-03 20:31+0000\n" +"PO-Revision-Date: 2016-03-16 10:55+0000\n" "Last-Translator: Joan Montané \n" "Language-Team: LANGUAGE \n" "Language: ca\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1441312311.000000\n" +"X-POOTLE-MTIME: 1458125752.000000\n" #: sb.src msgctxt "" @@ -338,7 +338,7 @@ "ERRCODE_BASIC_DIFFERENT_DRIVE & ERRCODE_RES_MASK\n" "string.text" msgid "Renaming on different drives impossible." -msgstr "No es pot reanomenar en unitats diferents." +msgstr "No es pot canviar el nom en unitats diferents." #: sb.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/ca/cui/source/customize.po libreoffice-5.1.2~rc2/translations/source/ca/cui/source/customize.po --- libreoffice-5.1.1~rc2/translations/source/ca/cui/source/customize.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ca/cui/source/customize.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "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-12-02 08:44+0000\n" +"PO-Revision-Date: 2016-03-16 10:56+0000\n" "Last-Translator: Joan Montané \n" "Language-Team: LANGUAGE \n" "Language: ca\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1449045896.000000\n" +"X-POOTLE-MTIME: 1458125777.000000\n" #: acccfg.src msgctxt "" @@ -323,7 +323,7 @@ "RID_SVXSTR_RENAME_MENU\n" "string.text" msgid "Rename Menu" -msgstr "Reanomena el menú" +msgstr "Canvia el nom del menú" #: cfg.src msgctxt "" @@ -331,7 +331,7 @@ "RID_SVXSTR_RENAME_TOOLBAR\n" "string.text" msgid "Rename Toolbar" -msgstr "Reanomena la barra d'eines" +msgstr "Canvia el nom de la barra d'eines" #: macropg.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/ca/cui/source/dialogs.po libreoffice-5.1.2~rc2/translations/source/ca/cui/source/dialogs.po --- libreoffice-5.1.1~rc2/translations/source/ca/cui/source/dialogs.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ca/cui/source/dialogs.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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:54+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2016-03-16 10:56+0000\n" +"Last-Translator: Joan Montané \n" "Language-Team: LANGUAGE \n" "Language: ca\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1440525256.000000\n" +"X-POOTLE-MTIME: 1458125805.000000\n" #: cuires.src msgctxt "" @@ -599,7 +599,7 @@ "RID_SVXSTR_RENAMEFAILED\n" "string.text" msgid "The object could not be renamed." -msgstr "No s'ha pogut reanomenar l'objecte." +msgstr "No s'ha pogut canviar el nom de l'objecte." #: scriptdlg.src msgctxt "" @@ -607,7 +607,7 @@ "RID_SVXSTR_RENAMEFAILEDPERM\n" "string.text" msgid " You do not have permission to rename this object." -msgstr " No teniu permís per reanomenar l'objecte." +msgstr " No teniu permís per a canviar de nom l'objecte." #: scriptdlg.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/ca/formula/source/core/resource.po libreoffice-5.1.2~rc2/translations/source/ca/formula/source/core/resource.po --- libreoffice-5.1.1~rc2/translations/source/ca/formula/source/core/resource.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ca/formula/source/core/resource.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\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-29 16:07+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-5.1.1~rc2/translations/source/ca/helpcontent2/source/text/sbasic/guide.po libreoffice-5.1.2~rc2/translations/source/ca/helpcontent2/source/text/sbasic/guide.po --- libreoffice-5.1.1~rc2/translations/source/ca/helpcontent2/source/text/sbasic/guide.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ca/helpcontent2/source/text/sbasic/guide.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-13 21:17+0000\n" +"PO-Revision-Date: 2016-03-16 11:19+0000\n" "Last-Translator: Joan Montané \n" "Language-Team: LANGUAGE \n" "Language: ca\n" @@ -15,7 +15,7 @@ "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" "X-Language: ca\n" -"X-POOTLE-MTIME: 1436822278.000000\n" +"X-POOTLE-MTIME: 1458127171.000000\n" #: access2base.xhp msgctxt "" @@ -253,7 +253,7 @@ "11\n" "help.text" msgid "Enter a name for the dialog, and click OK. To rename the dialog later, right-click the name on the tab, and choose Rename." -msgstr "Introduïu un nom per al diàleg i feu clic a D'acord. Per canviar el nom del diàleg més endavant, feu clic al nom que apareix a la pestanya amb el botó dret del ratolí i trieu Reanomena." +msgstr "Introduïu un nom per al diàleg i feu clic a D'acord. Per canviar el nom del diàleg més endavant, feu clic al nom que apareix a la pestanya amb el botó dret del ratolí i trieu Canvia el nom." #: create_dialog.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/ca/helpcontent2/source/text/sbasic/shared.po libreoffice-5.1.2~rc2/translations/source/ca/helpcontent2/source/text/sbasic/shared.po --- libreoffice-5.1.1~rc2/translations/source/ca/helpcontent2/source/text/sbasic/shared.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ca/helpcontent2/source/text/sbasic/shared.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\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-02 21:36+0000\n" -"Last-Translator: AssumptaAn \n" +"PO-Revision-Date: 2016-03-16 11:20+0000\n" +"Last-Translator: Joan Montané \n" "Language-Team: LANGUAGE \n" "Language: ca\n" "MIME-Version: 1.0\n" @@ -15,7 +15,7 @@ "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" "X-Language: ca\n" -"X-POOTLE-MTIME: 1451770588.000000\n" +"X-POOTLE-MTIME: 1458127239.000000\n" #: 00000002.xhp msgctxt "" @@ -866,7 +866,7 @@ "73\n" "help.text" msgid "74 Renaming on different drives impossible" -msgstr "74 No es pot reanomenar en unitats diferents" +msgstr "74 No es pot canviar el nom en unitats diferents" #: 00000003.xhp msgctxt "" @@ -3880,7 +3880,7 @@ "27\n" "help.text" msgid "In the Basic IDE, right-click the name of the module or dialog in the tabs at the bottom of the screen, choose Rename and type in the new name." -msgstr "A l'EID del Basic, feu clic amb el botó dret del ratolí al nom del mòdul o del diàleg a les pestanyes de la part inferior de la pantalla, seleccioneu Reanomena i escriviu el nom nou." +msgstr "A l'EID del Basic, feu clic amb el botó dret del ratolí al nom del mòdul o del diàleg a les pestanyes de la part inferior de la pantalla, seleccioneu Canvia el nom i escriviu el nom nou." #: 01030400.xhp msgctxt "" @@ -4587,7 +4587,7 @@ "14\n" "help.text" msgid "Rename" -msgstr "Reanomena" +msgstr "Canvia el nom" #: 01050000.xhp msgctxt "" @@ -4596,7 +4596,7 @@ "15\n" "help.text" msgid "Renames the current module in place." -msgstr "Reanomena el mòdul actual al lloc." +msgstr "Canvia el nom del mòdul actual al lloc." #: 01050000.xhp msgctxt "" @@ -12176,7 +12176,7 @@ "15\n" "help.text" msgid "Const sFile3 As String = \"Renamed.tmp\"" -msgstr "Const sFile3 as String = \"Reanomenat.tmp\"" +msgstr "Const sFile3 as String = \"CanviatDeNom.tmp\"" #: 03020411.xhp msgctxt "" @@ -12239,7 +12239,7 @@ "31\n" "help.text" msgid "' Rename in the same directory" -msgstr "' Reanomena al mateix directori" +msgstr "' Canvia el nom en el mateix directori" #: 03020411.xhp msgctxt "" @@ -12309,7 +12309,7 @@ "2\n" "help.text" msgid "Renames an existing file or directory." -msgstr "Reanomena un fitxer o directori existent." +msgstr "Canvia el nom d'un fitxer o directori existent." #: 03020412.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/ca/helpcontent2/source/text/scalc/00.po libreoffice-5.1.2~rc2/translations/source/ca/helpcontent2/source/text/scalc/00.po --- libreoffice-5.1.1~rc2/translations/source/ca/helpcontent2/source/text/scalc/00.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ca/helpcontent2/source/text/scalc/00.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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-02 17:54+0000\n" +"PO-Revision-Date: 2016-03-16 11:20+0000\n" "Last-Translator: Joan Montané \n" "Language-Team: LANGUAGE \n" "Language: ca\n" @@ -15,7 +15,7 @@ "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" "X-Language: ca\n" -"X-POOTLE-MTIME: 1451757268.000000\n" +"X-POOTLE-MTIME: 1458127247.000000\n" #: 00000004.xhp msgctxt "" @@ -821,7 +821,7 @@ "16\n" "help.text" msgid "Choose Format - Sheet - Rename" -msgstr "Trieu Format - Full - Reanomena" +msgstr "Trieu Format - Full - Canvia el nom" #: 00000405.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/ca/helpcontent2/source/text/scalc/01.po libreoffice-5.1.2~rc2/translations/source/ca/helpcontent2/source/text/scalc/01.po --- libreoffice-5.1.1~rc2/translations/source/ca/helpcontent2/source/text/scalc/01.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ca/helpcontent2/source/text/scalc/01.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-03 10:42+0000\n" +"PO-Revision-Date: 2016-03-16 11:22+0000\n" "Last-Translator: Joan Montané \n" "Language-Team: LANGUAGE \n" "Language: ca\n" @@ -15,7 +15,7 @@ "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" "X-Language: ca\n" -"X-POOTLE-MTIME: 1454496138.000000\n" +"X-POOTLE-MTIME: 1458127336.000000\n" #: 01120000.xhp msgctxt "" @@ -53146,7 +53146,7 @@ "3\n" "help.text" msgid "Rename" -msgstr "Reanomena" +msgstr "Canvia el nom" #: 05050000.xhp msgctxt "" @@ -53188,7 +53188,7 @@ "tit\n" "help.text" msgid "Rename Sheet" -msgstr "Reanomena el full" +msgstr "Canvia el nom del full" #: 05050100.xhp msgctxt "" @@ -53205,7 +53205,7 @@ "1\n" "help.text" msgid "Rename Sheet" -msgstr "Reanomena el full" +msgstr "Canvia el nom del full" #: 05050100.xhp msgctxt "" @@ -53240,7 +53240,7 @@ "5\n" "help.text" msgid "You can also open the Rename Sheet dialog through the context menu by positioning the mouse pointer over a sheet tab at the bottom of the window and clicking while pressing Controlclicking the right mouse button." -msgstr "També podeu obrir el diàleg Reanomena el full des del menú contextual. Situeu la busca del ratolí sobre una pestanya del full, a la part inferior de la finestra, i feu clic mentre premeu Ctrlfeu clic amb el botó dret del ratolí." +msgstr "També podeu obrir el diàleg Canvia el nom del full des del menú contextual. Situeu la busca del ratolí sobre una pestanya del full, a la part inferior de la finestra, i feu clic mentre premeu Ctrlfeu clic amb el botó dret del ratolí." #: 05050100.xhp msgctxt "" @@ -54653,7 +54653,7 @@ "26\n" "help.text" msgid "Rename" -msgstr "Reanomena" +msgstr "Canvia el nom" #: 05110000.xhp msgctxt "" @@ -54671,7 +54671,7 @@ "28\n" "help.text" msgid "The Rename AutoFormat dialog opens. Enter the new name of the AutoFormat here." -msgstr "S'obre el diàleg Reanomena la formatació automàtica. Introduïu-hi el nom nou de la formatació automàtica." +msgstr "S'obre el diàleg Canvia el nom de la formatació automàtica. Introduïu-hi el nom nou de la formatació automàtica." #: 05110000.xhp msgctxt "" @@ -56036,7 +56036,7 @@ "10\n" "help.text" msgid "Sheet protection also affects the context menu of the sheet tabs at the bottom of the screen. The Delete and Rename commands cannot be selected." -msgstr "La protecció dels fulls també afecta els menús contextuals de les pestanyes del full, a la part inferior de la pantalla. Les ordres Suprimeix i Reanomena no es poden seleccionar." +msgstr "La protecció dels fulls també afecta els menús contextuals de les pestanyes del full, a la part inferior de la pantalla. Les ordres Suprimeix i Canvia el nom no es poden seleccionar." #: 06060100.xhp msgctxt "" @@ -56116,7 +56116,7 @@ "2\n" "help.text" msgid "Protects the sheet structure of your document from modifications. It is impossible to insert, delete, rename, move or copy sheets. Open the Protect document dialog with Tools - Protect Document - Document. Optionally enter a password and click OK." -msgstr "Protegeix l'estructura dels fulls del vostre document contra possibles modificacions. Així, no es podran inserir, suprimir, reanomenar, moure o copiar fulls. Obriu el diàleg Protegeix el document des d'Eines - Protegeix el document - Document. Opcionalment, introduïu-hi una contrasenya i feu clic a D'acord." +msgstr "Protegeix l'estructura dels fulls del vostre document contra possibles modificacions. Així, no es podran inserir, suprimir, canviar el nom, moure o copiar fulls. Obriu el diàleg Protegeix el document des d'Eines - Protegeix el document - Document. Opcionalment, introduïu-hi una contrasenya i feu clic a D'acord." #: 06060200.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/ca/helpcontent2/source/text/scalc/guide.po libreoffice-5.1.2~rc2/translations/source/ca/helpcontent2/source/text/scalc/guide.po --- libreoffice-5.1.1~rc2/translations/source/ca/helpcontent2/source/text/scalc/guide.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ca/helpcontent2/source/text/scalc/guide.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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-10 16:11+0000\n" +"PO-Revision-Date: 2016-03-16 11:22+0000\n" "Last-Translator: Joan Montané \n" "Language-Team: LANGUAGE \n" "Language: ca\n" @@ -15,7 +15,7 @@ "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" "X-Language: ca\n" -"X-POOTLE-MTIME: 1452442266.000000\n" +"X-POOTLE-MTIME: 1458127353.000000\n" #: address_auto.xhp msgctxt "" @@ -9584,7 +9584,7 @@ "tit\n" "help.text" msgid "Renaming Sheets" -msgstr "Reanomenament de fulls" +msgstr "Canvi de nom dels fulls" #: rename_table.xhp msgctxt "" @@ -9601,7 +9601,7 @@ "11\n" "help.text" msgid "Renaming Sheets" -msgstr "Reanomenament de fulls" +msgstr "Canvi de nom dels fulls" #: rename_table.xhp msgctxt "" @@ -9619,7 +9619,7 @@ "13\n" "help.text" msgid "Open the context menu and choose the Rename Sheet command. A dialog box appears where you can enter a new name." -msgstr "Obriu el menú contextual i trieu l'ordre Reanomena el full. Apareixerà un quadre de diàleg on podreu introduir un nom nou." +msgstr "Obriu el menú contextual i trieu l'ordre Canvia el nom del full. Apareixerà un quadre de diàleg on podreu introduir un nom nou." #: rename_table.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/ca/helpcontent2/source/text/shared/00.po libreoffice-5.1.2~rc2/translations/source/ca/helpcontent2/source/text/shared/00.po --- libreoffice-5.1.1~rc2/translations/source/ca/helpcontent2/source/text/shared/00.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ca/helpcontent2/source/text/shared/00.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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-18 11:58+0000\n" -"Last-Translator: AssumptaAn \n" +"PO-Revision-Date: 2016-03-16 11:23+0000\n" +"Last-Translator: Joan Montané \n" "Language-Team: LANGUAGE \n" "Language: ca\n" "MIME-Version: 1.0\n" @@ -15,7 +15,7 @@ "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" "X-Language: ca\n" -"X-POOTLE-MTIME: 1453118300.000000\n" +"X-POOTLE-MTIME: 1458127384.000000\n" #: 00000001.xhp msgctxt "" @@ -2867,7 +2867,7 @@ "165\n" "help.text" msgid "Rename" -msgstr "Reanomena" +msgstr "Canvia el nom" #: 00000010.xhp msgctxt "" @@ -2876,7 +2876,7 @@ "166\n" "help.text" msgid "Enables a selected object to be renamed. After selecting Rename the name is selected and a new one can be entered directly. Use the arrow keys to set the cursor at the beginning or end of the name to delete or add to part of the name or to reposition the cursor." -msgstr "Permet canviar el nom a un objecte seleccionat. Després de seleccionar Reanomena se selecciona el nom i se'n pot introduir un de nou directament. Utilitzeu les tecles de fletxa per establir el cursor a l'inici o al final del nom per suprimir, afegir-lo a part del nom o reubicar-lo." +msgstr "Permet canviar el nom a un objecte seleccionat. Després de seleccionar Canvia el nom se selecciona el nom i se'n pot introduir un de nou directament. Utilitzeu les tecles de fletxa per establir el cursor a l'inici o al final del nom per suprimir, afegir-lo a part del nom o reubicar-lo." #: 00000010.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/ca/helpcontent2/source/text/shared/01.po libreoffice-5.1.2~rc2/translations/source/ca/helpcontent2/source/text/shared/01.po --- libreoffice-5.1.1~rc2/translations/source/ca/helpcontent2/source/text/shared/01.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ca/helpcontent2/source/text/shared/01.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\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-25 13:15+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2016-03-16 11:23+0000\n" +"Last-Translator: Joan Montané \n" "Language-Team: LANGUAGE \n" "Language: ca\n" "MIME-Version: 1.0\n" @@ -15,7 +15,7 @@ "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" "X-Language: ca\n" -"X-POOTLE-MTIME: 1453727707.000000\n" +"X-POOTLE-MTIME: 1458127423.000000\n" #: 01010000.xhp msgctxt "" @@ -37379,7 +37379,7 @@ "par_idN10A4B\n" "help.text" msgid "Rename" -msgstr "Reanomena" +msgstr "Canvia el nom" #: 06130000.xhp msgctxt "" @@ -37995,7 +37995,7 @@ "par_idN106C5\n" "help.text" msgid "Rename" -msgstr "Reanomena" +msgstr "Canvia el nom" #: 06140100.xhp msgctxt "" @@ -38051,7 +38051,7 @@ "par_idN108DC\n" "help.text" msgid "Click the Menu button and select Rename." -msgstr "Feu clic al botó Menú i seleccioneu Reanomena." +msgstr "Feu clic al botó Menú i seleccioneu Canvia el nom." #: 06140100.xhp msgctxt "" @@ -38260,7 +38260,7 @@ "par_idN1080E\n" "help.text" msgid "Rename" -msgstr "Reanomena" +msgstr "Canvia el nom" #: 06140100.xhp msgctxt "" @@ -38268,7 +38268,7 @@ "par_idN10812\n" "help.text" msgid "Opens the Rename dialog, where you enter a new name for the selected command." -msgstr "Obre el diàleg Reanomena, que us permet introduir un nom nou per a l'ordre seleccionada." +msgstr "Obre el diàleg Canvia el nom, que us permet introduir un nom nou per a l'ordre seleccionada." #: 06140100.xhp msgctxt "" @@ -38767,7 +38767,7 @@ "par_idN10621\n" "help.text" msgid "Rename" -msgstr "Reanomena" +msgstr "Canvia el nom" #: 06140400.xhp msgctxt "" @@ -38943,7 +38943,7 @@ "par_idN1067B\n" "help.text" msgid "Rename" -msgstr "Reanomena" +msgstr "Canvia el nom" #: 06140400.xhp msgctxt "" @@ -38951,7 +38951,7 @@ "par_idN1067E\n" "help.text" msgid "Opens the Rename dialog, where you enter a new name for the selected command." -msgstr "Obre el diàleg Reanomena, que us permet introduir un nom nou per a l'ordre seleccionada." +msgstr "Obre el diàleg Canvia el nom, que us permet introduir un nom nou per a l'ordre seleccionada." #: 06140400.xhp msgctxt "" @@ -45095,7 +45095,7 @@ "par_idN10743\n" "help.text" msgid "Rename" -msgstr "Reanomena" +msgstr "Canvia el nom" #: xformsdata.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/ca/helpcontent2/source/text/shared/02.po libreoffice-5.1.2~rc2/translations/source/ca/helpcontent2/source/text/shared/02.po --- libreoffice-5.1.1~rc2/translations/source/ca/helpcontent2/source/text/shared/02.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ca/helpcontent2/source/text/shared/02.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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-08 12:17+0000\n" +"PO-Revision-Date: 2016-03-16 11:24+0000\n" "Last-Translator: Joan Montané \n" "Language-Team: LANGUAGE \n" "Language: ca\n" @@ -15,7 +15,7 @@ "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" "X-Language: ca\n" -"X-POOTLE-MTIME: 1452255436.000000\n" +"X-POOTLE-MTIME: 1458127449.000000\n" #: 01110000.xhp msgctxt "" @@ -9207,7 +9207,7 @@ "23\n" "help.text" msgid "Rename" -msgstr "Reanomena" +msgstr "Canvia el nom" #: 01170600.xhp msgctxt "" @@ -9216,7 +9216,7 @@ "24\n" "help.text" msgid "Renames the selected object." -msgstr "Reanomena l'objecte seleccionat." +msgstr "Canvia el nom de l'objecte seleccionat." #: 01170600.xhp msgctxt "" @@ -13357,7 +13357,7 @@ "52\n" "help.text" msgid "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." -msgstr "Per reanomenar una entrada, crideu aquesta ordre i introduïu el nom nou. També podeu fer aquesta acció seleccionant l'entrada i prement F2. La base de dades ha de permetre canviar el nom, si no aquesta ordre no està activada." +msgstr "Per a canviar el nom d'una entrada, crideu aquesta ordre i introduïu el nom nou. També podeu fer aquesta acció seleccionant l'entrada i prement F2. La base de dades ha de permetre canviar el nom, si no aquesta ordre no està activada." #: 12000000.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/ca/helpcontent2/source/text/shared/explorer/database.po libreoffice-5.1.2~rc2/translations/source/ca/helpcontent2/source/text/shared/explorer/database.po --- libreoffice-5.1.1~rc2/translations/source/ca/helpcontent2/source/text/shared/explorer/database.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ca/helpcontent2/source/text/shared/explorer/database.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-01 21:31+0000\n" +"PO-Revision-Date: 2016-03-16 11:25+0000\n" "Last-Translator: Joan Montané \n" "Language-Team: LANGUAGE \n" "Language: ca\n" @@ -15,7 +15,7 @@ "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" "X-Language: ca\n" -"X-POOTLE-MTIME: 1451683895.000000\n" +"X-POOTLE-MTIME: 1458127506.000000\n" #: 02000000.xhp msgctxt "" @@ -10948,7 +10948,7 @@ "par_idN1057C\n" "help.text" msgid "Rename" -msgstr "Reanomena" +msgstr "Canvia el nom" #: menuedit.xhp msgctxt "" @@ -10956,7 +10956,7 @@ "par_idN10580\n" "help.text" msgid "Renames the selected object. Depending on the database, some names, characters, and name length might be invalid." -msgstr "Reanomena l'objecte seleccionat. Segons la base de dades, és possible que alguns noms, caràcters i longituds de noms no siguin vàlids." +msgstr "Canvia el nom de l'objecte seleccionat. Segons la base de dades, és possible que alguns noms, caràcters i longituds de noms no siguin vàlids." #: menuedit.xhp msgctxt "" @@ -15009,7 +15009,7 @@ "par_idN105A5\n" "help.text" msgid "Rename" -msgstr "Reanomena" +msgstr "Canvia el nom" #: toolbars.xhp msgctxt "" @@ -15017,7 +15017,7 @@ "par_idN105A9\n" "help.text" msgid "Renames the selected table." -msgstr "Reanomena la taula seleccionada." +msgstr "Canvia el nom de la taula seleccionada." #: toolbars.xhp msgctxt "" @@ -15081,7 +15081,7 @@ "par_idN10615\n" "help.text" msgid "Rename" -msgstr "Reanomena" +msgstr "Canvia el nom" #: toolbars.xhp msgctxt "" @@ -15089,7 +15089,7 @@ "par_idN10619\n" "help.text" msgid "Renames the selected query." -msgstr "Reanomena la consulta seleccionada." +msgstr "Canvia el nom de la consulta seleccionada." #: toolbars.xhp msgctxt "" @@ -15153,7 +15153,7 @@ "par_idN10685\n" "help.text" msgid "Rename" -msgstr "Reanomena" +msgstr "Canvia el nom" #: toolbars.xhp msgctxt "" @@ -15161,7 +15161,7 @@ "par_idN10689\n" "help.text" msgid "Renames the selected form." -msgstr "Reanomena el formulari seleccionat." +msgstr "Canvia el nom del formulari seleccionat." #: toolbars.xhp msgctxt "" @@ -15225,7 +15225,7 @@ "par_idN106F5\n" "help.text" msgid "Rename" -msgstr "Reanomena" +msgstr "Canvia el nom" #: toolbars.xhp msgctxt "" @@ -15233,4 +15233,4 @@ "par_idN106F9\n" "help.text" msgid "Renames the selected report." -msgstr "Reanomena l'informe seleccionat." +msgstr "Canvia el nom de l'informe seleccionat." diff -Nru libreoffice-5.1.1~rc2/translations/source/ca/helpcontent2/source/text/shared/optionen.po libreoffice-5.1.2~rc2/translations/source/ca/helpcontent2/source/text/shared/optionen.po --- libreoffice-5.1.1~rc2/translations/source/ca/helpcontent2/source/text/shared/optionen.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ca/helpcontent2/source/text/shared/optionen.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "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-03 10:54+0000\n" +"PO-Revision-Date: 2016-03-16 11:25+0000\n" "Last-Translator: Joan Montané \n" "Language-Team: LANGUAGE \n" "Language: ca\n" @@ -15,7 +15,7 @@ "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" "X-Language: ca\n" -"X-POOTLE-MTIME: 1454496884.000000\n" +"X-POOTLE-MTIME: 1458127521.000000\n" #: 01000000.xhp msgctxt "" @@ -15778,7 +15778,7 @@ "par_idN105D9\n" "help.text" msgid "A macro can be set to auto-start, and it can perform potentially damaging actions, as for example delete or rename files. This setting is not recommended when you open documents from other authors." -msgstr "Si establiu que una macro s'iniciï de manera automàtica, aquesta macro potencialment pot malmetre l'equip suprimint fitxers o reanomenant-los, per exemple. Aquest paràmetre no és recomanable si obriu documents d'altres autors." +msgstr "Si establiu que una macro s'iniciï de manera automàtica, aquesta macro potencialment pot malmetre l'equip suprimint fitxers o canviar-ne el nom, per exemple. Aquest paràmetre no és recomanable si obriu documents d'altres autors." #: macrosecurity_ts.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/ca/helpcontent2/source/text/simpress/01.po libreoffice-5.1.2~rc2/translations/source/ca/helpcontent2/source/text/simpress/01.po --- libreoffice-5.1.1~rc2/translations/source/ca/helpcontent2/source/text/simpress/01.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ca/helpcontent2/source/text/simpress/01.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "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-01-04 04:46+0000\n" +"PO-Revision-Date: 2016-03-16 11:25+0000\n" "Last-Translator: Joan Montané \n" "Language-Team: LANGUAGE \n" "Language: ca\n" @@ -15,7 +15,7 @@ "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" "X-Language: ca\n" -"X-POOTLE-MTIME: 1451882794.000000\n" +"X-POOTLE-MTIME: 1458127538.000000\n" #: 01170000.xhp msgctxt "" @@ -4393,7 +4393,7 @@ "15\n" "help.text" msgid "Renames the active layer. You can only change the name of a layer you created." -msgstr "Reanomena la capa actual. Només podeu modificar el nom d'una capa que hàgiu creat." +msgstr "Canvia el nom de la capa actual. Només podeu modificar el nom d'una capa que hàgiu creat." #: 05150000.xhp msgctxt "" @@ -9003,7 +9003,7 @@ "par_idN10557\n" "help.text" msgid "You can use the Page Slide Pane to add, to rename, to delete, and to arrange slides or pages in Impress and Draw." -msgstr "Podeu utilitzar la subfinestra Pàgina Diapositiva per afegir, reanomenar, suprimir i organitzar les diapositives o les pàgines a l'Impress i al Draw." +msgstr "Podeu utilitzar la subfinestra Pàgina Diapositiva per afegir, canviar el nom, suprimir i organitzar les diapositives o les pàgines a l'Impress i al Draw." #: taskpanel.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/ca/helpcontent2/source/text/simpress/guide.po libreoffice-5.1.2~rc2/translations/source/ca/helpcontent2/source/text/simpress/guide.po --- libreoffice-5.1.1~rc2/translations/source/ca/helpcontent2/source/text/simpress/guide.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ca/helpcontent2/source/text/simpress/guide.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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: 2016-01-02 20:55+0000\n" +"PO-Revision-Date: 2016-03-16 11:25+0000\n" "Last-Translator: Joan Montané \n" "Language-Team: LANGUAGE \n" "Language: ca\n" @@ -15,7 +15,7 @@ "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" "X-Language: ca\n" -"X-POOTLE-MTIME: 1451768158.000000\n" +"X-POOTLE-MTIME: 1458127546.000000\n" #: 3d_create.xhp msgctxt "" @@ -2840,7 +2840,7 @@ "16\n" "help.text" msgid "You cannot delete or rename the default layers. You can add your own layers by Insert - Layer." -msgstr "No podeu suprimir ni reanomenar les capes per defecte. Podeu afegir les vostres pròpies capes des d'Insereix - Capa." +msgstr "No podeu suprimir ni canviar el nom de les capes per defecte. Podeu afegir les vostres pròpies capes des d'Insereix - Capa." #: layers.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/ca/helpcontent2/source/text/swriter/00.po libreoffice-5.1.2~rc2/translations/source/ca/helpcontent2/source/text/swriter/00.po --- libreoffice-5.1.1~rc2/translations/source/ca/helpcontent2/source/text/swriter/00.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ca/helpcontent2/source/text/swriter/00.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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 14:16+0000\n" +"PO-Revision-Date: 2016-03-16 11:25+0000\n" "Last-Translator: Joan Montané \n" "Language-Team: LANGUAGE \n" "Language: ca\n" @@ -15,7 +15,7 @@ "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" "X-Language: ca\n" -"X-POOTLE-MTIME: 1452521796.000000\n" +"X-POOTLE-MTIME: 1458127552.000000\n" #: 00000004.xhp msgctxt "" @@ -338,7 +338,7 @@ "10\n" "help.text" msgid "Choose Edit - AutoText - AutoText - Rename" -msgstr "Trieu Edita - Text automàtic - Text automàtic - Reanomena" +msgstr "Trieu Edita - Text automàtic - Text automàtic - Canvia el nom" #: 00000402.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/ca/helpcontent2/source/text/swriter/01.po libreoffice-5.1.2~rc2/translations/source/ca/helpcontent2/source/text/swriter/01.po --- libreoffice-5.1.1~rc2/translations/source/ca/helpcontent2/source/text/swriter/01.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ca/helpcontent2/source/text/swriter/01.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-15 10:41+0000\n" +"PO-Revision-Date: 2016-03-16 11:27+0000\n" "Last-Translator: Joan Montané \n" "Language-Team: LANGUAGE \n" "Language: ca\n" @@ -15,7 +15,7 @@ "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" "X-Language: ca\n" -"X-POOTLE-MTIME: 1452854510.000000\n" +"X-POOTLE-MTIME: 1458127658.000000\n" #: 01120000.xhp msgctxt "" @@ -2017,7 +2017,7 @@ "23\n" "help.text" msgid "Rename" -msgstr "Reanomena" +msgstr "Canvia el nom" #: 02120000.xhp msgctxt "" @@ -2026,7 +2026,7 @@ "24\n" "help.text" msgid "Opens the Rename AutoText dialog, where you can change the name of the selected AutoText entry. Opens the Rename AutoText dialog, where you can change the name of the selected AutoText entry." -msgstr "Obre el diàleg Reanomena el text automàtic, on podeu canviar el nom de l'entrada de text automàtic seleccionada. Obre el diàleg Reanomena el text automàtic, on podeu canviar el nom de l'entrada de text automàtic seleccionada." +msgstr "Obre el diàleg Canvia el nom del text automàtic, on podeu canviar el nom de l'entrada de text automàtic seleccionada. Obre el diàleg Canvia el nom del text automàtic, on podeu canviar el nom de l'entrada de text automàtic seleccionada." #: 02120000.xhp msgctxt "" @@ -2107,7 +2107,7 @@ "38\n" "help.text" msgid "Adds, renames, or deletes AutoText categories." -msgstr "Afegeix, reanomena o suprimeix categories de text automàtic." +msgstr "Afegeix, canvia el nom o suprimeix categories de text automàtic." #: 02120000.xhp msgctxt "" @@ -2125,7 +2125,7 @@ "55\n" "help.text" msgid "Adds, renames, or deletes AutoText categories." -msgstr "Afegeix, reanomena o suprimeix categories de text automàtic." +msgstr "Afegeix, canvia el nom o suprimeix categories de text automàtic." #: 02120000.xhp msgctxt "" @@ -2143,7 +2143,7 @@ "40\n" "help.text" msgid "Displays the name of the selected AutoText category. To change the name of the category, type a new name, and then click Rename. To create a new category, type a name, and then click New." -msgstr "Mostra el nom de la categoria de text automàtic seleccionada. Per canviar el nom de la categoria, escriviu un nom nou i, a continuació, feu clic a Reanomena. Per crear una categoria nova, escriviu un nom i feu clic a Nou." +msgstr "Mostra el nom de la categoria de text automàtic seleccionada. Per canviar el nom de la categoria, escriviu un nom nou i, a continuació, feu clic a Canvia el nom. Per crear una categoria nova, escriviu un nom i feu clic a Nou." #: 02120000.xhp msgctxt "" @@ -2188,7 +2188,7 @@ "67\n" "help.text" msgid "Rename" -msgstr "Reanomena" +msgstr "Canvia el nom" #: 02120000.xhp msgctxt "" @@ -2304,7 +2304,7 @@ "tit\n" "help.text" msgid "Rename AutoText" -msgstr "Reanomena el text automàtic" +msgstr "Canvia el nom del text automàtic" #: 02120100.xhp msgctxt "" @@ -2313,7 +2313,7 @@ "1\n" "help.text" msgid "Rename AutoText" -msgstr "Reanomena el text automàtic" +msgstr "Canvia el nom del text automàtic" #: 02120100.xhp msgctxt "" @@ -22503,7 +22503,7 @@ "28\n" "help.text" msgid "Rename" -msgstr "Reanomena" +msgstr "Canvia el nom" #: 05150101.xhp msgctxt "" @@ -22512,7 +22512,7 @@ "29\n" "help.text" msgid "Changes the name of the selected table style. You cannot rename the \"Standard\" table style." -msgstr "Canvia el nom de l'estil de taula seleccionat. No podeu reanomenar l'estil de taula \"Estàndard\"." +msgstr "Canvia el nom de l'estil de taula seleccionat. No podeu canviar el nom de l'estil de taula \"Estàndard\"." #: 05150104.xhp msgctxt "" @@ -27684,7 +27684,7 @@ "par_idN10555\n" "help.text" msgid "Select the fields that you want to move, delete, or rename." -msgstr "Seleccioneu els camps que voleu moure, suprimir, o reanomenar." +msgstr "Seleccioneu els camps que voleu moure, suprimir, o canviar el nom." #: mm_cusaddlis.xhp msgctxt "" @@ -27724,7 +27724,7 @@ "par_idN10575\n" "help.text" msgid "Rename" -msgstr "Reanomena" +msgstr "Canvia el nom" #: mm_cusaddlis.xhp msgctxt "" @@ -27732,7 +27732,7 @@ "par_idN10579\n" "help.text" msgid "Renames the selected text field." -msgstr "Reanomena el camp de text seleccionat." +msgstr "Canvia el nom del camp de text seleccionat." #: mm_cusgrelin.xhp msgctxt "" @@ -28428,7 +28428,7 @@ "par_idN1059E\n" "help.text" msgid "Opens the Customize Address List dialog where you can rearrange, rename, add, and delete fields." -msgstr "Obre el diàleg Personalitza la llista d'adreces on podeu reorganitzar, reanomenar, afegir i suprimir camps." +msgstr "Obre el diàleg Personalitza la llista d'adreces on podeu reorganitzar, canviar el nom, afegir i suprimir camps." #: mm_seladdblo.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/ca/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-5.1.2~rc2/translations/source/ca/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-5.1.1~rc2/translations/source/ca/officecfg/registry/data/org/openoffice/Office/UI.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ca/officecfg/registry/data/org/openoffice/Office/UI.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-08 10:35+0000\n" +"PO-Revision-Date: 2016-03-16 10:58+0000\n" "Last-Translator: Joan Montané \n" "Language-Team: LANGUAGE \n" "Language: ca\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1454927738.000000\n" +"X-POOTLE-MTIME: 1458125891.000000\n" #: BaseWindowState.xcu msgctxt "" @@ -2768,7 +2768,7 @@ "Label\n" "value.text" msgid "~Rename Sheet..." -msgstr "~Reanomena el full..." +msgstr "~Canvia el nom del full..." #: CalcCommands.xcu msgctxt "" @@ -2777,7 +2777,7 @@ "Label\n" "value.text" msgid "Rename Sheet" -msgstr "Reanomena el full" +msgstr "Canvia el nom del full" #: CalcCommands.xcu msgctxt "" @@ -5270,7 +5270,7 @@ "Label\n" "value.text" msgid "Rename..." -msgstr "Reanomena..." +msgstr "Canvia el nom..." #: DbuCommands.xcu msgctxt "" @@ -5315,7 +5315,7 @@ "Label\n" "value.text" msgid "Rename..." -msgstr "Reanomena..." +msgstr "Canvia el nom..." #: DbuCommands.xcu msgctxt "" @@ -5351,7 +5351,7 @@ "Label\n" "value.text" msgid "Rename..." -msgstr "Reanomena..." +msgstr "Canvia el nom..." #: DbuCommands.xcu msgctxt "" @@ -5387,7 +5387,7 @@ "Label\n" "value.text" msgid "Rename..." -msgstr "Reanomena..." +msgstr "Canvia el nom..." #: DbuCommands.xcu msgctxt "" @@ -5423,7 +5423,7 @@ "Label\n" "value.text" msgid "Rename..." -msgstr "Reanomena..." +msgstr "Canvia el nom..." #: DbuCommands.xcu msgctxt "" @@ -5936,7 +5936,7 @@ "Label\n" "value.text" msgid "~Rename" -msgstr "~Reanomena" +msgstr "~Canvia el nom" #: DrawImpressCommands.xcu msgctxt "" @@ -7943,7 +7943,7 @@ "Label\n" "value.text" msgid "Rename Master" -msgstr "Reanomena el mestre" +msgstr "Canvia el nom del mestre" #: DrawImpressCommands.xcu msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/ca/sc/source/ui/src.po libreoffice-5.1.2~rc2/translations/source/ca/sc/source/ui/src.po --- libreoffice-5.1.1~rc2/translations/source/ca/sc/source/ui/src.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ca/sc/source/ui/src.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "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-12-30 13:19+0000\n" +"PO-Revision-Date: 2016-03-16 10:58+0000\n" "Last-Translator: Joan Montané \n" "Language-Team: LANGUAGE \n" "Language: ca\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1451481550.000000\n" +"X-POOTLE-MTIME: 1458125920.000000\n" #: condformatdlg.src msgctxt "" @@ -3410,7 +3410,7 @@ "STR_UNDO_RENAME_TAB\n" "string.text" msgid "Rename Sheet" -msgstr "Reanomena el full" +msgstr "Canvia el nom del full" #: globstr.src msgctxt "" @@ -6087,7 +6087,7 @@ "FID_TAB_MENU_RENAME\n" "menuitem.text" msgid "~Rename Sheet..." -msgstr "~Reanomena el full..." +msgstr "~Canvia el nom del full..." #: popup.src msgctxt "" @@ -24751,7 +24751,7 @@ "SCSTR_RENAMETAB\n" "string.text" msgid "Rename Sheet" -msgstr "Reanomena el full" +msgstr "Canvia el nom del full" #: scstring.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/ca/svx/source/form.po libreoffice-5.1.2~rc2/translations/source/ca/svx/source/form.po --- libreoffice-5.1.1~rc2/translations/source/ca/svx/source/form.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ca/svx/source/form.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-06-16 20:17+0000\n" +"PO-Revision-Date: 2016-03-16 10:58+0000\n" "Last-Translator: Joan Montané \n" "Language-Team: LANGUAGE \n" "Language: ca\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1434485845.000000\n" +"X-POOTLE-MTIME: 1458125926.000000\n" #: datanavi.src msgctxt "" @@ -494,7 +494,7 @@ "SID_FM_RENAME_OBJECT\n" "menuitem.text" msgid "~Rename" -msgstr "~Reanomena" +msgstr "~Canvia el nom" #: fmexpl.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/ca/svx/source/gallery2.po libreoffice-5.1.2~rc2/translations/source/ca/svx/source/gallery2.po --- libreoffice-5.1.1~rc2/translations/source/ca/svx/source/gallery2.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ca/svx/source/gallery2.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "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:41+0200\n" -"PO-Revision-Date: 2015-06-16 20:17+0000\n" +"PO-Revision-Date: 2016-03-16 10:58+0000\n" "Last-Translator: Joan Montané \n" "Language-Team: LANGUAGE \n" "Language: ca\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1434485851.000000\n" +"X-POOTLE-MTIME: 1458125932.000000\n" #: gallery.src msgctxt "" @@ -217,7 +217,7 @@ "MN_RENAME\n" "menuitem.text" msgid "~Rename" -msgstr "~Reanomena" +msgstr "~Canvia el nom" #: gallery.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/ca/sw/source/core/undo.po libreoffice-5.1.2~rc2/translations/source/ca/sw/source/core/undo.po --- libreoffice-5.1.1~rc2/translations/source/ca/sw/source/core/undo.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ca/sw/source/core/undo.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,18 +3,18 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2014-11-18 11:23+0100\n" -"PO-Revision-Date: 2015-01-08 21:44+0000\n" -"Last-Translator: Joan \n" +"POT-Creation-Date: 2015-04-22 23:40+0200\n" +"PO-Revision-Date: 2016-03-16 10:59+0000\n" +"Last-Translator: Joan Montané \n" "Language-Team: LANGUAGE \n" "Language: ca\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: LibreOffice\n" +"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1420753477.000000\n" +"X-POOTLE-MTIME: 1458125972.000000\n" #: undo.src msgctxt "" @@ -982,7 +982,7 @@ "STR_UNDO_PAGEDESC_RENAME\n" "string.text" msgid "Rename page style: $1 $2 $3" -msgstr "Reanomena l'estil de pàgina: $1 $2 $3" +msgstr "Canvia el nom de l'estil de pàgina: $1 $2 $3" #: undo.src msgctxt "" @@ -1022,7 +1022,7 @@ "STR_UNDO_TXTFMTCOL_RENAME\n" "string.text" msgid "Rename paragraph style: $1 $2 $3" -msgstr "Reanomena l'estil de paràgraf: $1 $2 $3" +msgstr "Canvia el nom de l'estil de paràgraf: $1 $2 $3" #: undo.src msgctxt "" @@ -1046,7 +1046,7 @@ "STR_UNDO_CHARFMT_RENAME\n" "string.text" msgid "Rename character style: $1 $2 $3" -msgstr "Reanomena l'estil de caràcter: $1 $2 $3" +msgstr "Canvia el nom de l'estil de caràcter: $1 $2 $3" #: undo.src msgctxt "" @@ -1070,7 +1070,7 @@ "STR_UNDO_FRMFMT_RENAME\n" "string.text" msgid "Rename frame style: $1 $2 $3" -msgstr "Reanomena l'estil de marc: $1 $2 $3" +msgstr "Canvia el nom de l'estil de marc: $1 $2 $3" #: undo.src msgctxt "" @@ -1094,7 +1094,7 @@ "STR_UNDO_NUMRULE_RENAME\n" "string.text" msgid "Rename numbering style: $1 $2 $3" -msgstr "Reanomena l'estil de numeració: $1 $2 $3" +msgstr "Canvia el nom de l'estil de numeració: $1 $2 $3" #: undo.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/ca/sw/source/ui/app.po libreoffice-5.1.2~rc2/translations/source/ca/sw/source/ui/app.po --- libreoffice-5.1.1~rc2/translations/source/ca/sw/source/ui/app.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ca/sw/source/ui/app.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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-02 08:53+0000\n" +"PO-Revision-Date: 2016-03-16 10:59+0000\n" "Last-Translator: Joan Montané \n" "Language-Team: LANGUAGE \n" "Language: ca\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1449046387.000000\n" +"X-POOTLE-MTIME: 1458125979.000000\n" #: app.src msgctxt "" @@ -871,7 +871,7 @@ "STR_RENAME_AUTOFORMAT_TITLE\n" "string.text" msgid "Rename AutoFormat" -msgstr "Reanomena la formatació automàtica" +msgstr "Canvia el nom de la formatació automàtica" #: app.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/ca/sw/uiconfig/swriter/ui.po libreoffice-5.1.2~rc2/translations/source/ca/sw/uiconfig/swriter/ui.po --- libreoffice-5.1.1~rc2/translations/source/ca/sw/uiconfig/swriter/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ca/sw/uiconfig/swriter/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 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-09-03 20:42+0000\n" +"PO-Revision-Date: 2016-03-16 11:00+0000\n" "Last-Translator: Joan Montané \n" "Language-Team: none\n" "Language: ca\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1441312930.000000\n" +"X-POOTLE-MTIME: 1458126011.000000\n" #: abstractdialog.ui msgctxt "" @@ -572,7 +572,7 @@ "label\n" "string.text" msgid "Rename" -msgstr "Reanomena" +msgstr "Canvia el nom" #: autoformattable.ui msgctxt "" @@ -797,7 +797,7 @@ "label\n" "string.text" msgid "Rename..." -msgstr "Reanomena..." +msgstr "Canvia el nom..." #: autotext.ui msgctxt "" @@ -2795,7 +2795,7 @@ "label\n" "string.text" msgid "_Rename" -msgstr "_Reanomena" +msgstr "_Canvia el nom" #: editcategories.ui msgctxt "" @@ -12020,7 +12020,7 @@ "title\n" "string.text" msgid "Rename AutoText" -msgstr "Reanomena el text automàtic" +msgstr "Canvia el nom del text automàtic" #: renameautotextdialog.ui msgctxt "" @@ -12083,7 +12083,7 @@ "title\n" "string.text" msgid "Rename object: " -msgstr "Reanomena l'objecte: " +msgstr "Canvia el nom de l'objecte: " #: renameobjectdialog.ui msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/ca-valencia/formula/source/core/resource.po libreoffice-5.1.2~rc2/translations/source/ca-valencia/formula/source/core/resource.po --- libreoffice-5.1.1~rc2/translations/source/ca-valencia/formula/source/core/resource.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ca-valencia/formula/source/core/resource.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\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-29 16:07+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-5.1.1~rc2/translations/source/ca-valencia/helpcontent2/source/text/shared/01.po libreoffice-5.1.2~rc2/translations/source/ca-valencia/helpcontent2/source/text/shared/01.po --- libreoffice-5.1.1~rc2/translations/source/ca-valencia/helpcontent2/source/text/shared/01.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ca-valencia/helpcontent2/source/text/shared/01.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 \n" "Language: ca-valencia\n" @@ -15,7 +15,7 @@ "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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ msgstr "Explicació" #: 05020301.xhp +#, fuzzy msgctxt "" "05020301.xhp\n" "par_id3152801\n" "5\n" "help.text" msgid "#" -msgstr "" +msgstr "#" #: 05020301.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/ca-valencia/helpcontent2/source/text/shared/explorer/database.po libreoffice-5.1.2~rc2/translations/source/ca-valencia/helpcontent2/source/text/shared/explorer/database.po --- libreoffice-5.1.1~rc2/translations/source/ca-valencia/helpcontent2/source/text/shared/explorer/database.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ca-valencia/helpcontent2/source/text/shared/explorer/database.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 \n" "Language: ca-valencia\n" @@ -15,7 +15,7 @@ "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 @@ 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 @@ 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 @@ 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 @@ msgstr "Llista els índexs disponibles que podeu assignar a una taula. 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 @@ msgstr "Mou tots els índexs lliures a la llista Ãndexs de la taula." #: 11030100.xhp +#, fuzzy msgctxt "" "11030100.xhp\n" "hd_id3149579\n" "8\n" "help.text" msgid ">" -msgstr "" +msgstr ">" #: 11030100.xhp msgctxt "" @@ -12421,12 +12426,13 @@ msgstr "Afig una fila de controls nova." #: querywizard04.xhp +#, fuzzy msgctxt "" "querywizard04.xhp\n" "par_idN105F1\n" "help.text" msgid "-" -msgstr "" +msgstr "-" #: querywizard04.xhp msgctxt "" @@ -14445,12 +14451,13 @@ msgstr "Seleccioneu un camp per editar-ne la informació corresponent." #: tablewizard02.xhp +#, fuzzy msgctxt "" "tablewizard02.xhp\n" "par_idN10574\n" "help.text" msgid "-" -msgstr "" +msgstr "-" #: tablewizard02.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/ca-valencia/helpcontent2/source/text/swriter/01.po libreoffice-5.1.2~rc2/translations/source/ca-valencia/helpcontent2/source/text/swriter/01.po --- libreoffice-5.1.1~rc2/translations/source/ca-valencia/helpcontent2/source/text/swriter/01.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ca-valencia/helpcontent2/source/text/swriter/01.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 \n" "Language: ca-valencia\n" @@ -15,7 +15,7 @@ "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 @@ msgstr "Seleccioneu l'estil de paràgraf al qual voleu aplicar el nivell d'índex seleccionat, i feu clic al botó Assigna (<)." #: 04120201.xhp +#, fuzzy msgctxt "" "04120201.xhp\n" "hd_id3145418\n" "32\n" "help.text" msgid "<" -msgstr "" +msgstr "<" #: 04120201.xhp msgctxt "" @@ -27780,12 +27781,13 @@ msgstr "Seleccioneu un camp i arrossegueu-lo a l'altra llista." #: 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 @@ msgstr "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." #: 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 @@ msgstr "Seleccioneu un camp i arrossegueu-lo a l'altra llista." #: 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 @@ msgstr "Afig el camp seleccionat de la llista Elements de salutació a l'altra llista. Podeu afegir un camp més d'una vegada." #: 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 @@ msgstr "Seleccioneu un camp d'adreça i arrossegueu-lo a l'altra llista." #: 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 @@ msgstr "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." #: mm_newaddblo.xhp +#, fuzzy msgctxt "" "mm_newaddblo.xhp\n" "par_idN10577\n" "help.text" msgid "<" -msgstr "" +msgstr "<" #: mm_newaddblo.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/ca-valencia/helpcontent2/source/text/swriter/02.po libreoffice-5.1.2~rc2/translations/source/ca-valencia/helpcontent2/source/text/swriter/02.po --- libreoffice-5.1.1~rc2/translations/source/ca-valencia/helpcontent2/source/text/swriter/02.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ca-valencia/helpcontent2/source/text/swriter/02.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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 \n" "Language: ca-valencia\n" @@ -15,7 +15,7 @@ "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 @@ msgstr "Resta" #: 14020000.xhp +#, fuzzy msgctxt "" "14020000.xhp\n" "par_id3150087\n" "12\n" "help.text" msgid "-" -msgstr "" +msgstr "-" #: 14020000.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/cs/filter/source/config/fragments/filters.po libreoffice-5.1.2~rc2/translations/source/cs/filter/source/config/fragments/filters.po --- libreoffice-5.1.1~rc2/translations/source/cs/filter/source/config/fragments/filters.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/cs/filter/source/config/fragments/filters.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-13 19:48+0000\n" +"PO-Revision-Date: 2016-02-25 20:13+0000\n" "Last-Translator: Stanislav HoráÄek \n" "Language-Team: LANGUAGE \n" "Language: cs\n" @@ -14,7 +14,7 @@ "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: 1452714522.000000\n" +"X-POOTLE-MTIME: 1456431239.000000\n" #: AbiWord.xcu msgctxt "" @@ -1898,7 +1898,6 @@ msgstr "Å ablona HTML 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 @@ msgstr "PDF - Portable Document Format" #: writer_web_png_Export.xcu -#, fuzzy msgctxt "" "writer_web_png_Export.xcu\n" "writer_web_png_Export\n" diff -Nru libreoffice-5.1.1~rc2/translations/source/cs/helpcontent2/source/text/scalc/01.po libreoffice-5.1.2~rc2/translations/source/cs/helpcontent2/source/text/scalc/01.po --- libreoffice-5.1.1~rc2/translations/source/cs/helpcontent2/source/text/scalc/01.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/cs/helpcontent2/source/text/scalc/01.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-22 19:48+0000\n" +"PO-Revision-Date: 2016-02-26 16:56+0000\n" "Last-Translator: Stanislav HoráÄek \n" "Language-Team: NONE\n" "Language: cs\n" @@ -15,7 +15,7 @@ "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" "X-Project-Style: openoffice\n" -"X-POOTLE-MTIME: 1453492105.000000\n" +"X-POOTLE-MTIME: 1456505807.000000\n" #: 01120000.xhp msgctxt "" @@ -52397,7 +52397,7 @@ "par_id3151118\n" "help.text" msgid "Opens the Function List deck of the Sidebar, which displays all functions that can be inserted into your document. The Function List deck is similar to the Functions tab page of the Function Wizard. The functions are inserted with placeholders to be replaced with your own values." -msgstr "OtevÅ™e v postranní liÅ¡tÄ› kartu Seznam funkcí, na níž se zobrazí vÅ¡echny funkce, které je možné vložit do dokumentu. Karta Seznam funkcí je podobná kartÄ› Funkce v Průvodci funkcí. Funkce jsou vkládány s názvy parametrů, které je tÅ™eba nahradit požadovanými hodnotami." +msgstr "OtevÅ™e na postranní liÅ¡tÄ› kartu Seznam funkcí, na níž se zobrazí vÅ¡echny funkce, které je možné vložit do dokumentu. Karta Seznam funkcí je podobná kartÄ› Funkce v Průvodci funkcí. Funkce jsou vkládány s názvy parametrů, které je tÅ™eba nahradit požadovanými hodnotami." #: 04080000.xhp msgctxt "" @@ -55827,7 +55827,7 @@ "19\n" "help.text" msgid "Highlights the scenario in your table with a border. The color for the border is specified in the field to the right of this option. The border will have a title bar displaying the name of the last scenario. The button on the right of the scenario border offers you an overview of all the scenarios in this area, if several have been defined. You can choose any of the scenarios from this list without restrictions." -msgstr "Zvýrazní scénář v tabulce pomocí okraje. Barvu okraje urÄuje pole napravo. Okraj bude mít záhlaví se jménem posledního scénáře. Bylo-li definováno více scénářů, tlaÄítko napravo okrajů poskytuje pÅ™ehled scénářů v této oblasti. Ze seznamu je možné scénáře vybírat bez omezení." +msgstr "Zvýrazní scénář v tabulce pomocí ohraniÄení. Barvu ohraniÄení urÄuje pole napravo. OhraniÄení bude mít záhlaví s názvem posledního scénáře. Bylo-li definováno více scénářů, tlaÄítko vpravo ohraniÄení nabídne pÅ™ehled scénářů v této oblasti. Ze seznamu je možné scénáře vybírat bez omezení." #: 06050000.xhp msgctxt "" @@ -61767,7 +61767,7 @@ "par_id9623767621137\n" "help.text" msgid "If the result is a complex number with one of its parts (a or b) equal to zero, that part is not displayed." -msgstr "Pokud je výsledkem komplexní Äíslo s jednou Äástí (a nebo b) rovnou nule, tato Äást se nezobrazí." +msgstr "Pokud je výsledkem komplexní Äíslo s jednou z Äástí (a nebo b) rovnou nule, tato Äást se nezobrazí." #: ful_func.xhp msgctxt "" @@ -61815,7 +61815,7 @@ "par_id2209201514174373\n" "help.text" msgid "This function returns an aggregate result of the calculations in the range. You can use different aggregate functions listed below. The Aggregate function enables you to omit hidden rows, errors, SUBTOTAL and other AGGREGATE function results in the calculation." -msgstr "Tato funkce vrátí agregovaný výsledek výpoÄtu v oblasti. Je možné použít různé, dále uvedené agregaÄní funkce. Funkce umožňuje pÅ™i výpoÄtu vynechat skryté řádky, chyby a výsledky funkcí SUBTOTAL nebo jiných funkcí AGGREGATE." +msgstr "Tato funkce vrátí agregovaný výsledek výpoÄtu v oblasti. Je možné použít různé, dále uvedené agregaÄní funkce. Funkce umožňuje pÅ™i výpoÄtu vynechat skryté řádky, chyby a výsledky funkce SUBTOTAL nebo jiné výsledky funkce AGGREGATE." #: func_aggregate.xhp msgctxt "" @@ -61823,7 +61823,7 @@ "par_id2209201514174453\n" "help.text" msgid "AGGREGATE function is applied to vertical ranges of data with activated AutoFilter. If AutoFilter is not activated, automatic recalculation of the function result does not work for newly hidden rows. It is not supposed to work with horizontal ranges, however it can be applied to them as well, but with limitations. In particular, the AGGREGATE function applied to a horizontal data range does not recognize hiding columns, however correctly omits errors and results of SUBTOTAL and other AGGREGATE functions embedded into the row." -msgstr "Funkce AGGREGATE se používá pro svislé oblasti dat se zapnutým automatickým filtrem. Jestliže automatický filtr zapnutý není, pro novÄ› skryté řádky nebude fungovat automatické pÅ™epoÄítávání výsledků této funkce. Funkce není zamýšlena pro práci s vodorovnými oblastmi, s urÄitými omezeními ji vÅ¡ak lze na nÄ› také použít. PÅ™i takovém použití se nerozpoznávají skryté sloupce, správnÄ› se ale vynechávají chyby a výsledky funkcí SUBTOTAL a AGGREGATE, které se v řádku nacházejí." +msgstr "Funkce AGGREGATE se používá pro svislé oblasti dat se zapnutým automatickým filtrem. Jestliže automatický filtr zapnutý není, pro novÄ› skryté řádky nebude fungovat automatické pÅ™epoÄítávání výsledků této funkce. Funkce není zamýšlena pro práci s vodorovnými oblastmi, s urÄitými omezeními ji vÅ¡ak na nÄ› lze také použít. PÅ™i takovém použití se nerozpoznávají skryté sloupce, správnÄ› se ale vynechávají chyby a výsledky funkcí SUBTOTAL a AGGREGATE, které se v řádku nacházejí." #: func_aggregate.xhp msgctxt "" @@ -62039,7 +62039,7 @@ "par_id2209201514174372\n" "help.text" msgid "Option – obligatory argument. An option index or reference to a cell with value from 0 to 7 determines what to ignore in the range for the function." -msgstr "Možnost – povinný argument. Číslo možnosti nebo odkaz na buňku s Äíslem od 0 do 7 urÄujícím, co se má v oblasti pro funkci ignorovat." +msgstr "Možnost – povinný argument. Číslo možnosti nebo odkaz na buňku s Äíslem od 0 do 7, které urÄuje, co se má v oblasti pro funkci ignorovat." #: func_aggregate.xhp msgctxt "" @@ -62135,7 +62135,7 @@ "par_id2309201514193338\n" "help.text" msgid "Ref2,3,... – optional. A numeric argument or a reference to a cell (up to 253 arguments), for which you need the aggregate value." -msgstr "Odkaz2,3,... – nepovinný. Číselné argumenty nebo odkazy na buňku (až 253 argumentů), pro než je potÅ™eba hodnoty agregovat." +msgstr "Odkaz2,3,... – nepovinný. Číselné argumenty nebo odkazy na buňku (až 253 argumentů), pro něž je potÅ™eba hodnoty agregovat." #: func_aggregate.xhp msgctxt "" @@ -64343,7 +64343,7 @@ "par_id12475201719494\n" "help.text" msgid "The ISERROR function returns TRUE or FALSE depending on whether there is an error or not. If the error takes place, the function IF addresses to the second argument, if there is no error, it returns the result of the division. The second argument checks the index number representing the specific Error type, and if it is equal to 2, it returns the specified text \"the denominator can't be zero\" or 0 otherwise. Thus, clear text would signify the division by zero, the result of the division would appear when the division is successful, or if there is, for example, an error of another type, zero would be returned." -msgstr "Funkce ISERROR vrátí hodnotu PRAVDA nebo NEPRAVDA podle toho, zda nastane chyba. Pokud chyba nastane, funkce IF zpracuje druhý argument, pokud chyba nenastane, vrátí výsledek dÄ›lení. Druhý argument zjistí Äíslo pÅ™edstavující urÄitý typ chyby, a jestliže je rovno 2, vrátí stanovený text \"jmenovatel nemůže být roven nule\", v opaÄném případÄ› vrátí 0. PÅ™i dÄ›lení nulou se tedy zobrazí upozornÄ›ní, pÅ™i úspěšném dÄ›lení jeho výsledek, a pokud nastane chyba jiného type, vrátí se nula." +msgstr "Funkce ISERROR vrátí hodnotu PRAVDA nebo NEPRAVDA podle toho, zda nastane chyba. Pokud chyba nastane, funkce IF zpracuje druhý argument, pokud chyba nenastane, vrátí výsledek dÄ›lení. Druhý argument zjistí Äíslo pÅ™edstavující urÄitý typ chyby, a jestliže je rovno 2, vrátí stanovený text \"jmenovatel nemůže být roven nule\", v opaÄném případÄ› vrátí 0. PÅ™i dÄ›lení nulou se tedy zobrazí upozornÄ›ní, pÅ™i úspěšném dÄ›lení jeho výsledek, a pokud nastane chyba jiného typu, vrátí se nula." #: func_error_type.xhp msgctxt "" @@ -65210,7 +65210,7 @@ "par_idN105E4\n" "help.text" msgid "The International Standard ISO 8601 has decreed that Monday shall be the first day of the week. A week that lies partly in one year and partly in another is assigned a number in the year in which most of its days lie. That means that week number 1 of any year is the week that contains the January 4th." -msgstr "Mezinárodní norma ISO 8601 naÅ™izuje, že pondÄ›lí má být prvním dnem v týdnu. Týdnu, který spadá Äástí do jednoho roku a Äástí do druhého roku, je pÅ™iÅ™azeno Äíslo toho roku, do kterého spadá více dnů. To znamená, že týden Äíslo 1 kteréhokoliv roku je ten týden, který obsahuje 4. leden." +msgstr "Podle mezinárodní normy ISO 8601 je prvním dnem v týdnu pondÄ›lí. Týdnu, který spadá Äástí do jednoho roku a Äástí do druhého roku, je pÅ™iÅ™azeno Äíslo toho roku, do kterého spadá více dnů. To znamená, že týden Äíslo 1 kteréhokoliv roku je ten týden, který obsahuje 4. leden." #: func_isoweeknum.xhp msgctxt "" @@ -66682,7 +66682,7 @@ "55\n" "help.text" msgid "WEEKNUM calculates the week number of the year for the internal date value as defined in ODF OpenFormula and compatible with other spreadsheet applications." -msgstr "WEEKNUM vypoÄítá Äíslo týdne v roce pro hodnotu reprezentující datum způsobem urÄeným standardem ODF OpenFormula a kompatibilním s jinými tabulkovými procesory." +msgstr "WEEKNUM vypoÄítá Äíslo týdne v roce pro hodnotu reprezentující datum, a to způsobem urÄeným standardem ODF OpenFormula a kompatibilním s jinými tabulkovými procesory." #: func_weeknum.xhp msgctxt "" @@ -67060,7 +67060,7 @@ "par_idN105DD\n" "help.text" msgid "The WEEKNUM_EXCEL2003 function is designed to calculate week numbers exactly as Microsoft Excel 2003 did. Use the WEEKNUM function for ODF OpenFormula and Excel 2010 compatibility, or ISOWEEKNUM function when you just need ISO 8601 week numbers. In releases prior to $[officename] 5.1 WEEKNUM_EXCEL2003 was named WEEKNUM_ADD." -msgstr "Funkce WEEKNUM_EXCEL2003 je navržena, aby poÄítala Äísla týdnů stejnÄ›, jako to provádÄ›l Microsoft Excel 2003. Chcete-li dosáhnout kompatibility se standardem ODF OpenFormula a s programem Excel 2010, použijte funkci WEEKNUM, pokud potÅ™ebujete Äísla týdnů podle normy ISO 8601, použijte funkci ISOWEEKNUM. Ve verzích $[officename] starších než 5.1 se funkce WEEKNUM_EXCEL2003 nazývala WEEKNUM_ADD." +msgstr "Funkce WEEKNUM_EXCEL2003 je navržena, aby poÄítala Äísla týdnů stejnÄ›, jako to provádÄ›l Microsoft Excel 2003. Chcete-li dosáhnout kompatibility se standardem ODF OpenFormula a s programem Excel 2010, použijte funkci WEEKNUM. Pokud potÅ™ebujete Äísla týdnů podle normy ISO 8601, použijte funkci ISOWEEKNUM. Ve verzích $[officename] starších než 5.1 se funkce WEEKNUM_EXCEL2003 nazývala WEEKNUM_ADD." #: func_weeknumadd.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/cs/helpcontent2/source/text/scalc/02.po libreoffice-5.1.2~rc2/translations/source/cs/helpcontent2/source/text/scalc/02.po --- libreoffice-5.1.1~rc2/translations/source/cs/helpcontent2/source/text/scalc/02.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/cs/helpcontent2/source/text/scalc/02.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,18 +3,18 @@ msgstr "" "Project-Id-Version: PACKAGE 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-13 16:07+0000\n" -"Last-Translator: Stanislav \n" +"POT-Creation-Date: 2015-04-22 23:39+0200\n" +"PO-Revision-Date: 2016-02-26 21:01+0000\n" +"Last-Translator: Stanislav HoráÄek \n" "Language-Team: LANGUAGE \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: 1418486829.000000\n" +"X-POOTLE-MTIME: 1456520484.000000\n" #: 02130000.xhp msgctxt "" @@ -625,7 +625,7 @@ "tit\n" "help.text" msgid "Theme Selection" -msgstr "VýbÄ›r tématu" +msgstr "VýbÄ›r motivu vzhledu" #: 06080000.xhp msgctxt "" @@ -634,7 +634,7 @@ "1\n" "help.text" msgid "Theme Selection" -msgstr "VýbÄ›r tématu" +msgstr "VýbÄ›r motivu vzhledu" #: 06080000.xhp msgctxt "" @@ -651,7 +651,7 @@ "par_id3155132\n" "help.text" msgid "Icon" -msgstr "Ikonka" +msgstr "Ikona" #: 06080000.xhp msgctxt "" @@ -660,7 +660,7 @@ "4\n" "help.text" msgid "Choose Themes" -msgstr "VýbÄ›r témat" +msgstr "Zvolit motiv vzhledu" #: 06080000.xhp msgctxt "" @@ -669,7 +669,7 @@ "5\n" "help.text" msgid "Click the formatting theme that you want to apply, and then click OK." -msgstr "KlepnÄ›te na téma, které chcete použít, a poté klepnÄ›te na OK." +msgstr "KlepnÄ›te na motiv vzhledu, který chcete použít, a poté klepnÄ›te na OK." #: 08010000.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/cs/helpcontent2/source/text/scalc/guide.po libreoffice-5.1.2~rc2/translations/source/cs/helpcontent2/source/text/scalc/guide.po --- libreoffice-5.1.1~rc2/translations/source/cs/helpcontent2/source/text/scalc/guide.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/cs/helpcontent2/source/text/scalc/guide.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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-27 16:34+0000\n" +"PO-Revision-Date: 2016-02-26 21:09+0000\n" "Last-Translator: Stanislav HoráÄek \n" "Language-Team: LANGUAGE \n" "Language: cs\n" @@ -14,7 +14,7 @@ "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: 1451234097.000000\n" +"X-POOTLE-MTIME: 1456520970.000000\n" #: address_auto.xhp msgctxt "" @@ -4957,7 +4957,7 @@ "tit\n" "help.text" msgid "Selecting Themes for Sheets" -msgstr "VýbÄ›r témat pro seÅ¡ity" +msgstr "VýbÄ›r motivů vzhledu pro seÅ¡ity" #: design.xhp msgctxt "" @@ -4965,7 +4965,7 @@ "bm_id3150791\n" "help.text" msgid "theme selection for sheetslayout;spreadsheetscell styles; selectingselecting;formatting themessheets;formatting themesformats;themes for sheetsformatting;themes for sheets" -msgstr "výbÄ›r témat pro seÅ¡ityrozvržení;seÅ¡itystyly bunÄ›k; vybíránívybírání;formátování tématseÅ¡ity;formátování tématformáty;témata pro seÅ¡ity formátování;témata pro seÅ¡ity" +msgstr "výbÄ›r motivů vzhledu pro seÅ¡ityrozvržení;seÅ¡itystyly bunÄ›k; vybíránívybírání;formátování tématseÅ¡ity;formátování tématformáty;motivy vzhledu pro seÅ¡ity formátování;motivy vzhledu pro seÅ¡ity" #: design.xhp msgctxt "" @@ -4974,7 +4974,7 @@ "6\n" "help.text" msgid "Selecting Themes for Sheets " -msgstr "VýbÄ›r témat pro seÅ¡ity " +msgstr "VýbÄ›r motivů vzhledu pro seÅ¡ity " #: design.xhp msgctxt "" @@ -4992,7 +4992,7 @@ "16\n" "help.text" msgid "It is not possible to add themes to Calc, and they cannot be modified. However, you can modify their styles after you apply them to a spreadsheet." -msgstr "Nelze je do Calc přídávat ani upravovat. Možné je vÅ¡ak upravit výsledky jejich použití na seÅ¡it." +msgstr "Nelze je do pÅ™idávat ani upravovat. Možné je vÅ¡ak upravit jejich styl poté, co jsou na seÅ¡it použity." #: design.xhp msgctxt "" @@ -5001,7 +5001,7 @@ "17\n" "help.text" msgid "Before you format a sheet with a theme, you have to apply at least one custom cell style to the cells on the sheet. You can then change the cell formatting by selecting and applying a theme in the Theme Selection dialog." -msgstr "PÅ™ed použitím tématu musíte na buňky v seÅ¡itÄ› použít alespoň jeden uživatelsky definovaný styl. Potom je možné zmÄ›nit formátování bunÄ›k výbÄ›rem tématu z dialogového okna VýbÄ›r tématu." +msgstr "PÅ™ed použitím motivu vzhledu je nutné na buňky v seÅ¡itÄ› použít alespoň jeden vlastní styl buňky. Potom je možné zmÄ›nit formátování bunÄ›k výbÄ›rem motivu z dialogového okna VýbÄ›r motivu vzhledu." #: design.xhp msgctxt "" @@ -5010,7 +5010,7 @@ "18\n" "help.text" msgid "To apply a custom cell style to a cell, you can open the Styles and Formatting window and, in its lower list box, set the Custom Styles view. A list of the existing custom defined cell styles will be displayed. Double click a name from the Styles and Formatting window to apply this style to the selected cells." -msgstr "Pro použití vlastních stylů buňky otevÅ™ete okno Styly a formátování a ze seznamu v jeho spodní Äásti vyberte Vlastní styly. Zobrazí se seznam uživatelem definovaných stylů. Styl použijete na vybrané buňky poklepáním na jeho název." +msgstr "Pro použití vlastních stylů buňky otevÅ™ete okno Styly a formátování a ze seznamu v jeho dolní Äásti vyberte Vlastní styly. Zobrazí se seznam uživatelem definovaných stylů. Styl použijete na vybrané buňky poklepáním na jeho název." #: design.xhp msgctxt "" @@ -5019,7 +5019,7 @@ "19\n" "help.text" msgid "To apply a theme to a spreadsheet:" -msgstr "Jak použít téma na seÅ¡it:" +msgstr "Jak použít motiv vzhledu na seÅ¡it:" #: design.xhp msgctxt "" @@ -5028,7 +5028,7 @@ "15\n" "help.text" msgid "Click the Choose Themes icon in the Tools bar." -msgstr "KlepnÄ›te na ikonu VýbÄ›r témat na liÅ¡tÄ› Nástroje." +msgstr "KlepnÄ›te na ikonu Zvolit motiv vzhledu na liÅ¡tÄ› Nástroje." #: design.xhp msgctxt "" @@ -5037,7 +5037,7 @@ "20\n" "help.text" msgid "The Theme Selection dialog appears. This dialog lists the available themes for the whole spreadsheet and the Styles and Formatting window lists the custom styles for specific cells." -msgstr "Zobrazí se dialog VýbÄ›r tématu. V nÄ›m vidíte seznam dostupných témat pro celý seÅ¡it a v dialogu Styly a formátování seznam vlastních stylů pro jednotlivé buňky." +msgstr "Zobrazí se dialogové okno VýbÄ›r motivu vzhledu. V nÄ›m se nachází seznam dostupných motivů pro celý seÅ¡it a v oknÄ› Styly a formátování seznam vlastních stylů pro jednotlivé buňky." #: design.xhp msgctxt "" @@ -5046,7 +5046,7 @@ "9\n" "help.text" msgid "In the Theme Selection dialog, select the theme that you want to apply to the spreadsheet." -msgstr "V dialogu VýbÄ›r tématu vyberte téma, které chcete použít." +msgstr "V oknÄ› VýbÄ›r motivu vzhledu vyberte motiv, který chcete použít." #: design.xhp msgctxt "" @@ -5064,7 +5064,7 @@ "22\n" "help.text" msgid "As soon as you select another theme in the Theme Selection dialog, some of the properties of the custom style will be applied to the current spreadsheet. The modifications will be immediately visible in your spreadsheet." -msgstr "Jakmile vyberete jiné téma v dialogu VýbÄ›r tématu, budou nÄ›které vlastnosti stylu použity na aktuální seÅ¡it. ZmÄ›ny budou vidÄ›t okamžitÄ›." +msgstr "Jakmile vyberete v dialogovém oknÄ› VýbÄ›r motivu vzhledu jiný motiv, budou nÄ›které vlastnosti stylu použity na aktuální seÅ¡it. ZmÄ›ny budou vidÄ›t okamžitÄ›." #: design.xhp msgctxt "" @@ -5073,7 +5073,7 @@ "12\n" "help.text" msgid "Theme selection" -msgstr "VýbÄ›r tématu" +msgstr "VýbÄ›r motivu vzhledu" #: edit_multitables.xhp msgctxt "" @@ -5116,7 +5116,7 @@ "8\n" "help.text" msgid "Select all desired sheets by holding down the CommandCtrl key and clicking the corresponding register tabs that are still gray at the bottom margin of the workspace. All selected register tabs are now white." -msgstr "Vybete vÅ¡echny požadované listy tím, že podržíte klávesu CommandCtrl a klepnete na odpovídající jeÅ¡tÄ› Å¡edé karty seÅ¡itů na dolním okraji pracovního prostoru. VÅ¡echny vybrané karty se zbarví bíle." +msgstr "Vybete vÅ¡echny požadované listy tím, že podržíte klávesu CommandCtrl a klepnete na odpovídající jeÅ¡tÄ› Å¡edé karty listů na dolním okraji pracovního prostoru. VÅ¡echny vybrané karty se zbarví bíle." #: edit_multitables.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/cs/helpcontent2/source/text/scalc.po libreoffice-5.1.2~rc2/translations/source/cs/helpcontent2/source/text/scalc.po --- libreoffice-5.1.1~rc2/translations/source/cs/helpcontent2/source/text/scalc.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/cs/helpcontent2/source/text/scalc.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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-05 10:58+0000\n" +"PO-Revision-Date: 2016-02-26 20:59+0000\n" "Last-Translator: Stanislav HoráÄek \n" "Language-Team: LANGUAGE \n" "Language: cs\n" @@ -14,7 +14,7 @@ "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: 1449313108.000000\n" +"X-POOTLE-MTIME: 1456520356.000000\n" #: main0000.xhp msgctxt "" @@ -1374,7 +1374,7 @@ "6\n" "help.text" msgid "Choose Themes" -msgstr "VýbÄ›r témat" +msgstr "Zvolit motiv vzhledu" #: main0218.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/cs/helpcontent2/source/text/shared/01.po libreoffice-5.1.2~rc2/translations/source/cs/helpcontent2/source/text/shared/01.po --- libreoffice-5.1.1~rc2/translations/source/cs/helpcontent2/source/text/shared/01.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/cs/helpcontent2/source/text/shared/01.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-29 20:48+0000\n" +"PO-Revision-Date: 2016-02-26 18:04+0000\n" "Last-Translator: Stanislav HoráÄek \n" "Language-Team: LANGUAGE \n" "Language: cs\n" @@ -14,7 +14,7 @@ "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: 1454100517.000000\n" +"X-POOTLE-MTIME: 1456509881.000000\n" #: 01010000.xhp msgctxt "" @@ -15638,7 +15638,7 @@ "par_id3153624\n" "help.text" msgid "Use zero (0), the number sign (#) or the question mark (?) as placeholders in your number format code to represent numbers. The (#) only displays significant digits, while the (0) displays zeroes if there are fewer digits in the number than in the number format. The (?) works as the (#) but adds a space character to keep decimal alignment if there is a hidden non-significant zero." -msgstr "" +msgstr "Pro reprezentaci Äíslic použijte ve formátovacím kódu nulu (0), znak Äísla (#) nebo otazník (?). Znak # zobrazuje jen existující Äíslice, zatímco 0 zobrazuje nuly, je-li v Äísle ménÄ› Äíslic než ve formátovacím kódu. Otazník má stejný význam jako znak #, ale navíc pÅ™idává na místo skrytých nul mezery a tím pod sebou zachovává Äíslice odpovídajících si řádů." #: 05020301.xhp msgctxt "" @@ -15695,7 +15695,6 @@ msgstr "Nezobrazuje nuly navíc." #: 05020301.xhp -#, fuzzy msgctxt "" "05020301.xhp\n" "par_id3152802\n" @@ -15711,7 +15710,7 @@ "240\n" "help.text" msgid "Displays space characters instead of extra zeros." -msgstr "" +msgstr "Zobrazuje místo nul navíc mezeru." #: 05020301.xhp msgctxt "" @@ -15854,7 +15853,7 @@ "241\n" "help.text" msgid ".5 as 0.5   (with two extra spaces at the end)" -msgstr "" +msgstr ",5 jako 0,5   (se dvÄ›ma mezerami navíc na konci)" #: 05020301.xhp msgctxt "" @@ -15863,7 +15862,7 @@ "242\n" "help.text" msgid "0.???" -msgstr "" +msgstr "0,???" #: 05020301.xhp msgctxt "" @@ -41630,7 +41629,7 @@ "par_id3150789\n" "help.text" msgid "Opens the Gallery deck of the Sidebar, where you can select images and audio clips to insert into your document." -msgstr "OtevÅ™e v postranní liÅ¡tÄ› kartu Galerie, na níž můžete vybrat obrázky a zvuky, které chcete vložit do dokumentu." +msgstr "OtevÅ™e na postranní liÅ¡tÄ› kartu Galerie, na níž můžete vybrat obrázky a zvuky, které chcete vložit do dokumentu." #: gallery.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/cs/helpcontent2/source/text/shared/guide.po libreoffice-5.1.2~rc2/translations/source/cs/helpcontent2/source/text/shared/guide.po --- libreoffice-5.1.1~rc2/translations/source/cs/helpcontent2/source/text/shared/guide.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/cs/helpcontent2/source/text/shared/guide.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-29 20:33+0000\n" +"PO-Revision-Date: 2016-02-26 18:17+0000\n" "Last-Translator: Stanislav HoráÄek \n" "Language-Team: LANGUAGE \n" "Language: cs\n" @@ -14,7 +14,7 @@ "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: 1454099632.000000\n" +"X-POOTLE-MTIME: 1456510660.000000\n" #: aaa_start.xhp msgctxt "" @@ -14789,7 +14789,7 @@ "39\n" "help.text" msgid "Make sure that the Web in the View menu is not selected." -msgstr "UjistÄ›te se, že není zvoleno Web v nabídce Zobrazit." +msgstr "UjistÄ›te se, že v nabídce Zobrazit není zvolena položka Web." #: pageformat_max.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/cs/helpcontent2/source/text/shared/optionen.po libreoffice-5.1.2~rc2/translations/source/cs/helpcontent2/source/text/shared/optionen.po --- libreoffice-5.1.1~rc2/translations/source/cs/helpcontent2/source/text/shared/optionen.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/cs/helpcontent2/source/text/shared/optionen.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "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-01-22 19:59+0000\n" +"PO-Revision-Date: 2016-02-26 18:29+0000\n" "Last-Translator: Stanislav HoráÄek \n" "Language-Team: NONE\n" "Language: cs\n" @@ -15,7 +15,7 @@ "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" "X-Project-Style: openoffice\n" -"X-POOTLE-MTIME: 1453492776.000000\n" +"X-POOTLE-MTIME: 1456511384.000000\n" #: 01000000.xhp msgctxt "" @@ -14949,7 +14949,7 @@ "hd_id1000010\n" "help.text" msgid "This feature is experimental and may produce errors or behave unexpectedly. To enable it anyway, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME - Advanced and select Enable experimental features checkbox." -msgstr "Tato funkce je experimentální, může způsobovat chyby nebo se chovat nepÅ™edvídatelnÄ›. Chcete-li ji pÅ™esto povolit, zvolte %PRODUCTNAME - PÅ™edvolbyNástroje - Možnosti - %PRODUCTNAME - PokroÄilé a zaÅ¡krtnÄ›te pole Povolit experimentální funkce." +msgstr "Tato funkce je experimentální, může způsobovat chyby nebo se chovat nepÅ™edvídanÄ›. Chcete-li ji pÅ™esto povolit, zvolte %PRODUCTNAME - PÅ™edvolbyNástroje - Možnosti - %PRODUCTNAME - PokroÄilé a zaÅ¡krtnÄ›te pole Povolit experimentální funkce." #: expertconfig.xhp msgctxt "" @@ -15053,7 +15053,7 @@ "par_id0609201523011650\n" "help.text" msgid "List the preferences organized hierarchically in a tree layout. To open the branches, double click in the (+) sign. Once the preference is visible in the tree, you can edit it." -msgstr "Ve stromovém rozvržení zobrazuje hierarchicky organizovaný seznam pÅ™edvoleb. Jednotlivé vÄ›tve otevÅ™ete poklepáním na znaménko (+). Jakmile je ve stromu zobrazena pÅ™edvolba, lze ji upravit." +msgstr "Ve stromovém rozvržení zobrazuje hierarchicky seznam pÅ™edvoleb. Jednotlivé vÄ›tve otevÅ™ete poklepáním na znaménko (+). Jakmile je ve stromu pÅ™edvolba zobrazena, lze ji upravit." #: expertconfig.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/cs/helpcontent2/source/text/simpress/01.po libreoffice-5.1.2~rc2/translations/source/cs/helpcontent2/source/text/simpress/01.po --- libreoffice-5.1.1~rc2/translations/source/cs/helpcontent2/source/text/simpress/01.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/cs/helpcontent2/source/text/simpress/01.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "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-06 20:49+0000\n" +"PO-Revision-Date: 2016-02-26 18:40+0000\n" "Last-Translator: Stanislav HoráÄek \n" "Language-Team: LANGUAGE \n" "Language: cs\n" @@ -14,7 +14,7 @@ "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: 1454791779.000000\n" +"X-POOTLE-MTIME: 1456512055.000000\n" #: 01170000.xhp msgctxt "" @@ -3698,7 +3698,7 @@ "par_id3150398\n" "help.text" msgid "Opens the Styles and Formatting deck of the Sidebar, which lists the available graphic and presentation styles for applying and editing." -msgstr "OtevÅ™e kartu postranní liÅ¡ty Styly a formátování, ve které je možné používat a upravovat grafické styly a styly prezentace." +msgstr "OtevÅ™e na postranní liÅ¡tÄ› kartu Styly a formátování, ve které je možné používat a upravovat grafické styly a styly prezentace." #: 05100000.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/cs/helpcontent2/source/text/simpress/guide.po libreoffice-5.1.2~rc2/translations/source/cs/helpcontent2/source/text/simpress/guide.po --- libreoffice-5.1.1~rc2/translations/source/cs/helpcontent2/source/text/simpress/guide.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/cs/helpcontent2/source/text/simpress/guide.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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: 2016-01-21 17:02+0000\n" +"PO-Revision-Date: 2016-02-26 18:49+0000\n" "Last-Translator: Stanislav HoráÄek \n" "Language-Team: LANGUAGE \n" "Language: cs\n" @@ -14,7 +14,7 @@ "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: 1453395729.000000\n" +"X-POOTLE-MTIME: 1456512549.000000\n" #: 3d_create.xhp msgctxt "" @@ -1328,7 +1328,7 @@ "par_id1583300\n" "help.text" msgid "To edit a handout master, click the Handout tab above the slide. Click the Normal tab to leave the handout master." -msgstr "Chcete-li upravit pÅ™edlohu teze, klepnÄ›te na kartu Teze nad snímkem. Klepnutím na kartu Běžné opustíte pÅ™edlohu teze." +msgstr "Chcete-li upravit pÅ™edlohu podkladů, klepnÄ›te na kartu Podklady nad snímkem. PÅ™edlohu podkladů opustíte klepnutím na kartu Normální." #: footer.xhp msgctxt "" @@ -1384,7 +1384,7 @@ "par_id1876583\n" "help.text" msgid "You see a dialog with two tab pages: Slide and Notes and Handouts where you can enter contents to the predefined areas." -msgstr "OtevÅ™e se dialogové okno s dvÄ›ma kartami: Snímek a Poznámky a teze , ve kterých můžete upravit obsah pÅ™eddefinovaných oblastí." +msgstr "OtevÅ™e se dialogové okno se dvÄ›ma kartami: Snímek a Poznámky a podklady, ve kterých můžete upravit obsah pÅ™eddefinovaných oblastí." #: footer.xhp msgctxt "" @@ -2038,7 +2038,7 @@ "57\n" "help.text" msgid "To hide several slides, choose View - Slide Sorter, and then select the slide(s) that you want to hide." -msgstr "Více snímků najednou skryjete tím, že zvolíte Zobrazit - PoÅ™adaÄ snímků a poté vyberte snímky, které si pÅ™ejete skrýt." +msgstr "Více snímků najednou skryjete tím, že zvolíte Zobrazit - PoÅ™adaÄ snímků a poté vyberete snímky, které si pÅ™ejete skrýt." #: individual.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/cs/helpcontent2/source/text/swriter/01.po libreoffice-5.1.2~rc2/translations/source/cs/helpcontent2/source/text/swriter/01.po --- libreoffice-5.1.1~rc2/translations/source/cs/helpcontent2/source/text/swriter/01.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/cs/helpcontent2/source/text/swriter/01.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-29 20:35+0000\n" +"PO-Revision-Date: 2016-02-26 19:10+0000\n" "Last-Translator: Stanislav HoráÄek \n" "Language-Team: LANGUAGE \n" "Language: cs\n" @@ -14,7 +14,7 @@ "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: 1454099747.000000\n" +"X-POOTLE-MTIME: 1456513806.000000\n" #: 01120000.xhp msgctxt "" @@ -2551,7 +2551,7 @@ "par_id3153668\n" "help.text" msgid "To change the view between field names and field contents in your document, choose View - Fields." -msgstr "Chcete-li pÅ™epnout mezi zobrazením názvů a obsahu polí v dokumentu, zvolte Zobrazit - Názvy polí." +msgstr "Chcete-li v dokumentu pÅ™epnout mezi zobrazením názvů a obsahu polí, zvolte Zobrazit - Názvy polí." #: 02140000.xhp msgctxt "" @@ -3255,7 +3255,7 @@ "par_id3155919\n" "help.text" msgid "Deletes the selected entry from the index. The entry text in the document is not deleted." -msgstr "Smaže vybranou položku z rejstříku. Text položky z dokumentu není odstranÄ›n." +msgstr "Smaže vybranou položku rejstříku. Text položky z dokumentu není odstranÄ›n." #: 02160000.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/cs/helpcontent2/source/text/swriter/02.po libreoffice-5.1.2~rc2/translations/source/cs/helpcontent2/source/text/swriter/02.po --- libreoffice-5.1.1~rc2/translations/source/cs/helpcontent2/source/text/swriter/02.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/cs/helpcontent2/source/text/swriter/02.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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-05 19:36+0000\n" +"PO-Revision-Date: 2016-02-26 19:20+0000\n" "Last-Translator: Stanislav HoráÄek \n" "Language-Team: LANGUAGE \n" "Language: cs\n" @@ -14,7 +14,7 @@ "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: 1452022590.000000\n" +"X-POOTLE-MTIME: 1456514412.000000\n" #: 02110000.xhp msgctxt "" @@ -3518,7 +3518,7 @@ "3\n" "help.text" msgid "If you would like to define a different format or modify the page number, insert a field with Insert - Fields - More Fields and make the desired settings in the Fields dialog. It is also possible to edit a field inserted with the Page Numbers command with Edit - Fields. To change page numbers, read the Page Numbers guide." -msgstr "Pokud chcete urÄit jiný formát nebo upravit Äíslo stránky, zvolte Vložit - Pole - Další pole a v dialogovém oknÄ› Pole proveÄte nastavení podle potÅ™eby. Existující pole můžete kdykoliv zmÄ›nit pomocí příkazu Úpravy - Pole. O zmÄ›nÄ› Äísel stránek se doÄtete v Äásti Čísla stránek." +msgstr "Pokud chcete urÄit jiný formát nebo upravit Äíslo stránky, zvolte Vložit - Pole - Další pole a v dialogovém oknÄ› Pole proveÄte nastavení podle potÅ™eby. Existující pole můžete kdykoliv zmÄ›nit pomocí příkazu Úpravy - Pole. O zmÄ›nÄ› Äísel stránek se doÄtete v Äásti Čísla stránek." #: 18030400.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/cs/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-5.1.2~rc2/translations/source/cs/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-5.1.1~rc2/translations/source/cs/officecfg/registry/data/org/openoffice/Office/UI.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/cs/officecfg/registry/data/org/openoffice/Office/UI.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-29 20:58+0000\n" +"PO-Revision-Date: 2016-02-27 16:22+0000\n" "Last-Translator: Stanislav HoráÄek \n" "Language-Team: LANGUAGE \n" "Language: cs\n" @@ -14,7 +14,7 @@ "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: 1454101133.000000\n" +"X-POOTLE-MTIME: 1456590143.000000\n" #: BaseWindowState.xcu msgctxt "" @@ -473,7 +473,7 @@ "Label\n" "value.text" msgid "Choose Themes" -msgstr "VýbÄ›r témat" +msgstr "Zvolit motiv vzhledu" #: CalcCommands.xcu msgctxt "" @@ -11732,7 +11732,7 @@ "Label\n" "value.text" msgid "Smoothly" -msgstr "Plynulý" +msgstr "Plynule" #: Effects.xcu msgctxt "" @@ -11822,7 +11822,7 @@ "Label\n" "value.text" msgid "Vertical" -msgstr "Svislý" +msgstr "Svisle" #: Effects.xcu msgctxt "" @@ -11831,7 +11831,7 @@ "Label\n" "value.text" msgid "Horizontal" -msgstr "Vodorovný" +msgstr "VodorovnÄ›" #: Effects.xcu msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/cs/sc/uiconfig/scalc/ui.po libreoffice-5.1.2~rc2/translations/source/cs/sc/uiconfig/scalc/ui.po --- libreoffice-5.1.1~rc2/translations/source/cs/sc/uiconfig/scalc/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/cs/sc/uiconfig/scalc/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 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-01-27 20:26+0000\n" +"PO-Revision-Date: 2016-02-25 21:22+0000\n" "Last-Translator: Stanislav HoráÄek \n" "Language-Team: none\n" "Language: cs\n" @@ -14,7 +14,7 @@ "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: 1453926370.000000\n" +"X-POOTLE-MTIME: 1456435370.000000\n" #: advancedfilterdialog.ui msgctxt "" @@ -383,7 +383,7 @@ "label\n" "string.text" msgid "_Protected" -msgstr "Zamknuto" +msgstr "Za_mknuto" #: cellprotectionpage.ui msgctxt "" @@ -392,7 +392,7 @@ "label\n" "string.text" msgid "Hide _formula" -msgstr "Skrýt vzorec" +msgstr "Skrýt _vzorec" #: cellprotectionpage.ui msgctxt "" @@ -401,7 +401,7 @@ "label\n" "string.text" msgid "Hide _all" -msgstr "Skrýt vÅ¡e" +msgstr "_Skrýt vÅ¡e" #: cellprotectionpage.ui msgctxt "" @@ -434,7 +434,7 @@ "label\n" "string.text" msgid "Hide _when printing" -msgstr "Skrýt pÅ™i tisku" +msgstr "Skrýt pÅ™i _tisku" #: cellprotectionpage.ui msgctxt "" @@ -1127,7 +1127,7 @@ "label\n" "string.text" msgid "_Top row" -msgstr "Záhlaví" +msgstr "Zá_hlaví" #: createnamesdialog.ui msgctxt "" @@ -1136,7 +1136,7 @@ "label\n" "string.text" msgid "_Left column" -msgstr "Levý sloupec" +msgstr "_Levý sloupec" #: createnamesdialog.ui msgctxt "" @@ -1145,7 +1145,7 @@ "label\n" "string.text" msgid "_Bottom row" -msgstr "Zápatí" +msgstr "Zá_patí" #: createnamesdialog.ui msgctxt "" @@ -1154,7 +1154,7 @@ "label\n" "string.text" msgid "_Right column" -msgstr "Pravý sloupec" +msgstr "P_ravý sloupec" #: createnamesdialog.ui msgctxt "" @@ -1937,7 +1937,7 @@ "label\n" "string.text" msgid "_New" -msgstr "Nový" +msgstr "No_vý" #: dataform.ui msgctxt "" @@ -1955,7 +1955,7 @@ "label\n" "string.text" msgid "_Restore" -msgstr "Obnovit" +msgstr "O_bnovit" #: dataform.ui msgctxt "" @@ -1964,7 +1964,7 @@ "label\n" "string.text" msgid "_Previous Record" -msgstr "PÅ™edchozí záznam" +msgstr "_PÅ™edchozí záznam" #: dataform.ui msgctxt "" @@ -1973,7 +1973,7 @@ "label\n" "string.text" msgid "Ne_xt Record" -msgstr "Další záznam" +msgstr "_Další záznam" #: dataform.ui msgctxt "" @@ -1982,7 +1982,7 @@ "label\n" "string.text" msgid "_Close" -msgstr "Zavřít" +msgstr "_Zavřít" #: datastreams.ui msgctxt "" @@ -2027,7 +2027,7 @@ "label\n" "string.text" msgid "_Browse..." -msgstr "Procházet..." +msgstr "_Procházet..." #: datastreams.ui msgctxt "" @@ -3575,7 +3575,7 @@ "label\n" "string.text" msgid "_Left area" -msgstr "Vlevo" +msgstr "V_levo" #: headerfootercontent.ui msgctxt "" @@ -3584,7 +3584,7 @@ "label\n" "string.text" msgid "_Center area" -msgstr "UprostÅ™ed" +msgstr "_UprostÅ™ed" #: headerfootercontent.ui msgctxt "" @@ -3593,7 +3593,7 @@ "label\n" "string.text" msgid "R_ight area" -msgstr "Vpravo" +msgstr "V_pravo" #: headerfootercontent.ui msgctxt "" @@ -3602,7 +3602,7 @@ "label\n" "string.text" msgid "_Header" -msgstr "Záhlaví" +msgstr "Zá_hlaví" #: headerfootercontent.ui msgctxt "" @@ -3611,7 +3611,7 @@ "label\n" "string.text" msgid "_Footer" -msgstr "Zápatí" +msgstr "Zápa_tí" #: headerfootercontent.ui msgctxt "" @@ -4664,7 +4664,7 @@ "label\n" "string.text" msgid "_Decimal places:" -msgstr "Desetinná místa:" +msgstr "_Desetinná místa:" #: optcalculatepage.ui msgctxt "" @@ -6293,7 +6293,7 @@ "label\n" "string.text" msgid "P_rotect this sheet and the contents of protected cells" -msgstr "Uzamknout tento list a obsah uzamÄených bunÄ›k" +msgstr "_Uzamknout tento list a obsah uzamÄených bunÄ›k" #: protectsheetdlg.ui msgctxt "" @@ -6653,7 +6653,7 @@ "title\n" "string.text" msgid "Re-type Password" -msgstr "_Zadejte heslo znovu" +msgstr "Zadejte heslo znovu" #: retypepassdialog.ui msgctxt "" @@ -6707,7 +6707,7 @@ "title\n" "string.text" msgid "Re-type Password" -msgstr "_Zadejte heslo znovu" +msgstr "Zadejte heslo znovu" #: retypepassworddialog.ui msgctxt "" @@ -6716,7 +6716,7 @@ "label\n" "string.text" msgid "Re-type password" -msgstr "_Zadejte heslo znovu" +msgstr "Zadejte heslo znovu" #: retypepassworddialog.ui msgctxt "" @@ -7454,7 +7454,7 @@ "label\n" "string.text" msgid "_Share this spreadsheet with other users" -msgstr "Sdílet tento seÅ¡it s dalšími uživateli" +msgstr "_Sdílet tento seÅ¡it s dalšími uživateli" #: sharedocumentdlg.ui msgctxt "" @@ -7913,7 +7913,7 @@ "label\n" "string.text" msgid "Text _orientation:" -msgstr "Orientace textu:" +msgstr "_Orientace textu:" #: sidebaralignment.ui msgctxt "" @@ -8183,7 +8183,7 @@ "label\n" "string.text" msgid "_Decimal places:" -msgstr "Desetinná místa:" +msgstr "_Desetinná místa:" #: sidebarnumberformat.ui msgctxt "" @@ -8264,7 +8264,7 @@ "label\n" "string.text" msgid "_Thousands separator" -msgstr "OddÄ›lovaÄ tisíců" +msgstr "OddÄ›lovaÄ _tisíců" #: sidebarnumberformat.ui msgctxt "" @@ -8318,7 +8318,7 @@ "label\n" "string.text" msgid "O_ptions..." -msgstr "Možnosti..." +msgstr "_Možnosti..." #: solverdlg.ui msgctxt "" @@ -8327,7 +8327,7 @@ "label\n" "string.text" msgid "_Solve" -msgstr "ŘeÅ¡it" +msgstr "Ř_eÅ¡it" #: solverdlg.ui msgctxt "" @@ -8336,7 +8336,7 @@ "label\n" "string.text" msgid "_Target cell" -msgstr "Cílová buňka" +msgstr "_Cílová buňka" #: solverdlg.ui msgctxt "" @@ -8354,7 +8354,7 @@ "label\n" "string.text" msgid "_By changing cells" -msgstr "ZmÄ›nou bunÄ›k" +msgstr "ZmÄ›nou _bunÄ›k" #: solverdlg.ui msgctxt "" @@ -8363,7 +8363,7 @@ "label\n" "string.text" msgid "Minim_um" -msgstr "Minimum" +msgstr "Minim_um" #: solverdlg.ui msgctxt "" @@ -8372,7 +8372,7 @@ "label\n" "string.text" msgid "_Maximum" -msgstr "Maximum" +msgstr "Ma_ximum" #: solverdlg.ui msgctxt "" @@ -8381,7 +8381,7 @@ "label\n" "string.text" msgid "_Value of" -msgstr "Hodnota" +msgstr "_Hodnota" #: solverdlg.ui msgctxt "" @@ -8390,7 +8390,7 @@ "label\n" "string.text" msgid "_Cell reference" -msgstr "Odkaz na buňku" +msgstr "_Odkaz na buňku" #: solverdlg.ui msgctxt "" @@ -8399,7 +8399,7 @@ "label\n" "string.text" msgid "_Operator" -msgstr "Operátor" +msgstr "O_perátor" #: solverdlg.ui msgctxt "" @@ -8408,7 +8408,7 @@ "label\n" "string.text" msgid "V_alue" -msgstr "Hodnota" +msgstr "Ho_dnota" #: solverdlg.ui msgctxt "" @@ -8822,7 +8822,7 @@ "label\n" "string.text" msgid "_Ascending" -msgstr "VzestupnÄ›" +msgstr "_VzestupnÄ›" #: sortkey.ui msgctxt "" @@ -8831,7 +8831,7 @@ "label\n" "string.text" msgid "_Descending" -msgstr "SestupnÄ›" +msgstr "_SestupnÄ›" #: sortkey.ui msgctxt "" @@ -8849,7 +8849,7 @@ "label\n" "string.text" msgid "Case _sensitive" -msgstr "RozliÅ¡ovat velikost písmen" +msgstr "_RozliÅ¡ovat velikost písmen" #: sortoptionspage.ui msgctxt "" @@ -8930,7 +8930,7 @@ "label\n" "string.text" msgid "_Top to bottom (sort rows)" -msgstr "Shora dolů (seÅ™adit řádky)" +msgstr "_Shora dolů (seÅ™adit řádky)" #: sortoptionspage.ui msgctxt "" @@ -8939,7 +8939,7 @@ "label\n" "string.text" msgid "L_eft to right (sort columns)" -msgstr "Zleva doprava (seÅ™adit sloupce)" +msgstr "Zleva _doprava (seÅ™adit sloupce)" #: sortoptionspage.ui msgctxt "" @@ -8975,7 +8975,7 @@ "label\n" "string.text" msgid "_Extend selection" -msgstr "Rozšířený výbÄ›r" +msgstr "_Rozšířit výbÄ›r" #: sortwarning.ui msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/cs/scp2/source/calc.po libreoffice-5.1.2~rc2/translations/source/cs/scp2/source/calc.po --- libreoffice-5.1.1~rc2/translations/source/cs/scp2/source/calc.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/cs/scp2/source/calc.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,18 +3,18 @@ msgstr "" "Project-Id-Version: PACKAGE 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-12-06 22:31+0000\n" -"Last-Translator: Stanislav \n" +"POT-Creation-Date: 2015-04-22 23:41+0200\n" +"PO-Revision-Date: 2016-02-26 21:24+0000\n" +"Last-Translator: Stanislav HoráÄek \n" "Language-Team: LANGUAGE \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: 1386369068.0\n" +"X-POOTLE-MTIME: 1456521860.000000\n" #: folderitem_calc.ulf msgctxt "" @@ -102,7 +102,7 @@ "STR_REG_VAL_NEW\n" "LngText.text" msgid "&New" -msgstr "Nový" +msgstr "&Nový" #: registryitem_calc.ulf msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/cs/scp2/source/draw.po libreoffice-5.1.2~rc2/translations/source/cs/scp2/source/draw.po --- libreoffice-5.1.1~rc2/translations/source/cs/scp2/source/draw.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/cs/scp2/source/draw.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,18 +3,18 @@ msgstr "" "Project-Id-Version: PACKAGE 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-12-06 22:31+0000\n" -"Last-Translator: Stanislav \n" +"POT-Creation-Date: 2015-04-22 23:41+0200\n" +"PO-Revision-Date: 2016-02-26 21:24+0000\n" +"Last-Translator: Stanislav HoráÄek \n" "Language-Team: LANGUAGE \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: 1386369076.0\n" +"X-POOTLE-MTIME: 1456521867.000000\n" #: folderitem_draw.ulf msgctxt "" @@ -86,7 +86,7 @@ "STR_REG_VAL_NEW\n" "LngText.text" msgid "&New" -msgstr "Nový" +msgstr "&Nový" #: registryitem_draw.ulf msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/cs/scp2/source/math.po libreoffice-5.1.2~rc2/translations/source/cs/scp2/source/math.po --- libreoffice-5.1.1~rc2/translations/source/cs/scp2/source/math.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/cs/scp2/source/math.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,18 +3,18 @@ msgstr "" "Project-Id-Version: PACKAGE 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-12-06 22:31+0000\n" -"Last-Translator: Stanislav \n" +"POT-Creation-Date: 2015-04-22 23:41+0200\n" +"PO-Revision-Date: 2016-02-26 21:24+0000\n" +"Last-Translator: Stanislav HoráÄek \n" "Language-Team: LANGUAGE \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: 1386369089.0\n" +"X-POOTLE-MTIME: 1456521872.000000\n" #: folderitem_math.ulf msgctxt "" @@ -78,7 +78,7 @@ "STR_REG_VAL_NEW\n" "LngText.text" msgid "&New" -msgstr "Nový" +msgstr "&Nový" #: registryitem_math.ulf msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/cs/scp2/source/ooo.po libreoffice-5.1.2~rc2/translations/source/cs/scp2/source/ooo.po --- libreoffice-5.1.1~rc2/translations/source/cs/scp2/source/ooo.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/cs/scp2/source/ooo.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,17 +4,17 @@ "Project-Id-Version: PACKAGE VERSION\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-14 08:50+0000\n" -"Last-Translator: Stanislav \n" +"PO-Revision-Date: 2016-02-26 21:24+0000\n" +"Last-Translator: Stanislav HoráÄek \n" "Language-Team: LANGUAGE \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: 1431593437.000000\n" +"X-POOTLE-MTIME: 1456521878.000000\n" #: folderitem_ooo.ulf msgctxt "" @@ -4526,7 +4526,7 @@ "STR_REG_VAL_INSTALL\n" "LngText.text" msgid "&Install" -msgstr "Instalovat" +msgstr "&Instalovat" #: registryitem_ooo.ulf msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/cs/scp2/source/writer.po libreoffice-5.1.2~rc2/translations/source/cs/scp2/source/writer.po --- libreoffice-5.1.1~rc2/translations/source/cs/scp2/source/writer.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/cs/scp2/source/writer.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,18 +3,18 @@ msgstr "" "Project-Id-Version: PACKAGE 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-12-06 22:31+0000\n" -"Last-Translator: Stanislav \n" +"POT-Creation-Date: 2015-04-22 23:41+0200\n" +"PO-Revision-Date: 2016-02-26 21:24+0000\n" +"Last-Translator: Stanislav HoráÄek \n" "Language-Team: LANGUAGE \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: 1386369106.0\n" +"X-POOTLE-MTIME: 1456521884.000000\n" #: folderitem_writer.ulf msgctxt "" @@ -110,7 +110,7 @@ "STR_REG_VAL_NEW\n" "LngText.text" msgid "&New" -msgstr "Nový" +msgstr "&Nový" #: registryitem_writer.ulf msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/cs/sd/source/ui/animations.po libreoffice-5.1.2~rc2/translations/source/cs/sd/source/ui/animations.po --- libreoffice-5.1.1~rc2/translations/source/cs/sd/source/ui/animations.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/cs/sd/source/ui/animations.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "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: 2015-11-16 21:00+0000\n" +"PO-Revision-Date: 2016-02-26 21:29+0000\n" "Last-Translator: Stanislav HoráÄek \n" "Language-Team: LANGUAGE \n" "Language: cs\n" @@ -14,7 +14,7 @@ "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: 1447707644.000000\n" +"X-POOTLE-MTIME: 1456522148.000000\n" #: CustomAnimation.src msgctxt "" @@ -23,7 +23,7 @@ "CM_WITH_CLICK\n" "menuitem.text" msgid "Start On ~Click" -msgstr "Spustit po kliknutí" +msgstr "Spustit pÅ™i ~kliknutí" #: CustomAnimation.src msgctxt "" @@ -32,7 +32,7 @@ "CM_WITH_PREVIOUS\n" "menuitem.text" msgid "Start ~With Previous" -msgstr "Spustit s pÅ™edcházejícím" +msgstr "Spustit ~s pÅ™edcházejícím" #: CustomAnimation.src msgctxt "" @@ -41,7 +41,7 @@ "CM_AFTER_PREVIOUS\n" "menuitem.text" msgid "Start ~After Previous" -msgstr "Spustit po pÅ™edcházejícím" +msgstr "Spustit ~po pÅ™edcházejícím" #: CustomAnimation.src msgctxt "" @@ -50,7 +50,7 @@ "CM_OPTIONS\n" "menuitem.text" msgid "~Effect Options..." -msgstr "Možnosti efektů..." +msgstr "~Možnosti efektů..." #: CustomAnimation.src msgctxt "" @@ -59,7 +59,7 @@ "CM_DURATION\n" "menuitem.text" msgid "~Timing..." -msgstr "ÄŒasování..." +msgstr "ÄŒ~asování..." #: CustomAnimation.src msgctxt "" @@ -68,7 +68,7 @@ "CM_REMOVE\n" "menuitem.text" msgid "~Remove" -msgstr "Odstranit" +msgstr "O~dstranit" #: CustomAnimation.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/cs/sd/source/ui/annotations.po libreoffice-5.1.2~rc2/translations/source/cs/sd/source/ui/annotations.po --- libreoffice-5.1.1~rc2/translations/source/cs/sd/source/ui/annotations.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/cs/sd/source/ui/annotations.po 2016-03-29 15:38:48.000000000 +0000 @@ -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: 2012-01-27 00:04+0200\n" -"Last-Translator: JindÅ™ich \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-26 21:32+0000\n" +"Last-Translator: Stanislav HoráÄek \n" "Language-Team: LANGUAGE \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: 1456522326.000000\n" #: annotations.src msgctxt "" @@ -22,7 +23,7 @@ "SID_REPLYTO_POSTIT\n" "menuitem.text" msgid "~Reply" -msgstr "OdpovÄ›Ä" +msgstr "~OdpovÄ›Ä" #: annotations.src msgctxt "" @@ -31,7 +32,7 @@ "SID_ATTR_CHAR_WEIGHT\n" "menuitem.text" msgid "~Bold" -msgstr "TuÄné" +msgstr "~TuÄné" #: annotations.src msgctxt "" @@ -40,7 +41,7 @@ "SID_ATTR_CHAR_POSTURE\n" "menuitem.text" msgid "~Italic" -msgstr "Kurzíva" +msgstr "~Kurzíva" #: annotations.src msgctxt "" @@ -49,7 +50,7 @@ "SID_ATTR_CHAR_UNDERLINE\n" "menuitem.text" msgid "~Underline" -msgstr "Podtržené" +msgstr "~Podtržené" #: annotations.src msgctxt "" @@ -58,7 +59,7 @@ "SID_ATTR_CHAR_STRIKEOUT\n" "menuitem.text" msgid "~Strikethrough" -msgstr "PÅ™eÅ¡krtnutí" +msgstr "PÅ™~eÅ¡krtnutí" #: annotations.src msgctxt "" @@ -67,7 +68,7 @@ "SID_COPY\n" "menuitem.text" msgid "~Copy" -msgstr "Kopírovat" +msgstr "~Kopírovat" #: annotations.src msgctxt "" @@ -76,7 +77,7 @@ "SID_PASTE\n" "menuitem.text" msgid "~Paste" -msgstr "Vložit" +msgstr "V~ložit" #: annotations.src msgctxt "" @@ -94,7 +95,7 @@ "SID_DELETEALLBYAUTHOR_POSTIT\n" "menuitem.text" msgid "Delete All Comments b~y %1" -msgstr "Smazat vÅ¡echny komentáře od %1" +msgstr "Smazat vÅ¡echny komentáře o~d %1" #: annotations.src msgctxt "" @@ -103,7 +104,7 @@ "SID_DELETEALL_POSTIT\n" "menuitem.text" msgid "Delete ~All Comments" -msgstr "Smazat vÅ¡echny komentáře" +msgstr "Smazat ~vÅ¡echny komentáře" #: annotations.src msgctxt "" @@ -112,7 +113,7 @@ "SID_REPLYTO_POSTIT\n" "menuitem.text" msgid "~Reply" -msgstr "OdpovÄ›Ä" +msgstr "~OdpovÄ›Ä" #: annotations.src msgctxt "" @@ -130,7 +131,7 @@ "SID_DELETEALLBYAUTHOR_POSTIT\n" "menuitem.text" msgid "Delete All Comments ~by %1" -msgstr "Smazat vÅ¡echny komentáře od %1" +msgstr "Smazat vÅ¡echny komentáře o~d %1" #: annotations.src msgctxt "" @@ -139,7 +140,7 @@ "SID_DELETEALL_POSTIT\n" "menuitem.text" msgid "Delete ~All Comments" -msgstr "Smazat vÅ¡echny komentáře" +msgstr "Smazat ~vÅ¡echny komentáře" #: annotations.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/cs/sd/source/ui/app.po libreoffice-5.1.2~rc2/translations/source/cs/sd/source/ui/app.po --- libreoffice-5.1.1~rc2/translations/source/cs/sd/source/ui/app.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/cs/sd/source/ui/app.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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" +"PO-Revision-Date: 2016-03-16 20:53+0000\n" "Last-Translator: Stanislav HoráÄek \n" "Language-Team: LANGUAGE \n" "Language: cs\n" @@ -14,7 +14,7 @@ "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: 1458161588.000000\n" #: menuids3_tmpl.src msgctxt "" @@ -23,7 +23,7 @@ "SID_CHANGEBEZIER\n" "menuitem.text" msgid "To ~Curve" -msgstr "Na kÅ™ivku" +msgstr "Na ~kÅ™ivku" #: menuids3_tmpl.src msgctxt "" @@ -32,7 +32,7 @@ "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 @@ "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 @@ "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 @@ "SID_CONVERT_TO_BITMAP\n" "menuitem.text" msgid "To ~Bitmap" -msgstr "Na rastr" +msgstr "Na ~rastr" #: menuids3_tmpl.src msgctxt "" @@ -68,7 +68,7 @@ "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 @@ "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 @@ "SID_VERTICAL\n" "menuitem.text" msgid "~Vertically" -msgstr "Svisle" +msgstr "~Svisle" #: menuids3_tmpl.src msgctxt "" @@ -95,7 +95,7 @@ "SID_HORIZONTAL\n" "menuitem.text" msgid "~Horizontally" -msgstr "VodorovnÄ›" +msgstr "~VodorovnÄ›" #: menuids3_tmpl.src msgctxt "" @@ -104,7 +104,7 @@ "SID_3D_WIN\n" "menuitem.text" msgid "~3D Effects" -msgstr "3D efekty" +msgstr "3D ~efekty" #: menuids3_tmpl.src msgctxt "" @@ -113,7 +113,7 @@ "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 @@ "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 @@ "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 @@ "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 @@ "SID_DISTRIBUTE_DLG\n" "menuitem.text" msgid "~Distribution..." -msgstr "Rozmístit..." +msgstr "~Rozmístit..." #: menuids_tmpl.src msgctxt "" @@ -167,7 +167,7 @@ "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 @@ "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 @@ "SID_SET_SNAPITEM\n" "menuitem.text" msgid "~Edit..." -msgstr "Upravit..." +msgstr "~Upravit..." #: menuids_tmpl.src msgctxt "" @@ -212,7 +212,7 @@ "SID_PAGESETUP\n" "menuitem.text" msgid "~Page Setup..." -msgstr "Nastavení stránky..." +msgstr "~Nastavení stránky..." #: menuids_tmpl.src msgctxt "" @@ -230,7 +230,7 @@ "SID_INSERTPAGE\n" "menuitem.text" msgid "~New Slide" -msgstr "Nový snímek" +msgstr "~Nový snímek" #: menuids_tmpl.src msgctxt "" @@ -239,7 +239,7 @@ "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 @@ "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 @@ "SID_INSERTPAGE\n" "menuitem.text" msgid "~New Page" -msgstr "Nová stránka" +msgstr "~Nová stránka" #: menuids_tmpl.src msgctxt "" @@ -284,7 +284,7 @@ "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 @@ "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 @@ "DUMMY+3\n" "menuitem.text" msgid "Pag~e" -msgstr "Stránka" +msgstr "~Stránka" #: menuids_tmpl.src msgctxt "" @@ -311,7 +311,7 @@ "DUMMY+8\n" "menuitem.text" msgid "Slid~e" -msgstr "Snímek" +msgstr "~Snímek" #: menuids_tmpl.src msgctxt "" @@ -320,7 +320,7 @@ "SID_RENAMELAYER\n" "menuitem.text" msgid "~Rename Layer..." -msgstr "PÅ™ejmenovat vrstvu..." +msgstr "~PÅ™ejmenovat vrstvu..." #: menuids_tmpl.src msgctxt "" @@ -329,7 +329,7 @@ "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 @@ "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 @@ "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 @@ "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 @@ "SID_ATTRIBUTES_LINE\n" "menuitem.text" msgid "L~ine..." -msgstr "Čára..." +msgstr "Čá~ra..." #: menuids_tmpl.src msgctxt "" @@ -392,7 +392,7 @@ "SID_ATTRIBUTES_AREA\n" "menuitem.text" msgid "~Area..." -msgstr "Oblast..." +msgstr "~Oblast..." #: menuids_tmpl.src msgctxt "" @@ -401,7 +401,7 @@ "SID_TEXTATTR_DLG\n" "menuitem.text" msgid "~Text..." -msgstr "Text..." +msgstr "~Text..." #: menuids_tmpl.src msgctxt "" @@ -419,7 +419,7 @@ "SID_CONNECTION_DLG\n" "menuitem.text" msgid "~Connector..." -msgstr "Spojnice..." +msgstr "Spojni~ce..." #: menuids_tmpl.src msgctxt "" @@ -428,7 +428,7 @@ "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 @@ "SID_MEASURE_DLG\n" "menuitem.text" msgid "Dimen~sions..." -msgstr "RozmÄ›ry..." +msgstr "~RozmÄ›ry..." #: menuids_tmpl.src msgctxt "" @@ -446,7 +446,7 @@ "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 @@ "SID_BEZIER_EDIT\n" "menuitem.text" msgid "Edit ~Points" -msgstr "Upravit body" +msgstr "Upravit ~body" #: menuids_tmpl.src msgctxt "" @@ -464,7 +464,7 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "SID_BEHIND_OBJ\n" "menuitem.text" msgid "Be~hind Object" -msgstr "Za objekt" +msgstr "~Za objekt" #: menuids_tmpl.src msgctxt "" @@ -518,7 +518,7 @@ "SID_REVERSE_ORDER\n" "menuitem.text" msgid "~Reverse" -msgstr "Prohodit" +msgstr "Pro~hodit" #: menuids_tmpl.src msgctxt "" @@ -527,7 +527,7 @@ "SID_POSITION\n" "menuitem.text" msgid "Arra~nge" -msgstr "Uspořádat" +msgstr "~Uspořádat" #: menuids_tmpl.src msgctxt "" @@ -536,7 +536,7 @@ "SID_CHAR_DLG\n" "menuitem.text" msgid "C~haracter..." -msgstr "Znak..." +msgstr "~Znak..." #: menuids_tmpl.src msgctxt "" @@ -545,7 +545,7 @@ "SID_PARA_DLG\n" "menuitem.text" msgid "P~aragraph..." -msgstr "Odstavec..." +msgstr "~Odstavec..." #: menuids_tmpl.src msgctxt "" @@ -554,7 +554,7 @@ "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 @@ "SID_OBJECT_ALIGN_LEFT\n" "menuitem.text" msgid "~Left" -msgstr "Vlevo" +msgstr "V~levo" #: menuids_tmpl.src msgctxt "" @@ -572,7 +572,7 @@ "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 @@ "SID_OBJECT_ALIGN_RIGHT\n" "menuitem.text" msgid "~Right" -msgstr "Vpravo" +msgstr "V~pravo" #: menuids_tmpl.src msgctxt "" @@ -590,7 +590,7 @@ "SID_OBJECT_ALIGN_UP\n" "menuitem.text" msgid "~Top" -msgstr "Nahoru" +msgstr "Na~horu" #: menuids_tmpl.src msgctxt "" @@ -599,7 +599,7 @@ "SID_OBJECT_ALIGN_MIDDLE\n" "menuitem.text" msgid "C~enter" -msgstr "StÅ™ed" +msgstr "~StÅ™ed" #: menuids_tmpl.src msgctxt "" @@ -608,7 +608,7 @@ "SID_OBJECT_ALIGN_DOWN\n" "menuitem.text" msgid "~Bottom" -msgstr "Dolů" +msgstr "~Dolů" #: menuids_tmpl.src msgctxt "" @@ -617,7 +617,7 @@ "SID_OBJECT_ALIGN\n" "menuitem.text" msgid "Al~ign" -msgstr "Zarovnat" +msgstr "~Zarovnat" #: menuids_tmpl.src msgctxt "" @@ -626,7 +626,7 @@ "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 @@ "SID_BEZIER_EDIT\n" "menuitem.text" msgid "Edit ~Points" -msgstr "Upravit body" +msgstr "Upravit ~body" #: menuids_tmpl.src msgctxt "" @@ -644,7 +644,7 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "SID_BEZIER_EDGE\n" "menuitem.text" msgid "~Corner" -msgstr "Roh" +msgstr "Ro~h" #: menuids_tmpl.src msgctxt "" @@ -707,7 +707,7 @@ "SID_BEZIER_SMOOTH\n" "menuitem.text" msgid "Smoot~h" -msgstr "Vyhladit" +msgstr "Vyhla~dit" #: menuids_tmpl.src msgctxt "" @@ -716,7 +716,7 @@ "SID_BEZIER_SYMMTR\n" "menuitem.text" msgid "S~ymmetric" -msgstr "Symetrický" +msgstr "~Symetrický" #: menuids_tmpl.src msgctxt "" @@ -725,7 +725,7 @@ "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 @@ "SID_GROUP\n" "menuitem.text" msgid "~Group" -msgstr "Seskupit" +msgstr "~Seskupit" #: menuids_tmpl.src msgctxt "" @@ -743,7 +743,7 @@ "SID_UNGROUP\n" "menuitem.text" msgid "~Ungroup" -msgstr "ZruÅ¡it skupinu" +msgstr "ZruÅ¡it ~skupinu" #: menuids_tmpl.src msgctxt "" @@ -752,7 +752,7 @@ "SID_COMBINE\n" "menuitem.text" msgid "Comb~ine" -msgstr "Složit" +msgstr "Složi~t" #: menuids_tmpl.src msgctxt "" @@ -761,7 +761,7 @@ "SID_DISMANTLE\n" "menuitem.text" msgid "~Split" -msgstr "RozdÄ›lit" +msgstr "RozdÄ›li~t" #: menuids_tmpl.src msgctxt "" @@ -770,7 +770,7 @@ "SID_ENTER_GROUP\n" "menuitem.text" msgid "~Enter Group" -msgstr "Upravit skupinu" +msgstr "Upravit skupi~nu" #: menuids_tmpl.src msgctxt "" @@ -779,7 +779,7 @@ "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 @@ "SID_ANIMATION_EFFECTS\n" "menuitem.text" msgid "Int~eraction..." -msgstr "Interakce..." +msgstr "~Interakce..." #: menuids_tmpl.src msgctxt "" @@ -815,7 +815,7 @@ "SID_PRESENTATIONOBJECT\n" "menuitem.text" msgid "Presentation ~Object..." -msgstr "PrezentaÄní objekt..." +msgstr "PrezentaÄní ~objekt..." #: menuids_tmpl.src msgctxt "" @@ -833,7 +833,7 @@ "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 @@ "SID_FONTWORK\n" "menuitem.text" msgid "F~ontwork" -msgstr "Písmomalba" +msgstr "Písmo~malba" #: menuids_tmpl.src msgctxt "" @@ -851,7 +851,7 @@ "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 @@ "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 @@ "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 @@ "SID_GLUE_ESCDIR_LEFT\n" "menuitem.text" msgid "~Left" -msgstr "Vlevo" +msgstr "V~levo" #: menuids_tmpl.src msgctxt "" @@ -887,7 +887,7 @@ "SID_GLUE_ESCDIR_TOP\n" "menuitem.text" msgid "~Top" -msgstr "Nahoru" +msgstr "Na~horu" #: menuids_tmpl.src msgctxt "" @@ -896,7 +896,7 @@ "SID_GLUE_ESCDIR_RIGHT\n" "menuitem.text" msgid "~Right" -msgstr "Vpravo" +msgstr "V~pravo" #: menuids_tmpl.src msgctxt "" @@ -905,7 +905,7 @@ "SID_GLUE_ESCDIR_BOTTOM\n" "menuitem.text" msgid "~Bottom" -msgstr "Dolů" +msgstr "~Dolů" #: menuids_tmpl.src msgctxt "" @@ -914,7 +914,7 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "DUMMY+5\n" "menuitem.text" msgid "~Grid" -msgstr "Mřížka" +msgstr "~Mřížka" #: menuids_tmpl.src msgctxt "" @@ -1022,7 +1022,7 @@ "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 @@ "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 @@ "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 @@ "DUMMY+6\n" "menuitem.text" msgid "~Snap Lines" -msgstr "Vodítka" +msgstr "Vo~dítka" #: menuids_tmpl.src msgctxt "" @@ -1058,7 +1058,7 @@ "SID_CONVERT\n" "menuitem.text" msgid "Con~vert" -msgstr "PÅ™evést" +msgstr "PÅ™~evést" #: menuids_tmpl.src msgctxt "" @@ -1067,7 +1067,7 @@ "SID_MIRROR\n" "menuitem.text" msgid "~Flip" -msgstr "PÅ™eklopit" +msgstr "~PÅ™eklopit" #: menuids_tmpl.src msgctxt "" @@ -1076,7 +1076,7 @@ "SID_CONNECT\n" "menuitem.text" msgid "C~onnect" -msgstr "Spojit" +msgstr "Spo~jit" #: menuids_tmpl.src msgctxt "" @@ -1085,7 +1085,7 @@ "SID_BREAK\n" "menuitem.text" msgid "~Break" -msgstr "Rozpojit" +msgstr "Rozpoj~it" #: menuids_tmpl.src msgctxt "" @@ -1274,7 +1274,7 @@ "SID_INSERTLAYER\n" "menuitem.text" msgid "~Insert Layer..." -msgstr "Vložit vrstvu..." +msgstr "Vl~ožit vrstvu..." #: popup.src msgctxt "" @@ -1283,7 +1283,7 @@ "SID_MODIFYLAYER\n" "menuitem.text" msgid "Modify La~yer..." -msgstr "Upravit vrstvu..." +msgstr "~Upravit vrstvu..." #: popup.src msgctxt "" @@ -1292,7 +1292,7 @@ "SID_DELETE_LAYER\n" "menuitem.text" msgid "Delete ~Layer..." -msgstr "Smazat vrstvu..." +msgstr "S~mazat vrstvu..." #: popup.src msgctxt "" @@ -1400,7 +1400,7 @@ "SID_FORMAT_TABLE_DLG\n" "menuitem.text" msgid "~Table..." -msgstr "Tabulka..." +msgstr "~Tabulka..." #: popup2_tmpl.src msgctxt "" @@ -1409,7 +1409,7 @@ "SID_TABLE_MERGE_CELLS\n" "menuitem.text" msgid "~Merge" -msgstr "SlouÄit" +msgstr "S~louÄit" #: popup2_tmpl.src msgctxt "" @@ -1418,7 +1418,7 @@ "SID_TABLE_SPLIT_CELLS\n" "menuitem.text" msgid "~Split..." -msgstr "RozdÄ›lit..." +msgstr "~RozdÄ›lit..." #: popup2_tmpl.src msgctxt "" @@ -1427,7 +1427,7 @@ "SID_TABLE_VERT_NONE\n" "menuitem.text" msgid "~Top" -msgstr "Nahoru" +msgstr "~Nahoru" #: popup2_tmpl.src msgctxt "" @@ -1436,7 +1436,7 @@ "SID_TABLE_VERT_CENTER\n" "menuitem.text" msgid "C~enter" -msgstr "StÅ™ed" +msgstr "~StÅ™ed" #: popup2_tmpl.src msgctxt "" @@ -1445,7 +1445,7 @@ "SID_TABLE_VERT_BOTTOM\n" "menuitem.text" msgid "~Bottom" -msgstr "Dolů" +msgstr "~Dolů" #: popup2_tmpl.src msgctxt "" @@ -1454,7 +1454,7 @@ "DUMMY+10\n" "menuitem.text" msgid "~Cell" -msgstr "Buňka" +msgstr "~Buňka" #: popup2_tmpl.src msgctxt "" @@ -1463,7 +1463,7 @@ "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 @@ "SID_TABLE_SELECT_ROW\n" "menuitem.text" msgid "~Select" -msgstr "Vybrat" +msgstr "~Vybrat" #: popup2_tmpl.src msgctxt "" @@ -1481,7 +1481,7 @@ "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 @@ "DUMMY+11\n" "menuitem.text" msgid "~Row" -msgstr "Řádek" +msgstr "Řá~dek" #: popup2_tmpl.src msgctxt "" @@ -1508,7 +1508,7 @@ "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 @@ "SID_TABLE_SELECT_COL\n" "menuitem.text" msgid "~Select" -msgstr "Vybrat" +msgstr "~Vybrat" #: popup2_tmpl.src msgctxt "" @@ -1526,7 +1526,7 @@ "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 @@ "DUMMY+12\n" "menuitem.text" msgid "Colu~mn" -msgstr "Sloupec" +msgstr "~Sloupec" #: res_bmp.src msgctxt "" @@ -2126,7 +2126,7 @@ "STR_DISPLAYMODE_MASTERMODES\n" "string.text" msgid "Master Modes" -msgstr "Režimy pÅ™edloh" +msgstr "Režimy pÅ™edlohy" #: strings.src msgctxt "" @@ -2496,7 +2496,7 @@ "STR_EDIT_OBJ\n" "string.text" msgid "~Edit" -msgstr "Upravit" +msgstr "~Upravit" #: strings.src msgctxt "" @@ -2676,7 +2676,7 @@ "STR_PLAY\n" "string.text" msgid "~Play" -msgstr "PÅ™ehrát" +msgstr "PÅ™e~hrát" #: strings.src msgctxt "" @@ -2684,7 +2684,7 @@ "STR_STOP\n" "string.text" msgid "Sto~p" -msgstr "Zastavit" +msgstr "~Zastavit" #: strings.src msgctxt "" @@ -2864,7 +2864,7 @@ "STR_EFFECTDLG_ACTION\n" "string.text" msgid "Act~ion" -msgstr "ÄŒinnost" +msgstr "ÄŒi~nnost" #: strings.src msgctxt "" @@ -3792,7 +3792,7 @@ "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 @@ "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 -Nru libreoffice-5.1.1~rc2/translations/source/cs/sd/source/ui/view.po libreoffice-5.1.2~rc2/translations/source/cs/sd/source/ui/view.po --- libreoffice-5.1.1~rc2/translations/source/cs/sd/source/ui/view.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/cs/sd/source/ui/view.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\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 \n" +"PO-Revision-Date: 2016-03-07 23:00+0000\n" +"Last-Translator: system user <>\n" "Language-Team: LANGUAGE \n" "Language: cs\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "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 @@ "_STR_IMPRESS_PRINT_UI_INCLUDE_CONTENT\n" "string.text" msgid "~Contents" -msgstr "Obsah" +msgstr "~Obsah" #: DocumentRenderer.src msgctxt "" @@ -203,7 +203,7 @@ "_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 @@ "_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 @@ "_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 @@ "_STR_IMPRESS_PRINT_UI_PAGE_OPTIONS\n" "string.text" msgid "~Size" -msgstr "Velikost" +msgstr "~Velikost" #: DocumentRenderer.src msgctxt "" @@ -428,7 +428,7 @@ "_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 @@ "~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 @@ "~Slides\n" "itemlist.text" msgid "~Slides" -msgstr "Snímky" +msgstr "~Snímky" #: DocumentRenderer.src msgctxt "" @@ -464,7 +464,7 @@ "Se~lection\n" "itemlist.text" msgid "Se~lection" -msgstr "VýbÄ›r" +msgstr "Vý~bÄ›r" #: DocumentRenderer.src msgctxt "" @@ -473,7 +473,7 @@ "~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 @@ "Pa~ges\n" "itemlist.text" msgid "Pa~ges" -msgstr "Stránky" +msgstr "~Stránky" #: DocumentRenderer.src msgctxt "" @@ -491,4 +491,4 @@ "Se~lection\n" "itemlist.text" msgid "Se~lection" -msgstr "VýbÄ›r" +msgstr "Vý~bÄ›r" diff -Nru libreoffice-5.1.1~rc2/translations/source/cs/sd/uiconfig/sdraw/ui.po libreoffice-5.1.2~rc2/translations/source/cs/sd/uiconfig/sdraw/ui.po --- libreoffice-5.1.1~rc2/translations/source/cs/sd/uiconfig/sdraw/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/cs/sd/uiconfig/sdraw/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: LibO 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 \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 @@ "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 @@ "label\n" "string.text" msgid "_Name" -msgstr "Název" +msgstr "Náz_ev" #: insertlayer.ui msgctxt "" @@ -653,7 +653,7 @@ "label\n" "string.text" msgid "_Title" -msgstr "Nadpis" +msgstr "Na_dpis" #: insertlayer.ui msgctxt "" @@ -662,7 +662,7 @@ "label\n" "string.text" msgid "_Description" -msgstr "Popis" +msgstr "_Popis" #: insertlayer.ui msgctxt "" @@ -671,7 +671,7 @@ "label\n" "string.text" msgid "_Visible" -msgstr "Viditelná" +msgstr "_Viditelná" #: insertlayer.ui msgctxt "" @@ -680,7 +680,7 @@ "label\n" "string.text" msgid "_Printable" -msgstr "Tisknutelná" +msgstr "_Tisknutelná" #: insertlayer.ui msgctxt "" @@ -689,7 +689,7 @@ "label\n" "string.text" msgid "_Locked" -msgstr "UzamÄená" +msgstr "_UzamÄená" #: insertslidesdialog.ui msgctxt "" @@ -734,7 +734,7 @@ "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 -Nru libreoffice-5.1.1~rc2/translations/source/cs/sd/uiconfig/simpress/ui.po libreoffice-5.1.2~rc2/translations/source/cs/sd/uiconfig/simpress/ui.po --- libreoffice-5.1.1~rc2/translations/source/cs/sd/uiconfig/simpress/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/cs/sd/uiconfig/simpress/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: LibO 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 \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 @@ "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 @@ "label\n" "string.text" msgid "Ne_xt >>" -msgstr "Další >>" +msgstr "_Další >>" #: publishingdialog.ui msgctxt "" @@ -3416,7 +3416,7 @@ "label\n" "string.text" msgid "_Standard" -msgstr "Standardní" +msgstr "_Standardní" #: templatedialog.ui msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/cs/sfx2/source/appl.po libreoffice-5.1.2~rc2/translations/source/cs/sfx2/source/appl.po --- libreoffice-5.1.1~rc2/translations/source/cs/sfx2/source/appl.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/cs/sfx2/source/appl.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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 \n" +"PO-Revision-Date: 2016-03-07 23:04+0000\n" +"Last-Translator: system user <>\n" "Language-Team: LANGUAGE \n" "Language: cs\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "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 @@ "STR_HELP_MENU_TEXT_COPY\n" "string.text" msgid "~Copy" -msgstr "Kopírovat" +msgstr "~Kopírovat" #: newhelp.src msgctxt "" @@ -835,7 +835,7 @@ "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 -Nru libreoffice-5.1.1~rc2/translations/source/cs/sfx2/source/dialog.po libreoffice-5.1.2~rc2/translations/source/cs/sfx2/source/dialog.po --- libreoffice-5.1.1~rc2/translations/source/cs/sfx2/source/dialog.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/cs/sfx2/source/dialog.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 \n" "Language: cs\n" @@ -14,7 +14,7 @@ "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 @@ "STR_RESET\n" "string.text" msgid "~Reset" -msgstr "Obnovit" +msgstr "O~bnovit" #: dialog.src msgctxt "" @@ -603,7 +603,7 @@ "STR_SFX_EXPLORERFILE_BUTTONINSERT\n" "string.text" msgid "~Insert" -msgstr "Vložit" +msgstr "V~ložit" #: filedlghelper.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/cs/sfx2/source/doc.po libreoffice-5.1.2~rc2/translations/source/cs/sfx2/source/doc.po --- libreoffice-5.1.1~rc2/translations/source/cs/sfx2/source/doc.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/cs/sfx2/source/doc.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\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 \n" +"PO-Revision-Date: 2016-03-07 23:05+0000\n" +"Last-Translator: system user <>\n" "Language-Team: LANGUAGE \n" "Language: cs\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "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 @@ "STR_UPDATEDOC\n" "string.text" msgid "~Update" -msgstr "Aktualizovat" +msgstr "~Aktualizovat" #: doc.src msgctxt "" @@ -62,7 +62,7 @@ "STR_CLOSEDOC\n" "string.text" msgid "~Close" -msgstr "Zavřít" +msgstr "~Zavřít" #: doc.src msgctxt "" @@ -70,7 +70,7 @@ "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 @@ "STR_QRYTEMPL_UPDATE_BTN\n" "string.text" msgid "~Update Styles" -msgstr "Aktualizovat styly" +msgstr "~Aktualizovat styly" #: doc.src msgctxt "" @@ -320,7 +320,7 @@ "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 -Nru libreoffice-5.1.1~rc2/translations/source/cs/sfx2/source/menu.po libreoffice-5.1.2~rc2/translations/source/cs/sfx2/source/menu.po --- libreoffice-5.1.1~rc2/translations/source/cs/sfx2/source/menu.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/cs/sfx2/source/menu.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,18 +3,18 @@ msgstr "" "Project-Id-Version: PACKAGE 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 \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 \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 @@ "STR_MENU_ADDONS\n" "string.text" msgid "~Add-Ons" -msgstr "Rozšíření" +msgstr "~Rozšíření" #: menu.src msgctxt "" @@ -39,7 +39,7 @@ "SID_CUT\n" "menuitem.text" msgid "Cu~t" -msgstr "V~yjmout" +msgstr "~Vyjmout" #: menu.src msgctxt "" @@ -73,7 +73,7 @@ "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 @@ "STR_MENU_THESAURUS\n" "string.text" msgid "~Thesaurus..." -msgstr "Slovník synonym..." +msgstr "~Slovník synonym..." diff -Nru libreoffice-5.1.1~rc2/translations/source/cs/sfx2/uiconfig/ui.po libreoffice-5.1.2~rc2/translations/source/cs/sfx2/uiconfig/ui.po --- libreoffice-5.1.1~rc2/translations/source/cs/sfx2/uiconfig/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/cs/sfx2/uiconfig/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 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-11 20:03+0000\n" +"PO-Revision-Date: 2016-03-07 23:06+0000\n" "Last-Translator: system user <>\n" "Language-Team: none\n" "Language: cs\n" @@ -14,7 +14,7 @@ "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: 1452542604.000000\n" +"X-POOTLE-MTIME: 1457391993.000000\n" #: alienwarndialog.ui msgctxt "" @@ -257,7 +257,7 @@ "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 @@ "label\n" "string.text" msgid "_Created:" -msgstr "VytvoÅ™en:" +msgstr "V_ytvoÅ™en:" #: documentinfopage.ui msgctxt "" @@ -284,7 +284,7 @@ "label\n" "string.text" msgid "_Modified:" -msgstr "ZmÄ›nÄ›n:" +msgstr "Z_mÄ›nÄ›n:" #: documentinfopage.ui msgctxt "" @@ -293,7 +293,7 @@ "label\n" "string.text" msgid "_Digitally signed:" -msgstr "Elektronicky podepsán:" +msgstr "_Elektronicky podepsán:" #: documentinfopage.ui msgctxt "" @@ -302,7 +302,7 @@ "label\n" "string.text" msgid "Last pri_nted:" -msgstr "VytiÅ¡tÄ›n:" +msgstr "Vyt_iÅ¡tÄ›n:" #: documentinfopage.ui msgctxt "" @@ -311,7 +311,7 @@ "label\n" "string.text" msgid "Total _editing time:" -msgstr "Celkový Äas úprav:" +msgstr "_Celkový Äas úprav:" #: documentinfopage.ui msgctxt "" @@ -320,7 +320,7 @@ "label\n" "string.text" msgid "Re_vision number:" -msgstr "Číslo revize:" +msgstr "Číslo _revize:" #: documentinfopage.ui msgctxt "" @@ -338,7 +338,7 @@ "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 @@ "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 @@ "label\n" "string.text" msgid "Reset Properties" -msgstr "Obnovit vlastnosti" +msgstr "Obnovit vl_astnosti" #: documentinfopage.ui msgctxt "" @@ -365,7 +365,7 @@ "label\n" "string.text" msgid "Di_gital Signature..." -msgstr "Elektronický podpis..." +msgstr "Elektronický _podpis..." #: documentinfopage.ui msgctxt "" @@ -374,7 +374,7 @@ "label\n" "string.text" msgid "_Size:" -msgstr "Velikost:" +msgstr "_Velikost:" #: documentinfopage.ui msgctxt "" @@ -392,7 +392,7 @@ "label\n" "string.text" msgid "_Location:" -msgstr "UmístÄ›ní:" +msgstr "_UmístÄ›ní:" #: documentinfopage.ui msgctxt "" @@ -401,7 +401,7 @@ "label\n" "string.text" msgid "_Type:" -msgstr "Typ:" +msgstr "_Typ:" #: documentinfopage.ui msgctxt "" @@ -410,7 +410,7 @@ "label\n" "string.text" msgid "Change _Password" -msgstr "ZmÄ›nit heslo" +msgstr "ZmÄ›nit _heslo" #: documentinfopage.ui msgctxt "" @@ -1445,7 +1445,7 @@ "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 @@ "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 @@ "label\n" "string.text" msgid "_Unprotect..." -msgstr "Odemknout..." +msgstr "O_demknout..." #: securityinfopage.ui msgctxt "" @@ -1538,7 +1538,6 @@ msgstr "_Otevřít soubor" #: startcenter.ui -#, fuzzy msgctxt "" "startcenter.ui\n" "open_remote\n" diff -Nru libreoffice-5.1.1~rc2/translations/source/cs/starmath/source.po libreoffice-5.1.2~rc2/translations/source/cs/starmath/source.po --- libreoffice-5.1.1~rc2/translations/source/cs/starmath/source.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/cs/starmath/source.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\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 \n" +"PO-Revision-Date: 2016-03-07 23:10+0000\n" +"Last-Translator: system user <>\n" "Language-Team: LANGUAGE \n" "Language: cs\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "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 @@ "~Title\n" "itemlist.text" msgid "~Title" -msgstr "Název" +msgstr "~Název" #: smres.src msgctxt "" @@ -2607,7 +2607,7 @@ "~Formula text\n" "itemlist.text" msgid "~Formula text" -msgstr "Text vzorce" +msgstr "Text ~vzorce" #: smres.src msgctxt "" @@ -2616,7 +2616,7 @@ "B~orders\n" "itemlist.text" msgid "B~orders" -msgstr "Okraje" +msgstr "O~kraje" #: smres.src msgctxt "" @@ -2634,7 +2634,7 @@ "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 @@ "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 @@ "~Scaling\n" "itemlist.text" msgid "~Scaling" -msgstr "Měřítko" +msgstr "~Měřítko" #: symbol.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/cs/svtools/source/contnr.po libreoffice-5.1.2~rc2/translations/source/cs/svtools/source/contnr.po --- libreoffice-5.1.1~rc2/translations/source/cs/svtools/source/contnr.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/cs/svtools/source/contnr.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,17 +4,17 @@ "Project-Id-Version: PACKAGE VERSION\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 \n" +"PO-Revision-Date: 2016-03-07 23:13+0000\n" +"Last-Translator: system user <>\n" "Language-Team: LANGUAGE \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 @@ "MID_FILEVIEW_RENAME\n" "menuitem.text" msgid "~Rename" -msgstr "PÅ™ejmenovat..." +msgstr "~PÅ™ejmenovat" #: svcontnr.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/cs/svtools/source/dialogs.po libreoffice-5.1.2~rc2/translations/source/cs/svtools/source/dialogs.po --- libreoffice-5.1.1~rc2/translations/source/cs/svtools/source/dialogs.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/cs/svtools/source/dialogs.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\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 \n" +"PO-Revision-Date: 2016-03-07 23:14+0000\n" +"Last-Translator: system user <>\n" "Language-Team: LANGUAGE \n" "Language: cs\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "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 @@ "STR_FILEDLG_TYPE\n" "string.text" msgid "File ~type" -msgstr "Typ souboru" +msgstr "~Typ souboru" #: filedlg2.src msgctxt "" @@ -1193,7 +1193,7 @@ "STR_WIZDLG_FINISH\n" "string.text" msgid "~Finish" -msgstr "DokonÄit" +msgstr "Do~konÄit" #: wizardmachine.src msgctxt "" @@ -1201,7 +1201,7 @@ "STR_WIZDLG_NEXT\n" "string.text" msgid "~Next >>" -msgstr "Další >>" +msgstr "~Další >>" #: wizardmachine.src msgctxt "" @@ -1209,7 +1209,7 @@ "STR_WIZDLG_PREVIOUS\n" "string.text" msgid "<< Bac~k" -msgstr "<< ZpÄ›t" +msgstr "<< Z~pÄ›t" #: wizardmachine.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/cs/svtools/uiconfig/ui.po libreoffice-5.1.2~rc2/translations/source/cs/svtools/uiconfig/ui.po --- libreoffice-5.1.1~rc2/translations/source/cs/svtools/uiconfig/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/cs/svtools/uiconfig/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: LibO 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 \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 @@ "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 @@ "label\n" "string.text" msgid "_Address Data Source..." -msgstr "Zdroj adres..." +msgstr "Zdroj _adres..." #: addresstemplatedialog.ui msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/cs/svx/inc.po libreoffice-5.1.2~rc2/translations/source/cs/svx/inc.po --- libreoffice-5.1.1~rc2/translations/source/cs/svx/inc.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/cs/svx/inc.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\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 \n" +"PO-Revision-Date: 2016-03-07 23:18+0000\n" +"Last-Translator: system user <>\n" "Language-Team: LANGUAGE \n" "Language: cs\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "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 @@ "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 @@ "ITEM_FORM_PROPERTIES\n" "#define.text" msgid "For~m..." -msgstr "Formulář..." +msgstr "~Formulář..." #: globlmn_tmpl.hrc msgctxt "" @@ -38,7 +38,7 @@ "ITEM_REPLACE_CONTROL\n" "#define.text" msgid "~Replace with" -msgstr "Nahradit za" +msgstr "Na~hradit za" #: globlmn_tmpl.hrc msgctxt "" @@ -62,7 +62,7 @@ "ITEM_FORMAT_FONTWORK\n" "#define.text" msgid "F~ontwork" -msgstr "Písmomalba" +msgstr "~Písmomalba" #: globlmn_tmpl.hrc msgctxt "" @@ -70,7 +70,7 @@ "ITEM_EDIT_CUT\n" "#define.text" msgid "Cu~t" -msgstr "Vyjmout" +msgstr "~Vyjmout" #: globlmn_tmpl.hrc msgctxt "" @@ -78,7 +78,7 @@ "ITEM_EDIT_COPY\n" "#define.text" msgid "~Copy" -msgstr "Kopírovat" +msgstr "~Kopírovat" #: globlmn_tmpl.hrc msgctxt "" @@ -238,7 +238,7 @@ "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 @@ "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 -Nru libreoffice-5.1.1~rc2/translations/source/cs/svx/source/svdraw.po libreoffice-5.1.2~rc2/translations/source/cs/svx/source/svdraw.po --- libreoffice-5.1.1~rc2/translations/source/cs/svx/source/svdraw.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/cs/svx/source/svdraw.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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 \n" +"PO-Revision-Date: 2016-03-07 23:30+0000\n" +"Last-Translator: system user <>\n" "Language-Team: LANGUAGE \n" "Language: cs\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "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 @@ msgstr "Zalomit text do tvaru" #: svdstr.src -#, fuzzy msgctxt "" "svdstr.src\n" "SIP_SA_CHAINNEXTNAME\n" diff -Nru libreoffice-5.1.1~rc2/translations/source/cs/sw/source/ui/utlui.po libreoffice-5.1.2~rc2/translations/source/cs/sw/source/ui/utlui.po --- libreoffice-5.1.1~rc2/translations/source/cs/sw/source/ui/utlui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/cs/sw/source/ui/utlui.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\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-19 01:45+0200\n" +"POT-Creation-Date: 2016-03-29 16:07+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-5.1.1~rc2/translations/source/cs/vcl/source/src.po libreoffice-5.1.2~rc2/translations/source/cs/vcl/source/src.po --- libreoffice-5.1.1~rc2/translations/source/cs/vcl/source/src.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/cs/vcl/source/src.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-05 18:58+0000\n" +"PO-Revision-Date: 2016-02-25 20:20+0000\n" "Last-Translator: Stanislav HoráÄek \n" "Language-Team: LANGUAGE \n" "Language: cs\n" @@ -14,7 +14,7 @@ "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: 1452020285.000000\n" +"X-POOTLE-MTIME: 1456431651.000000\n" #: app.src msgctxt "" @@ -22,7 +22,7 @@ "SV_APP_CPUTHREADS\n" "string.text" msgid "CPU Threads: " -msgstr "" +msgstr "Vlákna CPU: " #: app.src msgctxt "" @@ -30,7 +30,7 @@ "SV_APP_OSVERSION\n" "string.text" msgid "OS Version: " -msgstr "" +msgstr "Verze OS: " #: app.src msgctxt "" @@ -38,7 +38,7 @@ "SV_APP_UIRENDER\n" "string.text" msgid "UI Render: " -msgstr "" +msgstr "Vykreslování UI: " #: app.src msgctxt "" @@ -46,7 +46,7 @@ "SV_APP_GL\n" "string.text" msgid "GL" -msgstr "" +msgstr "GL" #: app.src msgctxt "" @@ -54,7 +54,7 @@ "SV_APP_DEFAULT\n" "string.text" msgid "default" -msgstr "" +msgstr "výchozí" #. This is used on buttons for platforms other than windows, there should be a ~ mnemonic in this string #: btntext.src diff -Nru libreoffice-5.1.1~rc2/translations/source/cs/wizards/source/template.po libreoffice-5.1.2~rc2/translations/source/cs/wizards/source/template.po --- libreoffice-5.1.1~rc2/translations/source/cs/wizards/source/template.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/cs/wizards/source/template.po 2016-03-29 15:38:48.000000000 +0000 @@ -2,19 +2,19 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2013-05-23 12:05+0200\n" -"PO-Revision-Date: 2012-11-19 21:56+0000\n" -"Last-Translator: JindÅ™ich \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-26 20:57+0000\n" +"Last-Translator: Stanislav HoráÄek \n" "Language-Team: LANGUAGE \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: 1353362205.0\n" +"X-POOTLE-MTIME: 1456520253.000000\n" #: template.src msgctxt "" @@ -38,7 +38,7 @@ "STYLES\n" "string.text" msgid "Theme Selection" -msgstr "VýbÄ›r tématu" +msgstr "VýbÄ›r motivu vzhledu" #: template.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/da/filter/uiconfig/ui.po libreoffice-5.1.2~rc2/translations/source/da/filter/uiconfig/ui.po --- libreoffice-5.1.1~rc2/translations/source/da/filter/uiconfig/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/da/filter/uiconfig/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-06-22 15:54+0000\n" +"PO-Revision-Date: 2016-03-18 22:48+0000\n" "Last-Translator: Jesper Hertel \n" "Language-Team: LANGUAGE \n" "Language: da\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1434988440.000000\n" +"X-POOTLE-MTIME: 1458341318.000000\n" #: impswfdialog.ui msgctxt "" @@ -621,7 +621,7 @@ "label\n" "string.text" msgid "Open password set" -msgstr "Ã…ben-adgangskode er sat" +msgstr "Ã…bne-adgangskode er sat" #: pdfsecuritypage.ui msgctxt "" @@ -945,7 +945,7 @@ "label\n" "string.text" msgid "_Open in full screen mode" -msgstr "Ã…ben i fuldskærmstilstand" +msgstr "Ã…bn i fuldskærmstilstand" #: pdfuserinterfacepage.ui msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/da/formula/source/core/resource.po libreoffice-5.1.2~rc2/translations/source/da/formula/source/core/resource.po --- libreoffice-5.1.1~rc2/translations/source/da/formula/source/core/resource.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/da/formula/source/core/resource.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\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-29 16:07+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-5.1.1~rc2/translations/source/da/helpcontent2/source/text/shared/00.po libreoffice-5.1.2~rc2/translations/source/da/helpcontent2/source/text/shared/00.po --- libreoffice-5.1.1~rc2/translations/source/da/helpcontent2/source/text/shared/00.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/da/helpcontent2/source/text/shared/00.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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-29 21:51+0000\n" -"Last-Translator: David Lamhauge \n" +"PO-Revision-Date: 2016-03-18 22:12+0000\n" +"Last-Translator: Jesper Hertel \n" "Language-Team: LANGUAGE \n" "Language: da\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1454104279.000000\n" +"X-POOTLE-MTIME: 1458339162.000000\n" #: 00000001.xhp msgctxt "" @@ -10791,7 +10791,7 @@ "94\n" "help.text" msgid "Open Form Controls toolbar, click More Controls icon, click Table Control icon and drag mouse to generate field." -msgstr "Ã…ben værktøjslinjen Formularkontrolelementer, klik pÃ¥ ikonet Flere kontrolementer, klik pÃ¥ ikonet Tabelkontrolelement og træk musen for at oprette et felt." +msgstr "Ã…bn værktøjslinjen Formularkontrolelementer, klik pÃ¥ ikonet Flere kontrolementer, klik pÃ¥ ikonet Tabelkontrolelement og træk musen for at oprette et felt." #: 00040501.xhp msgctxt "" @@ -10800,7 +10800,7 @@ "119\n" "help.text" msgid "Open Form Controls toolbar, click More Controls icon, click Table Control icon and drag mouse to generate field. No database connection in current form is allowed." -msgstr "Ã…ben værktøjslinjen Formularkontrolelementer, klik pÃ¥ ikonet Flere kontrolementer, klik pÃ¥ ikonet Tabelkontrolelement og træk musen for at oprette et felt. Ingen databaseforbindelse er tilladt i den aktuelle formular." +msgstr "Ã…bn værktøjslinjen Formularkontrolelementer, klik pÃ¥ ikonet Flere kontrolementer, klik pÃ¥ ikonet Tabelkontrolelement og træk musen for at oprette et felt. Ingen databaseforbindelse er tilladt i den aktuelle formular." #: 00040501.xhp msgctxt "" @@ -10809,7 +10809,7 @@ "120\n" "help.text" msgid "Open Form Controls toolbar, click More Controls icon, click Table Control icon and drag mouse to generate field. Database connection must exist." -msgstr "Ã…ben værktøjslinjen Formularkontrolelementer, klik pÃ¥ ikonet Flere kontrolementer, klik pÃ¥ ikonet Tabelkontrolelement og træk musen for at oprette et felt. Der skal eksistere en databaseforbindelse." +msgstr "Ã…bn værktøjslinjen Formularkontrolelementer, klik pÃ¥ ikonet Flere kontrolementer, klik pÃ¥ ikonet Tabelkontrolelement og træk musen for at oprette et felt. Der skal eksistere en databaseforbindelse." #: 00040501.xhp msgctxt "" @@ -10818,7 +10818,7 @@ "95\n" "help.text" msgid "Open Form Controls toolbar, click Combo Box or List Box icon and drag mouse to generate field. Database connection must exist in the form." -msgstr "Ã…ben værktøjslinjen Formularkontrolelementer, klik pÃ¥ ikonet Kombinationsfelt eller listefelt og træk musen for at oprette et felt. En databaseforbindelse skal eksistere i formularen." +msgstr "Ã…bn værktøjslinjen Formularkontrolelementer, klik pÃ¥ ikonet Kombinationsfelt eller listefelt og træk musen for at oprette et felt. En databaseforbindelse skal eksistere i formularen." #: 00040501.xhp msgctxt "" @@ -10827,7 +10827,7 @@ "121\n" "help.text" msgid "Open Form Controls toolbar, click Combo Box or List Box icon and drag mouse to generate field. Database connection must exist in the form: Wizard - Page 1." -msgstr "Ã…ben værktøjslinjen Formularkontrolelementer, klik pÃ¥ ikonet Kombinationsfelt eller listefelt og træk musen for at oprette et felt. En databaseforbindelse skal eksistere i formularen: Guide - side 1." +msgstr "Ã…bn værktøjslinjen Formularkontrolelementer, klik pÃ¥ ikonet Kombinationsfelt eller listefelt og træk musen for at oprette et felt. En databaseforbindelse skal eksistere i formularen: Guide - side 1." #: 00040501.xhp msgctxt "" @@ -10836,7 +10836,7 @@ "122\n" "help.text" msgid "Open Form Controls toolbar, click Combo Box or List Box icon and drag mouse to generate field. Database connection must exist in the form: Wizard - Page 2." -msgstr "Ã…ben værktøjslinjen Formularkontrolelementer, klik pÃ¥ ikonet Kombinationsfelt eller listefelt og træk musen for at oprette et felt. En databaseforbindelse skal eksistere i formularen: Guide - side 2." +msgstr "Ã…bn værktøjslinjen Formularkontrolelementer, klik pÃ¥ ikonet Kombinationsfelt eller listefelt og træk musen for at oprette et felt. En databaseforbindelse skal eksistere i formularen: Guide - side 2." #: 00040501.xhp msgctxt "" @@ -10845,7 +10845,7 @@ "123\n" "help.text" msgid "Open Form Controls toolbar, click List Box icon and drag mouse to generate field. Database connection must exist in the form: Wizard - Page 3." -msgstr "Ã…ben værktøjslinjen Formularkontrolelementer, klik pÃ¥ ikonet listefelt og træk musen for at oprette et felt. En databaseforbindelse skal eksistere i formularen: Guide - side 3." +msgstr "Ã…bn værktøjslinjen Formularkontrolelementer, klik pÃ¥ ikonet listefelt og træk musen for at oprette et felt. En databaseforbindelse skal eksistere i formularen: Guide - side 3." #: 00040501.xhp msgctxt "" @@ -10854,7 +10854,7 @@ "124\n" "help.text" msgid "Open Form Controls toolbar, click Combo Box icon and drag mouse to generate field. Database connection must exist in the form: Wizard - Page 3." -msgstr "Ã…ben værktøjslinjen Formularkontrolelementer, klik pÃ¥ ikonet kombinationsfelt og træk musen for at oprette et felt. En databaseforbindelse skal eksistere i formularen: Guide - side 3." +msgstr "Ã…bn værktøjslinjen Formularkontrolelementer, klik pÃ¥ ikonet kombinationsfelt og træk musen for at oprette et felt. En databaseforbindelse skal eksistere i formularen: Guide - side 3." #: 00040501.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/da/helpcontent2/source/text/shared/01.po libreoffice-5.1.2~rc2/translations/source/da/helpcontent2/source/text/shared/01.po --- libreoffice-5.1.1~rc2/translations/source/da/helpcontent2/source/text/shared/01.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/da/helpcontent2/source/text/shared/01.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\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-12 18:07+0000\n" -"Last-Translator: David Lamhauge \n" +"PO-Revision-Date: 2016-03-18 22:13+0000\n" +"Last-Translator: Jesper Hertel \n" "Language-Team: LANGUAGE \n" "Language: da\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1455300472.000000\n" +"X-POOTLE-MTIME: 1458339233.000000\n" #: 01010000.xhp msgctxt "" @@ -2886,7 +2886,7 @@ "64\n" "help.text" msgid "The following sections describe the %PRODUCTNAME Save as dialog. To activate the %PRODUCTNAME Open and Save dialog boxes, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME- General, and then select the Use %PRODUCTNAME dialogs in the Open/Save dialogs area." -msgstr "De følgende afsnit beskriver %PRODUCTNAME Gem som dialogem. For at aktivere %PRODUCTNAME Ã…ben og Save dialog bokse, vælg %PRODUCTNAME - IndstillingerVærktøjer - Muligheder - %PRODUCTNAME- Generelt, og vælg herefter Use %PRODUCTNAME dialogs i Ã…ben/Gem dialogernes omrÃ¥de." +msgstr "De følgende afsnit beskriver %PRODUCTNAME Gem som-dialogen. For at aktivere %PRODUCTNAME Ã…bn- og Gem-dialogboksene skal du vælge %PRODUCTNAME - IndstillingerVærktøjer - Muligheder - %PRODUCTNAME- Generelt, og herefter Brug %PRODUCTNAME-dialoger i Ã…bn/Gem-dialogernes omrÃ¥de." #: 01070000.xhp msgctxt "" @@ -14084,7 +14084,7 @@ "12\n" "help.text" msgid "Locate the file that you want to insert, and then click Open." -msgstr "Lokaliser den fil du ønsker at indsætte, og klik sÃ¥ pÃ¥ Ã…ben." +msgstr "Lokaliser den fil du ønsker at indsætte, og klik sÃ¥ pÃ¥ Ã…bn." #: 04150100.xhp msgctxt "" @@ -18148,7 +18148,7 @@ "17\n" "help.text" msgid "Locate the file that you want to link to, and then click Open." -msgstr "Lokaliser den fil, du ønsker at oprette en kæde til, og klik sÃ¥ pÃ¥ Ã…ben." +msgstr "Lokaliser den fil, du ønsker at oprette en kæde til, og klik sÃ¥ pÃ¥ Ã…bn." #: 05020400.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/da/helpcontent2/source/text/shared/02.po libreoffice-5.1.2~rc2/translations/source/da/helpcontent2/source/text/shared/02.po --- libreoffice-5.1.1~rc2/translations/source/da/helpcontent2/source/text/shared/02.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/da/helpcontent2/source/text/shared/02.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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-29 21:51+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2016-03-18 22:14+0000\n" +"Last-Translator: Jesper Hertel \n" "Language-Team: LANGUAGE \n" "Language: da\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1454104307.000000\n" +"X-POOTLE-MTIME: 1458339254.000000\n" #: 01110000.xhp msgctxt "" @@ -9161,7 +9161,7 @@ "20\n" "help.text" msgid "Drag and drop to copy controls within the same document or between documents. Open another form document and drag the hidden control from the Form Navigator into the Form Navigator of the target document. Click a visible control directly in the document, rest the mouse for a moment so that a copy of the control is added to the drag-and-drop clipboard, then drag the copy into the other document. If you want a copy in the same document, press CommandCtrl while dragging." -msgstr "Træk og slip for at kopiere kontrolelementer inden for det samme dokument eller mellem dokumenter. Ã…ben et andet formulardokument og træk det skjulte kontrolelement fra formularnavigatoren til formularnavigatoren i mÃ¥ldokumentet. Klik pÃ¥ et synligt kontrolelement direkte i dokumentet, hold musen stille et øjeblik indtil en kopi af kontrolelementet er føjet til træk og slip-udklipsholderen, træk derefter kopien til andet dokument. Hvis du ønsker en kopi i det samme dokument skal du trykke pÃ¥ ÆbleCtrl mens du trækker." +msgstr "Træk og slip for at kopiere kontrolelementer inden for det samme dokument eller mellem dokumenter. Ã…bn et andet formulardokument og træk det skjulte kontrolelement fra formularnavigatoren til formularnavigatoren i mÃ¥ldokumentet. Klik pÃ¥ et synligt kontrolelement direkte i dokumentet, hold musen stille et øjeblik indtil en kopi af kontrolelementet er føjet til træk og slip-udklipsholderen, træk derefter kopien til andet dokument. Hvis du ønsker en kopi i det samme dokument skal du trykke pÃ¥ ÆbleCtrl mens du trækker." #: 01170600.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/da/helpcontent2/source/text/shared/guide.po libreoffice-5.1.2~rc2/translations/source/da/helpcontent2/source/text/shared/guide.po --- libreoffice-5.1.1~rc2/translations/source/da/helpcontent2/source/text/shared/guide.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/da/helpcontent2/source/text/shared/guide.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\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-12 15:23+0000\n" -"Last-Translator: wkn \n" +"PO-Revision-Date: 2016-03-18 22:47+0000\n" +"Last-Translator: Jesper Hertel \n" "Language-Team: LANGUAGE \n" "Language: da\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1455290627.000000\n" +"X-POOTLE-MTIME: 1458341260.000000\n" #: aaa_start.xhp msgctxt "" @@ -19416,7 +19416,7 @@ "par_idN1073B\n" "help.text" msgid "Open the XForms document and use the following toolbars and windows:" -msgstr "Ã…ben XForms-dokumentet og brug følgende værktøjslinjer og vinduer:" +msgstr "Ã…bn XForms-dokumentet og brug følgende værktøjslinjer og vinduer:" #: xforms.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/da/helpcontent2/source/text/shared/optionen.po libreoffice-5.1.2~rc2/translations/source/da/helpcontent2/source/text/shared/optionen.po --- libreoffice-5.1.1~rc2/translations/source/da/helpcontent2/source/text/shared/optionen.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/da/helpcontent2/source/text/shared/optionen.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "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-01-27 07:58+0000\n" -"Last-Translator: Leif Lodahl \n" +"PO-Revision-Date: 2016-03-18 22:48+0000\n" +"Last-Translator: Jesper Hertel \n" "Language-Team: LANGUAGE \n" "Language: da\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1453881508.000000\n" +"X-POOTLE-MTIME: 1458341303.000000\n" #: 01000000.xhp msgctxt "" @@ -15052,7 +15052,7 @@ "par_id0609201523011650\n" "help.text" msgid "List the preferences organized hierarchically in a tree layout. To open the branches, double click in the (+) sign. Once the preference is visible in the tree, you can edit it." -msgstr "Oplister indstillinger organiseret hierarkisk i et træ layout. Ã…ben gren ved at dobbeltklikke pÃ¥ (+) symbolet. nÃ¥r indstillingen er synlig i træet kan du redigere den." +msgstr "Oplister indstillinger organiseret hierarkisk i et træ layout. Ã…bn gren ved at dobbeltklikke pÃ¥ (+)-symbolet. nÃ¥r indstillingen er synlig i træet kan du redigere den." #: expertconfig.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/da/helpcontent2/source/text/swriter/guide.po libreoffice-5.1.2~rc2/translations/source/da/helpcontent2/source/text/swriter/guide.po --- libreoffice-5.1.1~rc2/translations/source/da/helpcontent2/source/text/swriter/guide.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/da/helpcontent2/source/text/swriter/guide.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\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-27 19:18+0000\n" -"Last-Translator: Leif Lodahl \n" +"PO-Revision-Date: 2016-03-18 22:48+0000\n" +"Last-Translator: Jesper Hertel \n" "Language-Team: LANGUAGE \n" "Language: da\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1453922306.000000\n" +"X-POOTLE-MTIME: 1458341312.000000\n" #: anchor_object.xhp msgctxt "" @@ -15694,7 +15694,7 @@ "67\n" "help.text" msgid "To create a document based on the template, choose File - New - Templates, select the template, and then click Open." -msgstr "For at oprette et dokument baseret pÃ¥ skabelonen, vælg Fil - Ny - Skabelon, vælg skabelonen, og klik sÃ¥ pÃ¥ Ã…ben." +msgstr "For at oprette et dokument baseret pÃ¥ skabelonen, vælg Fil - Ny - Skabelon, vælg skabelonen, og klik sÃ¥ pÃ¥ Ã…bn." #: template_create.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/da/officecfg/registry/data/org/openoffice/Office.po libreoffice-5.1.2~rc2/translations/source/da/officecfg/registry/data/org/openoffice/Office.po --- libreoffice-5.1.1~rc2/translations/source/da/officecfg/registry/data/org/openoffice/Office.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/da/officecfg/registry/data/org/openoffice/Office.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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-28 15:25+0000\n" -"Last-Translator: Jeppe Bundsgaard \n" +"PO-Revision-Date: 2016-03-18 22:48+0000\n" +"Last-Translator: Jesper Hertel \n" "Language-Team: LANGUAGE \n" "Language: da\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1451316306.000000\n" +"X-POOTLE-MTIME: 1458341322.000000\n" #: Addons.xcu msgctxt "" @@ -1274,7 +1274,7 @@ "STR_AUTOMATICALLY_OPEN\n" "value.text" msgid "~Open newly created presentation" -msgstr "Ã…ben den netop dannede præsentation" +msgstr "Ã…bn den netop dannede præsentation" #: PresentationMinimizer.xcu msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/da/readlicense_oo/docs.po libreoffice-5.1.2~rc2/translations/source/da/readlicense_oo/docs.po --- libreoffice-5.1.1~rc2/translations/source/da/readlicense_oo/docs.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/da/readlicense_oo/docs.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-17 17:44+0000\n" +"PO-Revision-Date: 2016-03-18 22:49+0000\n" "Last-Translator: Jesper Hertel \n" "Language-Team: LANGUAGE \n" "Language: da\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1455731083.000000\n" +"X-POOTLE-MTIME: 1458341380.000000\n" #: readme.xrm msgctxt "" @@ -278,7 +278,7 @@ "debianinstall4\n" "readmeitem.text" msgid "Right-click within the directory and choose \"Open in Terminal\". A terminal window will open. From the command line of the terminal window, enter the following command (you will be prompted to enter your root user's password before the command will execute):" -msgstr "Højreklik inden i mappen og vælg \"Ã…ben i terminal\". Et terminalvindue vises. Fra kommandolinjen i terminalvinduet, skriv de følgende kommandoer (du vil blive spurgt om superbruger/administrator kodeordet før kommandoerne udføres):" +msgstr "Højreklik inden i mappen og vælg \"Ã…bn i terminal\". Et terminalvindue vises. Skriv de følgende kommandoer fra kommandolinjen i terminalvinduet (du vil blive spurgt om superbruger-/administratorkodeordet før kommandoerne udføres):" #: readme.xrm msgctxt "" @@ -438,7 +438,7 @@ "linuxlangpack3\n" "readmeitem.text" msgid "Now change directory to the directory that was created during the extraction process. For instance, for the French language pack for a 32-bit Debian/Ubuntu-based system, the directory is named LibreOffice_, plus some version information, plus Linux_x86_langpack-deb_fr." -msgstr "Ã…ben nu den folder som blev oprettet ved udpakningsprocessen. F.eks. er folderen ved dansk sprogpakke for et 32-bit Debian/Ubuntu-baseret system navngivet som LibreOffice_ efterfulgt af versionsinformationer og Linux_x86_langpack-deb_da." +msgstr "Ã…bn nu den mappe som blev oprettet ved udpakningsprocessen. F.eks. er mappen ved dansk sprogpakke for et 32-bit Debian/Ubuntu-baseret system navngivet som LibreOffice_ efterfulgt af versionsinformationer og Linux_x86_langpack-deb_da." #: readme.xrm msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/da/sc/source/ui/src.po libreoffice-5.1.2~rc2/translations/source/da/sc/source/ui/src.po --- libreoffice-5.1.1~rc2/translations/source/da/sc/source/ui/src.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/da/sc/source/ui/src.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\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-14 20:12+0000\n" -"Last-Translator: David Lamhauge \n" +"PO-Revision-Date: 2016-03-18 22:49+0000\n" +"Last-Translator: Jesper Hertel \n" "Language-Team: LANGUAGE \n" "Language: da\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1455480755.000000\n" +"X-POOTLE-MTIME: 1458341386.000000\n" #: condformatdlg.src msgctxt "" @@ -25584,7 +25584,7 @@ "SCSTR_DDEDOC_NOT_LOADED\n" "string.text" msgid "The following DDE source could not be updated possibly because the source document was not open. Please launch the source document and try again." -msgstr "Følgende DDE-kilde kunne ikke opdateres, muligvis fordi kildedokumentet ikke var Ã¥bent. Ã…ben kildedokumentet og prøv igen." +msgstr "Følgende DDE-kilde kunne ikke opdateres, muligvis fordi kildedokumentet ikke var Ã¥bent. Ã…bn kildedokumentet og prøv igen." #: scstring.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/da/svx/inc.po libreoffice-5.1.2~rc2/translations/source/da/svx/inc.po --- libreoffice-5.1.1~rc2/translations/source/da/svx/inc.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/da/svx/inc.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\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 \n" +"PO-Revision-Date: 2016-03-07 23:25+0000\n" +"Last-Translator: system user <>\n" "Language-Team: LANGUAGE \n" "Language: da\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "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 "" diff -Nru libreoffice-5.1.1~rc2/translations/source/da/uui/source.po libreoffice-5.1.2~rc2/translations/source/da/uui/source.po --- libreoffice-5.1.1~rc2/translations/source/da/uui/source.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/da/uui/source.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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-19 17:44+0000\n" -"Last-Translator: Leif Lodahl \n" +"PO-Revision-Date: 2016-03-18 22:49+0000\n" +"Last-Translator: Jesper Hertel \n" "Language-Team: LANGUAGE \n" "Language: da\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1437327886.000000\n" +"X-POOTLE-MTIME: 1458341398.000000\n" #: alreadyopen.src msgctxt "" @@ -35,9 +35,9 @@ "Open document read-only, or ignore own file locking and open the document for editing.\n" "\n" msgstr "" -"Dokument filen '$(ARG1)' har været lÃ¥st for redigering af dig selv pÃ¥ et andet system siden $(ARG2)\n" +"Dokumentfilen '$(ARG1)' har været lÃ¥st for redigering af dig selv pÃ¥ et andet system siden $(ARG2)\n" "\n" -"Ã…ben dokumentet i skrivebeskyttet tilstand, eller ignorer din egen fillÃ¥sning og Ã¥ben dokument for redigering.\n" +"Ã…bn dokumentet i skrivebeskyttet tilstand, eller ignorer din egen fillÃ¥sning og Ã¥bn dokumentet for redigering.\n" "\n" #: alreadyopen.src diff -Nru libreoffice-5.1.1~rc2/translations/source/de/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-5.1.2~rc2/translations/source/de/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-5.1.1~rc2/translations/source/de/officecfg/registry/data/org/openoffice/Office/UI.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/de/officecfg/registry/data/org/openoffice/Office/UI.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-15 05:07+0000\n" +"PO-Revision-Date: 2016-03-25 06:14+0000\n" "Last-Translator: Christian Kühl \n" "Language-Team: LANGUAGE \n" "Language: de\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1452834476.000000\n" +"X-POOTLE-MTIME: 1458886491.000000\n" #: BaseWindowState.xcu msgctxt "" @@ -68,7 +68,7 @@ "Label\n" "value.text" msgid "Go to Line..." -msgstr "Gehen zur Zeile..." +msgstr "~Gehen zur Zeile..." #: BasicIDECommands.xcu msgctxt "" @@ -77,7 +77,7 @@ "Label\n" "value.text" msgid "Line Numbers" -msgstr "Zeilennummern" +msgstr "~Zeilennummern" #: BasicIDECommands.xcu msgctxt "" @@ -239,7 +239,7 @@ "Label\n" "value.text" msgid "Delete ~Record" -msgstr "~Datensatz löschen" +msgstr "Datensatz ~löschen" #: BibliographyCommands.xcu msgctxt "" @@ -311,7 +311,7 @@ "Label\n" "value.text" msgid "Flip Vertically" -msgstr "Vertikal spiegeln" +msgstr "~Vertikal spiegeln" #: CalcCommands.xcu msgctxt "" @@ -329,7 +329,7 @@ "Label\n" "value.text" msgid "Flip Horizontally" -msgstr "Horizontal spiegeln" +msgstr "~Horizontal spiegeln" #: CalcCommands.xcu msgctxt "" @@ -491,7 +491,7 @@ "Label\n" "value.text" msgid "~Protect Records..." -msgstr "Aufzeichnung ~schützen..." +msgstr "Vor Änderungen ~schützen..." #: CalcCommands.xcu msgctxt "" @@ -500,7 +500,7 @@ "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 @@ "Label\n" "value.text" msgid "Description..." -msgstr "Beschreibung..." +msgstr "Besc~hreibung..." #: CalcCommands.xcu msgctxt "" @@ -554,7 +554,7 @@ "Label\n" "value.text" msgid "Sheet ~Events..." -msgstr "Tabellene~reignisse..." +msgstr "Tabellenerei~gnisse..." #: CalcCommands.xcu msgctxt "" @@ -572,7 +572,7 @@ "Label\n" "value.text" msgid "Next Page" -msgstr "Nächste Seite" +msgstr "~Nächste Seite" #: CalcCommands.xcu msgctxt "" @@ -581,7 +581,7 @@ "Label\n" "value.text" msgid "Previous Page" -msgstr "Vorherige Seite" +msgstr "~Vorherige Seite" #: CalcCommands.xcu msgctxt "" @@ -590,7 +590,7 @@ "Label\n" "value.text" msgid "First Page" -msgstr "Erste Seite" +msgstr "~Erste Seite" #: CalcCommands.xcu msgctxt "" @@ -599,7 +599,7 @@ "Label\n" "value.text" msgid "Last Page" -msgstr "Letzte Seite" +msgstr "~Letzte Seite" #: CalcCommands.xcu msgctxt "" @@ -608,7 +608,7 @@ "Label\n" "value.text" msgid "Zoom In" -msgstr "Größer" +msgstr "Ver~größern" #: CalcCommands.xcu msgctxt "" @@ -617,7 +617,7 @@ "Label\n" "value.text" msgid "Zoom Out" -msgstr "Kleiner" +msgstr "Ver~kleinern" #: CalcCommands.xcu msgctxt "" @@ -779,7 +779,7 @@ "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 @@ "ContextLabel\n" "value.text" msgid "Pi~vot Table..." -msgstr "~Pivot-Tabelle..." +msgstr "P~ivot-Tabelle..." #: CalcCommands.xcu msgctxt "" @@ -833,7 +833,7 @@ "Label\n" "value.text" msgid "~Function..." -msgstr "~Funktion..." +msgstr "F~unktion..." #: CalcCommands.xcu msgctxt "" @@ -905,7 +905,7 @@ "Label\n" "value.text" msgid "Chart From File..." -msgstr "Diagramm aus Datei..." +msgstr "Diagramm aus D~atei..." #: CalcCommands.xcu msgctxt "" @@ -968,7 +968,7 @@ "Label\n" "value.text" msgid "C~onditional Formatting" -msgstr "Be~dingte Formatierung" +msgstr "Bedingte For~matierung" #: CalcCommands.xcu msgctxt "" @@ -986,7 +986,7 @@ "ContextLabel\n" "value.text" msgid "Condition..." -msgstr "Bedingung..." +msgstr "~Bedingung..." #: CalcCommands.xcu msgctxt "" @@ -1004,7 +1004,7 @@ "ContextLabel\n" "value.text" msgid "Color Scale..." -msgstr "Farbbalken..." +msgstr "~Farbbalken..." #: CalcCommands.xcu msgctxt "" @@ -1022,7 +1022,7 @@ "ContextLabel\n" "value.text" msgid "Data Bar..." -msgstr "Datenbalken..." +msgstr "~Datenbalken..." #: CalcCommands.xcu msgctxt "" @@ -1040,7 +1040,7 @@ "ContextLabel\n" "value.text" msgid "Icon Set..." -msgstr "Symbolsatz..." +msgstr "~Symbolsatz..." #: CalcCommands.xcu msgctxt "" @@ -1067,7 +1067,7 @@ "Label\n" "value.text" msgid "Manage..." -msgstr "Verwalten..." +msgstr "~Verwalten..." #: CalcCommands.xcu msgctxt "" @@ -1166,7 +1166,7 @@ "Label\n" "value.text" msgid "Wrap Text" -msgstr "Text umbrechen" +msgstr "Text u~mbrechen" #: CalcCommands.xcu msgctxt "" @@ -1229,7 +1229,7 @@ "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 @@ "Label\n" "value.text" msgid "Delete C~ells..." -msgstr "Zellen l~öschen..." +msgstr "Zellen lösche~n..." #: CalcCommands.xcu msgctxt "" @@ -1274,7 +1274,7 @@ "Label\n" "value.text" msgid "~Delete Sheet..." -msgstr "Tabelle ~löschen..." +msgstr "Tabelle lösc~hen..." #: CalcCommands.xcu msgctxt "" @@ -1472,7 +1472,7 @@ "Label\n" "value.text" msgid "~Covariance..." -msgstr "Ko~varianz..." +msgstr "K~ovarianz..." #: CalcCommands.xcu msgctxt "" @@ -1544,7 +1544,7 @@ "Label\n" "value.text" msgid "~Headers and Footers..." -msgstr "K~opf-/Fußzeilen..." +msgstr "Ko~pf-/Fußzeile..." #: CalcCommands.xcu msgctxt "" @@ -1580,7 +1580,7 @@ "Label\n" "value.text" msgid "Delete Columns" -msgstr "Spalten lös~chen" +msgstr "Spalten lö~schen" #: CalcCommands.xcu msgctxt "" @@ -1607,7 +1607,7 @@ "Label\n" "value.text" msgid "~Show Changes..." -msgstr "Änderungen an~zeigen..." +msgstr "Änderungen anz~eigen..." #: CalcCommands.xcu msgctxt "" @@ -1643,7 +1643,7 @@ "Label\n" "value.text" msgid "Show Comment" -msgstr "Kommentar anzeigen" +msgstr "Kommentar ~anzeigen" #: CalcCommands.xcu msgctxt "" @@ -1652,7 +1652,7 @@ "Label\n" "value.text" msgid "Hide Comment" -msgstr "Kommentar ausblenden" +msgstr "Kommentar a~usblenden" #: CalcCommands.xcu msgctxt "" @@ -1670,7 +1670,7 @@ "Label\n" "value.text" msgid "Delete Comment" -msgstr "Kommentar löschen" +msgstr "Kommentar ~löschen" #: CalcCommands.xcu msgctxt "" @@ -1724,7 +1724,7 @@ "ContextLabel\n" "value.text" msgid "~Normal" -msgstr "N~ormal" +msgstr "~Normal" #: CalcCommands.xcu msgctxt "" @@ -1751,7 +1751,7 @@ "Label\n" "value.text" msgid "R~efresh Range" -msgstr "Bereich ~aktualisieren" +msgstr "Berei~ch aktualisieren" #: CalcCommands.xcu msgctxt "" @@ -1796,7 +1796,7 @@ "Label\n" "value.text" msgid "~Manage Changes..." -msgstr "Änderungen ~verwalten..." +msgstr "Änderungen ver~walten..." #: CalcCommands.xcu msgctxt "" @@ -1805,7 +1805,7 @@ "Label\n" "value.text" msgid "Underline: Double" -msgstr "Unterstreichung: doppelt" +msgstr "Do~ppelt unterstrichen" #: CalcCommands.xcu msgctxt "" @@ -1832,7 +1832,7 @@ "Label\n" "value.text" msgid "Cle~ar Cells..." -msgstr "Zellinhalte ~löschen..." +msgstr "Inhalte ~löschen..." #: CalcCommands.xcu msgctxt "" @@ -1967,7 +1967,7 @@ "Label\n" "value.text" msgid "Insert ~Cells..." -msgstr "~Zellen einfügen..." +msgstr "Zellen e~infügen..." #: CalcCommands.xcu msgctxt "" @@ -2111,7 +2111,7 @@ "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 @@ "ContextLabel\n" "value.text" msgid "Ce~lls..." -msgstr "Z~ellen..." +msgstr "Ze~llen..." #: CalcCommands.xcu msgctxt "" @@ -2264,7 +2264,7 @@ "ContextLabel\n" "value.text" msgid "~Optimal Height..." -msgstr "~Optimale Höhe..." +msgstr "Optimale ~Höhe..." #: CalcCommands.xcu msgctxt "" @@ -2336,7 +2336,7 @@ "ContextLabel\n" "value.text" msgid "~Optimal Width..." -msgstr "~Optimale Breite..." +msgstr "Optimale ~Breite..." #: CalcCommands.xcu msgctxt "" @@ -2390,7 +2390,7 @@ "Label\n" "value.text" msgid "~Show Sheet..." -msgstr "Tabelle ~einblenden..." +msgstr "Tabelle einblen~den..." #: CalcCommands.xcu msgctxt "" @@ -2399,7 +2399,7 @@ "Label\n" "value.text" msgid "Merge Cells" -msgstr "Zellen verbinden" +msgstr "Zellen ~verbinden" #: CalcCommands.xcu msgctxt "" @@ -2408,7 +2408,7 @@ "Label\n" "value.text" msgid "Split Cells" -msgstr "Zelle teilen" +msgstr "Zelle teile~n" #: CalcCommands.xcu msgctxt "" @@ -2453,7 +2453,7 @@ "Label\n" "value.text" msgid "~Text..." -msgstr "~Text..." +msgstr "Te~xt..." #: CalcCommands.xcu msgctxt "" @@ -2489,7 +2489,7 @@ "Label\n" "value.text" msgid "Protect ~Sheet..." -msgstr "~Tabelle schützen..." +msgstr "Tabelle ~schützen..." #: CalcCommands.xcu msgctxt "" @@ -2498,7 +2498,7 @@ "Label\n" "value.text" msgid "Protect ~Spreadsheet..." -msgstr "Tabellendokument schützen..." +msgstr "Ta~bellendokument schützen..." #: CalcCommands.xcu msgctxt "" @@ -2516,7 +2516,7 @@ "Label\n" "value.text" msgid "Sc~enarios..." -msgstr "Sze~narien..." +msgstr "S~zenarien..." #: CalcCommands.xcu msgctxt "" @@ -2570,7 +2570,7 @@ "Label\n" "value.text" msgid "~AutoInput" -msgstr "Auto~Eingabe" +msgstr "~AutoEingabe" #: CalcCommands.xcu msgctxt "" @@ -2588,7 +2588,7 @@ "ContextLabel\n" "value.text" msgid "~Define Range..." -msgstr "Bereich fest~legen..." +msgstr "Bereich f~estlegen..." #: CalcCommands.xcu msgctxt "" @@ -2606,7 +2606,7 @@ "ContextLabel\n" "value.text" msgid "Select ~Range..." -msgstr "Bereich aus~wählen..." +msgstr "Bereich auswä~hlen..." #: CalcCommands.xcu msgctxt "" @@ -2651,7 +2651,7 @@ "Label\n" "value.text" msgid "~Sort..." -msgstr "Sort~ieren..." +msgstr "S~ortieren..." #: CalcCommands.xcu msgctxt "" @@ -2678,7 +2678,7 @@ "Label\n" "value.text" msgid "Auto~Filter" -msgstr "~AutoFilter" +msgstr "AutoF~ilter" #: CalcCommands.xcu msgctxt "" @@ -2696,7 +2696,7 @@ "Label\n" "value.text" msgid "F~orm..." -msgstr "F~ormular..." +msgstr "~Formular..." #: CalcCommands.xcu msgctxt "" @@ -2741,7 +2741,7 @@ "Label\n" "value.text" msgid "~Hide AutoFilter" -msgstr "AutoFilter a~usblenden" +msgstr "AutoFilter ~ausblenden" #: CalcCommands.xcu msgctxt "" @@ -2750,7 +2750,7 @@ "Label\n" "value.text" msgid "Sort Descending" -msgstr "Absteigend sortieren" +msgstr "~Absteigend sortieren" #: CalcCommands.xcu msgctxt "" @@ -2759,7 +2759,7 @@ "Label\n" "value.text" msgid "Sort Ascending" -msgstr "Aufsteigend sortieren" +msgstr "A~ufsteigend sortieren" #: CalcCommands.xcu msgctxt "" @@ -2786,7 +2786,7 @@ "Label\n" "value.text" msgid "Sheet ~Tab Color..." -msgstr "Tabellenregisterfarbe..." +msgstr "Ta~bellenregisterfarbe..." #: CalcCommands.xcu msgctxt "" @@ -2804,7 +2804,7 @@ "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 @@ "Label\n" "value.text" msgid "Number Format" -msgstr "Zahl~format" +msgstr "Za~hlformat" #: CalcCommands.xcu msgctxt "" @@ -2948,7 +2948,7 @@ "ContextLabel\n" "value.text" msgid "Currency" -msgstr "Währung" +msgstr "~Währung" #: CalcCommands.xcu msgctxt "" @@ -2966,7 +2966,7 @@ "ContextLabel\n" "value.text" msgid "Percent" -msgstr "Prozent" +msgstr "~Prozent" #: CalcCommands.xcu msgctxt "" @@ -2984,7 +2984,7 @@ "ContextLabel\n" "value.text" msgid "General" -msgstr "Allgemein" +msgstr "~Standard" #: CalcCommands.xcu msgctxt "" @@ -3002,7 +3002,7 @@ "ContextLabel\n" "value.text" msgid "Date" -msgstr "Datum" +msgstr "~Datum" #: CalcCommands.xcu msgctxt "" @@ -3020,7 +3020,7 @@ "ContextLabel\n" "value.text" msgid "Number" -msgstr "Zahl" +msgstr "~Zahl" #: CalcCommands.xcu msgctxt "" @@ -3119,7 +3119,7 @@ "ContextLabel\n" "value.text" msgid "R~ight-To-Left" -msgstr "Rechts-nach-~links" +msgstr "~Rechts-nach-links" #: CalcCommands.xcu msgctxt "" @@ -3173,7 +3173,7 @@ "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 @@ "Label\n" "value.text" msgid "S~hare Spreadsheet..." -msgstr "Tabellendokument freigeben..." +msgstr "Tabellendokument ~freigeben..." #: CalcCommands.xcu msgctxt "" @@ -3200,7 +3200,7 @@ "ContextLabel\n" "value.text" msgid "Grid Lines for Sheet" -msgstr "Gitterlinien für Tabelle" +msgstr "Gitterlinien für T~abelle" #: CalcCommands.xcu msgctxt "" @@ -3245,7 +3245,7 @@ "Label\n" "value.text" msgid "Formula to Value" -msgstr "Formel in Wert" +msgstr "~Formel in Wert" #: CalcCommands.xcu msgctxt "" @@ -3263,7 +3263,7 @@ "Label\n" "value.text" msgid "Insert Page ~Break" -msgstr "Seitenumbruch ~einfügen" +msgstr "Umbru~ch einfügen" #: CalcCommands.xcu msgctxt "" @@ -3272,7 +3272,7 @@ "Label\n" "value.text" msgid "~Data" -msgstr "Da~ten" +msgstr "Date~n" #: CalcCommands.xcu msgctxt "" @@ -3281,7 +3281,7 @@ "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 @@ "Label\n" "value.text" msgid "F~ill Cells" -msgstr "Zellen ~ausfüllen" +msgstr "Zellen aus~füllen" #: CalcCommands.xcu msgctxt "" @@ -3308,7 +3308,7 @@ "Label\n" "value.text" msgid "~Named Expressions" -msgstr "~Benannte Ausdrücke" +msgstr "Benannte ~Ausdrücke" #: CalcCommands.xcu msgctxt "" @@ -3317,7 +3317,7 @@ "Label\n" "value.text" msgid "Edit Comment" -msgstr "Kommentar bearbeiten" +msgstr "Kommentar ~bearbeiten" #: CalcCommands.xcu msgctxt "" @@ -3398,7 +3398,7 @@ "Label\n" "value.text" msgid "Colu~mn" -msgstr "Spa~lte" +msgstr "S~palte" #: CalcCommands.xcu msgctxt "" @@ -3416,7 +3416,7 @@ "Label\n" "value.text" msgid "Cell ~Comment" -msgstr "~Zellkommentar" +msgstr "~Kommentar" #: CalcCommands.xcu msgctxt "" @@ -3425,7 +3425,7 @@ "Label\n" "value.text" msgid "M~erge Cells" -msgstr "Zellen verbi~nden" +msgstr "Zellen verbin~den" #: CalcCommands.xcu msgctxt "" @@ -3947,7 +3947,7 @@ "Label\n" "value.text" msgid "X Error ~Bars..." -msgstr "X-Fehler~balken..." +msgstr "~X-Fehlerbalken..." #: ChartCommands.xcu msgctxt "" @@ -3956,7 +3956,7 @@ "Label\n" "value.text" msgid "Y Error ~Bars..." -msgstr "Y-Fehler~balken..." +msgstr "~Y-Fehlerbalken..." #: ChartCommands.xcu msgctxt "" @@ -3965,7 +3965,7 @@ "Label\n" "value.text" msgid "Format Selection..." -msgstr "Auswahl formatieren..." +msgstr "A~uswahl formatieren..." #: ChartCommands.xcu msgctxt "" @@ -4028,7 +4028,7 @@ "Label\n" "value.text" msgid "~Data Ranges..." -msgstr "Daten~bereiche..." +msgstr "~Datenbereiche..." #: ChartCommands.xcu msgctxt "" @@ -4055,7 +4055,7 @@ "Label\n" "value.text" msgid "Bring ~Forward" -msgstr "W~eiter nach vorn" +msgstr "Nach ~vorn" #: ChartCommands.xcu msgctxt "" @@ -4064,7 +4064,7 @@ "Label\n" "value.text" msgid "Send Back~ward" -msgstr "Weiter ~nach hinten" +msgstr "Nach ~hinten" #: ChartCommands.xcu msgctxt "" @@ -4181,7 +4181,7 @@ "Label\n" "value.text" msgid "S~econdary Y Axis..." -msgstr "~Sekundäre Y-Achse..." +msgstr "S~ekundäre Y-Achse..." #: ChartCommands.xcu msgctxt "" @@ -5162,7 +5162,7 @@ "Label\n" "value.text" msgid "New Relation..." -msgstr "Neue Relation..." +msgstr "~Neue Relation..." #: DbuCommands.xcu msgctxt "" @@ -5180,7 +5180,7 @@ "Label\n" "value.text" msgid "~Index Design..." -msgstr "I~ndexentwurf..." +msgstr "~Indexentwurf..." #: DbuCommands.xcu msgctxt "" @@ -5189,7 +5189,7 @@ "Label\n" "value.text" msgid "Switch Design View On/Off" -msgstr "Design-Ansicht an-, ausschalten" +msgstr "~Designmodus umschalten" #: DbuCommands.xcu msgctxt "" @@ -5198,7 +5198,7 @@ "Label\n" "value.text" msgid "Functions" -msgstr "Funktionen" +msgstr "~Funktionen" #: DbuCommands.xcu msgctxt "" @@ -5207,7 +5207,7 @@ "Label\n" "value.text" msgid "Alias" -msgstr "Aliasname" +msgstr "~Aliasname" #: DbuCommands.xcu msgctxt "" @@ -5216,7 +5216,7 @@ "Label\n" "value.text" msgid "Table name" -msgstr "Tabellenname" +msgstr "~Tabellenname" #: DbuCommands.xcu msgctxt "" @@ -5522,7 +5522,7 @@ "Label\n" "value.text" msgid "Properties..." -msgstr "Eigenschaften..." +msgstr "~Eigenschaften..." #: DbuCommands.xcu msgctxt "" @@ -5531,7 +5531,7 @@ "Label\n" "value.text" msgid "Connection Type..." -msgstr "Verbindungsart..." +msgstr "~Verbindungsart..." #: DbuCommands.xcu msgctxt "" @@ -5540,7 +5540,7 @@ "Label\n" "value.text" msgid "Advanced Settings..." -msgstr "Erweiterte Einstellungen..." +msgstr "Er~weiterte Einstellungen..." #: DbuCommands.xcu msgctxt "" @@ -5549,7 +5549,7 @@ "Label\n" "value.text" msgid "Tables" -msgstr "Tabellen" +msgstr "~Tabellen" #: DbuCommands.xcu msgctxt "" @@ -5558,7 +5558,7 @@ "Label\n" "value.text" msgid "Queries" -msgstr "Abfragen" +msgstr "~Abfragen" #: DbuCommands.xcu msgctxt "" @@ -5567,7 +5567,7 @@ "Label\n" "value.text" msgid "Forms" -msgstr "Formulare" +msgstr "~Formulare" #: DbuCommands.xcu msgctxt "" @@ -5576,7 +5576,7 @@ "Label\n" "value.text" msgid "Reports" -msgstr "Berichte" +msgstr "~Berichte" #: DbuCommands.xcu msgctxt "" @@ -5603,7 +5603,7 @@ "Label\n" "value.text" msgid "None" -msgstr "Keine" +msgstr "~Keine" #: DbuCommands.xcu msgctxt "" @@ -5612,7 +5612,7 @@ "Label\n" "value.text" msgid "Document Information" -msgstr "Dokumentinformationen" +msgstr "Dokument~informationen" #: DbuCommands.xcu msgctxt "" @@ -5621,7 +5621,7 @@ "Label\n" "value.text" msgid "Document" -msgstr "Dokument" +msgstr "~Dokument" #: DbuCommands.xcu msgctxt "" @@ -5630,7 +5630,7 @@ "Label\n" "value.text" msgid "Form..." -msgstr "Formular..." +msgstr "~Formular..." #: DbuCommands.xcu msgctxt "" @@ -5639,7 +5639,7 @@ "Label\n" "value.text" msgid "Query (Design View)..." -msgstr "Abfrage (Entwurfsansicht)..." +msgstr "Abfrage (~Entwurfsansicht)..." #: DbuCommands.xcu msgctxt "" @@ -5648,7 +5648,7 @@ "Label\n" "value.text" msgid "Query (SQL View)..." -msgstr "Abfrage (SQL-Ansicht)..." +msgstr "Abfrage (~SQL-Ansicht)..." #: DbuCommands.xcu msgctxt "" @@ -5657,7 +5657,7 @@ "Label\n" "value.text" msgid "Table Design..." -msgstr "Tabellenentwurf..." +msgstr "~Tabellenentwurf..." #: DbuCommands.xcu msgctxt "" @@ -5666,7 +5666,7 @@ "Label\n" "value.text" msgid "View Design..." -msgstr "Ansichtsentwurf..." +msgstr "A~nsichtsentwurf..." #: DbuCommands.xcu msgctxt "" @@ -5675,7 +5675,7 @@ "Label\n" "value.text" msgid "View (Simple)..." -msgstr "Ansicht (einfach)..." +msgstr "~Ansicht (einfach)..." #: DbuCommands.xcu msgctxt "" @@ -5684,7 +5684,7 @@ "Label\n" "value.text" msgid "Folder..." -msgstr "Ordner..." +msgstr "~Ordner..." #: DbuCommands.xcu msgctxt "" @@ -5693,7 +5693,7 @@ "Label\n" "value.text" msgid "Relationships..." -msgstr "Beziehungen..." +msgstr "~Beziehungen..." #: DbuCommands.xcu msgctxt "" @@ -5702,7 +5702,7 @@ "Label\n" "value.text" msgid "User Administration..." -msgstr "Benutzerverwaltung..." +msgstr "Benutzer~verwaltung..." #: DbuCommands.xcu msgctxt "" @@ -5711,7 +5711,7 @@ "Label\n" "value.text" msgid "Table Filter..." -msgstr "Tabellenfilter..." +msgstr "Tabellen~filter..." #: DbuCommands.xcu msgctxt "" @@ -5720,7 +5720,7 @@ "Label\n" "value.text" msgid "Refresh Tables" -msgstr "Tabellen aktualisieren" +msgstr "~Tabellen aktualisieren" #: DbuCommands.xcu msgctxt "" @@ -5729,7 +5729,7 @@ "Label\n" "value.text" msgid "SQL..." -msgstr "SQL..." +msgstr "~SQL..." #: DbuCommands.xcu msgctxt "" @@ -5738,7 +5738,7 @@ "Label\n" "value.text" msgid "Migrate Macros ..." -msgstr "Makros migrieren..." +msgstr "Makros m~igrieren..." #: DbuCommands.xcu msgctxt "" @@ -5747,7 +5747,7 @@ "Label\n" "value.text" msgid "Edit Data" -msgstr "Daten bearbeiten" +msgstr "Daten ~bearbeiten" #: DbuCommands.xcu msgctxt "" @@ -5792,7 +5792,7 @@ "Label\n" "value.text" msgid "Report As E-Mail..." -msgstr "Bericht als E-Mail..." +msgstr "Bericht a~ls E-Mail..." #: DbuCommands.xcu msgctxt "" @@ -5801,7 +5801,7 @@ "Label\n" "value.text" msgid "Report to Text Document..." -msgstr "Bericht an Textdokument..." +msgstr "Bericht an ~Textdokument..." #: DbuCommands.xcu msgctxt "" @@ -5810,7 +5810,7 @@ "Label\n" "value.text" msgid "Delete ~Record" -msgstr "~Datensatz löschen" +msgstr "Datensatz ~löschen" #: DbuCommands.xcu msgctxt "" @@ -5828,7 +5828,7 @@ "Label\n" "value.text" msgid "Preview" -msgstr "Vorschau" +msgstr "~Vorschau" #: DbuCommands.xcu msgctxt "" @@ -5837,7 +5837,7 @@ "Label\n" "value.text" msgid "Report..." -msgstr "Bericht..." +msgstr "~Bericht..." #: DbuCommands.xcu msgctxt "" @@ -5855,7 +5855,7 @@ "Label\n" "value.text" msgid "Database Objects" -msgstr "Datenbankobjekte" +msgstr "~Datenbankobjekte" #: DbuCommands.xcu msgctxt "" @@ -5864,7 +5864,7 @@ "Label\n" "value.text" msgid "Sort" -msgstr "Sortieren" +msgstr "S~ortieren" #: DbuCommands.xcu msgctxt "" @@ -5873,7 +5873,7 @@ "Label\n" "value.text" msgid "Preview" -msgstr "Vorschau" +msgstr "~Vorschau" #: DrawImpressCommands.xcu msgctxt "" @@ -5900,7 +5900,7 @@ "Label\n" "value.text" msgid "S~lide" -msgstr "~Folie" +msgstr "F~olie" #: DrawImpressCommands.xcu msgctxt "" @@ -5909,7 +5909,7 @@ "Label\n" "value.text" msgid "Navigate" -msgstr "Navigieren" +msgstr "Navigie~ren" #: DrawImpressCommands.xcu msgctxt "" @@ -5918,7 +5918,7 @@ "Label\n" "value.text" msgid "Move" -msgstr "Verschieben" +msgstr "Vers~chieben" #: DrawImpressCommands.xcu msgctxt "" @@ -5927,7 +5927,7 @@ "Label\n" "value.text" msgid "Rename Page/Slide" -msgstr "Folie umbenennen" +msgstr "Folie um~benennen" #: DrawImpressCommands.xcu msgctxt "" @@ -5990,7 +5990,7 @@ "Label\n" "value.text" msgid "Photo Album" -msgstr "F~otoalbum..." +msgstr "~Fotoalbum..." #: DrawImpressCommands.xcu msgctxt "" @@ -6008,7 +6008,7 @@ "Label\n" "value.text" msgid "Sho~w Slide" -msgstr "Folie einb~lenden" +msgstr "Folie einblen~den" #: DrawImpressCommands.xcu msgctxt "" @@ -6116,7 +6116,7 @@ "Label\n" "value.text" msgid "~Glue Points" -msgstr "Kle~bepunkte" +msgstr "K~lebepunkte" #: DrawImpressCommands.xcu msgctxt "" @@ -6341,7 +6341,7 @@ "Label\n" "value.text" msgid "Custom Animation" -msgstr "Benutzerdefinierte Animation" +msgstr "Benut~zerdefinierte Animation" #: DrawImpressCommands.xcu msgctxt "" @@ -6359,7 +6359,7 @@ "Label\n" "value.text" msgid "Slide Transition" -msgstr "Folienübergang" +msgstr "Folienüberg~ang" #: DrawImpressCommands.xcu msgctxt "" @@ -6404,7 +6404,7 @@ "Label\n" "value.text" msgid "Duplicate Page/~Slide" -msgstr "Folie d~uplizieren" +msgstr "Folie do~ppeln" #: DrawImpressCommands.xcu msgctxt "" @@ -6413,7 +6413,7 @@ "Label\n" "value.text" msgid "E~xpand Slide" -msgstr "Folie aus G~liederung" +msgstr "Folie aus ~Gliederung" #: DrawImpressCommands.xcu msgctxt "" @@ -6422,7 +6422,7 @@ "Label\n" "value.text" msgid "Su~mmary Slide" -msgstr "Ãœbe~rsichtsfolie" +msgstr "Ãœbersic~htsfolie" #: DrawImpressCommands.xcu msgctxt "" @@ -6458,7 +6458,7 @@ "Label\n" "value.text" msgid "~Notes Master" -msgstr "~Notizenmaster" +msgstr "Noti~zenmaster" #: DrawImpressCommands.xcu msgctxt "" @@ -6476,7 +6476,7 @@ "Label\n" "value.text" msgid "Dat~e (variable)" -msgstr "Da~tum (variabel)" +msgstr "Datum (~variabel)" #: DrawImpressCommands.xcu msgctxt "" @@ -6485,7 +6485,7 @@ "Label\n" "value.text" msgid "~Date (fixed)" -msgstr "~Datum (fix)" +msgstr "Datum (~fix)" #: DrawImpressCommands.xcu msgctxt "" @@ -6521,7 +6521,7 @@ "Label\n" "value.text" msgid "Page Tit~le" -msgstr "~Folientitel" +msgstr "Folien~titel" #: DrawImpressCommands.xcu msgctxt "" @@ -6566,7 +6566,7 @@ "Label\n" "value.text" msgid "~Custom Slide Show..." -msgstr "I~ndividuelle Präsentation..." +msgstr "~Individuelle Präsentation..." #: DrawImpressCommands.xcu msgctxt "" @@ -6575,7 +6575,7 @@ "Label\n" "value.text" msgid "~Color" -msgstr "~Farbe" +msgstr "~Farbig" #: DrawImpressCommands.xcu msgctxt "" @@ -6719,7 +6719,7 @@ "ContextLabel\n" "value.text" msgid "~Page/Slide Properties..." -msgstr "~Folieneigenschaften..." +msgstr "Folien~eigenschaften..." #: DrawImpressCommands.xcu msgctxt "" @@ -6737,7 +6737,7 @@ "Label\n" "value.text" msgid "Duplicat~e..." -msgstr "Vervie~lfältigen..." +msgstr "Ve~rvielfältigen..." #: DrawImpressCommands.xcu msgctxt "" @@ -6791,7 +6791,7 @@ "Label\n" "value.text" msgid "Sli~de Sorter" -msgstr "Folien~sortierung" +msgstr "Foliensortier~ung" #: DrawImpressCommands.xcu msgctxt "" @@ -6809,7 +6809,7 @@ "Label\n" "value.text" msgid "New Page/Slid~e" -msgstr "~Neue Folie" +msgstr "Neue ~Folie" #: DrawImpressCommands.xcu msgctxt "" @@ -6944,7 +6944,7 @@ "Label\n" "value.text" msgid "~Insert Snap Point/Line..." -msgstr "F~angpunkt/-linie einfügen..." +msgstr "Fan~gpunkt/-linie einfügen..." #: DrawImpressCommands.xcu msgctxt "" @@ -6962,7 +6962,7 @@ "Label\n" "value.text" msgid "~Layer..." -msgstr "E~bene..." +msgstr "Ebe~ne..." #: DrawImpressCommands.xcu msgctxt "" @@ -6971,7 +6971,7 @@ "Label\n" "value.text" msgid "Slide ~Layout" -msgstr "Folienlayout" +msgstr "Folienla~yout" #: DrawImpressCommands.xcu msgctxt "" @@ -7016,7 +7016,7 @@ "Label\n" "value.text" msgid "~Master" -msgstr "~Master" +msgstr "Mas~ter" #: DrawImpressCommands.xcu msgctxt "" @@ -7079,7 +7079,7 @@ "Label\n" "value.text" msgid "Animated Image..." -msgstr "An~imiertes Bild..." +msgstr "~Animiertes Bild..." #: DrawImpressCommands.xcu msgctxt "" @@ -7115,7 +7115,7 @@ "Label\n" "value.text" msgid "Notes" -msgstr "Notizen" +msgstr "No~tizen" #: DrawImpressCommands.xcu msgctxt "" @@ -7142,7 +7142,7 @@ "ContextLabel\n" "value.text" msgid "Modes Tab Bar" -msgstr "Modi der Registerleiste" +msgstr "Re~gisterleiste umschalten" #: DrawImpressCommands.xcu msgctxt "" @@ -7151,7 +7151,7 @@ "Label\n" "value.text" msgid "H~andout Master" -msgstr "Hand~zettelmaster" +msgstr "~Handzettelmaster" #: DrawImpressCommands.xcu msgctxt "" @@ -7160,7 +7160,7 @@ "Label\n" "value.text" msgid "D~elete Page/Slide" -msgstr "Folie ~löschen" +msgstr "F~olie löschen" #: DrawImpressCommands.xcu msgctxt "" @@ -7178,7 +7178,7 @@ "Label\n" "value.text" msgid "~Split" -msgstr "Ko~mbination aufheben" +msgstr "K~ombination aufheben" #: DrawImpressCommands.xcu msgctxt "" @@ -7232,7 +7232,7 @@ "Label\n" "value.text" msgid "C~onnect" -msgstr "Ver~binden" +msgstr "Verbi~nden" #: DrawImpressCommands.xcu msgctxt "" @@ -7241,7 +7241,7 @@ "Label\n" "value.text" msgid "~Break" -msgstr "Au~fbrechen" +msgstr "Aufbre~chen" #: DrawImpressCommands.xcu msgctxt "" @@ -7682,7 +7682,7 @@ "Label\n" "value.text" msgid "1 Bit Threshold" -msgstr "1Bit-Schwellenwert" +msgstr "1 Bit-~Schwellenwert" #: DrawImpressCommands.xcu msgctxt "" @@ -7691,7 +7691,7 @@ "Label\n" "value.text" msgid "1 Bit Dithered" -msgstr "1Bit-Gedithert" +msgstr "~1 Bit-Gedithert" #: DrawImpressCommands.xcu msgctxt "" @@ -7700,7 +7700,7 @@ "Label\n" "value.text" msgid "4 Bit grayscales" -msgstr "4Bit-Graustufenpalette" +msgstr "4 Bit-~Graustufen" #: DrawImpressCommands.xcu msgctxt "" @@ -7709,7 +7709,7 @@ "Label\n" "value.text" msgid "4 Bit color palette" -msgstr "4Bit-Farbpalette" +msgstr "~4 Bit-Farbpalette" #: DrawImpressCommands.xcu msgctxt "" @@ -7718,7 +7718,7 @@ "Label\n" "value.text" msgid "8 Bit Grayscales" -msgstr "8Bit-Graustufenpalette" +msgstr "8 Bit-G~raustufen" #: DrawImpressCommands.xcu msgctxt "" @@ -7727,7 +7727,7 @@ "Label\n" "value.text" msgid "8 Bit color palette" -msgstr "8Bit-Farbpalette" +msgstr "~8 Bit-Farbpalette" #: DrawImpressCommands.xcu msgctxt "" @@ -7736,7 +7736,7 @@ "Label\n" "value.text" msgid "24 Bit True Color" -msgstr "24Bit-Echtfarben" +msgstr "24 Bit-~Echtfarben" #: DrawImpressCommands.xcu msgctxt "" @@ -7790,7 +7790,7 @@ "Label\n" "value.text" msgid "Set Background Image..." -msgstr "Hintergrundbild festlegen..." +msgstr "Hintergrundbild fes~tlegen..." #: DrawImpressCommands.xcu msgctxt "" @@ -7799,7 +7799,7 @@ "Label\n" "value.text" msgid "Save Background Image..." -msgstr "Hintergrundbild speichern..." +msgstr "Hintergrundbild ~speichern..." #: DrawImpressCommands.xcu msgctxt "" @@ -7808,7 +7808,7 @@ "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 @@ "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 @@ "Label\n" "value.text" msgid "New Master" -msgstr "Neuer Master" +msgstr "~Neuer Master" #: DrawImpressCommands.xcu msgctxt "" @@ -7934,7 +7934,7 @@ "Label\n" "value.text" msgid "Delete Master" -msgstr "Master löschen" +msgstr "Master ~löschen" #: DrawImpressCommands.xcu msgctxt "" @@ -7988,7 +7988,7 @@ "Label\n" "value.text" msgid "~Modify" -msgstr "Ä~ndern" +msgstr "Ände~rn" #: DrawImpressCommands.xcu msgctxt "" @@ -8006,7 +8006,7 @@ "Label\n" "value.text" msgid "~Flip" -msgstr "Sp~iegeln" +msgstr "Spi~egeln" #: DrawImpressCommands.xcu msgctxt "" @@ -8051,7 +8051,7 @@ "Label\n" "value.text" msgid "~Color/Grayscale" -msgstr "~Farbe" +msgstr "Far~be" #: DrawImpressCommands.xcu msgctxt "" @@ -8150,7 +8150,7 @@ "Label\n" "value.text" msgid "~Header and Footer..." -msgstr "K~opf-/Fußzeile..." +msgstr "Ko~pf-/Fußzeile..." #: DrawImpressCommands.xcu msgctxt "" @@ -8177,7 +8177,7 @@ "Label\n" "value.text" msgid "~Normal" -msgstr "N~ormal" +msgstr "~Normal" #: DrawImpressCommands.xcu msgctxt "" @@ -8195,7 +8195,7 @@ "Label\n" "value.text" msgid "S~lide Pane" -msgstr "Folien~bereich" +msgstr "Folienberei~ch" #: DrawImpressCommands.xcu msgctxt "" @@ -8204,7 +8204,7 @@ "Label\n" "value.text" msgid "~Page Pane" -msgstr "Seitenberei~ch" +msgstr "Folienberei~ch" #: DrawImpressCommands.xcu msgctxt "" @@ -8249,7 +8249,7 @@ "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 @@ "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 @@ "Label\n" "value.text" msgid "~Rows..." -msgstr "Zei~len..." +msgstr "~Zeilen..." #: DrawImpressCommands.xcu msgctxt "" @@ -8384,7 +8384,7 @@ "ContextLabel\n" "value.text" msgid "~Rows" -msgstr "Zei~len" +msgstr "~Zeilen" #: DrawImpressCommands.xcu msgctxt "" @@ -8393,7 +8393,7 @@ "Label\n" "value.text" msgid "Ta~ble Properties..." -msgstr "Tabellen~eigenschaften..." +msgstr "Tabellene~igenschaften..." #: DrawImpressCommands.xcu msgctxt "" @@ -8411,7 +8411,7 @@ "Label\n" "value.text" msgid "So~rt..." -msgstr "Sorti~eren..." +msgstr "S~ortieren..." #: DrawImpressCommands.xcu msgctxt "" @@ -8510,7 +8510,7 @@ "Label\n" "value.text" msgid "Minimize ~Presentation..." -msgstr "Präsentation komprimi~eren..." +msgstr "Präsentation ~komprimieren..." #: DrawImpressCommands.xcu msgctxt "" @@ -8600,7 +8600,7 @@ "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 @@ "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 @@ "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 @@ "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 @@ "Label\n" "value.text" msgid "Fo~rm Control" -msgstr "Formular-~Steuerelemente" +msgstr "Form~ular-Steuerelemente" #: GenericCommands.xcu msgctxt "" @@ -12488,7 +12488,7 @@ "Label\n" "value.text" msgid "Fontwork Gallery..." -msgstr "Fontwork..." +msgstr "Fontwo~rk..." #: GenericCommands.xcu msgctxt "" @@ -12560,7 +12560,7 @@ "Label\n" "value.text" msgid "Decrease Paragraph Spacing" -msgstr "Absatzabstand verringern" +msgstr "Absatzabstand ~verringern" #: GenericCommands.xcu msgctxt "" @@ -12605,7 +12605,7 @@ "Label\n" "value.text" msgid "Rectangle" -msgstr "Rechteck" +msgstr "~Rechteck" #: GenericCommands.xcu msgctxt "" @@ -12614,7 +12614,7 @@ "Label\n" "value.text" msgid "Rectangle, Rounded" -msgstr "Abgerundetes Rechteck" +msgstr "A~bgerundetes Rechteck" #: GenericCommands.xcu msgctxt "" @@ -12623,7 +12623,7 @@ "Label\n" "value.text" msgid "Square" -msgstr "Quadrat" +msgstr "~Quadrat" #: GenericCommands.xcu msgctxt "" @@ -12632,7 +12632,7 @@ "Label\n" "value.text" msgid "Square, Rounded" -msgstr "Abgerundetes Quadrat" +msgstr "Ab~gerundetes Quadrat" #: GenericCommands.xcu msgctxt "" @@ -12641,7 +12641,7 @@ "Label\n" "value.text" msgid "Circle" -msgstr "Kreis" +msgstr "~Kreis" #: GenericCommands.xcu msgctxt "" @@ -12650,7 +12650,7 @@ "Label\n" "value.text" msgid "Ellipse" -msgstr "Ellipse" +msgstr "~Ellipse" #: GenericCommands.xcu msgctxt "" @@ -12659,7 +12659,7 @@ "Label\n" "value.text" msgid "Circle Pie" -msgstr "Ellipsensektor" +msgstr "E~llipsensektor" #: GenericCommands.xcu msgctxt "" @@ -12668,7 +12668,7 @@ "Label\n" "value.text" msgid "Isosceles Triangle" -msgstr "Gleichschenkliges Dreieck" +msgstr "Gleichschenkliges ~Dreieck" #: GenericCommands.xcu msgctxt "" @@ -12677,7 +12677,7 @@ "Label\n" "value.text" msgid "Right Triangle" -msgstr "Rechtwinkliges Dreieck" +msgstr "Re~chtwinkliges Dreieck" #: GenericCommands.xcu msgctxt "" @@ -12686,7 +12686,7 @@ "Label\n" "value.text" msgid "Trapezoid" -msgstr "Trapezoid" +msgstr "~Trapezoid" #: GenericCommands.xcu msgctxt "" @@ -12695,7 +12695,7 @@ "Label\n" "value.text" msgid "Diamond" -msgstr "Raute" +msgstr "Ra~ute" #: GenericCommands.xcu msgctxt "" @@ -12704,7 +12704,7 @@ "Label\n" "value.text" msgid "Parallelogram" -msgstr "Parallelogramm" +msgstr "~Parallelogramm" #: GenericCommands.xcu msgctxt "" @@ -12713,7 +12713,7 @@ "Label\n" "value.text" msgid "Regular Pentagon" -msgstr "Regelmäßiges Fünfeck" +msgstr "Regelmäßiges F~ünfeck" #: GenericCommands.xcu msgctxt "" @@ -12722,7 +12722,7 @@ "Label\n" "value.text" msgid "Hexagon" -msgstr "Sechseck" +msgstr "~Sechseck" #: GenericCommands.xcu msgctxt "" @@ -12731,7 +12731,7 @@ "Label\n" "value.text" msgid "Octagon" -msgstr "Achteck" +msgstr "~Achteck" #: GenericCommands.xcu msgctxt "" @@ -12740,7 +12740,7 @@ "Label\n" "value.text" msgid "Cross" -msgstr "Kreuz" +msgstr "Kreu~z" #: GenericCommands.xcu msgctxt "" @@ -12749,7 +12749,7 @@ "Label\n" "value.text" msgid "Ring" -msgstr "Ring" +msgstr "R~ing" #: GenericCommands.xcu msgctxt "" @@ -12758,7 +12758,7 @@ "Label\n" "value.text" msgid "Block Arc" -msgstr "Halbbogen" +msgstr "~Halbbogen" #: GenericCommands.xcu msgctxt "" @@ -12767,7 +12767,7 @@ "Label\n" "value.text" msgid "Cylinder" -msgstr "Zylinder" +msgstr "Z~ylinder" #: GenericCommands.xcu msgctxt "" @@ -12776,7 +12776,7 @@ "Label\n" "value.text" msgid "Cube" -msgstr "Würfel" +msgstr "~Würfel" #: GenericCommands.xcu msgctxt "" @@ -12785,7 +12785,7 @@ "Label\n" "value.text" msgid "Folded Corner" -msgstr "Gefaltete Ecke" +msgstr "Ge~faltete Ecke" #: GenericCommands.xcu msgctxt "" @@ -12794,7 +12794,7 @@ "Label\n" "value.text" msgid "Frame" -msgstr "Rahmen" +msgstr "Rahme~n" #: GenericCommands.xcu msgctxt "" @@ -12803,7 +12803,7 @@ "Label\n" "value.text" msgid "Smiley Face" -msgstr "Smiley" +msgstr "~Smiley" #: GenericCommands.xcu msgctxt "" @@ -12812,7 +12812,7 @@ "Label\n" "value.text" msgid "Sun" -msgstr "Sonne" +msgstr "S~onne" #: GenericCommands.xcu msgctxt "" @@ -12821,7 +12821,7 @@ "Label\n" "value.text" msgid "Moon" -msgstr "Mond" +msgstr "~Mond" #: GenericCommands.xcu msgctxt "" @@ -12830,7 +12830,7 @@ "Label\n" "value.text" msgid "Lightning Bolt" -msgstr "Blitz" +msgstr "~Blitz" #: GenericCommands.xcu msgctxt "" @@ -12839,7 +12839,7 @@ "Label\n" "value.text" msgid "Heart" -msgstr "Herz" +msgstr "~Herz" #: GenericCommands.xcu msgctxt "" @@ -12848,7 +12848,7 @@ "Label\n" "value.text" msgid "Flower" -msgstr "Blume" +msgstr "Bl~ume" #: GenericCommands.xcu msgctxt "" @@ -12857,7 +12857,7 @@ "Label\n" "value.text" msgid "Cloud" -msgstr "Wolke" +msgstr "~Wolke" #: GenericCommands.xcu msgctxt "" @@ -12866,7 +12866,7 @@ "Label\n" "value.text" msgid "\"Prohibited\" Symbol" -msgstr "\"Verboten\" Symbol" +msgstr "\"~Verboten\" Symbol" #: GenericCommands.xcu msgctxt "" @@ -12875,7 +12875,7 @@ "Label\n" "value.text" msgid "Puzzle" -msgstr "Puzzle" +msgstr "~Puzzle" #: GenericCommands.xcu msgctxt "" @@ -12884,7 +12884,7 @@ "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 @@ "Label\n" "value.text" msgid "Left Bracket" -msgstr "Runde Klammer links" +msgstr "Runde Klammer ~links" #: GenericCommands.xcu msgctxt "" @@ -12902,7 +12902,7 @@ "Label\n" "value.text" msgid "Right Bracket" -msgstr "Runde Klammer rechts" +msgstr "Runde Klammer ~rechts" #: GenericCommands.xcu msgctxt "" @@ -12911,7 +12911,7 @@ "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 @@ "Label\n" "value.text" msgid "Left Brace" -msgstr "Geschweifte Klammer links" +msgstr "Geschweifte Klammer l~inks" #: GenericCommands.xcu msgctxt "" @@ -12929,7 +12929,7 @@ "Label\n" "value.text" msgid "Right Brace" -msgstr "Geschweifte Klammer rechts" +msgstr "G~eschweifte Klammer rechts" #: GenericCommands.xcu msgctxt "" @@ -12938,7 +12938,7 @@ "Label\n" "value.text" msgid "Square Bevel" -msgstr "Bilderrahmen" +msgstr "Bil~derrahmen" #: GenericCommands.xcu msgctxt "" @@ -12947,7 +12947,7 @@ "Label\n" "value.text" msgid "Octagon Bevel" -msgstr "Achteckiger Bilderrahmen" +msgstr "~Achteckiger Bilderrahmen" #: GenericCommands.xcu msgctxt "" @@ -12956,7 +12956,7 @@ "Label\n" "value.text" msgid "Diamond Bevel" -msgstr "Rautenförmiger Bilderrahmen" +msgstr "Rauten~förmiger Bilderrahmen" #: GenericCommands.xcu msgctxt "" @@ -12965,7 +12965,7 @@ "Label\n" "value.text" msgid "Left Arrow" -msgstr "Pfeil nach links" +msgstr "Pfeil nach ~links" #: GenericCommands.xcu msgctxt "" @@ -12974,7 +12974,7 @@ "Label\n" "value.text" msgid "Right Arrow" -msgstr "Pfeil nach rechts" +msgstr "Pfeil nach ~rechts" #: GenericCommands.xcu msgctxt "" @@ -12983,7 +12983,7 @@ "Label\n" "value.text" msgid "Up Arrow" -msgstr "Pfeil nach oben" +msgstr "Pfeil nach ~oben" #: GenericCommands.xcu msgctxt "" @@ -12992,7 +12992,7 @@ "Label\n" "value.text" msgid "Down Arrow" -msgstr "Pfeil nach unten" +msgstr "Pfeil nach ~unten" #: GenericCommands.xcu msgctxt "" @@ -13001,7 +13001,7 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "Label\n" "value.text" msgid "Split Arrow" -msgstr "Pfeil mit Gabelung" +msgstr "Pfeil mit ~Gabelung" #: GenericCommands.xcu msgctxt "" @@ -13064,7 +13064,7 @@ "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 @@ "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 @@ "Label\n" "value.text" msgid "Pentagon" -msgstr "Richtungspfeil" +msgstr "R~ichtungspfeil" #: GenericCommands.xcu msgctxt "" @@ -13091,7 +13091,7 @@ "Label\n" "value.text" msgid "Chevron" -msgstr "Eingekerbter Richtungspfeil" +msgstr "Eingeker~bter Richtungspfeil" #: GenericCommands.xcu msgctxt "" @@ -13100,7 +13100,7 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "Label\n" "value.text" msgid "Circular Arrow" -msgstr "Pfeil im Kreis" +msgstr "Pfeil i~m Kreis" #: GenericCommands.xcu msgctxt "" @@ -13181,7 +13181,7 @@ "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 @@ "Label\n" "value.text" msgid "S-shaped Arrow" -msgstr "Schlangenpfeil" +msgstr "Gesch~wungener Pfeil" #: GenericCommands.xcu msgctxt "" @@ -13199,7 +13199,7 @@ "Label\n" "value.text" msgid "Flowchart: Process" -msgstr "Flussdiagramm: Prozess" +msgstr "~Prozess" #: GenericCommands.xcu msgctxt "" @@ -13208,7 +13208,7 @@ "Label\n" "value.text" msgid "Flowchart: Alternate Process" -msgstr "Flussdiagramm: Alternativer Prozess" +msgstr "Al~ternativer Prozess" #: GenericCommands.xcu msgctxt "" @@ -13217,7 +13217,7 @@ "Label\n" "value.text" msgid "Flowchart: Decision" -msgstr "Flussdiagramm: Verzweigung" +msgstr "Verz~weigung" #: GenericCommands.xcu msgctxt "" @@ -13226,7 +13226,7 @@ "Label\n" "value.text" msgid "Flowchart: Data" -msgstr "Flussdiagramm: Daten" +msgstr "~Daten" #: GenericCommands.xcu msgctxt "" @@ -13235,7 +13235,7 @@ "Label\n" "value.text" msgid "Flowchart: Predefined Process" -msgstr "Flussdiagramm: Vordefinierter Prozess" +msgstr "Vordef~inierter Prozess" #: GenericCommands.xcu msgctxt "" @@ -13244,7 +13244,7 @@ "Label\n" "value.text" msgid "Flowchart: Internal Storage" -msgstr "Flussdiagramm: Zentralspeicher" +msgstr "Zentralspei~cher" #: GenericCommands.xcu msgctxt "" @@ -13253,7 +13253,7 @@ "Label\n" "value.text" msgid "Flowchart: Document" -msgstr "Flussdiagramm: Dokument" +msgstr "Ph~ysisches Dokument" #: GenericCommands.xcu msgctxt "" @@ -13262,7 +13262,7 @@ "Label\n" "value.text" msgid "Flowchart: Multidocument" -msgstr "Flussdiagramm: Mehrere Dokumente" +msgstr "Meh~rere physische Dokumente" #: GenericCommands.xcu msgctxt "" @@ -13271,7 +13271,7 @@ "Label\n" "value.text" msgid "Flowchart: Terminator" -msgstr "Flussdiagramm: Grenzstelle" +msgstr "~Grenzstelle" #: GenericCommands.xcu msgctxt "" @@ -13280,7 +13280,7 @@ "Label\n" "value.text" msgid "Flowchart: Preparation" -msgstr "Flussdiagramm: Vorbereitung" +msgstr "~Vorbereitung" #: GenericCommands.xcu msgctxt "" @@ -13289,7 +13289,7 @@ "Label\n" "value.text" msgid "Flowchart: Manual Input" -msgstr "Flussdiagramm: Manuelle Eingabe" +msgstr "Manuelle ~Eingabe" #: GenericCommands.xcu msgctxt "" @@ -13298,7 +13298,7 @@ "Label\n" "value.text" msgid "Flowchart: Manual Operation" -msgstr "Flussdiagramm: Manuelle Verarbeitung" +msgstr "Man~uelle Verarbeitung" #: GenericCommands.xcu msgctxt "" @@ -13307,7 +13307,7 @@ "Label\n" "value.text" msgid "Flowchart: Connector" -msgstr "Flussdiagramm: Verbindungsstelle" +msgstr "Ver~bindungsstelle" #: GenericCommands.xcu msgctxt "" @@ -13316,7 +13316,7 @@ "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 @@ "Label\n" "value.text" msgid "Flowchart: Card" -msgstr "Flussdiagramm: Karte" +msgstr "~Karte" #: GenericCommands.xcu msgctxt "" @@ -13334,7 +13334,7 @@ "Label\n" "value.text" msgid "Flowchart: Punched Tape" -msgstr "Flussdiagramm: Lochstreifen" +msgstr "~Lochstreifen" #: GenericCommands.xcu msgctxt "" @@ -13343,7 +13343,7 @@ "Label\n" "value.text" msgid "Flowchart: Summing Junction" -msgstr "Flussdiagramm: Zusammenführung" +msgstr "Zusammenf~ührung" #: GenericCommands.xcu msgctxt "" @@ -13352,7 +13352,7 @@ "Label\n" "value.text" msgid "Flowchart: Or" -msgstr "Flussdiagramm: Oder" +msgstr "~Oder" #: GenericCommands.xcu msgctxt "" @@ -13361,7 +13361,7 @@ "Label\n" "value.text" msgid "Flowchart: Collate" -msgstr "Flussdiagramm: Zusammenstellen" +msgstr "~Zusammenstellen" #: GenericCommands.xcu msgctxt "" @@ -13370,7 +13370,7 @@ "Label\n" "value.text" msgid "Flowchart: Sort" -msgstr "Flussdiagramm: Sortieren" +msgstr "~Sortieren" #: GenericCommands.xcu msgctxt "" @@ -13379,7 +13379,7 @@ "Label\n" "value.text" msgid "Flowchart: Extract" -msgstr "Flussdiagramm: Auszug" +msgstr "~Auszug" #: GenericCommands.xcu msgctxt "" @@ -13388,7 +13388,7 @@ "Label\n" "value.text" msgid "Flowchart: Merge" -msgstr "Flussdiagramm: Zusammenführen" +msgstr "Zusammen~führen" #: GenericCommands.xcu msgctxt "" @@ -13397,7 +13397,7 @@ "Label\n" "value.text" msgid "Flowchart: Stored Data" -msgstr "Flussdiagramm: Gespeicherte Daten" +msgstr "Gespeic~herte Daten" #: GenericCommands.xcu msgctxt "" @@ -13406,7 +13406,7 @@ "Label\n" "value.text" msgid "Flowchart: Delay" -msgstr "Flussdiagramm: Verzögerung" +msgstr "Verz~ögerung" #: GenericCommands.xcu msgctxt "" @@ -13415,7 +13415,7 @@ "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 @@ "Label\n" "value.text" msgid "Flowchart: Magnetic Disc" -msgstr "Flussdiagramm: Magnetplattenspeicher" +msgstr "~Magnetplattenspeicher" #: GenericCommands.xcu msgctxt "" @@ -13433,7 +13433,7 @@ "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 @@ "Label\n" "value.text" msgid "Flowchart: Display" -msgstr "Flussdiagramm: Anzeige" +msgstr "A~nzeige" #: GenericCommands.xcu msgctxt "" @@ -13451,7 +13451,7 @@ "Label\n" "value.text" msgid "Rectangular Callout" -msgstr "Rechteckige Legende" +msgstr "~Rechteckige Legende" #: GenericCommands.xcu msgctxt "" @@ -13460,7 +13460,7 @@ "Label\n" "value.text" msgid "Rounded Rectangular Callout" -msgstr "Abgerundete rechteckige Legende" +msgstr "~Abgerundete rechteckige Legende" #: GenericCommands.xcu msgctxt "" @@ -13469,7 +13469,7 @@ "Label\n" "value.text" msgid "Round Callout" -msgstr "Runde Legende" +msgstr "Runde ~Legende" #: GenericCommands.xcu msgctxt "" @@ -13478,7 +13478,7 @@ "Label\n" "value.text" msgid "Cloud" -msgstr "Wolke" +msgstr "~Wolke" #: GenericCommands.xcu msgctxt "" @@ -13487,7 +13487,7 @@ "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 @@ "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 @@ "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 @@ "Label\n" "value.text" msgid "Explosion" -msgstr "Explosion" +msgstr "~Explosion" #: GenericCommands.xcu msgctxt "" @@ -13523,7 +13523,7 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "Label\n" "value.text" msgid "Vertical Scroll" -msgstr "Vertikale Schriftrolle" +msgstr "~Vertikale Schriftrolle" #: GenericCommands.xcu msgctxt "" @@ -13595,7 +13595,7 @@ "Label\n" "value.text" msgid "Horizontal Scroll" -msgstr "Horizontale Schriftrolle" +msgstr "~Horizontale Schriftrolle" #: GenericCommands.xcu msgctxt "" @@ -13604,7 +13604,7 @@ "Label\n" "value.text" msgid "Signet" -msgstr "Siegel" +msgstr "~Siegel" #: GenericCommands.xcu msgctxt "" @@ -13613,7 +13613,7 @@ "Label\n" "value.text" msgid "Doorplate" -msgstr "Türschild" +msgstr "~Türschild" #: GenericCommands.xcu msgctxt "" @@ -13910,7 +13910,7 @@ "Label\n" "value.text" msgid "Scrollbar" -msgstr "Bildlaufleiste" +msgstr "Bildla~ufleiste" #: GenericCommands.xcu msgctxt "" @@ -13937,7 +13937,7 @@ "Label\n" "value.text" msgid "Spin Button" -msgstr "Drehfeld" +msgstr "~Drehfeld" #: GenericCommands.xcu msgctxt "" @@ -14036,7 +14036,7 @@ "Label\n" "value.text" msgid "Italic" -msgstr "Kursiv" +msgstr "~Kursiv" #: GenericCommands.xcu msgctxt "" @@ -14045,7 +14045,7 @@ "Label\n" "value.text" msgid "Bold" -msgstr "Fett" +msgstr "~Fett" #: GenericCommands.xcu msgctxt "" @@ -14099,7 +14099,7 @@ "Label\n" "value.text" msgid "Shadow" -msgstr "Schatten" +msgstr "~Schatten" #: GenericCommands.xcu msgctxt "" @@ -14108,7 +14108,7 @@ "Label\n" "value.text" msgid "Object Catalog" -msgstr "Objekt-Katalog" +msgstr "~Objekt-Katalog" #: GenericCommands.xcu msgctxt "" @@ -14117,7 +14117,7 @@ "Label\n" "value.text" msgid "Outline" -msgstr "Kontur" +msgstr "K~ontur" #: GenericCommands.xcu msgctxt "" @@ -14144,7 +14144,7 @@ "Label\n" "value.text" msgid "Underline" -msgstr "Unterstrichen" +msgstr "~Unterstrichen" #: GenericCommands.xcu msgctxt "" @@ -14153,7 +14153,7 @@ "Label\n" "value.text" msgid "Overline" -msgstr "Ãœberstrichen" +msgstr "Ãœ~berstrichen" #: GenericCommands.xcu msgctxt "" @@ -14324,7 +14324,7 @@ "Label\n" "value.text" msgid "Align Left" -msgstr "Linksbündig" +msgstr "~Linksbündig" #: GenericCommands.xcu msgctxt "" @@ -14333,7 +14333,7 @@ "Label\n" "value.text" msgid "Align Right" -msgstr "Rechtsbündig" +msgstr "~Rechtsbündig" #: GenericCommands.xcu msgctxt "" @@ -14342,7 +14342,7 @@ "Label\n" "value.text" msgid "Center Horizontally" -msgstr "Horizontal zentrieren" +msgstr "~Zentrieren" #: GenericCommands.xcu msgctxt "" @@ -14360,7 +14360,7 @@ "Label\n" "value.text" msgid "Justified" -msgstr "Blocksatz" +msgstr "~Blocksatz" #: GenericCommands.xcu msgctxt "" @@ -14504,7 +14504,7 @@ "Label\n" "value.text" msgid "Zoom Out" -msgstr "Kleiner" +msgstr "Ver~größern" #: GenericCommands.xcu msgctxt "" @@ -14513,7 +14513,7 @@ "Label\n" "value.text" msgid "Zoom Out" -msgstr "Kleiner" +msgstr "Ver~kleinern" #: GenericCommands.xcu msgctxt "" @@ -14531,7 +14531,7 @@ "Label\n" "value.text" msgid "~Options..." -msgstr "~Optionen..." +msgstr "Option~en..." #: GenericCommands.xcu msgctxt "" @@ -14540,7 +14540,7 @@ "Label\n" "value.text" msgid "200%" -msgstr "200%" +msgstr "~200%" #: GenericCommands.xcu msgctxt "" @@ -14549,7 +14549,7 @@ "Label\n" "value.text" msgid "150%" -msgstr "150%" +msgstr "15~0%" #: GenericCommands.xcu msgctxt "" @@ -14558,7 +14558,7 @@ "Label\n" "value.text" msgid "100%" -msgstr "100%" +msgstr "~100%" #: GenericCommands.xcu msgctxt "" @@ -14567,7 +14567,7 @@ "Label\n" "value.text" msgid "75%" -msgstr "75%" +msgstr "~75%" #: GenericCommands.xcu msgctxt "" @@ -14576,7 +14576,7 @@ "Label\n" "value.text" msgid "50%" -msgstr "50%" +msgstr "~50%" #: GenericCommands.xcu msgctxt "" @@ -14594,7 +14594,7 @@ "Label\n" "value.text" msgid "Entire Page" -msgstr "Ganze Seite" +msgstr "~Ganze Seite" #: GenericCommands.xcu msgctxt "" @@ -14612,7 +14612,7 @@ "Label\n" "value.text" msgid "Optimal view" -msgstr "Optimale Ansicht" +msgstr "~Optimale Ansicht" #: GenericCommands.xcu msgctxt "" @@ -14630,7 +14630,7 @@ "Label\n" "value.text" msgid "Line" -msgstr "Linie" +msgstr "~Linie" #: GenericCommands.xcu msgctxt "" @@ -14738,7 +14738,7 @@ "ContextLabel\n" "value.text" msgid "Crop" -msgstr "Zuschneiden" +msgstr "~Zuschneiden" #: GenericCommands.xcu msgctxt "" @@ -14801,7 +14801,7 @@ "Label\n" "value.text" msgid "Gr~id and Helplines" -msgstr "Raster und Fanglinien" +msgstr "~Raster" #: GenericCommands.xcu msgctxt "" @@ -14837,7 +14837,7 @@ "Label\n" "value.text" msgid "Arc" -msgstr "Ellipsenbogen" +msgstr "Ellipsenb~ogen" #: GenericCommands.xcu msgctxt "" @@ -14855,7 +14855,7 @@ "Label\n" "value.text" msgid "Open Remote ~File..." -msgstr "~Webdatei öffnen..." +msgstr "Webdatei ~öffnen..." #: GenericCommands.xcu msgctxt "" @@ -14873,7 +14873,7 @@ "PopupLabel\n" "value.text" msgid "Save Remote File..." -msgstr "~Webdatei speichern..." +msgstr "Webdatei speichern~..." #: GenericCommands.xcu msgctxt "" @@ -14882,7 +14882,7 @@ "Label\n" "value.text" msgid "Circle Segment" -msgstr "Kreissegment" +msgstr "Kreisseg~ment" #: GenericCommands.xcu msgctxt "" @@ -14900,7 +14900,7 @@ "Label\n" "value.text" msgid "Save a Copy..." -msgstr "Kopie speichern..." +msgstr "Kopie~ speichern..." #. This is the action to create a private working copy of the document on a server #: GenericCommands.xcu @@ -14910,7 +14910,7 @@ "Label\n" "value.text" msgid "Check-Out" -msgstr "Arbeitsversion h~ochladen" +msgstr "Arbei~tsversion hochladen" #: GenericCommands.xcu msgctxt "" @@ -14919,7 +14919,7 @@ "Label\n" "value.text" msgid "Cancel Check-Out..." -msgstr "Hochladen abb~rechen..." +msgstr "Hochladen abbre~chen..." #. This is the action to merge a private working copy of the document on a server. It shows a dialog to input some information on the new version to create on the server. #: GenericCommands.xcu @@ -14938,7 +14938,7 @@ "Label\n" "value.text" msgid "~Close" -msgstr "S~chließen" +msgstr "Schlie~ßen" #: GenericCommands.xcu msgctxt "" @@ -14956,7 +14956,7 @@ "Label\n" "value.text" msgid "Curve, Filled" -msgstr "Kurve, gefüllt" +msgstr "Kurve, g~efüllt" #: GenericCommands.xcu msgctxt "" @@ -15046,7 +15046,7 @@ "ContextLabel\n" "value.text" msgid "Poi~nts" -msgstr "P~unkte" +msgstr "Punk~te" #: GenericCommands.xcu msgctxt "" @@ -15055,7 +15055,7 @@ "Label\n" "value.text" msgid "Comme~nt" -msgstr "Komme~ntar" +msgstr "~Kommentar" #: GenericCommands.xcu msgctxt "" @@ -15073,7 +15073,7 @@ "Label\n" "value.text" msgid "Select" -msgstr "Auswahl" +msgstr "~Auswahl" #: GenericCommands.xcu msgctxt "" @@ -15190,7 +15190,7 @@ "Label\n" "value.text" msgid "Chart from File" -msgstr "Diagramm aus Datei" +msgstr "Diagramm aus D~atei..." #: GenericCommands.xcu msgctxt "" @@ -15199,7 +15199,7 @@ "Label\n" "value.text" msgid "Bullets On/Off" -msgstr "Aufzählungszeichen an/aus" +msgstr "~Aufzählungszeichen an/aus" #: GenericCommands.xcu msgctxt "" @@ -15307,7 +15307,7 @@ "Label\n" "value.text" msgid "~Document..." -msgstr "Dokume~nt..." +msgstr "D~okument..." #: GenericCommands.xcu msgctxt "" @@ -15325,7 +15325,7 @@ "Label\n" "value.text" msgid "Full-width" -msgstr "Normale Breite" +msgstr "~Normale Breite" #: GenericCommands.xcu msgctxt "" @@ -15334,7 +15334,7 @@ "Label\n" "value.text" msgid "Numbering On/Off" -msgstr "Nummerierung ein/aus" +msgstr "~Nummerierung ein/aus" #: GenericCommands.xcu msgctxt "" @@ -15370,7 +15370,7 @@ "Label\n" "value.text" msgid "Option Button" -msgstr "Optionsfeld" +msgstr "~Optionsfeld" #: GenericCommands.xcu msgctxt "" @@ -15397,7 +15397,7 @@ "Label\n" "value.text" msgid "Check Box" -msgstr "Markierfeld" +msgstr "~Markierfeld" #: GenericCommands.xcu msgctxt "" @@ -15433,7 +15433,7 @@ "Label\n" "value.text" msgid "Move Up" -msgstr "Nach oben" +msgstr "Nach o~ben verschieben" #: GenericCommands.xcu msgctxt "" @@ -15451,7 +15451,7 @@ "Label\n" "value.text" msgid "Move Down" -msgstr "Nach unten" +msgstr "Nach ~unten verschieben" #: GenericCommands.xcu msgctxt "" @@ -15469,7 +15469,7 @@ "Label\n" "value.text" msgid "Promote" -msgstr "Ebene höher" +msgstr "Ebene ~höher verschieben" #: GenericCommands.xcu msgctxt "" @@ -15487,7 +15487,7 @@ "Label\n" "value.text" msgid "Demote" -msgstr "Ebene niedriger" +msgstr "Ebene n~iedriger verschieben" #: GenericCommands.xcu msgctxt "" @@ -15523,7 +15523,7 @@ "Label\n" "value.text" msgid "E~dit Mode" -msgstr "Bearbeit~ungsmodus" +msgstr "Bearbeitungs~modus" #: GenericCommands.xcu msgctxt "" @@ -15550,7 +15550,7 @@ "ContextLabel\n" "value.text" msgid "~Web" -msgstr "~Web" +msgstr "~Webvorschau" #: GenericCommands.xcu msgctxt "" @@ -15577,7 +15577,7 @@ "Label\n" "value.text" msgid "Horizontal Line" -msgstr "Horizontale Linie" +msgstr "~Horizontale Linie" #: GenericCommands.xcu msgctxt "" @@ -15595,7 +15595,7 @@ "Label\n" "value.text" msgid "Vertical Line" -msgstr "Vertikale Linie" +msgstr "~Vertikale Linie" #: GenericCommands.xcu msgctxt "" @@ -15667,7 +15667,7 @@ "Label\n" "value.text" msgid "Time Field" -msgstr "Zeitfeld" +msgstr "Uhrz~eit" #: GenericCommands.xcu msgctxt "" @@ -15847,7 +15847,7 @@ "Label\n" "value.text" msgid "E~xit group" -msgstr "Gruppe ~verlassen" +msgstr "Gruppe ver~lassen" #: GenericCommands.xcu msgctxt "" @@ -15865,7 +15865,7 @@ "Label\n" "value.text" msgid "Page Width" -msgstr "Seitenbreite" +msgstr "~Seitenbreite" #: GenericCommands.xcu msgctxt "" @@ -16018,7 +16018,7 @@ "Label\n" "value.text" msgid "Group Box" -msgstr "Gruppierungsrahmen" +msgstr "Gru~ppierungsrahmen" #: GenericCommands.xcu msgctxt "" @@ -16045,7 +16045,7 @@ "Label\n" "value.text" msgid "Hangul/Hanja Conversion..." -msgstr "Hangul/Hanja Konvertierung..." +msgstr "Hangul/Hanja ~Konvertierung..." #: GenericCommands.xcu msgctxt "" @@ -16054,7 +16054,7 @@ "Label\n" "value.text" msgid "Chinese Conversion..." -msgstr "Chinesisch Konvertierung..." +msgstr "~Chinesisch Konvertierung..." #: GenericCommands.xcu msgctxt "" @@ -16072,7 +16072,7 @@ "Label\n" "value.text" msgid "Combo Box" -msgstr "Kombinationsfeld" +msgstr "~Kombinationsfeld" #: GenericCommands.xcu msgctxt "" @@ -16288,7 +16288,7 @@ "Label\n" "value.text" msgid "~Remove Outline" -msgstr "Gliederung ~entfernen" +msgstr "Gliederung e~ntfernen" #: GenericCommands.xcu msgctxt "" @@ -16297,7 +16297,7 @@ "Label\n" "value.text" msgid "Helplines While Moving" -msgstr "Hilfslinien beim Verschieben" +msgstr "~Hilfslinien beim Verschieben" #: GenericCommands.xcu msgctxt "" @@ -16306,7 +16306,7 @@ "Label\n" "value.text" msgid "Close Window" -msgstr "Fenster ~schließen" +msgstr "Fenste~r schließen" #: GenericCommands.xcu msgctxt "" @@ -16315,7 +16315,7 @@ "Label\n" "value.text" msgid "Snap to Grid" -msgstr "Am Raster fangen" +msgstr "~Am Raster fangen" #: GenericCommands.xcu msgctxt "" @@ -16333,7 +16333,7 @@ "Label\n" "value.text" msgid "F~ull Screen" -msgstr "~Vollbild" +msgstr "Voll~bild" #: GenericCommands.xcu msgctxt "" @@ -16369,7 +16369,7 @@ "Label\n" "value.text" msgid "~Object and Shape" -msgstr "~Objekt und Form" +msgstr "Ob~jekt und Form" #: GenericCommands.xcu msgctxt "" @@ -16396,7 +16396,7 @@ "Label\n" "value.text" msgid "~Text" -msgstr "~Text" +msgstr "Te~xt" #: GenericCommands.xcu msgctxt "" @@ -16423,7 +16423,7 @@ "Label\n" "value.text" msgid "~Styles" -msgstr "~Vorlagen" +msgstr "V~orlagen" #: GenericCommands.xcu msgctxt "" @@ -16531,7 +16531,7 @@ "Label\n" "value.text" msgid "Show Draw Functions" -msgstr "Zeichenfunktionen anzeigen" +msgstr "Zeichenfunktionen a~nzeigen" #: GenericCommands.xcu msgctxt "" @@ -16549,7 +16549,7 @@ "Label\n" "value.text" msgid "~Line" -msgstr "~Linie" +msgstr "~Linien" #: GenericCommands.xcu msgctxt "" @@ -16558,7 +16558,7 @@ "Label\n" "value.text" msgid "~Basic" -msgstr "~Einfach" +msgstr "~Standardformen" #: GenericCommands.xcu msgctxt "" @@ -16567,7 +16567,7 @@ "Label\n" "value.text" msgid "~Symbol" -msgstr "~Symbol" +msgstr "S~ymbole" #: GenericCommands.xcu msgctxt "" @@ -16585,7 +16585,7 @@ "Label\n" "value.text" msgid "~Scrollbars" -msgstr "~Bildlaufleiste" +msgstr "Bildlaufleis~ten" #: GenericCommands.xcu msgctxt "" @@ -16612,7 +16612,7 @@ "Label\n" "value.text" msgid "~Thesaurus..." -msgstr "~Thesaurus..." +msgstr "T~hesaurus..." #: GenericCommands.xcu msgctxt "" @@ -16801,7 +16801,7 @@ "Label\n" "value.text" msgid "HT~ML Source" -msgstr "~HTML-Quelltext" +msgstr "H~TML-Quelltext" #: GenericCommands.xcu msgctxt "" @@ -16837,7 +16837,7 @@ "Label\n" "value.text" msgid "~Merge" -msgstr "Versch~melzen" +msgstr "~Verschmelzen" #: GenericCommands.xcu msgctxt "" @@ -16873,7 +16873,7 @@ "Label\n" "value.text" msgid "Superscript" -msgstr "Hochgestellt" +msgstr "~Hochgestellt" #: GenericCommands.xcu msgctxt "" @@ -16891,7 +16891,7 @@ "Label\n" "value.text" msgid "Subscript" -msgstr "Tiefgestellt" +msgstr "~Tiefgestellt" #: GenericCommands.xcu msgctxt "" @@ -16900,7 +16900,7 @@ "Label\n" "value.text" msgid "~Distribution..." -msgstr "Verteil~ung..." +msgstr "~Verteilung..." #: GenericCommands.xcu msgctxt "" @@ -16909,7 +16909,7 @@ "Label\n" "value.text" msgid "P~aragraph..." -msgstr "~Absatz..." +msgstr "Absa~tz..." #: GenericCommands.xcu msgctxt "" @@ -16918,7 +16918,7 @@ "Label\n" "value.text" msgid "Shadow" -msgstr "Schatten" +msgstr "~Schatten" #: GenericCommands.xcu msgctxt "" @@ -16945,7 +16945,7 @@ "Label\n" "value.text" msgid "Undo" -msgstr "~Rückgängig" +msgstr "Rü~ckgängig" #: GenericCommands.xcu msgctxt "" @@ -17215,7 +17215,7 @@ "Label\n" "value.text" msgid "Na~vigator" -msgstr "~Navigator" +msgstr "Na~vigator" #: GenericCommands.xcu msgctxt "" @@ -17224,7 +17224,7 @@ "Label\n" "value.text" msgid "Task Pane" -msgstr "Aufgabenbereich" +msgstr "Au~fgabenbereich" #: GenericCommands.xcu msgctxt "" @@ -17233,7 +17233,7 @@ "Label\n" "value.text" msgid "Sidebar" -msgstr "Seitenleiste" +msgstr "Se~itenleiste" #: GenericCommands.xcu msgctxt "" @@ -17521,7 +17521,7 @@ "Label\n" "value.text" msgid "Polygon (45°), Filled" -msgstr "Polygon (45°), gefüllt" +msgstr "Polygon (45°), gefüll~t" #: GenericCommands.xcu msgctxt "" @@ -17530,7 +17530,7 @@ "Label\n" "value.text" msgid "Polygon" -msgstr "Polygon" +msgstr "~Polygon" #: GenericCommands.xcu msgctxt "" @@ -17539,7 +17539,7 @@ "Label\n" "value.text" msgid "Polygon (45°)" -msgstr "Polygon (45°)" +msgstr "P~olygon (45°)" #: GenericCommands.xcu msgctxt "" @@ -17548,7 +17548,7 @@ "Label\n" "value.text" msgid "Curve" -msgstr "Kurve" +msgstr "~Kurve" #: GenericCommands.xcu msgctxt "" @@ -17620,7 +17620,7 @@ "Label\n" "value.text" msgid "~AutoCorrect Options..." -msgstr "Auto~Korrektur-Optionen..." +msgstr "A~utoKorrektur-Optionen..." #: GenericCommands.xcu msgctxt "" @@ -17692,7 +17692,7 @@ "Label\n" "value.text" msgid "Merge Documen~t..." -msgstr "~Dokument zusammenführen..." +msgstr "D~okument zusammenführen..." #: GenericCommands.xcu msgctxt "" @@ -17701,7 +17701,7 @@ "Label\n" "value.text" msgid "Flip Horizontally" -msgstr "Horizontal spiegeln" +msgstr "~Horizontal spiegeln" #: GenericCommands.xcu msgctxt "" @@ -17710,7 +17710,7 @@ "Label\n" "value.text" msgid "Flip Vertically" -msgstr "Vertikal spiegeln" +msgstr "~Vertikal spiegeln" #: GenericCommands.xcu msgctxt "" @@ -17854,7 +17854,7 @@ "Label\n" "value.text" msgid "Decrease Indent" -msgstr "Einzug vermindern" +msgstr "Einzug ver~mindern" #: GenericCommands.xcu msgctxt "" @@ -17863,7 +17863,7 @@ "Label\n" "value.text" msgid "Increase Indent" -msgstr "Einzug erhöhen" +msgstr "Einzug er~höhen" #: GenericCommands.xcu msgctxt "" @@ -17872,7 +17872,7 @@ "Label\n" "value.text" msgid "Freeform Line, Filled" -msgstr "Freihandlinie, gefüllt" +msgstr "Freihandlinie, ~gefüllt" #: GenericCommands.xcu msgctxt "" @@ -17881,7 +17881,7 @@ "Label\n" "value.text" msgid "Freeform Line" -msgstr "Freihandlinie" +msgstr "~Freihandlinie" #: GenericCommands.xcu msgctxt "" @@ -17908,7 +17908,7 @@ "Label\n" "value.text" msgid "Invert" -msgstr "Invertieren" +msgstr "~Invertieren" #: GenericCommands.xcu msgctxt "" @@ -17917,7 +17917,7 @@ "Label\n" "value.text" msgid "Smooth" -msgstr "Weichzeichnen" +msgstr "~Weichzeichnen" #: GenericCommands.xcu msgctxt "" @@ -17926,7 +17926,7 @@ "Label\n" "value.text" msgid "Sharpen" -msgstr "Schärfen" +msgstr "~Schärfen" #: GenericCommands.xcu msgctxt "" @@ -17935,7 +17935,7 @@ "Label\n" "value.text" msgid "Remove Noise" -msgstr "Rauschen entfernen" +msgstr "Rauschen ~entfernen" #: GenericCommands.xcu msgctxt "" @@ -17944,7 +17944,7 @@ "Label\n" "value.text" msgid "Charcoal Sketch" -msgstr "Kohlezeichnung" +msgstr "~Kohlezeichnung" #: GenericCommands.xcu msgctxt "" @@ -17953,7 +17953,7 @@ "Label\n" "value.text" msgid "Mosaic" -msgstr "Mosaik" +msgstr "~Mosaik" #: GenericCommands.xcu msgctxt "" @@ -17962,7 +17962,7 @@ "Label\n" "value.text" msgid "Relief" -msgstr "Relief" +msgstr "~Relief" #: GenericCommands.xcu msgctxt "" @@ -17971,7 +17971,7 @@ "Label\n" "value.text" msgid "Posterize" -msgstr "Poster" +msgstr "P~oster" #: GenericCommands.xcu msgctxt "" @@ -17980,7 +17980,7 @@ "Label\n" "value.text" msgid "Pop Art" -msgstr "Pop-Art" +msgstr "~Pop-Art" #: GenericCommands.xcu msgctxt "" @@ -17989,7 +17989,7 @@ "Label\n" "value.text" msgid "Aging" -msgstr "Altern" +msgstr "~Altern" #: GenericCommands.xcu msgctxt "" @@ -17998,7 +17998,7 @@ "Label\n" "value.text" msgid "Solarization" -msgstr "Solarisation" +msgstr "So~larisation" #: GenericCommands.xcu msgctxt "" @@ -18007,7 +18007,7 @@ "Label\n" "value.text" msgid "~Automatic Spell Checking" -msgstr "~Automatische Rechtschreibprüfung" +msgstr "Automatische Rechtschreibprüfun~g" #: GenericCommands.xcu msgctxt "" @@ -18025,7 +18025,7 @@ "Label\n" "value.text" msgid "~Address Book Source..." -msgstr "A~dressbuchquelle..." +msgstr "Adressbuch~quelle..." #: GenericCommands.xcu msgctxt "" @@ -18061,7 +18061,7 @@ "Label\n" "value.text" msgid "Record Macro" -msgstr "Makro aufzeichnen" +msgstr "Makro ~aufzeichnen" #: GenericCommands.xcu msgctxt "" @@ -18106,7 +18106,7 @@ "Label\n" "value.text" msgid "~Customize..." -msgstr "~Anpassen..." +msgstr "A~npassen..." #: GenericCommands.xcu msgctxt "" @@ -18187,7 +18187,7 @@ "Label\n" "value.text" msgid "Send Feedback..." -msgstr "Fehler melden (Englisch)" +msgstr "~Fehler melden (Englisch)" #: GenericCommands.xcu msgctxt "" @@ -18376,7 +18376,7 @@ "Label\n" "value.text" msgid "Clip Art ~Gallery" -msgstr "ClipArt-~Gallery" +msgstr "Cli~pArt-Gallery" #: GenericCommands.xcu msgctxt "" @@ -18439,7 +18439,7 @@ "Label\n" "value.text" msgid "Push Button" -msgstr "Schaltfläche" +msgstr "~Schaltfläche" #: GenericCommands.xcu msgctxt "" @@ -18466,7 +18466,7 @@ "Label\n" "value.text" msgid "Label Field" -msgstr "Beschriftungsfeld" +msgstr "~Beschriftungsfeld" #: GenericCommands.xcu msgctxt "" @@ -18484,7 +18484,7 @@ "Label\n" "value.text" msgid "Text Box" -msgstr "Textfeld" +msgstr "Te~xtfeld" #: GenericCommands.xcu msgctxt "" @@ -18493,7 +18493,7 @@ "Label\n" "value.text" msgid "List Box" -msgstr "Listenfeld" +msgstr "~Listenfeld" #: GenericCommands.xcu msgctxt "" @@ -18511,7 +18511,7 @@ "Label\n" "value.text" msgid "Table Control" -msgstr "Tabellen-Steuerelement" +msgstr "~Tabellen-Steuerelement" #: GenericCommands.xcu msgctxt "" @@ -18520,7 +18520,7 @@ "Label\n" "value.text" msgid "Image Button" -msgstr "Grafische Schaltfläche" +msgstr "~Grafische Schaltfläche" #: GenericCommands.xcu msgctxt "" @@ -18529,7 +18529,7 @@ "Label\n" "value.text" msgid "File Selection" -msgstr "Dateiauswahl" +msgstr "Dat~eiauswahl" #: GenericCommands.xcu msgctxt "" @@ -18538,7 +18538,7 @@ "Label\n" "value.text" msgid "Con~trol Properties..." -msgstr "~Kontrollfeld Eigenschaften..." +msgstr "~Kontrollfeld-Eigenschaften..." #: GenericCommands.xcu msgctxt "" @@ -18556,7 +18556,7 @@ "Label\n" "value.text" msgid "Activation Order..." -msgstr "Aktivierungsreihenfolge..." +msgstr "Aktivierungs~reihenfolge..." #: GenericCommands.xcu msgctxt "" @@ -18628,7 +18628,7 @@ "Label\n" "value.text" msgid "Add Field..." -msgstr "Feld hinzufügen..." +msgstr "~Feld hinzufügen..." #: GenericCommands.xcu msgctxt "" @@ -18682,7 +18682,7 @@ "ContextLabel\n" "value.text" msgid "Design Mode" -msgstr "Designmodus" +msgstr "Designmodus ~umschalten" #: GenericCommands.xcu msgctxt "" @@ -18718,7 +18718,7 @@ "Label\n" "value.text" msgid "Form Navigator..." -msgstr "Formular-Navigator..." +msgstr "Formular-~Navigator..." #: GenericCommands.xcu msgctxt "" @@ -18844,7 +18844,7 @@ "Label\n" "value.text" msgid "Date Field" -msgstr "Datumsfeld" +msgstr "D~atumsfeld" #: GenericCommands.xcu msgctxt "" @@ -18853,7 +18853,7 @@ "Label\n" "value.text" msgid "Time Field" -msgstr "Zeitfeld" +msgstr "~Zeitfeld" #: GenericCommands.xcu msgctxt "" @@ -18862,7 +18862,7 @@ "Label\n" "value.text" msgid "Numerical Field" -msgstr "Numerisches Feld" +msgstr "~Numerisches Feld" #: GenericCommands.xcu msgctxt "" @@ -18871,7 +18871,7 @@ "Label\n" "value.text" msgid "Currency Field" -msgstr "Währungsfeld" +msgstr "~Währungsfeld" #: GenericCommands.xcu msgctxt "" @@ -18889,7 +18889,7 @@ "Label\n" "value.text" msgid "Pattern Field" -msgstr "Maskiertes Feld" +msgstr "Mask~iertes Feld" #: GenericCommands.xcu msgctxt "" @@ -18898,7 +18898,7 @@ "Label\n" "value.text" msgid "Open in Design Mode" -msgstr "Im Entwurfsmodus öffnen" +msgstr "Im ~Entwurfsmodus öffnen" #: GenericCommands.xcu msgctxt "" @@ -18907,7 +18907,7 @@ "Label\n" "value.text" msgid "Image Control" -msgstr "Grafisches Steuerelement" +msgstr "G~rafisches Steuerelement" #: GenericCommands.xcu msgctxt "" @@ -18925,7 +18925,7 @@ "Label\n" "value.text" msgid "Sort Ascending" -msgstr "Aufsteigend sortieren" +msgstr "A~ufsteigend sortieren" #: GenericCommands.xcu msgctxt "" @@ -18934,7 +18934,7 @@ "Label\n" "value.text" msgid "Sort Descending" -msgstr "Absteigend sortieren" +msgstr "A~bsteigend sortieren" #: GenericCommands.xcu msgctxt "" @@ -18943,7 +18943,7 @@ "Label\n" "value.text" msgid "~E-mail Document..." -msgstr "~Dokument als E-Mail..." +msgstr "Dokument als ~E-Mail..." #: GenericCommands.xcu msgctxt "" @@ -19024,7 +19024,7 @@ "Label\n" "value.text" msgid "Add Table..." -msgstr "Tabelle hinzufügen..." +msgstr "~Tabelle hinzufügen..." #: GenericCommands.xcu msgctxt "" @@ -19069,7 +19069,7 @@ "Label\n" "value.text" msgid "Wizards On/Off" -msgstr "Assistenten an/aus" +msgstr "~Assistenten an/aus" #: GenericCommands.xcu msgctxt "" @@ -19078,7 +19078,7 @@ "Label\n" "value.text" msgid "Formatted Field" -msgstr "Formatiertes Feld" +msgstr "~Formatiertes Feld" #: GenericCommands.xcu msgctxt "" @@ -19438,7 +19438,7 @@ "Label\n" "value.text" msgid "Navigation Bar" -msgstr "Navigationsleiste" +msgstr "Na~vigationsleiste" #: GenericCommands.xcu msgctxt "" @@ -19474,7 +19474,7 @@ "Label\n" "value.text" msgid "Digital Signature..." -msgstr "Digitale Signatur..." +msgstr "~Digitale Signatur..." #: GenericCommands.xcu msgctxt "" @@ -19483,7 +19483,7 @@ "Label\n" "value.text" msgid "Left" -msgstr "Links" +msgstr "~Linksbündig" #: GenericCommands.xcu msgctxt "" @@ -19492,7 +19492,7 @@ "Label\n" "value.text" msgid "Centered" -msgstr "Zentriert" +msgstr "~Zentriert" #: GenericCommands.xcu msgctxt "" @@ -19501,7 +19501,7 @@ "Label\n" "value.text" msgid "Right" -msgstr "Rechts" +msgstr "~Rechtsbündig" #: GenericCommands.xcu msgctxt "" @@ -19510,7 +19510,7 @@ "Label\n" "value.text" msgid "Top" -msgstr "Oben" +msgstr "~Oben" #: GenericCommands.xcu msgctxt "" @@ -19519,7 +19519,7 @@ "Label\n" "value.text" msgid "Center" -msgstr "Mitte" +msgstr "~Mittig" #: GenericCommands.xcu msgctxt "" @@ -19528,7 +19528,7 @@ "Label\n" "value.text" msgid "Bottom" -msgstr "Unten" +msgstr "~Unten" #: GenericCommands.xcu msgctxt "" @@ -19537,7 +19537,7 @@ "Label\n" "value.text" msgid "Justified" -msgstr "Blocksatz" +msgstr "~Blocksatz" #: GenericCommands.xcu msgctxt "" @@ -19582,7 +19582,7 @@ "Label\n" "value.text" msgid "Format All Comments" -msgstr "Alle Kommentare formatieren" +msgstr "Alle ~Kommentare formatieren" #: GenericCommands.xcu msgctxt "" @@ -19618,7 +19618,7 @@ "Label\n" "value.text" msgid "Align Top" -msgstr "Oben anordnen" +msgstr "~Oben" #: GenericCommands.xcu msgctxt "" @@ -19627,7 +19627,7 @@ "Label\n" "value.text" msgid "Center Vertically" -msgstr "Vertikal zentrieren" +msgstr "~Mittig" #: GenericCommands.xcu msgctxt "" @@ -19636,7 +19636,7 @@ "Label\n" "value.text" msgid "Align Bottom" -msgstr "Unten anordnen" +msgstr "~Unten" #: GenericCommands.xcu msgctxt "" @@ -19672,7 +19672,7 @@ "Label\n" "value.text" msgid "Alig~n" -msgstr "~Ausrichten" +msgstr "A~usrichtung" #: GenericCommands.xcu msgctxt "" @@ -19699,7 +19699,7 @@ "Label\n" "value.text" msgid "Scan" -msgstr "Scannen" +msgstr "~Scannen" #: GenericCommands.xcu msgctxt "" @@ -19708,7 +19708,7 @@ "Label\n" "value.text" msgid "Character..." -msgstr "Zeichen..." +msgstr "~Zeichen..." #: GenericCommands.xcu msgctxt "" @@ -19852,7 +19852,7 @@ "Label\n" "value.text" msgid "Language" -msgstr "S~prache" +msgstr "Spra~che" #: GenericCommands.xcu msgctxt "" @@ -19879,7 +19879,7 @@ "Label\n" "value.text" msgid "Fiel~d" -msgstr "F~eldbefehl" +msgstr "Feldbefe~hl" #: GenericCommands.xcu msgctxt "" @@ -19888,7 +19888,7 @@ "Label\n" "value.text" msgid "Formatting Mark" -msgstr "Formatierungszei~chen" +msgstr "Formatierungs~zeichen" #: GenericCommands.xcu msgctxt "" @@ -19924,7 +19924,7 @@ "Label\n" "value.text" msgid "~Flip" -msgstr "Sp~iegeln" +msgstr "Spi~egeln" #: GenericCommands.xcu msgctxt "" @@ -19960,7 +19960,7 @@ "Label\n" "value.text" msgid "Audio or ~Video..." -msgstr "~Audio/Video..." +msgstr "Audio/~Video..." #: GenericCommands.xcu msgctxt "" @@ -19978,7 +19978,7 @@ "Label\n" "value.text" msgid "~Color" -msgstr "~Farbe" +msgstr "F~arbe" #: GenericCommands.xcu msgctxt "" @@ -20005,7 +20005,7 @@ "Label\n" "value.text" msgid "~Non-breaking space" -msgstr "Geschütztes ~Leerzeichen" +msgstr "~Geschütztes Leerzeichen" #: GenericCommands.xcu msgctxt "" @@ -20014,7 +20014,7 @@ "Label\n" "value.text" msgid "No-~width optional break" -msgstr "Leerzeichen ohne ~Breite" +msgstr "Leerzeichen ~ohne Breite" #: GenericCommands.xcu msgctxt "" @@ -20095,7 +20095,7 @@ "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 @@ "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 @@ "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 "" @@ -20149,7 +20149,7 @@ "Label\n" "value.text" msgid "~Templates" -msgstr "Doku~mentvorlage" +msgstr "Do~kumentvorlage" #: GenericCommands.xcu msgctxt "" @@ -20167,7 +20167,7 @@ "Label\n" "value.text" msgid "3D Model..." -msgstr "3D-Modell..." +msgstr "3D-~Modell..." #: ImpressWindowState.xcu msgctxt "" @@ -20671,7 +20671,7 @@ "Label\n" "value.text" msgid "~Text Mode" -msgstr "~Textmodus" +msgstr "Te~xtmodus" #: MathCommands.xcu msgctxt "" @@ -20689,7 +20689,7 @@ "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 @@ "Label\n" "value.text" msgid "Z~oom In" -msgstr "~Vergrößern" +msgstr "Ver~größern" #: MathCommands.xcu msgctxt "" @@ -20860,7 +20860,7 @@ "Label\n" "value.text" msgid "Elements" -msgstr "Elemente" +msgstr "Se~itenleiste" #: MathCommands.xcu msgctxt "" @@ -20905,7 +20905,7 @@ "Label\n" "value.text" msgid "Report Header/Footer" -msgstr "Berichtskopf/-fuß" +msgstr "B~erichtskopf/-fuß" #: ReportCommands.xcu msgctxt "" @@ -20914,7 +20914,7 @@ "Label\n" "value.text" msgid "Page Header/Footer" -msgstr "Seitenkopf/-fuß" +msgstr "~Seitenkopf/-fuß" #: ReportCommands.xcu msgctxt "" @@ -20923,7 +20923,7 @@ "Label\n" "value.text" msgid "~Ruler" -msgstr "~Lineal" +msgstr "~Lineale" #: ReportCommands.xcu msgctxt "" @@ -20932,7 +20932,7 @@ "Label\n" "value.text" msgid "~Sorting and Grouping" -msgstr "~Sortierung und Gruppierung" +msgstr "Sortierung und ~Gruppierung" #: ReportCommands.xcu msgctxt "" @@ -20941,7 +20941,7 @@ "Label\n" "value.text" msgid "~Add Field" -msgstr "~Feld hinzufügen" +msgstr "~Feld hinzufügen..." #: ReportCommands.xcu msgctxt "" @@ -21040,7 +21040,7 @@ "Label\n" "value.text" msgid "~Column Header/Footer" -msgstr "~Spaltenkopf/-fuß" +msgstr "S~paltenkopf/-fuß" #: ReportCommands.xcu msgctxt "" @@ -21049,7 +21049,7 @@ "Label\n" "value.text" msgid "Paste ~Special..." -msgstr "In~halte einfügen..." +msgstr "~Inhalte einfügen..." #: ReportCommands.xcu msgctxt "" @@ -21058,7 +21058,7 @@ "Label\n" "value.text" msgid "Execute Report..." -msgstr "Bericht ausführen..." +msgstr "Bericht a~usführen..." #: ReportCommands.xcu msgctxt "" @@ -21067,7 +21067,7 @@ "Label\n" "value.text" msgid "Graphic..." -msgstr "Grafik..." +msgstr "G~rafik..." #: ReportCommands.xcu msgctxt "" @@ -21076,7 +21076,7 @@ "Label\n" "value.text" msgid "Text Document" -msgstr "Textdokument" +msgstr "~Textdokument" #: ReportCommands.xcu msgctxt "" @@ -21085,7 +21085,7 @@ "Label\n" "value.text" msgid "Spreadsheet Document" -msgstr "Tabellendokument" +msgstr "Ta~bellendokument" #: ReportCommands.xcu msgctxt "" @@ -21094,7 +21094,7 @@ "Label\n" "value.text" msgid "Report Navigator" -msgstr "Bericht-Navigator" +msgstr "~Bericht-Navigator" #: ReportCommands.xcu msgctxt "" @@ -21103,7 +21103,7 @@ "Label\n" "value.text" msgid "Fit to smallest width" -msgstr "An schmalstes Element anpassen" +msgstr "An ~schmalstes Element anpassen" #: ReportCommands.xcu msgctxt "" @@ -21112,7 +21112,7 @@ "Label\n" "value.text" msgid "Fit to smallest height" -msgstr "An flachstes Element anpassen" +msgstr "An ~flachstes Element anpassen" #: ReportCommands.xcu msgctxt "" @@ -21121,7 +21121,7 @@ "Label\n" "value.text" msgid "Fit to greatest width" -msgstr "An breitestes Element anpassen" +msgstr "An ~breitestes Element anpassen" #: ReportCommands.xcu msgctxt "" @@ -21130,7 +21130,7 @@ "Label\n" "value.text" msgid "Fit to greatest height" -msgstr "An höchstes Element anpassen" +msgstr "An ~höchstes Element anpassen" #: ReportCommands.xcu msgctxt "" @@ -21139,7 +21139,7 @@ "Label\n" "value.text" msgid "Properties" -msgstr "Eigenschaften" +msgstr "~Kontrollfeld-Eigenschaften" #: ReportCommands.xcu msgctxt "" @@ -21148,7 +21148,7 @@ "Label\n" "value.text" msgid "Distribution..." -msgstr "Verteilung..." +msgstr "~Verteilung..." #: ReportCommands.xcu msgctxt "" @@ -21166,7 +21166,7 @@ "Label\n" "value.text" msgid "Left Align on Section" -msgstr "Links im Bereich ausrichten" +msgstr "~Links im Bereich ausrichten" #: ReportCommands.xcu msgctxt "" @@ -21175,7 +21175,7 @@ "Label\n" "value.text" msgid "Right Align on Section" -msgstr "Rechts im Bereich ausrichten" +msgstr "~Rechts im Bereich ausrichten" #: ReportCommands.xcu msgctxt "" @@ -21184,7 +21184,7 @@ "Label\n" "value.text" msgid "Top Align on Section" -msgstr "Oben im Bereich ausrichten" +msgstr "~Oben im Bereich ausrichten" #: ReportCommands.xcu msgctxt "" @@ -21193,7 +21193,7 @@ "Label\n" "value.text" msgid "Bottom Align on Section" -msgstr "Unten im Bereich ausrichten" +msgstr "~Unten im Bereich ausrichten" #: ReportCommands.xcu msgctxt "" @@ -21220,7 +21220,7 @@ "Label\n" "value.text" msgid "Select all Labels" -msgstr "Alle Beschriftungen auswählen" +msgstr "Alle ~Beschriftungen auswählen" #: ReportCommands.xcu msgctxt "" @@ -21229,7 +21229,7 @@ "Label\n" "value.text" msgid "Select all Formatted Fields" -msgstr "Alle formatierten Felder auswählen" +msgstr "Alle ~formatierten Felder auswählen" #: ReportCommands.xcu msgctxt "" @@ -21238,7 +21238,7 @@ "Label\n" "value.text" msgid "Shape Arrange" -msgstr "Formen ausrichten" +msgstr "~Formen ausrichten" #: ReportCommands.xcu msgctxt "" @@ -21247,7 +21247,7 @@ "Label\n" "value.text" msgid "Control" -msgstr "Steuerelement" +msgstr "S~teuerelement" #: ReportCommands.xcu msgctxt "" @@ -21274,7 +21274,7 @@ "Label\n" "value.text" msgid "Section alignment" -msgstr "Abschnittsausrichtung" +msgstr "A~bschnittsausrichtung" #: ReportCommands.xcu msgctxt "" @@ -21283,7 +21283,7 @@ "Label\n" "value.text" msgid "Report Controls" -msgstr "Bericht-Steuerelemente" +msgstr "~Bericht-Steuerelemente" #: ReportCommands.xcu msgctxt "" @@ -21292,7 +21292,7 @@ "Label\n" "value.text" msgid "Shapes" -msgstr "Formen" +msgstr "~Form" #: ReportCommands.xcu msgctxt "" @@ -21301,7 +21301,7 @@ "Label\n" "value.text" msgid "Basic Shapes" -msgstr "Standardformen" +msgstr "~Standardformen" #: ReportCommands.xcu msgctxt "" @@ -21310,7 +21310,7 @@ "Label\n" "value.text" msgid "Symbol Shapes" -msgstr "Symbolformen" +msgstr "S~ymbole" #: ReportCommands.xcu msgctxt "" @@ -21319,7 +21319,7 @@ "Label\n" "value.text" msgid "Arrow Shapes" -msgstr "Pfeilformen" +msgstr "~Pfeile" #: ReportCommands.xcu msgctxt "" @@ -21328,7 +21328,7 @@ "Label\n" "value.text" msgid "FlowChart Shapes" -msgstr "Flussdiagramm" +msgstr "~Flussdiagramme" #: ReportCommands.xcu msgctxt "" @@ -21337,7 +21337,7 @@ "Label\n" "value.text" msgid "Callout Shapes" -msgstr "Legenden" +msgstr "Le~genden" #: ReportCommands.xcu msgctxt "" @@ -21346,7 +21346,7 @@ "Label\n" "value.text" msgid "Star Shapes" -msgstr "Sterne" +msgstr "S~terne" #: ReportCommands.xcu msgctxt "" @@ -21355,7 +21355,7 @@ "Label\n" "value.text" msgid "Section" -msgstr "Bereich" +msgstr "~Bereich" #: ReportCommands.xcu msgctxt "" @@ -21364,7 +21364,7 @@ "Label\n" "value.text" msgid "Shrink" -msgstr "Verkleinern" +msgstr "~Verkleinern" #: ReportCommands.xcu msgctxt "" @@ -21373,7 +21373,7 @@ "Label\n" "value.text" msgid "Shrink from top" -msgstr "Von oben verkleinern" +msgstr "Von ~oben verkleinern" #: ReportCommands.xcu msgctxt "" @@ -21382,7 +21382,7 @@ "Label\n" "value.text" msgid "Shrink from bottom" -msgstr "Von unten verkleinern" +msgstr "Von ~unten verkleinern" #: ReportCommands.xcu msgctxt "" @@ -21391,7 +21391,7 @@ "Label\n" "value.text" msgid "Report Output Format" -msgstr "Ausgabeformat des Berichts" +msgstr "Ausgabef~ormat des Berichts" #: ReportCommands.xcu msgctxt "" @@ -21400,7 +21400,7 @@ "Label\n" "value.text" msgid "~Snap Lines" -msgstr "~Fanglinien" +msgstr "F~anglinien" #: ReportCommands.xcu msgctxt "" @@ -21409,7 +21409,7 @@ "Label\n" "value.text" msgid "Object Resizing" -msgstr "Größenänderung für Objekte" +msgstr "~Größenänderung für Objekte" #: ReportCommands.xcu msgctxt "" @@ -21877,7 +21877,7 @@ "Label\n" "value.text" msgid "~Close" -msgstr "S~chließen" +msgstr "Schlie~ßen" #: StartModuleCommands.xcu msgctxt "" @@ -21886,7 +21886,7 @@ "Label\n" "value.text" msgid "Close Window" -msgstr "Fenster schließen" +msgstr "Fenste~r schließen" #: StartModuleCommands.xcu msgctxt "" @@ -22030,7 +22030,7 @@ "Label\n" "value.text" msgid "Undo" -msgstr "~Rückgängig" +msgstr "Rü~ckgängig" #: StartModuleCommands.xcu msgctxt "" @@ -22111,7 +22111,7 @@ "Label\n" "value.text" msgid "AutoTe~xt..." -msgstr "AutoTe~xt..." +msgstr "Aut~oText..." #: WriterCommands.xcu msgctxt "" @@ -22129,7 +22129,7 @@ "ContextLabel\n" "value.text" msgid "~Normal" -msgstr "N~ormal" +msgstr "~Normal" #: WriterCommands.xcu msgctxt "" @@ -22174,7 +22174,7 @@ "Label\n" "value.text" msgid "Comments" -msgstr "Kommentare" +msgstr "~Kommentare" #: WriterCommands.xcu msgctxt "" @@ -22219,7 +22219,7 @@ "Label\n" "value.text" msgid "He~ader and Footer" -msgstr "K~opf-/Fußzeile" +msgstr "Ko~pf-/Fußzeile" #: WriterCommands.xcu msgctxt "" @@ -22228,7 +22228,7 @@ "Label\n" "value.text" msgid "He~ader" -msgstr "K~opfzeile" +msgstr "Kop~fzeile" #: WriterCommands.xcu msgctxt "" @@ -22237,7 +22237,7 @@ "Label\n" "value.text" msgid "Foote~r" -msgstr "Fuß~zeile" +msgstr "F~ußzeile" #: WriterCommands.xcu msgctxt "" @@ -22264,7 +22264,7 @@ "ContextLabel\n" "value.text" msgid "~Endnote" -msgstr "~Endnote" +msgstr "En~dnote" #: WriterCommands.xcu msgctxt "" @@ -22291,7 +22291,7 @@ "Label\n" "value.text" msgid "Insert Table of Contents, Index or Bibliography" -msgstr "Verzeichnis einfügen" +msgstr "~Verzeichnis einfügen" #: WriterCommands.xcu msgctxt "" @@ -22327,7 +22327,7 @@ "ContextLabel\n" "value.text" msgid "Direct Cursor Mode" -msgstr "Direkt-Cursor Modus" +msgstr "~Direkt-Cursor Modus" #: WriterCommands.xcu msgctxt "" @@ -22354,7 +22354,7 @@ "Label\n" "value.text" msgid "Indexes and ~Tables" -msgstr "~Verzeichnisse" +msgstr "Ver~zeichnisse" #: WriterCommands.xcu msgctxt "" @@ -22417,7 +22417,7 @@ "Label\n" "value.text" msgid "Pr~evious Change" -msgstr "V~orherige Änderung" +msgstr "~Vorherige Änderung" #: WriterCommands.xcu msgctxt "" @@ -22444,7 +22444,7 @@ "Label\n" "value.text" msgid "~Show Changes" -msgstr "Änderungen an~zeigen" +msgstr "Änd~erungen anzeigen" #: WriterCommands.xcu msgctxt "" @@ -22453,7 +22453,7 @@ "Label\n" "value.text" msgid "Go t~o Page" -msgstr "Wechseln zu Seite" +msgstr "Wechseln ~zu Seite" #: WriterCommands.xcu msgctxt "" @@ -22480,7 +22480,7 @@ "Label\n" "value.text" msgid "En~velope..." -msgstr "Briefumsch~lag..." +msgstr "Briefums~chlag..." #: WriterCommands.xcu msgctxt "" @@ -22489,7 +22489,7 @@ "Label\n" "value.text" msgid "~Manage Changes..." -msgstr "Änderungen ~verwalten..." +msgstr "Änderungen ver~walten..." #: WriterCommands.xcu msgctxt "" @@ -22507,7 +22507,7 @@ "Label\n" "value.text" msgid "~Bibliography Entry..." -msgstr "~Literaturverzeichniseintrag..." +msgstr "Literaturver~zeichniseintrag..." #: WriterCommands.xcu msgctxt "" @@ -22570,7 +22570,7 @@ "Label\n" "value.text" msgid "Manual ~Break..." -msgstr "Manueller ~Umbruch..." +msgstr "M~anueller Umbruch..." #: WriterCommands.xcu msgctxt "" @@ -22597,7 +22597,7 @@ "Label\n" "value.text" msgid "Exc~hange Database..." -msgstr "Datenbank austaus~chen..." +msgstr "Datenbank aus~tauschen..." #: WriterCommands.xcu msgctxt "" @@ -22624,7 +22624,7 @@ "Label\n" "value.text" msgid "Cross-reference..." -msgstr "Querverweis..." +msgstr "~Querverweis..." #: WriterCommands.xcu msgctxt "" @@ -22669,7 +22669,7 @@ "ContextLabel\n" "value.text" msgid "~Page Break" -msgstr "Seiten~umbruch" +msgstr "Sei~tenumbruch" #: WriterCommands.xcu msgctxt "" @@ -22687,7 +22687,7 @@ "Label\n" "value.text" msgid "Insert ~Table..." -msgstr "Tabelle e~infügen..." +msgstr "~Tabelle einfügen..." #: WriterCommands.xcu msgctxt "" @@ -22930,7 +22930,7 @@ "Label\n" "value.text" msgid "~Time" -msgstr "~Uhrzeit" +msgstr "Uhrz~eit" #: WriterCommands.xcu msgctxt "" @@ -23371,7 +23371,7 @@ "Label\n" "value.text" msgid "Create A~utoAbstract..." -msgstr "AutoBericht ~erzeugen..." +msgstr "A~utoBericht erzeugen..." #: WriterCommands.xcu msgctxt "" @@ -23461,7 +23461,7 @@ "Label\n" "value.text" msgid "Title Page..." -msgstr "Titelseite..." +msgstr "T~itelseite..." #: WriterCommands.xcu msgctxt "" @@ -23470,7 +23470,7 @@ "Label\n" "value.text" msgid "Co~lumns..." -msgstr "Spalt~en..." +msgstr "S~palten..." #: WriterCommands.xcu msgctxt "" @@ -23497,7 +23497,7 @@ "ContextLabel\n" "value.text" msgid "~Properties..." -msgstr "~Eigenschaften..." +msgstr "E~igenschaften..." #: WriterCommands.xcu msgctxt "" @@ -23515,7 +23515,7 @@ "ContextLabel\n" "value.text" msgid "~Properties..." -msgstr "~Eigenschaften..." +msgstr "Eigenschafte~n..." #: WriterCommands.xcu msgctxt "" @@ -23542,7 +23542,7 @@ "Label\n" "value.text" msgid "~Footnotes and Endnotes..." -msgstr "~Fuß-/Endnoten..." +msgstr "Fuß-/En~dnoten..." #: WriterCommands.xcu msgctxt "" @@ -23722,7 +23722,7 @@ "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 @@ "Label\n" "value.text" msgid "~Text to Table..." -msgstr "~Text in Tabelle..." +msgstr "Text in Ta~belle..." #: WriterCommands.xcu msgctxt "" @@ -23740,7 +23740,7 @@ "Label\n" "value.text" msgid "Repeat Heading Rows" -msgstr "Ãœberschrift wiederholen" +msgstr "Ãœberschrift ~wiederholen" #: WriterCommands.xcu msgctxt "" @@ -23947,7 +23947,7 @@ "Label\n" "value.text" msgid "Row Height..." -msgstr "Zeilen~höhe..." +msgstr "~Zeilenhöhe..." #: WriterCommands.xcu msgctxt "" @@ -23956,7 +23956,7 @@ "Label\n" "value.text" msgid "~Column Width..." -msgstr "Spalten~breite..." +msgstr "~Spaltenbreite..." #: WriterCommands.xcu msgctxt "" @@ -23992,7 +23992,7 @@ "Label\n" "value.text" msgid "~Index Entry..." -msgstr "Verzeichnis~eintrag..." +msgstr "Ve~rzeichniseintrag..." #: WriterCommands.xcu msgctxt "" @@ -24073,7 +24073,7 @@ "Label\n" "value.text" msgid "~Fields" -msgstr "~Felder" +msgstr "F~elder" #: WriterCommands.xcu msgctxt "" @@ -24172,7 +24172,7 @@ "Label\n" "value.text" msgid "Unprotect Cells" -msgstr "Zellschutz aufheben" +msgstr "Zells~chutz aufheben" #: WriterCommands.xcu msgctxt "" @@ -24190,7 +24190,7 @@ "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 @@ "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 @@ "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 @@ "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 @@ "Label\n" "value.text" msgid "Move Up" -msgstr "Nach oben" +msgstr "Nach ~oben verschieben" #: WriterCommands.xcu msgctxt "" @@ -24280,7 +24280,7 @@ "Label\n" "value.text" msgid "Move Down" -msgstr "Nach unten" +msgstr "Nach ~unten verschieben" #: WriterCommands.xcu msgctxt "" @@ -24307,7 +24307,7 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "Label\n" "value.text" msgid "Page Formatting" -msgstr "Seitenformatierung" +msgstr "Seiten~formatierung" #: WriterCommands.xcu msgctxt "" @@ -24631,7 +24631,7 @@ "Label\n" "value.text" msgid "~Footnote or Endnote..." -msgstr "~Fuß-/Endnoten..." +msgstr "F~uß-/Endnoten..." #: WriterCommands.xcu msgctxt "" @@ -24955,7 +24955,7 @@ "Label\n" "value.text" msgid "Link Frames" -msgstr "Verketten" +msgstr "~Verketten" #: WriterCommands.xcu msgctxt "" @@ -24973,7 +24973,7 @@ "Label\n" "value.text" msgid "Unlink Frames" -msgstr "Verkettung lösen" +msgstr "Verkettung ~lösen" #: WriterCommands.xcu msgctxt "" @@ -25000,7 +25000,7 @@ "Label\n" "value.text" msgid "Restart Numbering" -msgstr "Nummerierung neu beginnen" +msgstr "Nu~mmerierung neu beginnen" #: WriterCommands.xcu msgctxt "" @@ -25162,7 +25162,7 @@ "Label\n" "value.text" msgid "Merge Table" -msgstr "Tabellen ve~rbinden" +msgstr "Tabellen ver~binden" #: WriterCommands.xcu msgctxt "" @@ -25180,7 +25180,7 @@ "Label\n" "value.text" msgid "~Break Across Pages" -msgstr "~Zeilenumbruch an Seitenenden" +msgstr "Zeilenumbruch ~an Seitenenden" #: WriterCommands.xcu msgctxt "" @@ -25360,7 +25360,7 @@ "Label\n" "value.text" msgid "Select Text" -msgstr "~Text auswählen" +msgstr "Te~xt auswählen" #: WriterCommands.xcu msgctxt "" @@ -25396,7 +25396,7 @@ "ContextLabel\n" "value.text" msgid "~Images and Charts" -msgstr "~Bilder und Diagramme" +msgstr "Bilder und ~Diagramme" #: WriterCommands.xcu msgctxt "" @@ -25459,7 +25459,7 @@ "Label\n" "value.text" msgid "Vertical Ruler" -msgstr "Vertikales Lineal" +msgstr "~Vertikales Lineal" #: WriterCommands.xcu msgctxt "" @@ -25477,7 +25477,7 @@ "Label\n" "value.text" msgid "Vertical Scroll Bar" -msgstr "Vertikale Bildlaufleiste" +msgstr "~Vertikale Bildlaufleiste" #: WriterCommands.xcu msgctxt "" @@ -25495,7 +25495,7 @@ "Label\n" "value.text" msgid "Horizontal Scroll Bar" -msgstr "Horizontale Bildlaufleiste" +msgstr "~Horizontale Bildlaufleiste" #: WriterCommands.xcu msgctxt "" @@ -25504,7 +25504,7 @@ "Label\n" "value.text" msgid "Outline ~Numbering..." -msgstr "Kapitel~nummerierung..." +msgstr "~Kapitelnummerierung..." #: WriterCommands.xcu msgctxt "" @@ -25522,7 +25522,7 @@ "Label\n" "value.text" msgid "Hide Whitespac~e" -msgstr "~Zwischenraum verbergen" +msgstr "Zwis~chenraum verbergen" #: WriterCommands.xcu msgctxt "" @@ -25531,7 +25531,7 @@ "Label\n" "value.text" msgid "So~rt..." -msgstr "S~ortieren..." +msgstr "~Sortieren..." #: WriterCommands.xcu msgctxt "" @@ -25567,7 +25567,7 @@ "Label\n" "value.text" msgid "Table Boundaries" -msgstr "Tabellen~begrenzungen" +msgstr "Tabellenbe~grenzungen" #: WriterCommands.xcu msgctxt "" @@ -25675,7 +25675,7 @@ "Label\n" "value.text" msgid "Si~ze" -msgstr "~Größe" +msgstr "G~röße" #: WriterCommands.xcu msgctxt "" @@ -25693,7 +25693,7 @@ "Label\n" "value.text" msgid "~Update" -msgstr "Akt~ualisieren" +msgstr "~Aktualisieren" #: WriterCommands.xcu msgctxt "" @@ -25738,7 +25738,7 @@ "Label\n" "value.text" msgid "~Wrap" -msgstr "U~mlauf" +msgstr "~Umlauf" #: WriterCommands.xcu msgctxt "" @@ -25765,7 +25765,7 @@ "Label\n" "value.text" msgid "AutoCorr~ect" -msgstr "A~utoKorrektur" +msgstr "Auto~Korrektur" #: WriterCommands.xcu msgctxt "" @@ -25783,7 +25783,7 @@ "Label\n" "value.text" msgid "Selection Mode" -msgstr "Auswahlmodus" +msgstr "Auswah~lmodus" #: WriterCommands.xcu msgctxt "" @@ -25792,7 +25792,7 @@ "Label\n" "value.text" msgid "Continue previous numbering" -msgstr "Vorherige Nummerierung fortsetzen" +msgstr "~Vorherige Nummerierung fortsetzen" #: WriterCommands.xcu msgctxt "" @@ -25855,7 +25855,7 @@ "Label\n" "value.text" msgid "Default ~Paragraph" -msgstr "Absatz ~Standard" +msgstr "Absatz Stan~dard" #: WriterCommands.xcu msgctxt "" @@ -25936,7 +25936,7 @@ "Label\n" "value.text" msgid "~Quotations" -msgstr "~Zitate" +msgstr "Z~itate" #: WriterCommands.xcu msgctxt "" @@ -25954,7 +25954,7 @@ "Label\n" "value.text" msgid "Text Body" -msgstr "Textkörper" +msgstr "Te~xtkörper" #: WriterCommands.xcu msgctxt "" @@ -25981,7 +25981,7 @@ "Label\n" "value.text" msgid "~Strong Emphasis" -msgstr "~Stark betont" +msgstr "Sta~rk betont" #: WriterCommands.xcu msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/de/sw/source/ui/utlui.po libreoffice-5.1.2~rc2/translations/source/de/sw/source/ui/utlui.po --- libreoffice-5.1.1~rc2/translations/source/de/sw/source/ui/utlui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/de/sw/source/ui/utlui.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-10-17 19:59-0500\n" +"POT-Creation-Date: 2016-03-29 16:07+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-5.1.1~rc2/translations/source/dgo/cui/uiconfig/ui.po libreoffice-5.1.2~rc2/translations/source/dgo/cui/uiconfig/ui.po --- libreoffice-5.1.1~rc2/translations/source/dgo/cui/uiconfig/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/dgo/cui/uiconfig/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 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 @@ "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 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/dgo/dbaccess/uiconfig/ui.po libreoffice-5.1.2~rc2/translations/source/dgo/dbaccess/uiconfig/ui.po --- libreoffice-5.1.1~rc2/translations/source/dgo/dbaccess/uiconfig/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/dgo/dbaccess/uiconfig/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 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 @@ "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 @@ msgstr "" #: queryfilterdialog.ui +#, fuzzy msgctxt "" "queryfilterdialog.ui\n" "cond1\n" "1\n" "stringlist.text" msgid "<>" -msgstr "" +msgstr "<>" #: queryfilterdialog.ui msgctxt "" @@ -1963,13 +1964,14 @@ msgstr "" #: queryfilterdialog.ui +#, fuzzy msgctxt "" "queryfilterdialog.ui\n" "cond1\n" "4\n" "stringlist.text" msgid ">" -msgstr "" +msgstr ">" #: queryfilterdialog.ui msgctxt "" @@ -3034,58 +3036,64 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/dgo/extensions/uiconfig/sabpilot/ui.po libreoffice-5.1.2~rc2/translations/source/dgo/extensions/uiconfig/sabpilot/ui.po --- libreoffice-5.1.1~rc2/translations/source/dgo/extensions/uiconfig/sabpilot/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/dgo/extensions/uiconfig/sabpilot/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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 \n" "Language: dgo\n" @@ -13,7 +13,7 @@ "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 @@ msgstr "" #: gridfieldsselectionpage.ui +#, fuzzy msgctxt "" "gridfieldsselectionpage.ui\n" "fieldright\n" "label\n" "string.text" msgid "->" -msgstr "" +msgstr "->" #: gridfieldsselectionpage.ui msgctxt "" @@ -312,13 +313,14 @@ msgstr "" #: gridfieldsselectionpage.ui +#, fuzzy msgctxt "" "gridfieldsselectionpage.ui\n" "fieldleft\n" "label\n" "string.text" msgid "<-" -msgstr "" +msgstr "<-" #: gridfieldsselectionpage.ui msgctxt "" @@ -393,22 +395,24 @@ 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 @@ msgstr "" #: tableselectionpage.ui +#, fuzzy msgctxt "" "tableselectionpage.ui\n" "search\n" "label\n" "string.text" msgid "_..." -msgstr "" +msgstr "_..." #: tableselectionpage.ui msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/dgo/formula/source/core/resource.po libreoffice-5.1.2~rc2/translations/source/dgo/formula/source/core/resource.po --- libreoffice-5.1.1~rc2/translations/source/dgo/formula/source/core/resource.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/dgo/formula/source/core/resource.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\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-29 16:07+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-5.1.1~rc2/translations/source/dgo/instsetoo_native/inc_openoffice/windows/msi_languages.po libreoffice-5.1.2~rc2/translations/source/dgo/instsetoo_native/inc_openoffice/windows/msi_languages.po --- libreoffice-5.1.1~rc2/translations/source/dgo/instsetoo_native/inc_openoffice/windows/msi_languages.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/dgo/instsetoo_native/inc_openoffice/windows/msi_languages.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\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-19 20:52+0200\n" +"POT-Creation-Date: 2016-03-29 16:07+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-5.1.1~rc2/translations/source/dgo/librelogo/source/pythonpath.po libreoffice-5.1.2~rc2/translations/source/dgo/librelogo/source/pythonpath.po --- libreoffice-5.1.1~rc2/translations/source/dgo/librelogo/source/pythonpath.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/dgo/librelogo/source/pythonpath.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,17 +3,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: 2014-05-02 00:06+0200\n" -"PO-Revision-Date: 2014-07-28 06:55+0000\n" -"Last-Translator: Kaniska PSS \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 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/dgo/officecfg/registry/data/org/openoffice/Office.po libreoffice-5.1.2~rc2/translations/source/dgo/officecfg/registry/data/org/openoffice/Office.po --- libreoffice-5.1.1~rc2/translations/source/dgo/officecfg/registry/data/org/openoffice/Office.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/dgo/officecfg/registry/data/org/openoffice/Office.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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 \n" "Language: dgo\n" @@ -13,7 +13,7 @@ "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 @@ msgstr "OLE चीजें लेई पà¥à¤°à¤¤à¤¿à¤¸à¥à¤¥à¤¾à¤ªà¤¨à¤¾ गà¥à¤°à¤¾à¤«à¤¿à¤• सिरजे जा करदे न..." #: PresentationMinimizer.xcu +#, fuzzy msgctxt "" "PresentationMinimizer.xcu\n" "..PresentationMinimizer.Strings\n" "STR_FILESIZESEPARATOR\n" "value.text" msgid "." -msgstr "" +msgstr "." #: PresentationMinimizer.xcu msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/dgo/reportdesign/uiconfig/dbreport/ui.po libreoffice-5.1.2~rc2/translations/source/dgo/reportdesign/uiconfig/dbreport/ui.po --- libreoffice-5.1.1~rc2/translations/source/dgo/reportdesign/uiconfig/dbreport/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/dgo/reportdesign/uiconfig/dbreport/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 \n" "Language: dgo\n" @@ -13,7 +13,7 @@ "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 @@ msgstr "" #: conditionwin.ui +#, fuzzy msgctxt "" "conditionwin.ui\n" "lhsButton\n" "label\n" "string.text" msgid "..." -msgstr "" +msgstr "..." #: conditionwin.ui msgctxt "" @@ -214,13 +215,14 @@ msgstr "" #: conditionwin.ui +#, fuzzy msgctxt "" "conditionwin.ui\n" "rhsButton\n" "label\n" "string.text" msgid "..." -msgstr "" +msgstr "..." #: conditionwin.ui msgctxt "" @@ -277,13 +279,14 @@ msgstr "" #: conditionwin.ui +#, fuzzy msgctxt "" "conditionwin.ui\n" "removeButton\n" "label\n" "string.text" msgid "-" -msgstr "" +msgstr "-" #: conditionwin.ui msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/dgo/sc/uiconfig/scalc/ui.po libreoffice-5.1.2~rc2/translations/source/dgo/sc/uiconfig/scalc/ui.po --- libreoffice-5.1.1~rc2/translations/source/dgo/sc/uiconfig/scalc/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/dgo/sc/uiconfig/scalc/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 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 @@ "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 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/dgo/sd/uiconfig/simpress/ui.po libreoffice-5.1.2~rc2/translations/source/dgo/sd/uiconfig/simpress/ui.po --- libreoffice-5.1.1~rc2/translations/source/dgo/sd/uiconfig/simpress/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/dgo/sd/uiconfig/simpress/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 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 @@ "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 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/dgo/starmath/source.po libreoffice-5.1.2~rc2/translations/source/dgo/starmath/source.po --- libreoffice-5.1.1~rc2/translations/source/dgo/starmath/source.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/dgo/starmath/source.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\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-12 13:26+0200\n" +"POT-Creation-Date: 2016-03-29 16:07+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-5.1.1~rc2/translations/source/dgo/sw/source/ui/dbui.po libreoffice-5.1.2~rc2/translations/source/dgo/sw/source/ui/dbui.po --- libreoffice-5.1.1~rc2/translations/source/dgo/sw/source/ui/dbui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/dgo/sw/source/ui/dbui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 \n" "Language: dgo\n" @@ -13,7 +13,7 @@ "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 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/dgo/sw/source/ui/index.po libreoffice-5.1.2~rc2/translations/source/dgo/sw/source/ui/index.po --- libreoffice-5.1.1~rc2/translations/source/dgo/sw/source/ui/index.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/dgo/sw/source/ui/index.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,17 +3,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: 2014-09-25 14:07+0000\n" -"Last-Translator: Kaniska PSS \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 \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 @@ msgstr "" #: cnttab.src +#, fuzzy msgctxt "" "cnttab.src\n" "STR_TOKEN_PAGE_NUMS\n" "string.text" msgid "#" -msgstr "" +msgstr "#" #: cnttab.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/dgo/sw/source/ui/utlui.po libreoffice-5.1.2~rc2/translations/source/dgo/sw/source/ui/utlui.po --- libreoffice-5.1.1~rc2/translations/source/dgo/sw/source/ui/utlui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/dgo/sw/source/ui/utlui.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\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-12 13:26+0200\n" +"POT-Creation-Date: 2016-03-29 16:07+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-5.1.1~rc2/translations/source/dgo/sw/uiconfig/swriter/ui.po libreoffice-5.1.2~rc2/translations/source/dgo/sw/uiconfig/swriter/ui.po --- libreoffice-5.1.1~rc2/translations/source/dgo/sw/uiconfig/swriter/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/dgo/sw/uiconfig/swriter/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 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 @@ "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 @@ msgstr "टेबल इबारत च रूपांतरत करो" #: converttexttable.ui +#, fuzzy msgctxt "" "converttexttable.ui\n" "othered\n" "text\n" "string.text" msgid "," -msgstr "" +msgstr "," #: converttexttable.ui msgctxt "" @@ -2526,13 +2527,14 @@ msgstr "" #: createaddresslist.ui +#, fuzzy msgctxt "" "createaddresslist.ui\n" "PREV\n" "label\n" "string.text" msgid "<" -msgstr "" +msgstr "<" #: createaddresslist.ui msgctxt "" @@ -2544,13 +2546,14 @@ msgstr "" #: createaddresslist.ui +#, fuzzy msgctxt "" "createaddresslist.ui\n" "NEXT\n" "label\n" "string.text" msgid ">" -msgstr "" +msgstr ">" #: createaddresslist.ui msgctxt "" @@ -4479,13 +4482,14 @@ msgstr "कोई नेईं" #: fldvarpage.ui +#, fuzzy msgctxt "" "fldvarpage.ui\n" "separator\n" "text\n" "string.text" msgid "." -msgstr "" +msgstr "." #: fldvarpage.ui #, fuzzy @@ -6423,13 +6427,14 @@ 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 @@ msgstr "पिछला" #: mmpreparepage.ui +#, fuzzy msgctxt "" "mmpreparepage.ui\n" "next\n" "label\n" "string.text" msgid ">" -msgstr "" +msgstr ">" #: mmpreparepage.ui #, fuzzy @@ -9702,13 +9708,14 @@ msgstr "सà¥à¤¥à¤¿à¤¤à¤¿ " #: optcaptionpage.ui +#, fuzzy msgctxt "" "optcaptionpage.ui\n" "numseparator\n" "text\n" "string.text" msgid ". " -msgstr "" +msgstr ". " #: optcaptionpage.ui #, fuzzy @@ -15908,40 +15915,44 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/dgo/vcl/source/src.po libreoffice-5.1.2~rc2/translations/source/dgo/vcl/source/src.po --- libreoffice-5.1.1~rc2/translations/source/dgo/vcl/source/src.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/dgo/vcl/source/src.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 \n" "Language: dgo\n" @@ -13,7 +13,7 @@ "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 @@ msgstr "पिकà¥à¤¸à¤²" #: units.src +#, fuzzy msgctxt "" "units.src\n" "SV_FUNIT_STRINGS\n" "°\n" "itemlist.text" msgid "°" -msgstr "" +msgstr "°" #: units.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/dz/cui/uiconfig/ui.po libreoffice-5.1.2~rc2/translations/source/dz/cui/uiconfig/ui.po --- libreoffice-5.1.1~rc2/translations/source/dz/cui/uiconfig/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/dz/cui/uiconfig/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 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 @@ "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 @@ 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 @@ 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 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/dz/dbaccess/uiconfig/ui.po libreoffice-5.1.2~rc2/translations/source/dz/dbaccess/uiconfig/ui.po --- libreoffice-5.1.1~rc2/translations/source/dz/dbaccess/uiconfig/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/dz/dbaccess/uiconfig/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,17 +4,17 @@ "Project-Id-Version: LibO 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 @@ 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 @@ msgstr "" #: queryfilterdialog.ui +#, fuzzy msgctxt "" "queryfilterdialog.ui\n" "cond1\n" "4\n" "stringlist.text" msgid ">" -msgstr "" +msgstr ">" #: queryfilterdialog.ui msgctxt "" @@ -3017,58 +3020,64 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/dz/extensions/uiconfig/sabpilot/ui.po libreoffice-5.1.2~rc2/translations/source/dz/extensions/uiconfig/sabpilot/ui.po --- libreoffice-5.1.1~rc2/translations/source/dz/extensions/uiconfig/sabpilot/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/dz/extensions/uiconfig/sabpilot/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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 \n" "Language: dz\n" @@ -14,7 +14,7 @@ "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 @@ msgstr "" #: gridfieldsselectionpage.ui +#, fuzzy msgctxt "" "gridfieldsselectionpage.ui\n" "fieldright\n" "label\n" "string.text" msgid "->" -msgstr "" +msgstr "->" #: gridfieldsselectionpage.ui msgctxt "" @@ -299,13 +300,14 @@ msgstr "" #: gridfieldsselectionpage.ui +#, fuzzy msgctxt "" "gridfieldsselectionpage.ui\n" "fieldleft\n" "label\n" "string.text" msgid "<-" -msgstr "" +msgstr "<-" #: gridfieldsselectionpage.ui msgctxt "" @@ -380,22 +382,24 @@ 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 @@ msgstr "" #: tableselectionpage.ui +#, fuzzy msgctxt "" "tableselectionpage.ui\n" "search\n" "label\n" "string.text" msgid "_..." -msgstr "" +msgstr "_..." #: tableselectionpage.ui msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/dz/formula/source/core/resource.po libreoffice-5.1.2~rc2/translations/source/dz/formula/source/core/resource.po --- libreoffice-5.1.1~rc2/translations/source/dz/formula/source/core/resource.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/dz/formula/source/core/resource.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\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-29 16:07+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-5.1.1~rc2/translations/source/dz/helpcontent2/source/text/scalc/01.po libreoffice-5.1.2~rc2/translations/source/dz/helpcontent2/source/text/scalc/01.po --- libreoffice-5.1.1~rc2/translations/source/dz/helpcontent2/source/text/scalc/01.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/dz/helpcontent2/source/text/scalc/01.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 \n" "Language: dz\n" @@ -14,7 +14,7 @@ "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 @@ 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 @@ msgstr "ཉུང་མིà¼" #: 12090103.xhp +#, fuzzy msgctxt "" "12090103.xhp\n" "par_id3155335\n" "17\n" "help.text" msgid ">" -msgstr "" +msgstr ">" #: 12090103.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/dz/helpcontent2/source/text/shared/00.po libreoffice-5.1.2~rc2/translations/source/dz/helpcontent2/source/text/shared/00.po --- libreoffice-5.1.1~rc2/translations/source/dz/helpcontent2/source/text/shared/00.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/dz/helpcontent2/source/text/shared/00.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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 \n" +"PO-Revision-Date: 2016-03-03 17:37+0000\n" +"Last-Translator: system user <>\n" "Language-Team: LANGUAGE \n" "Language: dz\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "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 @@ msgstr "" #: 00000021.xhp +#, fuzzy msgctxt "" "00000021.xhp\n" "par_id100120091238112\n" "help.text" msgid "-" -msgstr "" +msgstr "-" #: 00000021.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/dz/helpcontent2/source/text/shared/01.po libreoffice-5.1.2~rc2/translations/source/dz/helpcontent2/source/text/shared/01.po --- libreoffice-5.1.1~rc2/translations/source/dz/helpcontent2/source/text/shared/01.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/dz/helpcontent2/source/text/shared/01.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 \n" "Language: dz\n" @@ -14,7 +14,7 @@ "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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ msgstr "འགྲལ་བཤདà¼" #: 05020301.xhp +#, fuzzy msgctxt "" "05020301.xhp\n" "par_id3152801\n" "5\n" "help.text" msgid "#" -msgstr "" +msgstr "#" #: 05020301.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/dz/helpcontent2/source/text/shared/02.po libreoffice-5.1.2~rc2/translations/source/dz/helpcontent2/source/text/shared/02.po --- libreoffice-5.1.1~rc2/translations/source/dz/helpcontent2/source/text/shared/02.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/dz/helpcontent2/source/text/shared/02.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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 \n" "Language: dz\n" @@ -14,7 +14,7 @@ "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 @@ msgstr "à½à½¼à¼‹à½¡à½²à½‚་བཀོད་ཡོད་པའི་གནད་སྡུད་གཞི་རྟེན་གྱི་ས་སྒོ་ཚུ་ à½à½²à½‚་à½à¾²à½˜à¼‹à½€à½ºà½¢à¼‹à½à½²à½‚་(ཚུ་)à½à½¼à¼‹à½¡à½²à½‚་སྒྲོམ་ནང་ སྤོ་བཤུད་འབདà½à¼‹à½¨à½²à½“༠à½à½²à½‚་à½à¾²à½˜à¼‹à½€à½ºà½¢à¼‹à½à½²à½‚་(ཚུ་) à½à½¼à¼‹à½¡à½²à½‚་སྒྲོ་ནང་à½à½¼à¼‹à½¡à½²à½‚་བཀོད་ཡོད་པའི་ས་སྒོ་ཚུ་ཆ་མཉམ་ར་ ཡིག་ཆ་ནང་བཙུགས་ཅིà¼" #: 12070100.xhp +#, fuzzy msgctxt "" "12070100.xhp\n" "hd_id3163802\n" "6\n" "help.text" msgid ">" -msgstr "" +msgstr ">" #: 12070100.xhp msgctxt "" @@ -13883,13 +13884,14 @@ msgstr " སེལ་འà½à½´à¼‹à½ à½–ད་ཡོད་པའི་གནད་སྡུད་གཞི་རྟེན་གྱི་ས་སྒོ་འདི་ à½à½²à½‚་à½à¾²à½˜à¼‹à½€à½ºà½¢à¼‹à½à½²à½‚་(ཚུ་) à½à½¼à¼‹à½¡à½²à½‚་སྒྲོམ་ནང་ སྤོ་བཤུད་འབདà½à¼‹à½¨à½²à½“༠དེ་མ་ཚད་à½à¾±à½¼à½‘་ཀྱིས་ འདི་à½à½²à½‚་à½à¾²à½˜à¼‹à½€à½ºà½¢à¼‹à½à½²à½‚་(ཚུ་) à½à½¼à¼‹à½¡à½²à½‚་སྒྲོམ་ནང་སྤོ་བཤུད་འབད་ནི་གི་དོན་ལུ་ à½à½¼à¼‹à½–ཀོད་གུ་ཚར་གཉིས་ཨེབ་གà½à½„་འབད་ཚུགས༠Table column(s) à½à½¼à¼‹à½¡à½²à½‚་སྒྲོམ་ནང་à½à½¼à¼‹à½¡à½²à½‚་བཀོད་འབད་ཡོད་པའི་ས་སྒོ་ཚུ་ཆ་མཉམ་ ཡིག་ཆ་ནང་ལ་བཙུགས་ཡོདཔà¼" #: 12070100.xhp +#, fuzzy msgctxt "" "12070100.xhp\n" "hd_id3149732\n" "7\n" "help.text" msgid "<" -msgstr "" +msgstr "<" #: 12070100.xhp msgctxt "" @@ -14178,13 +14180,14 @@ msgstr "དེ་ཚུཕ་ཡིག་ཆ་ནང་བཙུག་ནི་ལུ་ སེལ་འà½à½´à¼‹à½à½¼à¼‹à½¡à½²à½‚་ནང་དང་ལེན་འབད་བà½à½´à½–་པའི་གནད་སྡུད་གཞི་རྟེན་à½à½²à½‚་à½à¾²à½˜à¼‹à½‚ྱི་ཀེར་à½à½²à½‚་ཚུ་à½à½¼à¼‹à½–ཀོད་འབདà½à¼‹à½¨à½²à½“༠à½à¾±à½¼à½‘་ཀྱིས་ཡིག་ཆ་ནང་བཙུག་དགོ་མནོ་མི་ གནད་སྡུད་གཞི་རྟེན་གྱི་ཀེར་à½à½²à½‚་ཚུ་སེལ་འà½à½´à¼‹à½ à½–ད༠" #: 12070200.xhp +#, fuzzy msgctxt "" "12070200.xhp\n" "hd_id3152551\n" "4\n" "help.text" msgid ">" -msgstr "" +msgstr ">" #: 12070200.xhp msgctxt "" @@ -15683,13 +15686,14 @@ 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 @@ 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 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/dz/helpcontent2/source/text/shared/autopi.po libreoffice-5.1.2~rc2/translations/source/dz/helpcontent2/source/text/shared/autopi.po --- libreoffice-5.1.1~rc2/translations/source/dz/helpcontent2/source/text/shared/autopi.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/dz/helpcontent2/source/text/shared/autopi.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 \n" "Language: dz\n" @@ -14,7 +14,7 @@ "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 @@ 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 @@ 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 @@ msgstr "" #: 01090100.xhp +#, fuzzy msgctxt "" "01090100.xhp\n" "par_idN1074A\n" "help.text" msgid "^" -msgstr "" +msgstr "^" #: 01090100.xhp msgctxt "" @@ -4524,13 +4527,14 @@ 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 @@ 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 @@ 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 @@ msgstr "" #: 01100200.xhp +#, fuzzy msgctxt "" "01100200.xhp\n" "hd_id3154823\n" "5\n" "help.text" msgid "<" -msgstr "" +msgstr "<" #: 01100200.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/dz/helpcontent2/source/text/shared/explorer/database.po libreoffice-5.1.2~rc2/translations/source/dz/helpcontent2/source/text/shared/explorer/database.po --- libreoffice-5.1.1~rc2/translations/source/dz/helpcontent2/source/text/shared/explorer/database.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/dz/helpcontent2/source/text/shared/explorer/database.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 \n" "Language: dz\n" @@ -14,7 +14,7 @@ "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 @@ 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 @@ 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 @@ 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 @@ 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 @@ msgstr "བར་སྟོང་ཡོད་པའི་ཟུར་à½à½¼à¼‹à½šà½´à¼‹à½†à¼‹à½˜à½‰à½˜à¼‹à½¢à½„་ à½à½²à½‚་à½à¾²à½˜à¼‹à½‚ྱི་ཟུར་à½à½¼à¼‹à½šà½´à¼‹à½à½¼à¼‹à½¡à½²à½‚་ལུ་སྤོ་བཤུད་འབདà½à¼‹à½¨à½²à½“à¼" #: 11030100.xhp +#, fuzzy msgctxt "" "11030100.xhp\n" "hd_id3149579\n" "8\n" "help.text" msgid ">" -msgstr "" +msgstr ">" #: 11030100.xhp msgctxt "" @@ -12420,12 +12425,13 @@ msgstr "ཚད་འཛིན་ཚུ་གྱི་གྲལ་à½à½²à½‚་གསརཔ་ཅིག་ མཇུག་སྣོན་འབད་དོà¼" #: querywizard04.xhp +#, fuzzy msgctxt "" "querywizard04.xhp\n" "par_idN105F1\n" "help.text" msgid "-" -msgstr "" +msgstr "-" #: querywizard04.xhp msgctxt "" @@ -14444,12 +14450,13 @@ msgstr "ས་སྒོའི་བརྡ་དོན་འདི་ཞུན་དག་འབད་ནིའི་དོན་ལུ་ ས་སྒོ་ཅིག་སེལ་འà½à½´à¼‹à½ à½–དà¼" #: tablewizard02.xhp +#, fuzzy msgctxt "" "tablewizard02.xhp\n" "par_idN10574\n" "help.text" msgid "-" -msgstr "" +msgstr "-" #: tablewizard02.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/dz/helpcontent2/source/text/swriter/01.po libreoffice-5.1.2~rc2/translations/source/dz/helpcontent2/source/text/swriter/01.po --- libreoffice-5.1.1~rc2/translations/source/dz/helpcontent2/source/text/swriter/01.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/dz/helpcontent2/source/text/swriter/01.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 \n" "Language: dz\n" @@ -14,7 +14,7 @@ "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 @@ msgstr " à½à¾±à½¼à½‘་ཀྱིས་སེལ་འà½à½´à¼‹à½ à½–ད་ཡོད་པའི་ཟུར་à½à½¼à½ à½²à¼‹à½‚ནས་རིམ་དེ་ལུ་འཇུག་སྤྱོད་འབད་དགོ་མནོ་མི་ དོན་མཚམས་ཀྱི་བཟོ་རྣམ་དེ་སེལ་འà½à½´à¼‹à½ à½–ད་ཞིནམ་ལས་ དེ་ལས་ འགན་སྤྲོད་(<) ཨེབ་རྟ་à½à½ºà¼‹à½£à½´à¼‹à½¨à½ºà½–་གà½à½„་འབདà¼" #: 04120201.xhp +#, fuzzy msgctxt "" "04120201.xhp\n" "hd_id3145418\n" "32\n" "help.text" msgid "<" -msgstr "" +msgstr "<" #: 04120201.xhp msgctxt "" @@ -27771,12 +27772,13 @@ msgstr "ས་སྒོ་ཅིག་སེལ་འà½à½´à¼‹à½ à½–ད་དེ་ à½à½¼à¼‹à½¡à½²à½‚་ཞགན་མི་ཅིག་ལུ་ ས་སྒོ་དེ་འདྲུདà¼" #: 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 @@ msgstr "à½à¼‹à½–ྱང་རྒྱུ་རྫས་à½à½¼à¼‹à½¡à½²à½‚་ནང་ལས་ à½à½¼à¼‹à½¡à½²à½‚་གཞན་མི་ཅིག་ལུ་ སེལ་འà½à½´à¼‹à½ à½–ད་ཡོད་པའི་ས་སྒོ་དེ་à½à¼‹à½¦à¾à½¼à½„་བརà¾à¾±à½–་ཨིན༠à½à¾±à½¼à½‘་ཀྱིས་ ས་སྒཽ་གཅིག་དེ་ཚར་གཅིག་ལས་ལྷག་སྟེ་à½à¼‹à½¦à¾à½¼à½„་འབད་ཚུགསà¼" #: 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 @@ msgstr "ས་སྒོ་ཅིག་སེལ་འà½à½´à¼‹à½ à½–ད་དེ་ à½à½¼à¼‹à½¡à½²à½‚་ཞགན་མི་ཅིག་ལུ་ ས་སྒོ་དེ་འདྲུདà¼" #: 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 @@ msgstr "སེལ་འà½à½´à¼‹à½ à½–ད་ཡོད་པའི་ས་སྒོ་ཚུ གུས་བà½à½´à½‘་རྒྱུ་རྫས་à½à½¼à¼‹à½¡à½²à½‚་ནང་ལས་ གཞན་མི་ཅིག་ལུ་ à½à¼‹à½¦à¾à½¼à½„་རà¾à¾±à½–་ཨིན༠à½à¾±à½¼à½‘་ཀྱིས་ས་སྒོ་དེ་ ཚར་གཅིག་ལས་ལྷག་སྟེ་à½à¼‹à½¦à¾à½¼à½„་བརà¾à¾±à½–་ཚུགསà¼" #: 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 @@ msgstr "à½à¼‹à½–ྱང་ས་སྒོ་ཅིག་སེལ་འà½à½´à¼‹à½ à½–ད་དེ་ ས་སྒོ་དེ་à½à½¼à¼‹à½¡à½²à½‚་གཞན་མི་ཅིག་ལུ་འདྲུདà¼" #: 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 @@ msgstr "སེལ་འà½à½´à¼‹à½ à½–ད་ཡོད་པའི་ས་སྒོ་དེ་ à½à¼‹à½–ྱང་རྒྱུ་རྫས་à½à½¼à¼‹à½¡à½²à½‚་ནང་ལས་ à½à½¼à¼‹à½¡à½²à½‚་གཞན་མི་ཅིག་ལུ་à½à¼‹à½¦à¾à½¼à½„་བརà¾à¾±à½–་ཨིནà¼.à½à¾±à½¼à½‘་ཀྱིས་ ས་སྒོ་གཅིག་ཚར་གཅིག་ལས་ལྷག་སྟེ་à½à¼‹à½¦à¾à½¼à½„་བརà¾à¾±à½–་ཚུགསà¼" #: mm_newaddblo.xhp +#, fuzzy msgctxt "" "mm_newaddblo.xhp\n" "par_idN10577\n" "help.text" msgid "<" -msgstr "" +msgstr "<" #: mm_newaddblo.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/dz/helpcontent2/source/text/swriter/02.po libreoffice-5.1.2~rc2/translations/source/dz/helpcontent2/source/text/swriter/02.po --- libreoffice-5.1.1~rc2/translations/source/dz/helpcontent2/source/text/swriter/02.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/dz/helpcontent2/source/text/swriter/02.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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 \n" "Language: dz\n" @@ -14,7 +14,7 @@ "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 @@ msgstr "ཕབ་ནིà¼" #: 14020000.xhp +#, fuzzy msgctxt "" "14020000.xhp\n" "par_id3150087\n" "12\n" "help.text" msgid "-" -msgstr "" +msgstr "-" #: 14020000.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/dz/instsetoo_native/inc_openoffice/windows/msi_languages.po libreoffice-5.1.2~rc2/translations/source/dz/instsetoo_native/inc_openoffice/windows/msi_languages.po --- libreoffice-5.1.1~rc2/translations/source/dz/instsetoo_native/inc_openoffice/windows/msi_languages.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/dz/instsetoo_native/inc_openoffice/windows/msi_languages.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\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-19 20:52+0200\n" +"POT-Creation-Date: 2016-03-29 16:07+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-5.1.1~rc2/translations/source/dz/librelogo/source/pythonpath.po libreoffice-5.1.2~rc2/translations/source/dz/librelogo/source/pythonpath.po --- libreoffice-5.1.1~rc2/translations/source/dz/librelogo/source/pythonpath.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/dz/librelogo/source/pythonpath.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,18 +3,18 @@ msgstr "" "Project-Id-Version: LibO 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 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/dz/officecfg/registry/data/org/openoffice/Office.po libreoffice-5.1.2~rc2/translations/source/dz/officecfg/registry/data/org/openoffice/Office.po --- libreoffice-5.1.1~rc2/translations/source/dz/officecfg/registry/data/org/openoffice/Office.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/dz/officecfg/registry/data/org/openoffice/Office.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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 \n" "Language: dz\n" @@ -14,7 +14,7 @@ "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 @@ msgstr "" #: PresentationMinimizer.xcu +#, fuzzy msgctxt "" "PresentationMinimizer.xcu\n" "..PresentationMinimizer.Strings\n" "STR_FILESIZESEPARATOR\n" "value.text" msgid "." -msgstr "" +msgstr "." #: PresentationMinimizer.xcu msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/dz/reportdesign/uiconfig/dbreport/ui.po libreoffice-5.1.2~rc2/translations/source/dz/reportdesign/uiconfig/dbreport/ui.po --- libreoffice-5.1.1~rc2/translations/source/dz/reportdesign/uiconfig/dbreport/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/dz/reportdesign/uiconfig/dbreport/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 \n" "Language: dz\n" @@ -14,7 +14,7 @@ "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 @@ msgstr "" #: conditionwin.ui +#, fuzzy msgctxt "" "conditionwin.ui\n" "lhsButton\n" "label\n" "string.text" msgid "..." -msgstr "" +msgstr "..." #: conditionwin.ui msgctxt "" @@ -215,13 +216,14 @@ msgstr "" #: conditionwin.ui +#, fuzzy msgctxt "" "conditionwin.ui\n" "rhsButton\n" "label\n" "string.text" msgid "..." -msgstr "" +msgstr "..." #: conditionwin.ui msgctxt "" @@ -278,13 +280,14 @@ msgstr "" #: conditionwin.ui +#, fuzzy msgctxt "" "conditionwin.ui\n" "removeButton\n" "label\n" "string.text" msgid "-" -msgstr "" +msgstr "-" #: conditionwin.ui msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/dz/sc/source/ui/src.po libreoffice-5.1.2~rc2/translations/source/dz/sc/source/ui/src.po --- libreoffice-5.1.1~rc2/translations/source/dz/sc/source/ui/src.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/dz/sc/source/ui/src.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 \n" "Language: dz\n" @@ -14,7 +14,7 @@ "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 @@ msgstr "ཚིག་ཡིག་གི་à½à¾±à½‘་ཆོསà¼" #: globstr.src +#, fuzzy msgctxt "" "globstr.src\n" "RID_GLOBSTR\n" "STR_HFCMD_DELIMITER\n" "string.text" msgid "\\" -msgstr "" +msgstr "\\" #: globstr.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/dz/sc/uiconfig/scalc/ui.po libreoffice-5.1.2~rc2/translations/source/dz/sc/uiconfig/scalc/ui.po --- libreoffice-5.1.1~rc2/translations/source/dz/sc/uiconfig/scalc/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/dz/sc/uiconfig/scalc/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 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 @@ "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 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/dz/sd/source/ui/app.po libreoffice-5.1.2~rc2/translations/source/dz/sd/source/ui/app.po --- libreoffice-5.1.1~rc2/translations/source/dz/sd/source/ui/app.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/dz/sd/source/ui/app.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 \n" "Language: dz\n" @@ -14,7 +14,7 @@ "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 @@ msgstr "" #: strings.src +#, fuzzy msgctxt "" "strings.src\n" "STR_FIELD_PLACEHOLDER_COUNT\n" "string.text" msgid "" -msgstr "" +msgstr "" #: strings.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/dz/sd/uiconfig/simpress/ui.po libreoffice-5.1.2~rc2/translations/source/dz/sd/uiconfig/simpress/ui.po --- libreoffice-5.1.1~rc2/translations/source/dz/sd/uiconfig/simpress/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/dz/sd/uiconfig/simpress/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 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 @@ "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 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/dz/sw/source/core/undo.po libreoffice-5.1.2~rc2/translations/source/dz/sw/source/core/undo.po --- libreoffice-5.1.1~rc2/translations/source/dz/sw/source/core/undo.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/dz/sw/source/core/undo.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 \n" "Language: dz\n" @@ -14,7 +14,7 @@ "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 @@ 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 @@ msgstr "འཛིན་པང་ སྦྱརà¼" #: undo.src +#, fuzzy msgctxt "" "undo.src\n" "STR_YIELDS\n" "string.text" msgid "->" -msgstr "" +msgstr "->" #: undo.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/dz/sw/source/ui/dbui.po libreoffice-5.1.2~rc2/translations/source/dz/sw/source/ui/dbui.po --- libreoffice-5.1.1~rc2/translations/source/dz/sw/source/ui/dbui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/dz/sw/source/ui/dbui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 \n" "Language: dz\n" @@ -14,7 +14,7 @@ "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 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/dz/sw/source/ui/index.po libreoffice-5.1.2~rc2/translations/source/dz/sw/source/ui/index.po --- libreoffice-5.1.1~rc2/translations/source/dz/sw/source/ui/index.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/dz/sw/source/ui/index.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,17 +3,18 @@ msgstr "" "Project-Id-Version: PACKAGE 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 \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 @@ msgstr "" #: cnttab.src +#, fuzzy msgctxt "" "cnttab.src\n" "STR_NOSORTKEY\n" "string.text" msgid "" -msgstr "" +msgstr "" #: cnttab.src +#, fuzzy msgctxt "" "cnttab.src\n" "STR_NO_CHAR_STYLE\n" "string.text" msgid "" -msgstr "" +msgstr "" #: cnttab.src msgctxt "" @@ -105,12 +108,13 @@ msgstr "" #: cnttab.src +#, fuzzy msgctxt "" "cnttab.src\n" "STR_TOKEN_PAGE_NUMS\n" "string.text" msgid "#" -msgstr "" +msgstr "#" #: cnttab.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/dz/sw/uiconfig/swriter/ui.po libreoffice-5.1.2~rc2/translations/source/dz/sw/uiconfig/swriter/ui.po --- libreoffice-5.1.1~rc2/translations/source/dz/sw/uiconfig/swriter/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/dz/sw/uiconfig/swriter/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 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 @@ "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 @@ msgstr "à½à½²à½‚་à½à¾²à½˜à¼‹à½£à½¦à¼‹à½šà½²à½‚་ཡིག་ལུ་གཞི་བསྒྱུར་འབདà¼" #: converttexttable.ui +#, fuzzy msgctxt "" "converttexttable.ui\n" "othered\n" "text\n" "string.text" msgid "," -msgstr "" +msgstr "," #: converttexttable.ui msgctxt "" @@ -2504,13 +2505,14 @@ msgstr "" #: createaddresslist.ui +#, fuzzy msgctxt "" "createaddresslist.ui\n" "PREV\n" "label\n" "string.text" msgid "<" -msgstr "" +msgstr "<" #: createaddresslist.ui msgctxt "" @@ -2522,13 +2524,14 @@ msgstr "" #: createaddresslist.ui +#, fuzzy msgctxt "" "createaddresslist.ui\n" "NEXT\n" "label\n" "string.text" msgid ">" -msgstr "" +msgstr ">" #: createaddresslist.ui msgctxt "" @@ -4435,13 +4438,14 @@ msgstr "" #: fldvarpage.ui +#, fuzzy msgctxt "" "fldvarpage.ui\n" "separator\n" "text\n" "string.text" msgid "." -msgstr "" +msgstr "." #: fldvarpage.ui msgctxt "" @@ -5423,22 +5427,24 @@ msgstr "" #: frmaddpage.ui +#, fuzzy msgctxt "" "frmaddpage.ui\n" "prev\n" "0\n" "stringlist.text" msgid "" -msgstr "" +msgstr "" #: frmaddpage.ui +#, fuzzy msgctxt "" "frmaddpage.ui\n" "next\n" "0\n" "stringlist.text" msgid "" -msgstr "" +msgstr "" #: frmaddpage.ui msgctxt "" @@ -6347,13 +6353,14 @@ 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 @@ 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 @@ msgstr "" #: mmpreparepage.ui +#, fuzzy msgctxt "" "mmpreparepage.ui\n" "prev\n" "label\n" "string.text" msgid "<" -msgstr "" +msgstr "<" #: mmpreparepage.ui msgctxt "" @@ -8726,13 +8735,14 @@ msgstr "" #: mmpreparepage.ui +#, fuzzy msgctxt "" "mmpreparepage.ui\n" "next\n" "label\n" "string.text" msgid ">" -msgstr "" +msgstr ">" #: mmpreparepage.ui #, fuzzy @@ -9580,13 +9590,14 @@ msgstr "གནས་སà¼" #: optcaptionpage.ui +#, fuzzy msgctxt "" "optcaptionpage.ui\n" "numseparator\n" "text\n" "string.text" msgid ". " -msgstr "" +msgstr ". " #: optcaptionpage.ui #, fuzzy @@ -15705,40 +15716,44 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/dz/vcl/source/src.po libreoffice-5.1.2~rc2/translations/source/dz/vcl/source/src.po --- libreoffice-5.1.1~rc2/translations/source/dz/vcl/source/src.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/dz/vcl/source/src.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 \n" "Language: dz\n" @@ -14,7 +14,7 @@ "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 @@ msgstr "" #: print.src +#, fuzzy msgctxt "" "print.src\n" "SV_PRINT_INVALID_TXT\n" "string.text" msgid "" -msgstr "" +msgstr "" #: print.src msgctxt "" @@ -1506,13 +1507,14 @@ msgstr "" #: units.src +#, fuzzy msgctxt "" "units.src\n" "SV_FUNIT_STRINGS\n" "°\n" "itemlist.text" msgid "°" -msgstr "" +msgstr "°" #: units.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/el/svx/inc.po libreoffice-5.1.2~rc2/translations/source/el/svx/inc.po --- libreoffice-5.1.1~rc2/translations/source/el/svx/inc.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/el/svx/inc.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 \n" "Language: el\n" @@ -14,7 +14,7 @@ "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 "" diff -Nru libreoffice-5.1.1~rc2/translations/source/en-GB/helpcontent2/source/text/scalc/01.po libreoffice-5.1.2~rc2/translations/source/en-GB/helpcontent2/source/text/scalc/01.po --- libreoffice-5.1.1~rc2/translations/source/en-GB/helpcontent2/source/text/scalc/01.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/en-GB/helpcontent2/source/text/scalc/01.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 \n" "Language-Team: LANGUAGE \n" "Language: en_GB\n" @@ -14,7 +14,7 @@ "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 @@ "par_id171371269326270\n" "help.text" msgid "AVERAGE, AVERAGEA, , MAX, MIN, LARGE, SMALL" -msgstr "AVERAGE, AVERAGEA, , MAX, MIN, LARGE, SMALL" +msgstr "AVERAGE, AVERAGEA, , MAX, MIN, LARGE, SMALL" #: func_averageifs.xhp msgctxt "" @@ -62846,7 +62846,7 @@ "par_id1279148769260\n" "help.text" msgid "AVERAGE, AVERAGEA, , , MAX, MIN" -msgstr "AVERAGE, AVERAGEA, , , MAX, MIN" +msgstr "AVERAGE, AVERAGEA, , , MAX, MIN" #: func_countifs.xhp msgctxt "" @@ -63078,7 +63078,7 @@ "par_id14337286612130\n" "help.text" msgid "COUNT, COUNTIF, COUNTA, , , MAX, MIN" -msgstr "COUNT, COUNTIF, COUNTA, , , MAX, MIN" +msgstr "COUNT, COUNTIF, COUNTA, , , MAX, MIN" #: func_date.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/en-ZA/cui/uiconfig/ui.po libreoffice-5.1.2~rc2/translations/source/en-ZA/cui/uiconfig/ui.po --- libreoffice-5.1.1~rc2/translations/source/en-ZA/cui/uiconfig/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/en-ZA/cui/uiconfig/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 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 @@ "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 @@ 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 @@ 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 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/en-ZA/dbaccess/uiconfig/ui.po libreoffice-5.1.2~rc2/translations/source/en-ZA/dbaccess/uiconfig/ui.po --- libreoffice-5.1.1~rc2/translations/source/en-ZA/dbaccess/uiconfig/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/en-ZA/dbaccess/uiconfig/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,17 +4,17 @@ "Project-Id-Version: LibO 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 @@ 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 @@ msgstr "" #: queryfilterdialog.ui +#, fuzzy msgctxt "" "queryfilterdialog.ui\n" "cond1\n" "4\n" "stringlist.text" msgid ">" -msgstr "" +msgstr ">" #: queryfilterdialog.ui msgctxt "" @@ -3017,58 +3020,64 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/en-ZA/extensions/uiconfig/sabpilot/ui.po libreoffice-5.1.2~rc2/translations/source/en-ZA/extensions/uiconfig/sabpilot/ui.po --- libreoffice-5.1.1~rc2/translations/source/en-ZA/extensions/uiconfig/sabpilot/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/en-ZA/extensions/uiconfig/sabpilot/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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 \n" "Language: en_ZA\n" @@ -14,7 +14,7 @@ "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 @@ msgstr "" #: gridfieldsselectionpage.ui +#, fuzzy msgctxt "" "gridfieldsselectionpage.ui\n" "fieldright\n" "label\n" "string.text" msgid "->" -msgstr "" +msgstr "->" #: gridfieldsselectionpage.ui msgctxt "" @@ -299,13 +300,14 @@ msgstr "" #: gridfieldsselectionpage.ui +#, fuzzy msgctxt "" "gridfieldsselectionpage.ui\n" "fieldleft\n" "label\n" "string.text" msgid "<-" -msgstr "" +msgstr "<-" #: gridfieldsselectionpage.ui msgctxt "" @@ -380,22 +382,24 @@ 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 @@ msgstr "" #: tableselectionpage.ui +#, fuzzy msgctxt "" "tableselectionpage.ui\n" "search\n" "label\n" "string.text" msgid "_..." -msgstr "" +msgstr "_..." #: tableselectionpage.ui msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/en-ZA/helpcontent2/source/text/scalc/01.po libreoffice-5.1.2~rc2/translations/source/en-ZA/helpcontent2/source/text/scalc/01.po --- libreoffice-5.1.1~rc2/translations/source/en-ZA/helpcontent2/source/text/scalc/01.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/en-ZA/helpcontent2/source/text/scalc/01.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 \n" "Language: en_ZA\n" @@ -14,7 +14,7 @@ "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 @@ 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 @@ msgstr "less than" #: 12090103.xhp +#, fuzzy msgctxt "" "12090103.xhp\n" "par_id3155335\n" "17\n" "help.text" msgid ">" -msgstr "" +msgstr ">" #: 12090103.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/en-ZA/helpcontent2/source/text/shared/00.po libreoffice-5.1.2~rc2/translations/source/en-ZA/helpcontent2/source/text/shared/00.po --- libreoffice-5.1.1~rc2/translations/source/en-ZA/helpcontent2/source/text/shared/00.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/en-ZA/helpcontent2/source/text/shared/00.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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 \n" +"PO-Revision-Date: 2016-03-03 21:15+0000\n" +"Last-Translator: system user <>\n" "Language-Team: LANGUAGE \n" "Language: en_ZA\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "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 @@ msgstr "ODF 1.2 (Extended)" #: 00000021.xhp +#, fuzzy msgctxt "" "00000021.xhp\n" "par_id100120091238112\n" "help.text" msgid "-" -msgstr "" +msgstr "-" #: 00000021.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/en-ZA/helpcontent2/source/text/shared/01.po libreoffice-5.1.2~rc2/translations/source/en-ZA/helpcontent2/source/text/shared/01.po --- libreoffice-5.1.1~rc2/translations/source/en-ZA/helpcontent2/source/text/shared/01.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/en-ZA/helpcontent2/source/text/shared/01.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 \n" "Language: en_ZA\n" @@ -14,7 +14,7 @@ "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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ msgstr "Explanation" #: 05020301.xhp +#, fuzzy msgctxt "" "05020301.xhp\n" "par_id3152801\n" "5\n" "help.text" msgid "#" -msgstr "" +msgstr "#" #: 05020301.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/en-ZA/helpcontent2/source/text/shared/02.po libreoffice-5.1.2~rc2/translations/source/en-ZA/helpcontent2/source/text/shared/02.po --- libreoffice-5.1.1~rc2/translations/source/en-ZA/helpcontent2/source/text/shared/02.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/en-ZA/helpcontent2/source/text/shared/02.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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 \n" "Language: en_ZA\n" @@ -14,7 +14,7 @@ "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 @@ msgstr "Moves all listed database fields into the Table column(s) list box. All fields listed in the Table column(s) 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 @@ msgstr "Moves the selected database field into the Table column(s) list box. You can also double click an entry to move it to the Table column(s) list box. All fields listed in the Table column(s) 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 @@ msgstr "Lists all columns of the database table, which can be accepted in the selection list box to insert them into the document. Select the database columns that you want to insert it in the document." #: 12070200.xhp +#, fuzzy msgctxt "" "12070200.xhp\n" "hd_id3152551\n" "4\n" "help.text" msgid ">" -msgstr "" +msgstr ">" #: 12070200.xhp msgctxt "" @@ -15682,13 +15685,14 @@ 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 @@ 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 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/en-ZA/helpcontent2/source/text/shared/autopi.po libreoffice-5.1.2~rc2/translations/source/en-ZA/helpcontent2/source/text/shared/autopi.po --- libreoffice-5.1.1~rc2/translations/source/en-ZA/helpcontent2/source/text/shared/autopi.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/en-ZA/helpcontent2/source/text/shared/autopi.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 \n" "Language: en_ZA\n" @@ -14,7 +14,7 @@ "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 @@ msgstr "Lists the names of the data base fields in the selected table or query. Click to select a field or hold down the Shift or the CommandCtrl 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 @@ msgstr "Click to move all fields to the box that the arrow is pointing to." #: 01090100.xhp +#, fuzzy msgctxt "" "01090100.xhp\n" "hd_id3155419\n" "14\n" "help.text" msgid "<" -msgstr "" +msgstr "<" #: 01090100.xhp msgctxt "" @@ -3494,12 +3496,13 @@ msgstr "Click to move all fields to the box that the arrow is pointing to." #: 01090100.xhp +#, fuzzy msgctxt "" "01090100.xhp\n" "par_idN1074A\n" "help.text" msgid "^" -msgstr "" +msgstr "^" #: 01090100.xhp msgctxt "" @@ -4524,13 +4527,14 @@ msgstr "Displays all fields that are included in the new report." #: 01100100.xhp +#, fuzzy msgctxt "" "01100100.xhp\n" "hd_id3147209\n" "10\n" "help.text" msgid ">" -msgstr "" +msgstr ">" #: 01100100.xhp msgctxt "" @@ -4560,13 +4564,14 @@ msgstr "Click to move all fields to the box that the arrow is pointing to." #: 01100100.xhp +#, fuzzy msgctxt "" "01100100.xhp\n" "hd_id3153146\n" "14\n" "help.text" msgid "<" -msgstr "" +msgstr "<" #: 01100100.xhp msgctxt "" @@ -4720,13 +4725,14 @@ msgstr "Lists the fields by which the report will be grouped. To remove one level of grouping, select the field name, then click the < button. You may select up to four levels of grouping." #: 01100200.xhp +#, fuzzy msgctxt "" "01100200.xhp\n" "hd_id3154289\n" "4\n" "help.text" msgid ">" -msgstr "" +msgstr ">" #: 01100200.xhp msgctxt "" @@ -4738,13 +4744,14 @@ msgstr "Click to move the selected field to the box that the arrow is pointing to." #: 01100200.xhp +#, fuzzy msgctxt "" "01100200.xhp\n" "hd_id3154823\n" "5\n" "help.text" msgid "<" -msgstr "" +msgstr "<" #: 01100200.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/en-ZA/helpcontent2/source/text/shared/explorer/database.po libreoffice-5.1.2~rc2/translations/source/en-ZA/helpcontent2/source/text/shared/explorer/database.po --- libreoffice-5.1.1~rc2/translations/source/en-ZA/helpcontent2/source/text/shared/explorer/database.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/en-ZA/helpcontent2/source/text/shared/explorer/database.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 \n" "Language: en_ZA\n" @@ -14,7 +14,7 @@ "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 @@ 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 @@ 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 @@ 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 @@ msgstr "Lists the available indexes that you can assign to a table. 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 @@ msgstr "Moves all of the free indexes to the Table Indexes list." #: 11030100.xhp +#, fuzzy msgctxt "" "11030100.xhp\n" "hd_id3149579\n" "8\n" "help.text" msgid ">" -msgstr "" +msgstr ">" #: 11030100.xhp msgctxt "" @@ -12420,12 +12425,13 @@ msgstr "Appends a new row of controls." #: querywizard04.xhp +#, fuzzy msgctxt "" "querywizard04.xhp\n" "par_idN105F1\n" "help.text" msgid "-" -msgstr "" +msgstr "-" #: querywizard04.xhp msgctxt "" @@ -14444,12 +14450,13 @@ msgstr "Select a field in order to edit the field information." #: tablewizard02.xhp +#, fuzzy msgctxt "" "tablewizard02.xhp\n" "par_idN10574\n" "help.text" msgid "-" -msgstr "" +msgstr "-" #: tablewizard02.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/en-ZA/helpcontent2/source/text/swriter/01.po libreoffice-5.1.2~rc2/translations/source/en-ZA/helpcontent2/source/text/swriter/01.po --- libreoffice-5.1.1~rc2/translations/source/en-ZA/helpcontent2/source/text/swriter/01.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/en-ZA/helpcontent2/source/text/swriter/01.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 \n" "Language: en_ZA\n" @@ -14,7 +14,7 @@ "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 @@ msgstr "Select the paragraph style that you want to apply to the selected index level, and then click the Assign (<) button." #: 04120201.xhp +#, fuzzy msgctxt "" "04120201.xhp\n" "hd_id3145418\n" "32\n" "help.text" msgid "<" -msgstr "" +msgstr "<" #: 04120201.xhp msgctxt "" @@ -27778,12 +27779,13 @@ msgstr "Select a field and drag the field to the other list." #: 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 @@ msgstr "Adds the selected field from the Address Elements list to the other list. You can add the same field more than once." #: 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 @@ msgstr "Select a field and drag the field to the other list." #: 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 @@ msgstr "Adds the selected field from the list of salutation elements to the other list. You can add a field more than once." #: 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 @@ msgstr "Select an address field and drag the field to the other list." #: 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 @@ msgstr "Adds the selected field from the Address Elements list to the other list. 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 -Nru libreoffice-5.1.1~rc2/translations/source/en-ZA/helpcontent2/source/text/swriter/02.po libreoffice-5.1.2~rc2/translations/source/en-ZA/helpcontent2/source/text/swriter/02.po --- libreoffice-5.1.1~rc2/translations/source/en-ZA/helpcontent2/source/text/swriter/02.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/en-ZA/helpcontent2/source/text/swriter/02.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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 \n" "Language: en_ZA\n" @@ -14,7 +14,7 @@ "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 @@ msgstr "Subtraction" #: 14020000.xhp +#, fuzzy msgctxt "" "14020000.xhp\n" "par_id3150087\n" "12\n" "help.text" msgid "-" -msgstr "" +msgstr "-" #: 14020000.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/en-ZA/librelogo/source/pythonpath.po libreoffice-5.1.2~rc2/translations/source/en-ZA/librelogo/source/pythonpath.po --- libreoffice-5.1.1~rc2/translations/source/en-ZA/librelogo/source/pythonpath.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/en-ZA/librelogo/source/pythonpath.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,18 +3,18 @@ msgstr "" "Project-Id-Version: LibO 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 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/en-ZA/officecfg/registry/data/org/openoffice/Office.po libreoffice-5.1.2~rc2/translations/source/en-ZA/officecfg/registry/data/org/openoffice/Office.po --- libreoffice-5.1.1~rc2/translations/source/en-ZA/officecfg/registry/data/org/openoffice/Office.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/en-ZA/officecfg/registry/data/org/openoffice/Office.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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 \n" "Language: en_ZA\n" @@ -14,7 +14,7 @@ "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 @@ msgstr "" #: PresentationMinimizer.xcu +#, fuzzy msgctxt "" "PresentationMinimizer.xcu\n" "..PresentationMinimizer.Strings\n" "STR_FILESIZESEPARATOR\n" "value.text" msgid "." -msgstr "" +msgstr "." #: PresentationMinimizer.xcu msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/en-ZA/reportdesign/uiconfig/dbreport/ui.po libreoffice-5.1.2~rc2/translations/source/en-ZA/reportdesign/uiconfig/dbreport/ui.po --- libreoffice-5.1.1~rc2/translations/source/en-ZA/reportdesign/uiconfig/dbreport/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/en-ZA/reportdesign/uiconfig/dbreport/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 \n" "Language: en_ZA\n" @@ -14,7 +14,7 @@ "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 @@ msgstr "" #: conditionwin.ui +#, fuzzy msgctxt "" "conditionwin.ui\n" "lhsButton\n" "label\n" "string.text" msgid "..." -msgstr "" +msgstr "..." #: conditionwin.ui msgctxt "" @@ -215,13 +216,14 @@ msgstr "" #: conditionwin.ui +#, fuzzy msgctxt "" "conditionwin.ui\n" "rhsButton\n" "label\n" "string.text" msgid "..." -msgstr "" +msgstr "..." #: conditionwin.ui msgctxt "" @@ -278,13 +280,14 @@ msgstr "" #: conditionwin.ui +#, fuzzy msgctxt "" "conditionwin.ui\n" "removeButton\n" "label\n" "string.text" msgid "-" -msgstr "" +msgstr "-" #: conditionwin.ui msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/en-ZA/sc/uiconfig/scalc/ui.po libreoffice-5.1.2~rc2/translations/source/en-ZA/sc/uiconfig/scalc/ui.po --- libreoffice-5.1.1~rc2/translations/source/en-ZA/sc/uiconfig/scalc/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/en-ZA/sc/uiconfig/scalc/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 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 @@ "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 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/en-ZA/sd/uiconfig/simpress/ui.po libreoffice-5.1.2~rc2/translations/source/en-ZA/sd/uiconfig/simpress/ui.po --- libreoffice-5.1.1~rc2/translations/source/en-ZA/sd/uiconfig/simpress/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/en-ZA/sd/uiconfig/simpress/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 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 @@ "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 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/en-ZA/sw/source/ui/dbui.po libreoffice-5.1.2~rc2/translations/source/en-ZA/sw/source/ui/dbui.po --- libreoffice-5.1.1~rc2/translations/source/en-ZA/sw/source/ui/dbui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/en-ZA/sw/source/ui/dbui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 \n" "Language: en_ZA\n" @@ -14,7 +14,7 @@ "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 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/en-ZA/sw/source/ui/index.po libreoffice-5.1.2~rc2/translations/source/en-ZA/sw/source/ui/index.po --- libreoffice-5.1.1~rc2/translations/source/en-ZA/sw/source/ui/index.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/en-ZA/sw/source/ui/index.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,17 +3,18 @@ msgstr "" "Project-Id-Version: PACKAGE 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 \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 @@ msgstr "" #: cnttab.src +#, fuzzy msgctxt "" "cnttab.src\n" "STR_NOSORTKEY\n" "string.text" msgid "" -msgstr "" +msgstr "" #: cnttab.src +#, fuzzy msgctxt "" "cnttab.src\n" "STR_NO_CHAR_STYLE\n" "string.text" msgid "" -msgstr "" +msgstr "" #: cnttab.src msgctxt "" @@ -105,12 +108,13 @@ msgstr "" #: cnttab.src +#, fuzzy msgctxt "" "cnttab.src\n" "STR_TOKEN_PAGE_NUMS\n" "string.text" msgid "#" -msgstr "" +msgstr "#" #: cnttab.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/en-ZA/sw/uiconfig/swriter/ui.po libreoffice-5.1.2~rc2/translations/source/en-ZA/sw/uiconfig/swriter/ui.po --- libreoffice-5.1.1~rc2/translations/source/en-ZA/sw/uiconfig/swriter/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/en-ZA/sw/uiconfig/swriter/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 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 @@ "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 @@ 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 @@ msgstr "" #: createaddresslist.ui +#, fuzzy msgctxt "" "createaddresslist.ui\n" "PREV\n" "label\n" "string.text" msgid "<" -msgstr "" +msgstr "<" #: createaddresslist.ui msgctxt "" @@ -2521,13 +2523,14 @@ msgstr "" #: createaddresslist.ui +#, fuzzy msgctxt "" "createaddresslist.ui\n" "NEXT\n" "label\n" "string.text" msgid ">" -msgstr "" +msgstr ">" #: createaddresslist.ui msgctxt "" @@ -4434,13 +4437,14 @@ msgstr "" #: fldvarpage.ui +#, fuzzy msgctxt "" "fldvarpage.ui\n" "separator\n" "text\n" "string.text" msgid "." -msgstr "" +msgstr "." #: fldvarpage.ui msgctxt "" @@ -5422,22 +5426,24 @@ msgstr "" #: frmaddpage.ui +#, fuzzy msgctxt "" "frmaddpage.ui\n" "prev\n" "0\n" "stringlist.text" msgid "" -msgstr "" +msgstr "" #: frmaddpage.ui +#, fuzzy msgctxt "" "frmaddpage.ui\n" "next\n" "0\n" "stringlist.text" msgid "" -msgstr "" +msgstr "" #: frmaddpage.ui msgctxt "" @@ -6347,13 +6353,14 @@ 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 @@ 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 @@ msgstr "" #: mmpreparepage.ui +#, fuzzy msgctxt "" "mmpreparepage.ui\n" "prev\n" "label\n" "string.text" msgid "<" -msgstr "" +msgstr "<" #: mmpreparepage.ui msgctxt "" @@ -8725,13 +8734,14 @@ msgstr "" #: mmpreparepage.ui +#, fuzzy msgctxt "" "mmpreparepage.ui\n" "next\n" "label\n" "string.text" msgid ">" -msgstr "" +msgstr ">" #: mmpreparepage.ui #, fuzzy @@ -9579,13 +9589,14 @@ 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 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/en-ZA/vcl/source/src.po libreoffice-5.1.2~rc2/translations/source/en-ZA/vcl/source/src.po --- libreoffice-5.1.1~rc2/translations/source/en-ZA/vcl/source/src.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/en-ZA/vcl/source/src.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 \n" "Language: en_ZA\n" @@ -14,7 +14,7 @@ "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 @@ msgstr "" #: print.src +#, fuzzy msgctxt "" "print.src\n" "SV_PRINT_INVALID_TXT\n" "string.text" msgid "" -msgstr "" +msgstr "" #: print.src msgctxt "" @@ -1470,13 +1471,14 @@ msgstr "" #: units.src +#, fuzzy msgctxt "" "units.src\n" "SV_FUNIT_STRINGS\n" "°\n" "itemlist.text" msgid "°" -msgstr "" +msgstr "°" #: units.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/eo/formula/source/core/resource.po libreoffice-5.1.2~rc2/translations/source/eo/formula/source/core/resource.po --- libreoffice-5.1.1~rc2/translations/source/eo/formula/source/core/resource.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/eo/formula/source/core/resource.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\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-27 00:46+0100\n" +"POT-Creation-Date: 2016-03-29 16:07+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-5.1.1~rc2/translations/source/eo/helpcontent2/source/text/scalc/01.po libreoffice-5.1.2~rc2/translations/source/eo/helpcontent2/source/text/scalc/01.po --- libreoffice-5.1.1~rc2/translations/source/eo/helpcontent2/source/text/scalc/01.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/eo/helpcontent2/source/text/scalc/01.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\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 \n" +"PO-Revision-Date: 2016-03-03 20:45+0000\n" +"Last-Translator: system user <>\n" "Language-Team: LANGUAGE \n" "Language: eo\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "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 @@ 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 @@ msgstr "malpli ol" #: 12090103.xhp +#, fuzzy msgctxt "" "12090103.xhp\n" "par_id3155335\n" "17\n" "help.text" msgid ">" -msgstr "" +msgstr ">" #: 12090103.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/eo/helpcontent2/source/text/scalc/05.po libreoffice-5.1.2~rc2/translations/source/eo/helpcontent2/source/text/scalc/05.po --- libreoffice-5.1.1~rc2/translations/source/eo/helpcontent2/source/text/scalc/05.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/eo/helpcontent2/source/text/scalc/05.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\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 \n" +"PO-Revision-Date: 2016-03-03 20:48+0000\n" +"Last-Translator: system user <>\n" "Language-Team: LANGUAGE \n" "Language: eo\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "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 @@ msgstr "Klarigo" #: 02140000.xhp +#, fuzzy msgctxt "" "02140000.xhp\n" "par_id1668467\n" "help.text" msgid "###" -msgstr "" +msgstr "###" #: 02140000.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/eo/helpcontent2/source/text/scalc.po libreoffice-5.1.2~rc2/translations/source/eo/helpcontent2/source/text/scalc.po --- libreoffice-5.1.1~rc2/translations/source/eo/helpcontent2/source/text/scalc.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/eo/helpcontent2/source/text/scalc.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "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 \n" +"PO-Revision-Date: 2016-03-03 20:12+0000\n" +"Last-Translator: system user <>\n" "Language-Team: Esperanto \n" "Language: eo\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "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 @@ msgstr "Dosiero" #: main0101.xhp -#, fuzzy msgctxt "" "main0101.xhp\n" "hd_id3156023\n" @@ -113,7 +112,6 @@ msgstr "Dosiero" #: main0101.xhp -#, fuzzy msgctxt "" "main0101.xhp\n" "par_id3151112\n" @@ -130,7 +128,6 @@ msgstr "Redakti" #: main0102.xhp -#, fuzzy msgctxt "" "main0102.xhp\n" "hd_id3156023\n" @@ -139,7 +136,6 @@ msgstr "Redakti" #: main0102.xhp -#, fuzzy msgctxt "" "main0102.xhp\n" "par_id3154758\n" @@ -148,7 +144,6 @@ msgstr "Ĉi tiu menuo enhavas komandojn por redakti la enhavon de la aktuala dokumento." #: main0102.xhp -#, fuzzy msgctxt "" "main0102.xhp\n" "hd_id3146919\n" @@ -157,7 +152,6 @@ msgstr "Ligojn" #: main0102.xhp -#, fuzzy msgctxt "" "main0102.xhp\n" "hd_id3148488\n" @@ -182,7 +176,6 @@ msgstr "Vido" #: main0103.xhp -#, fuzzy msgctxt "" "main0103.xhp\n" "hd_id3151112\n" @@ -191,13 +184,12 @@ msgstr "Vido" #: main0103.xhp -#, fuzzy msgctxt "" "main0103.xhp\n" "par_id3149456\n" "help.text" msgid "This menu contains commands for controlling the on-screen display of the document." -msgstr "Ĉi tiu menuo enhavas komandojn por regi la surekranan vidigon de la dokumento." +msgstr "Ĉi tiu menuo enhavas komandojn por regi la ekranan vidigon de la dokumento." #: main0103.xhp msgctxt "" @@ -208,7 +200,6 @@ msgstr "Normala" #: main0103.xhp -#, fuzzy msgctxt "" "main0103.xhp\n" "par_idN105AF\n" @@ -230,7 +221,7 @@ "hd_id10272015110909623\n" "help.text" msgid "Grid Lines for Sheet" -msgstr "" +msgstr "Kradlinioj por folio " #: main0103.xhp msgctxt "" @@ -238,7 +229,7 @@ "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 @@ "hd_id102720150908397549\n" "help.text" msgid "Clip Art Gallery" -msgstr "" +msgstr "Bildetara galerio" #: main0103.xhp -#, fuzzy msgctxt "" "main0103.xhp\n" "hd_id3125863\n" @@ -266,7 +256,6 @@ msgstr "Enmeti" #: main0104.xhp -#, fuzzy msgctxt "" "main0104.xhp\n" "hd_id3157909\n" @@ -275,7 +264,6 @@ msgstr "Enmeti" #: main0104.xhp -#, fuzzy msgctxt "" "main0104.xhp\n" "par_id3153896\n" @@ -284,7 +272,6 @@ msgstr "La menuo Enmeti enhavas komandojn por enmetado de novaj elementoj, ekzemple ĉeloj, vicoj, folioj kaj ĉelnomoj en la aktualan folion." #: main0104.xhp -#, fuzzy msgctxt "" "main0104.xhp\n" "hd_id3150769\n" @@ -293,7 +280,6 @@ msgstr "Ĉeloj" #: main0104.xhp -#, fuzzy msgctxt "" "main0104.xhp\n" "hd_id3149260\n" @@ -302,7 +288,6 @@ msgstr "Folio" #: main0104.xhp -#, fuzzy msgctxt "" "main0104.xhp\n" "hd_id3153726\n" @@ -311,7 +296,6 @@ msgstr "Speciala signo" #: main0104.xhp -#, fuzzy msgctxt "" "main0104.xhp\n" "hd_id3156285\n" @@ -320,7 +304,6 @@ msgstr "Hiperligilo" #: main0104.xhp -#, fuzzy msgctxt "" "main0104.xhp\n" "hd_id3154492\n" @@ -329,7 +312,6 @@ msgstr "Funkcio" #: main0104.xhp -#, fuzzy msgctxt "" "main0104.xhp\n" "hd_id3145640\n" @@ -338,7 +320,6 @@ msgstr "Komento" #: main0104.xhp -#, fuzzy msgctxt "" "main0104.xhp\n" "hd_id3146918\n" @@ -355,7 +336,6 @@ msgstr "Enmetas diagramon." #: main0104.xhp -#, fuzzy msgctxt "" "main0104.xhp\n" "hd_id3147003\n" @@ -372,7 +352,6 @@ msgstr "Formato" #: main0105.xhp -#, fuzzy msgctxt "" "main0105.xhp\n" "hd_id3149669\n" @@ -389,7 +368,6 @@ msgstr "La menuo Formato enhavas komandojn por formatado de elektitaj ĉeloj, objektoj, kaj ĉelaj enhavoj en via dokumento." #: main0105.xhp -#, fuzzy msgctxt "" "main0105.xhp\n" "hd_id3154732\n" @@ -398,7 +376,6 @@ msgstr "Ĉeloj" #: main0105.xhp -#, fuzzy msgctxt "" "main0105.xhp\n" "hd_id3155087\n" @@ -407,7 +384,6 @@ msgstr "PaÄo" #: main0105.xhp -#, fuzzy msgctxt "" "main0105.xhp\n" "hd_id3145748\n" @@ -416,7 +392,6 @@ msgstr "Signo" #: main0105.xhp -#, fuzzy msgctxt "" "main0105.xhp\n" "hd_id3154485\n" @@ -425,7 +400,6 @@ msgstr "Alineo" #: main0105.xhp -#, fuzzy msgctxt "" "main0105.xhp\n" "hd_id3157980\n" @@ -434,7 +408,6 @@ msgstr "AÅ­tomate formati" #: main0105.xhp -#, fuzzy msgctxt "" "main0105.xhp\n" "hd_id3159206\n" @@ -443,7 +416,6 @@ msgstr "Kondiĉa formatado" #: main0105.xhp -#, fuzzy msgctxt "" "main0105.xhp\n" "hd_id3154703\n" @@ -452,7 +424,6 @@ msgstr "Regilo" #: main0105.xhp -#, fuzzy msgctxt "" "main0105.xhp\n" "hd_id3147005\n" @@ -540,7 +511,6 @@ msgstr "Fenestro" #: main0107.xhp -#, fuzzy msgctxt "" "main0107.xhp\n" "hd_id3154758\n" @@ -668,7 +638,7 @@ "tit\n" "help.text" msgid "Sheet" -msgstr "" +msgstr "Folio" #: main0116.xhp msgctxt "" @@ -684,7 +654,7 @@ "par_id0906201507414091\n" "help.text" msgid "This menu contains commands to modify and manage a sheet and its elements." -msgstr "" +msgstr "Ĉi tiu menuo enhavas komandojn por ÅanÄi kaj mastrumi folion kaj ties elementojn." #: main0116.xhp msgctxt "" @@ -692,7 +662,7 @@ "hd_id3150792\n" "help.text" msgid "Move or Copy Sheet" -msgstr "" +msgstr "Movi aÅ­ kopii foilon" #: main0116.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/eo/helpcontent2/source/text/schart.po libreoffice-5.1.2~rc2/translations/source/eo/helpcontent2/source/text/schart.po --- libreoffice-5.1.1~rc2/translations/source/eo/helpcontent2/source/text/schart.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/eo/helpcontent2/source/text/schart.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "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 \n" "Language: eo\n" @@ -14,7 +14,7 @@ "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 @@ "hd_id0810200902300672\n" "help.text" msgid "Horizontal Grids" -msgstr "" +msgstr "Horizontalaj kradoj" #: main0202.xhp -#, fuzzy msgctxt "" "main0202.xhp\n" "par_id0810200902300630\n" diff -Nru libreoffice-5.1.1~rc2/translations/source/eo/helpcontent2/source/text/sdraw.po libreoffice-5.1.2~rc2/translations/source/eo/helpcontent2/source/text/sdraw.po --- libreoffice-5.1.1~rc2/translations/source/eo/helpcontent2/source/text/sdraw.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/eo/helpcontent2/source/text/sdraw.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "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 \n" "Language: eo\n" @@ -14,7 +14,7 @@ "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 @@ msgstr "Vido" #: main0103.xhp -#, fuzzy msgctxt "" "main0103.xhp\n" "hd_id3152576\n" @@ -327,13 +326,12 @@ msgstr "Vido" #: 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 @@ msgstr "Baskuli al modelpaÄa vido." #: main0103.xhp -#, fuzzy msgctxt "" "main0103.xhp\n" "hd_id3149666\n" diff -Nru libreoffice-5.1.1~rc2/translations/source/eo/helpcontent2/source/text/shared/00.po libreoffice-5.1.2~rc2/translations/source/eo/helpcontent2/source/text/shared/00.po --- libreoffice-5.1.1~rc2/translations/source/eo/helpcontent2/source/text/shared/00.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/eo/helpcontent2/source/text/shared/00.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "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 \n" +"PO-Revision-Date: 2016-03-03 21:05+0000\n" +"Last-Translator: system user <>\n" "Language-Team: Esperanto \n" "Language: eo\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "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 @@ msgstr "" #: 00000021.xhp +#, fuzzy msgctxt "" "00000021.xhp\n" "par_id100120091238112\n" "help.text" msgid "-" -msgstr "" +msgstr "-" #: 00000021.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/eo/helpcontent2/source/text/shared/01.po libreoffice-5.1.2~rc2/translations/source/eo/helpcontent2/source/text/shared/01.po --- libreoffice-5.1.1~rc2/translations/source/eo/helpcontent2/source/text/shared/01.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/eo/helpcontent2/source/text/shared/01.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\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 \n" +"PO-Revision-Date: 2016-03-03 21:22+0000\n" +"Last-Translator: system user <>\n" "Language-Team: LANGUAGE \n" "Language: eo\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ msgstr "" #: about_meta_tags.xhp +#, fuzzy msgctxt "" "about_meta_tags.xhp\n" "par_id3151056\n" "3\n" "help.text" msgid "" -msgstr "" +msgstr "<TITLE>" #: about_meta_tags.xhp msgctxt "" @@ -41095,13 +41117,14 @@ 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 @@ 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 @@ 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 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/eo/helpcontent2/source/text/shared/02.po libreoffice-5.1.2~rc2/translations/source/eo/helpcontent2/source/text/shared/02.po --- libreoffice-5.1.1~rc2/translations/source/eo/helpcontent2/source/text/shared/02.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/eo/helpcontent2/source/text/shared/02.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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 @@ "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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/eo/helpcontent2/source/text/shared/autopi.po libreoffice-5.1.2~rc2/translations/source/eo/helpcontent2/source/text/shared/autopi.po --- libreoffice-5.1.1~rc2/translations/source/eo/helpcontent2/source/text/shared/autopi.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/eo/helpcontent2/source/text/shared/autopi.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\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 @@ "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 @@ 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 @@ 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 @@ msgstr "" #: 01090100.xhp +#, fuzzy msgctxt "" "01090100.xhp\n" "par_idN1074A\n" "help.text" msgid "^" -msgstr "" +msgstr "^" #: 01090100.xhp msgctxt "" @@ -4524,13 +4527,14 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/eo/helpcontent2/source/text/shared/explorer/database.po libreoffice-5.1.2~rc2/translations/source/eo/helpcontent2/source/text/shared/explorer/database.po --- libreoffice-5.1.1~rc2/translations/source/eo/helpcontent2/source/text/shared/explorer/database.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/eo/helpcontent2/source/text/shared/explorer/database.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\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 @@ "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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ msgstr "" #: querywizard04.xhp +#, fuzzy msgctxt "" "querywizard04.xhp\n" "par_idN105F1\n" "help.text" msgid "-" -msgstr "" +msgstr "-" #: querywizard04.xhp msgctxt "" @@ -14442,12 +14448,13 @@ msgstr "" #: tablewizard02.xhp +#, fuzzy msgctxt "" "tablewizard02.xhp\n" "par_idN10574\n" "help.text" msgid "-" -msgstr "" +msgstr "-" #: tablewizard02.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/eo/helpcontent2/source/text/shared/optionen.po libreoffice-5.1.2~rc2/translations/source/eo/helpcontent2/source/text/shared/optionen.po --- libreoffice-5.1.1~rc2/translations/source/eo/helpcontent2/source/text/shared/optionen.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/eo/helpcontent2/source/text/shared/optionen.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "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 @@ "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 @@ 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 @@ msgstr "" #: 01010501.xhp +#, fuzzy msgctxt "" "01010501.xhp\n" "hd_id3158409\n" "13\n" "help.text" msgid "-->" -msgstr "" +msgstr "-->" #: 01010501.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/eo/helpcontent2/source/text/shared.po libreoffice-5.1.2~rc2/translations/source/eo/helpcontent2/source/text/shared.po --- libreoffice-5.1.1~rc2/translations/source/eo/helpcontent2/source/text/shared.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/eo/helpcontent2/source/text/shared.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "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 @@ "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 @@ "tit\n" "help.text" msgid "We Need Your Help" -msgstr "" +msgstr "Ni bezonas vian helpon" #: need_help.xhp msgctxt "" @@ -2162,4 +2162,4 @@ "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 -Nru libreoffice-5.1.1~rc2/translations/source/eo/helpcontent2/source/text/simpress.po libreoffice-5.1.2~rc2/translations/source/eo/helpcontent2/source/text/simpress.po --- libreoffice-5.1.1~rc2/translations/source/eo/helpcontent2/source/text/simpress.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/eo/helpcontent2/source/text/simpress.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "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 @@ "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 @@ msgstr "Menuoj" #: main0100.xhp -#, fuzzy msgctxt "" "main0100.xhp\n" "hd_id3149664\n" @@ -78,7 +77,6 @@ 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 @@ msgstr "Dosiero" #: main0101.xhp -#, fuzzy msgctxt "" "main0101.xhp\n" "hd_id3153190\n" @@ -104,7 +101,6 @@ 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 @@ msgstr "Redakti" #: main0102.xhp -#, fuzzy msgctxt "" "main0102.xhp\n" "hd_id3153726\n" @@ -130,7 +125,6 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ "hd_id102720151244263489\n" "help.text" msgid "Object Moving Helplines" -msgstr "" +msgstr "Objektaj moveblaj helplinioj" #: main0103.xhp msgctxt "" @@ -257,7 +242,7 @@ "hd_id102720151246522815\n" "help.text" msgid "Comments" -msgstr "" +msgstr "Komentoj" #: main0103.xhp msgctxt "" @@ -265,7 +250,7 @@ "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 @@ "hd_id102720151246523444\n" "help.text" msgid "Master Background" -msgstr "" +msgstr "Ĉefa fono" #: main0103.xhp msgctxt "" @@ -281,7 +266,7 @@ "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 @@ "hd_id102720151246521837\n" "help.text" msgid "Master Objects" -msgstr "" +msgstr "Ĉefaj objektoj" #: main0103.xhp msgctxt "" @@ -297,7 +282,7 @@ "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 @@ "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 @@ msgstr "Enmeti" #: main0104.xhp -#, fuzzy msgctxt "" "main0104.xhp\n" "hd_id3153726\n" @@ -334,7 +317,6 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ msgstr "Enmetas diagramon." #: main0104.xhp -#, fuzzy msgctxt "" "main0104.xhp\n" "hd_id3153812\n" @@ -453,7 +429,6 @@ 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 @@ msgstr "Formato" #: main0105.xhp -#, fuzzy msgctxt "" "main0105.xhp\n" "hd_id3152596\n" @@ -487,7 +461,6 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ msgstr "Iloj" #: main0106.xhp -#, fuzzy msgctxt "" "main0106.xhp\n" "hd_id3154017\n" @@ -594,7 +557,6 @@ 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 @@ 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 @@ 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 @@ msgstr "Fenestro" #: main0107.xhp -#, fuzzy msgctxt "" "main0107.xhp\n" "hd_id3153770\n" @@ -638,7 +597,6 @@ 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 @@ msgstr "Vidigu prezentaĵon" #: main0114.xhp -#, fuzzy msgctxt "" "main0114.xhp\n" "hd_id3154011\n" @@ -762,7 +719,6 @@ 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 @@ 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 @@ 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 @@ 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 @@ "tit\n" "help.text" msgid "Slide" -msgstr "" +msgstr "Lumbildo" #: main0117.xhp msgctxt "" @@ -827,7 +780,7 @@ "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 -Nru libreoffice-5.1.1~rc2/translations/source/eo/helpcontent2/source/text/smath/01.po libreoffice-5.1.2~rc2/translations/source/eo/helpcontent2/source/text/smath/01.po --- libreoffice-5.1.1~rc2/translations/source/eo/helpcontent2/source/text/smath/01.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/eo/helpcontent2/source/text/smath/01.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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 @@ "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 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/eo/helpcontent2/source/text/swriter/00.po libreoffice-5.1.2~rc2/translations/source/eo/helpcontent2/source/text/swriter/00.po --- libreoffice-5.1.1~rc2/translations/source/eo/helpcontent2/source/text/swriter/00.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/eo/helpcontent2/source/text/swriter/00.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "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 05:01+0000\n" +"PO-Revision-Date: 2016-02-28 22:59+0000\n" "Last-Translator: Donald Rogers <donr2648@clear.net.nz>\n" "Language-Team: Esperanto <eo@li.org>\n" "Language: eo\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1437109275.000000\n" +"X-POOTLE-MTIME: 1456700370.000000\n" #: 00000004.xhp msgctxt "" @@ -99,7 +99,7 @@ "267\n" "help.text" msgid "Jump to Previous Script" -msgstr "" +msgstr "Salti al antaÅ­a skripto" #: 00000004.xhp msgctxt "" @@ -116,7 +116,7 @@ "268\n" "help.text" msgid "Jump to Next Script" -msgstr "" +msgstr "Salti al sekva skripto" #: 00000401.xhp msgctxt "" @@ -365,7 +365,6 @@ msgstr "Menuo Vido" #: 00000403.xhp -#, fuzzy msgctxt "" "00000403.xhp\n" "hd_id3154656\n" @@ -374,34 +373,30 @@ msgstr "Menuo Vido" #: 00000403.xhp -#, fuzzy msgctxt "" "00000403.xhp\n" "par_id3149502\n" "help.text" msgid "<variable id=\"lineal\">Choose <emph>View - Rulers - Rulers</emph> </variable>" -msgstr "<variable id=\"lineal\">Elektu <emph>Vidigi - Mezurilon</emph></variable>" +msgstr "<variable id=\"lineal\">Elektu je <emph>Vido - Mezuriloj - Mezuriloj</emph></variable>" #: 00000403.xhp -#, fuzzy msgctxt "" "00000403.xhp\n" "par_id3148871\n" "help.text" msgid "<variable id=\"textbegrenzungen\">Choose <emph>View - Text Boundaries</emph> </variable>" -msgstr "<variable id=\"textbegrenzungen\">Elektu <emph>Vidigi - Tekstajn limojn</emph></variable>" +msgstr "<variable id=\"textbegrenzungen\">Elektu je <emph>Vido - Tekstaj limoj</emph></variable>" #: 00000403.xhp -#, fuzzy msgctxt "" "00000403.xhp\n" "par_id3153248\n" "help.text" msgid "Choose <emph>View - Field Shadings</emph>" -msgstr "Elektu <emph>Vidigi - Kampojn reliefigitajn</emph>" +msgstr "Elektu je <emph>Vido - Kampoj reliefigitaj</emph>" #: 00000403.xhp -#, fuzzy msgctxt "" "00000403.xhp\n" "par_id3154763\n" @@ -410,16 +405,14 @@ msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Komando </caseinline><defaultinline>Stir</defaultinline></switchinline>+F8" #: 00000403.xhp -#, fuzzy msgctxt "" "00000403.xhp\n" "par_id3149052\n" "help.text" msgid "Choose <emph>View - Field Names</emph>" -msgstr "Elektu <emph>Vidigi - Kampajn nomojn</emph>" +msgstr "Elektu je <emph>Vido - Kampaj nomoj</emph>" #: 00000403.xhp -#, fuzzy msgctxt "" "00000403.xhp\n" "par_id3151387\n" @@ -428,16 +421,14 @@ msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Komando </caseinline><defaultinline>Stir</defaultinline></switchinline>+F9" #: 00000403.xhp -#, fuzzy msgctxt "" "00000403.xhp\n" "par_id3155625\n" "help.text" msgid "Choose <emph>View - Non-printing Characters</emph>" -msgstr "Elektu <emph>Vidigi - Nepreseblajn signojn</emph>" +msgstr "Elektu <emph>Vido - Nepreseblaj signoj</emph>" #: 00000403.xhp -#, fuzzy msgctxt "" "00000403.xhp\n" "par_id3145823\n" @@ -446,7 +437,6 @@ msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Komando </caseinline><defaultinline>Stir</defaultinline></switchinline>+F10" #: 00000403.xhp -#, fuzzy msgctxt "" "00000403.xhp\n" "par_id3154508\n" @@ -460,10 +450,9 @@ "par_id3150932\n" "help.text" msgid "<image id=\"img_id3150502\" src=\"cmd/sc_controlcodes.png\"><alt id=\"alt_id3150502\">Icon</alt></image>" -msgstr "" +msgstr "<image id=\"img_id3150502\" src=\"cmd/sc_controlcodes.png\"><alt id=\"alt_id3150502\">Bildsimbolo</alt></image>" #: 00000403.xhp -#, fuzzy msgctxt "" "00000403.xhp\n" "par_id3153716\n" @@ -472,22 +461,20 @@ msgstr "Nepreseblaj signoj" #: 00000403.xhp -#, fuzzy msgctxt "" "00000403.xhp\n" "par_id3149712\n" "help.text" msgid "Choose <emph>View - Web</emph>" -msgstr "Elektu <emph>Vidigi - TTT-an aranÄon</emph>" +msgstr "Elektu je <emph>Vido - TTT</emph>" #: 00000403.xhp -#, fuzzy msgctxt "" "00000403.xhp\n" "par_id3154640\n" "help.text" msgid "On Tools bar, enable" -msgstr "En ilbreto, Åaltu" +msgstr "En breto Iloj, Åaltu" #: 00000403.xhp msgctxt "" @@ -495,7 +482,7 @@ "par_id3150765\n" "help.text" msgid "<image id=\"img_id3147572\" src=\"cmd/sc_browseview.png\"><alt id=\"alt_id3147572\">Icon</alt></image>" -msgstr "" +msgstr "<image id=\"img_id3147572\" src=\"cmd/sc_browseview.png\"><alt id=\"alt_id3147572\">Bildsimbolo</alt></image>" #: 00000403.xhp msgctxt "" @@ -503,25 +490,23 @@ "par_id3149291\n" "help.text" msgid "Web" -msgstr "" +msgstr "TTT" #: 00000403.xhp -#, fuzzy msgctxt "" "00000403.xhp\n" "par_id3151176\n" "help.text" msgid "Choose <emph>View - Normal</emph>" -msgstr "Elektu <emph>Vidigi - TTT-an aranÄon</emph>" +msgstr "Elektu je <emph>Vido - Normala</emph>" #: 00000403.xhp -#, fuzzy msgctxt "" "00000403.xhp\n" "par_id3149808\n" "help.text" msgid "<variable id=\"versteckteabs\">Choose <emph>View - Hidden Paragraphs</emph> </variable>" -msgstr "<variable id=\"versteckteabs\">Elektu menueron <emph>Vidigi - KaÅitajn alineojn</emph></variable>" +msgstr "<variable id=\"versteckteabs\">Elektu menueron <emph>Vido - KaÅitaj alineoj</emph></variable>" #: 00000404.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/eo/helpcontent2/source/text/swriter/01.po libreoffice-5.1.2~rc2/translations/source/eo/helpcontent2/source/text/swriter/01.po --- libreoffice-5.1.1~rc2/translations/source/eo/helpcontent2/source/text/swriter/01.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/eo/helpcontent2/source/text/swriter/01.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibreOffice 3.5.x\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-01-12 13:40+0100\n" -"PO-Revision-Date: 2016-01-13 18:59+0000\n" +"PO-Revision-Date: 2016-02-29 03:02+0000\n" "Last-Translator: Donald Rogers <donr2648@clear.net.nz>\n" "Language-Team: Esperanto <eo@li.org>\n" "Language: eo\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1452711560.000000\n" +"X-POOTLE-MTIME: 1456714977.000000\n" #: 01120000.xhp msgctxt "" @@ -2386,7 +2386,6 @@ msgstr "Redakti bibliografieron" #: 02130000.xhp -#, fuzzy msgctxt "" "02130000.xhp\n" "hd_id3147434\n" @@ -2400,10 +2399,9 @@ "par_id3145253\n" "help.text" msgid "<variable id=\"bibliography_entry_text\"><variable id=\"litvz\"><ahelp hid=\".uno:AuthoritiesEntryDialog\">Edits the selected bibliography entry.</ahelp></variable></variable>" -msgstr "" +msgstr "<variable id=\"bibliography_entry_text\"><variable id=\"litvz\"><ahelp hid=\".uno:AuthoritiesEntryDialog\">Redaktas la elektitan bibliografieron.</ahelp></variable></variable>" #: 02130000.xhp -#, fuzzy msgctxt "" "02130000.xhp\n" "hd_id3147340\n" @@ -2412,7 +2410,6 @@ msgstr "Elemento" #: 02130000.xhp -#, fuzzy msgctxt "" "02130000.xhp\n" "hd_id3155961\n" @@ -2421,16 +2418,14 @@ msgstr "Mallonga nomo" #: 02130000.xhp -#, fuzzy msgctxt "" "02130000.xhp\n" "par_id3154657\n" "help.text" msgid "Displays the abbreviation for the bibliography entry." -msgstr "Vidigas la mallongigon de bibliografia elemento." +msgstr "Vidigas la mallongigon por la bibliografia elemento." #: 02130000.xhp -#, fuzzy msgctxt "" "02130000.xhp\n" "hd_id3148837\n" @@ -2439,7 +2434,6 @@ msgstr "AÅ­toro, titolo" #: 02130000.xhp -#, fuzzy msgctxt "" "02130000.xhp\n" "par_id3152741\n" @@ -2448,7 +2442,6 @@ msgstr "Vidigas la informojn entenatajn en la bibliografia elemento pri aÅ­toro kaj titolo." #: 02130000.xhp -#, fuzzy msgctxt "" "02130000.xhp\n" "hd_id3150214\n" @@ -2457,16 +2450,14 @@ msgstr "Modifi" #: 02130000.xhp -#, fuzzy msgctxt "" "02130000.xhp\n" "par_id3154766\n" "help.text" msgid "Applies the changes that you made, and then closes the <emph>Edit Bibliography Entry </emph>dialog." -msgstr "Aplikas la ÅanÄojn faritajn de vi, kaj fermas la dialogon <emph>Redakti bibliografian informon</emph>." +msgstr "Aplikas la ÅanÄojn faritajn de vi, kaj fermas la dialogon <emph>Redakti bibliografian elementon</emph>." #: 02130000.xhp -#, fuzzy msgctxt "" "02130000.xhp\n" "hd_id3146968\n" @@ -2475,7 +2466,6 @@ msgstr "Fermi" #: 02130000.xhp -#, fuzzy msgctxt "" "02130000.xhp\n" "par_id3166468\n" @@ -2484,7 +2474,6 @@ msgstr "Fermas la dialogon." #: 02130000.xhp -#, fuzzy msgctxt "" "02130000.xhp\n" "hd_id3147299\n" @@ -2493,16 +2482,14 @@ msgstr "Nova" #: 02130000.xhp -#, fuzzy msgctxt "" "02130000.xhp\n" "par_id3151389\n" "help.text" msgid "Opens the <link href=\"text/swriter/01/04120229.xhp\" name=\"Define Bibliography Entry\">Define Bibliography Entry</link> dialog, where you can create a new entry." -msgstr "Malfermas la dialogon <link href=\"text/swriter/01/04120229.xhp\" name=\"Define Bibliography Entry\">Difini Bibliografian Elementon</link>, kie oni povas krei novan eron." +msgstr "Malfermas la dialogon <link href=\"text/swriter/01/04120229.xhp\" name=\"Define Bibliography Entry\">Difini bibliografian elementon</link>, kie oni povas krei novan eron." #: 02130000.xhp -#, fuzzy msgctxt "" "02130000.xhp\n" "hd_id3150534\n" @@ -2511,16 +2498,14 @@ msgstr "Redakti" #: 02130000.xhp -#, fuzzy msgctxt "" "02130000.xhp\n" "par_id3155620\n" "help.text" msgid "Opens the <link href=\"text/swriter/01/04120229.xhp\" name=\"Define Bibliography Entry\">Define Bibliography Entry</link> dialog, where you can edit the current entry." -msgstr "Malfermas la dialogon <link href=\"text/swriter/01/04120229.xhp\" name=\"Define Bibliography Entry\">Difini Bibliografian Elementon</link>, kie oni povas redakti la aktualan eron." +msgstr "Malfermas la dialogon <link href=\"text/swriter/01/04120229.xhp\" name=\"Define Bibliography Entry\">Difini bibliografian elementon</link>, kie oni povas redakti la aktualan eron." #: 02130000.xhp -#, fuzzy msgctxt "" "02130000.xhp\n" "par_id3154560\n" @@ -2537,7 +2522,6 @@ msgstr "Redakti kampojn" #: 02140000.xhp -#, fuzzy msgctxt "" "02140000.xhp\n" "hd_id3150493\n" @@ -2554,16 +2538,14 @@ msgstr "<variable id=\"fields_text\"><variable id=\"feldbefehltext\"><ahelp hid=\".uno:FieldDialog\">Malfermas dialogon kie vi povas redakti la atributojn de kampo. Alklaku antaÅ­ kampo, kaj elektu ĉi tiun komandon.</ahelp> En la dialogo, vi povas uzi la sagajn butonojn por movi al la antaÅ­a aÅ­ al la sekva kampo.</variable></variable>" #: 02140000.xhp -#, fuzzy msgctxt "" "02140000.xhp\n" "par_id3151168\n" "help.text" msgid "You can also double-click a field in your document to open the field for editing." -msgstr "Vi ankaÅ­ povas duope alklaki kampon en via dokumento por ekredakti la kampon." +msgstr "Vi ankaÅ­ povas duoble alklaki kampon en via dokumento por ekredakti la kampon." #: 02140000.xhp -#, fuzzy msgctxt "" "02140000.xhp\n" "par_id3153668\n" @@ -2588,7 +2570,6 @@ msgstr "Se vi alklakas antaÅ­ kampo de speco \"sendanto\", kaj elektas je <item type=\"menuitem\">Redakti - Kampoj</item>, malfermiÄos la dialogo <link href=\"text/shared/optionen/01010100.xhp\" name=\"User data\"><emph>Propraj datumoj</emph></link>." #: 02140000.xhp -#, fuzzy msgctxt "" "02140000.xhp\n" "hd_id3145765\n" @@ -2597,7 +2578,6 @@ msgstr "Tipo" #: 02140000.xhp -#, fuzzy msgctxt "" "02140000.xhp\n" "par_id3155142\n" @@ -2606,16 +2586,14 @@ msgstr "Listigas la tipon de kampo redaktata de vi." #: 02140000.xhp -#, fuzzy msgctxt "" "02140000.xhp\n" "par_id3151371\n" "help.text" msgid "The following dialog elements are only visible when the corresponding field type is selected." -msgstr "La jenaj dialogeroj nur videblas kiam oni elektas la rilatan kampan specon." +msgstr "La jenaj dialogeroj videblas nur kiam la rilata kampa tipo elektiÄis." #: 02140000.xhp -#, fuzzy msgctxt "" "02140000.xhp\n" "hd_id3150687\n" @@ -2624,7 +2602,6 @@ msgstr "Elekti" #: 02140000.xhp -#, fuzzy msgctxt "" "02140000.xhp\n" "par_id3150700\n" @@ -2633,7 +2610,6 @@ msgstr "Listigas la kampajn agordojn, ekzemple, \"fiksita\". LaÅ­dezire oni povas alklaki alian atributon por la elektita kampa tipo." #: 02140000.xhp -#, fuzzy msgctxt "" "02140000.xhp\n" "hd_id3155854\n" @@ -2642,7 +2618,6 @@ msgstr "Formato" #: 02140000.xhp -#, fuzzy msgctxt "" "02140000.xhp\n" "par_id3147409\n" @@ -2651,7 +2626,6 @@ msgstr "<ahelp hid=\"modules/swriter/ui/flddocumentpage/numformat\">Elektu la formaton por la enhavo de la kampo. Por dato, horo, kaj propre difinitaj kampoj, oni povas ankaÅ­ alklaki je \"Kromaj formatoj\" en la listo, kaj elekti alian formaton.</ahelp> La disponeblaj formatoj dependas de la tipo de kampo redaktata." #: 02140000.xhp -#, fuzzy msgctxt "" "02140000.xhp\n" "hd_id3149556\n" @@ -2660,13 +2634,12 @@ msgstr "DeÅovo" #: 02140000.xhp -#, fuzzy msgctxt "" "02140000.xhp\n" "par_id3145256\n" "help.text" msgid "Displays the offset for the selected field type, for example, for \"Next Page,\" \"Page Numbers\" or \"Previous Page\". You can enter a new offset value which will be added to the displayed page number." -msgstr "Vidigas la deÅovon por la elektita kampotipo, ekzemple, por \"Sekva paÄo\", \"PaÄonumeroj\" aÅ­ \"AntaÅ­a paÄo\". Vi povas entajpi novan deÅovan valoron kiu estas aldonata al la vidigata paÄonumero." +msgstr "Vidigas la deÅovon por la elektita kampotipo, ekzemple, por \"Sekva paÄo\", \"PaÄonumeroj\" aÅ­ \"AntaÅ­a paÄo\". Vi povas entajpi novan deÅovan valoron kiu estas aldonota al la vidigata paÄonumero." #: 02140000.xhp msgctxt "" @@ -2677,7 +2650,6 @@ msgstr "Se vi volas ÅanÄi la realan paÄnumeron sed ne la vidigitan numeron, ne uzu la valoron de <emph>DeÅovo</emph>. Por ÅanÄi paÄajn numerojn, legu la manlibron <link href=\"text/swriter/guide/pagenumbers.xhp\" name=\"Page Numbers\"><emph>PaÄaj numeroj</emph></link>." #: 02140000.xhp -#, fuzzy msgctxt "" "02140000.xhp\n" "hd_id3145269\n" @@ -2686,7 +2658,6 @@ msgstr "Nivelo" #: 02140000.xhp -#, fuzzy msgctxt "" "02140000.xhp\n" "par_id3150559\n" @@ -2695,7 +2666,6 @@ msgstr "ÅœanÄu la difinitajn valorojn kaj skemajn niveloj por la kampotipo \"Ĉapitro\"." #: 02140000.xhp -#, fuzzy msgctxt "" "02140000.xhp\n" "hd_id3147744\n" @@ -2704,7 +2674,6 @@ msgstr "Nomo" #: 02140000.xhp -#, fuzzy msgctxt "" "02140000.xhp\n" "par_id3149834\n" @@ -2713,7 +2682,6 @@ msgstr "Vidigas la nomon de kampa variablo. LaÅ­bezone oni povas tajpi alian nomon." #: 02140000.xhp -#, fuzzy msgctxt "" "02140000.xhp\n" "hd_id3148844\n" @@ -2722,7 +2690,6 @@ msgstr "Valoro" #: 02140000.xhp -#, fuzzy msgctxt "" "02140000.xhp\n" "par_id3148857\n" @@ -2731,7 +2698,6 @@ msgstr "Vidigas la aktualan valoron de la kampa variablo. Oni povas tajpi alian valoron." #: 02140000.xhp -#, fuzzy msgctxt "" "02140000.xhp\n" "hd_id3153306\n" @@ -2740,7 +2706,6 @@ msgstr "Kondiĉo" #: 02140000.xhp -#, fuzzy msgctxt "" "02140000.xhp\n" "par_id3156124\n" @@ -2749,7 +2714,6 @@ msgstr "Vdigas la kondiĉon plenumendan por aktivigi la kampon. Oni povas enmeti alian <link href=\"text/swriter/01/04090200.xhp\" name=\"condition\">kondiĉon</link>." #: 02140000.xhp -#, fuzzy msgctxt "" "02140000.xhp\n" "hd_id3156103\n" @@ -2758,7 +2722,6 @@ msgstr "Tiam, Alie" #: 02140000.xhp -#, fuzzy msgctxt "" "02140000.xhp\n" "par_id3155073\n" @@ -2767,7 +2730,6 @@ msgstr "ÅœanÄi la kampan enhavon vidigotan depende de ĉu la kampa kondiĉo estas plenumita." #: 02140000.xhp -#, fuzzy msgctxt "" "02140000.xhp\n" "hd_id3154326\n" @@ -2776,7 +2738,6 @@ msgstr "Referenco" #: 02140000.xhp -#, fuzzy msgctxt "" "02140000.xhp\n" "par_id3154339\n" @@ -2785,16 +2746,14 @@ msgstr "Enmetu aÅ­ modifu la referenctekston por la elektita kampo." #: 02140000.xhp -#, fuzzy msgctxt "" "02140000.xhp\n" "hd_id3148785\n" "help.text" msgid "Macro name" -msgstr "Makronomo" +msgstr "Nomo de makroo" #: 02140000.xhp -#, fuzzy msgctxt "" "02140000.xhp\n" "par_id3148798\n" @@ -2803,7 +2762,6 @@ msgstr "Vidigas la nomon de la makroo atribuita al la elektita kampo." #: 02140000.xhp -#, fuzzy msgctxt "" "02140000.xhp\n" "hd_id3150097\n" @@ -2812,7 +2770,6 @@ msgstr "Lokokupilo" #: 02140000.xhp -#, fuzzy msgctxt "" "02140000.xhp\n" "par_id3150027\n" @@ -2821,7 +2778,6 @@ msgstr "Vidigas la lokokupilan tekston de la elektita kampo." #: 02140000.xhp -#, fuzzy msgctxt "" "02140000.xhp\n" "hd_id3150041\n" @@ -2830,7 +2786,6 @@ msgstr "Enmeti tekston" #: 02140000.xhp -#, fuzzy msgctxt "" "02140000.xhp\n" "par_id3153126\n" @@ -2839,7 +2794,6 @@ msgstr "Vidigas la tekston kiu estas ligita al kondiĉo." #: 02140000.xhp -#, fuzzy msgctxt "" "02140000.xhp\n" "hd_id3153140\n" @@ -2848,7 +2802,6 @@ msgstr "Formulo" #: 02140000.xhp -#, fuzzy msgctxt "" "02140000.xhp\n" "par_id3154624\n" @@ -2857,7 +2810,6 @@ msgstr "Vidigas la formulon de formula kampo." #: 02140000.xhp -#, fuzzy msgctxt "" "02140000.xhp\n" "hd_id3150658\n" @@ -2866,16 +2818,14 @@ msgstr "Datumbaza elekto" #: 02140000.xhp -#, fuzzy msgctxt "" "02140000.xhp\n" "par_id3150671\n" "help.text" msgid "Select a registered database that you want to insert the selected field from. You can also change the table or query that the selected field refers to." -msgstr "Elektu registritan datumbazon el kiu enmeti kampon. Oni povas ÅanÄi la tabelon aÅ­ imformpeton al kiu la elektitaj kampoj referas." +msgstr "Elektu registritan datumbazon el kiu enmeti kampon. Oni povas ÅanÄi la tabelon aÅ­ imformpeton al kiu la elektita kampo referas." #: 02140000.xhp -#, fuzzy msgctxt "" "02140000.xhp\n" "hd_id3154025\n" @@ -2884,16 +2834,14 @@ msgstr "Rikordnumero" #: 02140000.xhp -#, fuzzy msgctxt "" "02140000.xhp\n" "par_id3154039\n" "help.text" msgid "Displays the database record number that is inserted when the condition specified for the \"Any record\" field type is met." -msgstr "Vidigas la datumbazan rikordan numeron enmeti kiam plenumiÄos la specifita kondiĉo por la \"Ajna rikordo\" kampa tipo." +msgstr "Vidigas la datumbazan rikordnumeron enmeti kiam plenumiÄos la agordita kondiĉo por la \"Ajna rikordo\" kampa tipo." #: 02140000.xhp -#, fuzzy msgctxt "" "02140000.xhp\n" "hd_id3149960\n" @@ -2902,7 +2850,6 @@ msgstr "Maldekstrensago" #: 02140000.xhp -#, fuzzy msgctxt "" "02140000.xhp\n" "par_id3149602\n" @@ -2916,10 +2863,9 @@ "par_id3155341\n" "help.text" msgid "<image id=\"img_id3155348\" src=\"res/lc06301.png\"><alt id=\"alt_id3155348\">Icon</alt></image>" -msgstr "" +msgstr "<image id=\"img_id3155348\" src=\"res/lc06301.png\"><alt id=\"alt_id3155348\">Bildsimbolo</alt></image>" #: 02140000.xhp -#, fuzzy msgctxt "" "02140000.xhp\n" "par_id3148728\n" @@ -2928,7 +2874,6 @@ msgstr "AntaÅ­a kampo" #: 02140000.xhp -#, fuzzy msgctxt "" "02140000.xhp\n" "hd_id3155541\n" @@ -2937,7 +2882,6 @@ msgstr "Dekstrensago" #: 02140000.xhp -#, fuzzy msgctxt "" "02140000.xhp\n" "par_id3146846\n" @@ -2951,10 +2895,9 @@ "par_id3145117\n" "help.text" msgid "<image id=\"img_id3149575\" src=\"res/lc06300.png\"><alt id=\"alt_id3149575\">Icon</alt></image>" -msgstr "" +msgstr "<image id=\"img_id3149575\" src=\"res/lc06300.png\"><alt id=\"alt_id3149575\">Bildsimbolo</alt></image>" #: 02140000.xhp -#, fuzzy msgctxt "" "02140000.xhp\n" "par_id3146891\n" @@ -2968,16 +2911,15 @@ "tit\n" "help.text" msgid "Edit Footnote or Endnote" -msgstr "" +msgstr "Redakti piednoton aÅ­ finnoton" #: 02150000.xhp -#, fuzzy msgctxt "" "02150000.xhp\n" "hd_id3143276\n" "help.text" msgid "<link href=\"text/swriter/01/02150000.xhp\" name=\"Edit Footnotes\">Edit Footnote or Endnote</link>" -msgstr "<link href=\"text/swriter/01/02150000.xhp\" name=\"Edit Footnotes\">Piednoto/finnoto</link>" +msgstr "<link href=\"text/swriter/01/02150000.xhp\" name=\"Edit Footnotes\">Redakti piednoton aÅ­ finnoton</link>" #: 02150000.xhp msgctxt "" @@ -2988,7 +2930,6 @@ msgstr "<variable id=\"footnote_endnote_text\"><variable id=\"fusstext\"><ahelp hid=\".uno:EditFootnote\">Redaktas la elektitan ankron de piednoto aÅ­ finnoto. Klaku antaÅ­ la piednoto aÅ­ finnoto, kaj tiam elektu ĉi tiun komandon.</ahelp></variable></variable>" #: 02150000.xhp -#, fuzzy msgctxt "" "02150000.xhp\n" "par_id3149035\n" @@ -2997,16 +2938,14 @@ msgstr "Por redakti la tekston de piednoto aÅ­ finnoto, alklaku en la piednota areo ĉe la malsupro de la paÄo, aÅ­ ĉe la fino de la dokumento." #: 02150000.xhp -#, fuzzy msgctxt "" "02150000.xhp\n" "par_id3145776\n" "help.text" msgid "To quickly jump to the footnote or endnote text, click the anchor for note in the document. You can also position the cursor in front of or behind the marker, and then press Ctrl+Shift+PgDn. To jump back to the anchor for the note, press PgUp." -msgstr "Por rapide salti al la piednota aÅ­ finnota teksto, alklaku la ankron por la noto en la dokumento. Oni povas ankaÅ­ loki la kursoron antaÅ­ aÅ­ malantaÅ­ la markilo, kaj premi Ctrl+Shift+PgDn. Por resalti al la ankro por la noto, premu je PgUp." +msgstr "Por rapide salti al la piednota aÅ­ finnota teksto, alklaku la ankron por la noto en la dokumento. Oni povas ankaÅ­ loki la kursoron antaÅ­ aÅ­ malantaÅ­ la markilo, kaj premi Stir+Maj+PgDn. Por resalti al la ankro por la noto, premu je PgUp." #: 02150000.xhp -#, fuzzy msgctxt "" "02150000.xhp\n" "hd_id3155916\n" @@ -3015,7 +2954,6 @@ msgstr "Numerado" #: 02150000.xhp -#, fuzzy msgctxt "" "02150000.xhp\n" "par_id3151373\n" @@ -3024,7 +2962,6 @@ msgstr "Elektu la numeradan tipon por la piednoto aÅ­ finnoto." #: 02150000.xhp -#, fuzzy msgctxt "" "02150000.xhp\n" "hd_id3150685\n" @@ -3033,7 +2970,6 @@ msgstr "AÅ­tomata" #: 02150000.xhp -#, fuzzy msgctxt "" "02150000.xhp\n" "hd_id3155858\n" @@ -3042,7 +2978,6 @@ msgstr "Signo" #: 02150000.xhp -#, fuzzy msgctxt "" "02150000.xhp\n" "hd_id3150113\n" @@ -3059,7 +2994,6 @@ msgstr "Por ÅanÄi la formaton de piednota aÅ­ finnota ankro aÅ­ teksto, elektu Äin, kaj elektu menueron <item type=\"menuitem\">Formato - Signo</item>. Vi povas premi je <switchinline select=\"sys\"><caseinline select=\"MAC\">Komando+T</caseinline><defaultinline>F11</defaultinline></switchinline> por malfermi la fenestron <emph>Stiloj kaj formatoj</emph> kaj modifi la piednotan aÅ­ finnotan alinean stilon." #: 02150000.xhp -#, fuzzy msgctxt "" "02150000.xhp\n" "hd_id3153296\n" @@ -3068,7 +3002,6 @@ msgstr "Tipo" #: 02150000.xhp -#, fuzzy msgctxt "" "02150000.xhp\n" "par_id3153308\n" @@ -3077,7 +3010,6 @@ msgstr "Elektu la tipon de noto enmeti, tio estas, piednoto aÅ­ finnoto. Piednoto metiÄas ĉe la malsupro de la aktuala paÄo, dum finnoto metiÄas ĉe la fino de la dokumento." #: 02150000.xhp -#, fuzzy msgctxt "" "02150000.xhp\n" "hd_id3156130\n" @@ -3086,7 +3018,6 @@ msgstr "Piednoto" #: 02150000.xhp -#, fuzzy msgctxt "" "02150000.xhp\n" "par_id3156098\n" @@ -3095,7 +3026,6 @@ msgstr "Konvertas finnoton al piednoto." #: 02150000.xhp -#, fuzzy msgctxt "" "02150000.xhp\n" "hd_id3156111\n" @@ -3104,7 +3034,6 @@ msgstr "Finnoto" #: 02150000.xhp -#, fuzzy msgctxt "" "02150000.xhp\n" "par_id3155079\n" @@ -3113,7 +3042,6 @@ msgstr "Konvertas piednoton al finnoton." #: 02150000.xhp -#, fuzzy msgctxt "" "02150000.xhp\n" "hd_id3154323\n" @@ -3122,7 +3050,6 @@ msgstr "Sago maldekstren" #: 02150000.xhp -#, fuzzy msgctxt "" "02150000.xhp\n" "par_id3154341\n" @@ -3136,10 +3063,9 @@ "par_id3150023\n" "help.text" msgid "<image id=\"img_id3150030\" src=\"res/lc06301.png\"><alt id=\"alt_id3150030\">Icon</alt></image>" -msgstr "" +msgstr "<image id=\"img_id3150030\" src=\"res/lc06301.png\"><alt id=\"alt_id3150030\">Bildsimbolo</alt></image>" #: 02150000.xhp -#, fuzzy msgctxt "" "02150000.xhp\n" "par_id3154614\n" @@ -3148,7 +3074,6 @@ msgstr "AntaÅ­a piednoto" #: 02150000.xhp -#, fuzzy msgctxt "" "02150000.xhp\n" "hd_id3154630\n" @@ -3157,7 +3082,6 @@ msgstr "Sago dekstren" #: 02150000.xhp -#, fuzzy msgctxt "" "02150000.xhp\n" "par_id3149638\n" @@ -3171,10 +3095,9 @@ "par_id3154029\n" "help.text" msgid "<image id=\"img_id3154044\" src=\"res/lc06300.png\"><alt id=\"alt_id3154044\">Icon</alt></image>" -msgstr "" +msgstr "<image id=\"img_id3154044\" src=\"res/lc06300.png\"><alt id=\"alt_id3154044\">Bildsimbolo</alt></image>" #: 02150000.xhp -#, fuzzy msgctxt "" "02150000.xhp\n" "par_id3149606\n" @@ -3183,13 +3106,12 @@ msgstr "Sekva piednoto" #: 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\">Enmeti piednoton/finnoton</link>-dialog." +msgstr "Dialogo <link href=\"text/swriter/01/04030000.xhp\" name=\"Insert Footnote\">Enmeti piednoton/finnoton</link>." #: 02160000.xhp msgctxt "" @@ -3200,7 +3122,6 @@ msgstr "Redakti Indekselementon" #: 02160000.xhp -#, fuzzy msgctxt "" "02160000.xhp\n" "hd_id3154567\n" @@ -3222,10 +3143,9 @@ "par_id3155896\n" "help.text" msgid "To insert an index entry, select a word in the document, and then choose <link href=\"text/swriter/01/04120100.xhp\" name=\"Insert - Indexes and Tables - Entry\"><item type=\"menuitem\">Insert - </item><item type=\"menuitem\">Table of Contents and </item><item type=\"menuitem\">Index - </item><item type=\"menuitem\">Index </item><item type=\"menuitem\">Entry</item></link>." -msgstr "" +msgstr "Por enmeti indeksan elementon, elektu vorton en la dokumento, kaj elektu menuerojn <link href=\"text/swriter/01/04120100.xhp\" name=\"Insert - Indexes and Tables - Entry\"><item type=\"menuitem\">Enmeti - </item><item type=\"menuitem\">Enhavolisto kaj </item><item type=\"menuitem\">Indekso - </item><item type=\"menuitem\">Indekso </item><item type=\"menuitem\">Elemento</item></link>." #: 02160000.xhp -#, fuzzy msgctxt "" "02160000.xhp\n" "hd_id3159193\n" @@ -3234,7 +3154,6 @@ msgstr "Elektaĵo" #: 02160000.xhp -#, fuzzy msgctxt "" "02160000.xhp\n" "par_id3149486\n" @@ -3243,16 +3162,14 @@ msgstr "Redaktas la elektitan indeksan elementon." #: 02160000.xhp -#, fuzzy msgctxt "" "02160000.xhp\n" "hd_id3143272\n" "help.text" msgid "Index" -msgstr "indekso" +msgstr "Indekso" #: 02160000.xhp -#, fuzzy msgctxt "" "02160000.xhp\n" "par_id3151251\n" @@ -3261,7 +3178,6 @@ msgstr "<ahelp hid=\"modules/swriter/ui/indexentry/typecb\">Vidigas la tipon de indekso al kiu apartenas la elektita elemento.</ahelp> Oni ne povas ÅanÄi la indeksan tipon de elemento per ĉi tiu dialogo. AnstataÅ­e, oni devas forigi la indeksan elementon el la dokumento, kaj reenmeti Äin kun alia indeksa tipo." #: 02160000.xhp -#, fuzzy msgctxt "" "02160000.xhp\n" "hd_id3149107\n" @@ -3270,16 +3186,14 @@ msgstr "Elemento" #: 02160000.xhp -#, fuzzy msgctxt "" "02160000.xhp\n" "par_id3149823\n" "help.text" msgid "<ahelp hid=\"modules/swriter/ui/indexentry/entryed\">Edit the index entry if necessary. When you modify the index entry, the new text only appears in the index, and not at the index entry anchor in the document. </ahelp> For example, you can enter an index with comments such as \"Basics, see also General\"." -msgstr "<ahelp hid=\"modules/swriter/ui/indexentry/entryed\">Redaktu la indeksan elementon laÅ­necese. Kiam oni modifas indeksan elementon, la nova teksto aperas nur en la indekso, kaj ne ĉe la ankro de la indeksa elemento en la dokumento </ahelp> Ekzemple, oni povas enmeti indekson kun komentoj, kiaj \"Baza, vidu ankaÅ­ je Äœenerala\"." +msgstr "<ahelp hid=\"modules/swriter/ui/indexentry/entryed\">Redaktu la indeksan elementon laÅ­necese. Kiam oni modifas indeksan elementon, la nova teksto aperos nur en la indekso, ne ĉe la ankro de la indeksa elemento en la dokumento. </ahelp> Ekzemple, oni povas enmeti indekson kun komentoj, kiaj \"Baza, vidu ankaÅ­ je Äœenerala\"." #: 02160000.xhp -#, fuzzy msgctxt "" "02160000.xhp\n" "hd_id3149036\n" @@ -3288,7 +3202,6 @@ msgstr "1-a Ålosilo" #: 02160000.xhp -#, fuzzy msgctxt "" "02160000.xhp\n" "par_id3153631\n" @@ -3297,7 +3210,6 @@ msgstr "<ahelp hid=\"modules/swriter/ui/indexentry/key1cb\">Por krei plurnivelan indekson, tajpu la nomon de la unuanivela indeksa elemento, aÅ­ elektu nomon el la listo. La aktuala indeksa elemento enmetiÄos sub tiu nomo.</ahelp>" #: 02160000.xhp -#, fuzzy msgctxt "" "02160000.xhp\n" "hd_id3152773\n" @@ -3306,7 +3218,6 @@ msgstr "2-a Ålosilo" #: 02160000.xhp -#, fuzzy msgctxt "" "02160000.xhp\n" "par_id3145758\n" @@ -3315,7 +3226,6 @@ msgstr "<ahelp hid=\"modules/swriter/ui/indexentry/key2cb\">Tajpu la nomon de la duanivela indeksa elemento, aÅ­ elektu nomon el la listo. La aktuala indeksa elemento aldoniÄos sub tiu nomo.</ahelp>" #: 02160000.xhp -#, fuzzy msgctxt "" "02160000.xhp\n" "hd_id3155143\n" @@ -3324,7 +3234,6 @@ msgstr "Nivelo" #: 02160000.xhp -#, fuzzy msgctxt "" "02160000.xhp\n" "par_id3149170\n" @@ -3333,7 +3242,6 @@ msgstr "<ahelp hid=\"modules/swriter/ui/indexentry/levelnf\">ÅœanÄas la konturan nivelon de elemento de tabelo de enhavo.</ahelp>" #: 02160000.xhp -#, fuzzy msgctxt "" "02160000.xhp\n" "hd_id3145785\n" @@ -3342,7 +3250,6 @@ msgstr "Forigi" #: 02160000.xhp -#, fuzzy msgctxt "" "02160000.xhp\n" "par_id3155919\n" @@ -3351,7 +3258,6 @@ msgstr "<ahelp hid=\"modules/swriter/ui/indexentry/delete\">Forigas la elektitan elementon el la indekso. La elementa teksto en la dokumento ne foriÄos.</ahelp>" #: 02160000.xhp -#, fuzzy msgctxt "" "02160000.xhp\n" "hd_id3151384\n" @@ -3360,7 +3266,6 @@ msgstr "Finsago maldekstren" #: 02160000.xhp -#, fuzzy msgctxt "" "02160000.xhp\n" "par_id3155869\n" @@ -3374,10 +3279,9 @@ "par_id3147420\n" "help.text" msgid "<image id=\"img_id3149551\" src=\"sd/imglst/nv03.png\"><alt id=\"alt_id3149551\">Icon</alt></image>" -msgstr "" +msgstr "<image id=\"img_id3149551\" src=\"sd/imglst/nv03.png\"><alt id=\"alt_id3149551\">Bildsimbolo</alt></image>" #: 02160000.xhp -#, fuzzy msgctxt "" "02160000.xhp\n" "par_id3150550\n" @@ -3386,16 +3290,14 @@ msgstr "Finsago maldekstren" #: 02160000.xhp -#, fuzzy msgctxt "" "02160000.xhp\n" "hd_id3147736\n" "help.text" msgid "End arrow to right" -msgstr "Finsago dekstre" +msgstr "Finsago dekstren" #: 02160000.xhp -#, fuzzy msgctxt "" "02160000.xhp\n" "par_id3149829\n" @@ -3409,19 +3311,17 @@ "par_id3153298\n" "help.text" msgid "<image id=\"img_id3153309\" src=\"sd/imglst/nv06.png\"><alt id=\"alt_id3153309\">Icon</alt></image>" -msgstr "" +msgstr "<image id=\"img_id3153309\" src=\"sd/imglst/nv06.png\"><alt id=\"alt_id3153309\">Bildsimbolo</alt></image>" #: 02160000.xhp -#, fuzzy msgctxt "" "02160000.xhp\n" "par_id3156108\n" "help.text" msgid "End arrow to right" -msgstr "Finsago dekstre" +msgstr "Finsago dekstren" #: 02160000.xhp -#, fuzzy msgctxt "" "02160000.xhp\n" "hd_id3155080\n" @@ -3430,7 +3330,6 @@ msgstr "Sago maldekstren" #: 02160000.xhp -#, fuzzy msgctxt "" "02160000.xhp\n" "par_id3154327\n" @@ -3444,10 +3343,9 @@ "par_id3148785\n" "help.text" msgid "<image id=\"img_id3148791\" src=\"cmd/sc_prevrecord.png\"><alt id=\"alt_id3148791\">Icon</alt></image>" -msgstr "" +msgstr "<image id=\"img_id3148791\" src=\"cmd/sc_prevrecord.png\"><alt id=\"alt_id3148791\">Bildsimbolo</alt></image>" #: 02160000.xhp -#, fuzzy msgctxt "" "02160000.xhp\n" "par_id3153129\n" @@ -3456,7 +3354,6 @@ msgstr "Maldekstrensago" #: 02160000.xhp -#, fuzzy msgctxt "" "02160000.xhp\n" "hd_id3154617\n" @@ -3465,7 +3362,6 @@ msgstr "Sago dekstren" #: 02160000.xhp -#, fuzzy msgctxt "" "02160000.xhp\n" "par_id3154633\n" @@ -3479,10 +3375,9 @@ "par_id3150677\n" "help.text" msgid "<image id=\"img_id3154020\" src=\"sd/imglst/nv05.png\"><alt id=\"alt_id3154020\">Icon</alt></image>" -msgstr "" +msgstr "<image id=\"img_id3154020\" src=\"sd/imglst/nv05.png\"><alt id=\"alt_id3154020\">Bildsimbolo</alt></image>" #: 02160000.xhp -#, fuzzy msgctxt "" "02160000.xhp\n" "par_id3149965\n" @@ -3491,13 +3386,12 @@ msgstr "Dekstrensago" #: 02160000.xhp -#, fuzzy msgctxt "" "02160000.xhp\n" "par_id3155539\n" "help.text" msgid "You can jump quickly to index entries with the <link href=\"text/swriter/01/02110100.xhp\" name=\"Navigation Bar\">Navigation Bar</link>." -msgstr "You can jump quickly to index entries with the <link href=\"text/swriter/01/02110100.xhp\" name=\"Navigation Bar\">Naviga Breto</link>." +msgstr "Oni povas rapide salti al indeksaj elementoj per la <link href=\"text/swriter/01/02110100.xhp\" name=\"Navigation Bar\">Naviga breto</link>." #: 02170000.xhp msgctxt "" @@ -3598,22 +3492,20 @@ msgstr "<ahelp hid=\"modules/swriter/ui/editsectiondialog/remove\">Forigas la elektitan sekcion el la dokumento, kaj enmetas la enhavon de la sekcio en la dokumenton.</ahelp>" #: 03050000.xhp -#, fuzzy msgctxt "" "03050000.xhp\n" "tit\n" "help.text" msgid "Rulers" -msgstr "Mezurilo" +msgstr "Mezuriloj" #: 03050000.xhp -#, fuzzy msgctxt "" "03050000.xhp\n" "hd_id3149287\n" "help.text" msgid "<link href=\"text/swriter/01/03050000.xhp\" name=\"Rulers\">Rulers</link>" -msgstr "<link href=\"text/swriter/01/03050000.xhp\" name=\"Ruler\">Mezurilo</link>" +msgstr "<link href=\"text/swriter/01/03050000.xhp\" name=\"Ruler\">Mezuriloj</link>" #: 03050000.xhp msgctxt "" @@ -3621,16 +3513,15 @@ "par_id3147514\n" "help.text" msgid "<ahelp hid=\".\">Contains a submenu for showing or hiding the horizontal and vertical rulers.</ahelp>" -msgstr "" +msgstr "<ahelp hid=\".\">Enhavas submenuon por vidigi aÅ­ kaÅi la horizontalan kaj vertikalan mezurilojn.</ahelp>" #: 03050000.xhp -#, fuzzy msgctxt "" "03050000.xhp\n" "hd_id110120150347243313\n" "help.text" msgid "Rulers" -msgstr "Mezurilo" +msgstr "Mezuriloj" #: 03050000.xhp msgctxt "" @@ -3638,7 +3529,7 @@ "par_id3147517\n" "help.text" msgid "Show or hide the horizontal ruler and if activate, the vertical ruler. The horizontal ruler can be used to adjust page horizontal margins, tab stops, indents, borders, table cells, and to arrange objects on the page." -msgstr "" +msgstr "Vidigu aÅ­ kaÅu la horizontalan mezurilon kaj, se aktivan, la vertikalan mezurilon. La horizontala mezurilo estas uzebla por adapti ka paÄajn horizontalajn marÄenojn, tabojn, krommarÄenojn, borderojn, tabelajn ĉelojn, kaj por aranÄi objektojn en la paÄo." #: 03050000.xhp msgctxt "" @@ -3646,7 +3537,7 @@ "hd_id110120150347244029\n" "help.text" msgid "Vertical Ruler" -msgstr "" +msgstr "Vertikala mezurilo" #: 03050000.xhp msgctxt "" @@ -3654,7 +3545,7 @@ "par_id110120150347249577\n" "help.text" msgid "Show or hide the vertical ruler. The vertical ruler can be used to adjust page vertical margins, table cells, and object heights on the page." -msgstr "" +msgstr "Vidigu aÅ­ kaÅu la vertikalan mezurilon. La vertikala mezurilo estas uzebla por adapti ka paÄajn vertikalajn marÄenojn, tabelajn ĉelojn, kaj alton de objektoj en la paÄo. " #: 03070000.xhp msgctxt "" @@ -3665,7 +3556,6 @@ msgstr "Tekstaj Limoj" #: 03070000.xhp -#, fuzzy msgctxt "" "03070000.xhp\n" "hd_id3145418\n" @@ -3690,7 +3580,6 @@ msgstr "Kampoj reliefigitaj" #: 03080000.xhp -#, fuzzy msgctxt "" "03080000.xhp\n" "hd_id3151177\n" @@ -3707,7 +3596,6 @@ msgstr "<ahelp hid=\".\">MalkaÅas aÅ­ kaÅas reliefigaĵojn ĉirkaÅ­ kampoj en la dokumento, inkluzive nerompemajn spacetojn, eventualajn streketojn, indeksojn kaj piednotojn.</ahelp>" #: 03080000.xhp -#, fuzzy msgctxt "" "03080000.xhp\n" "par_id3153540\n" @@ -3716,22 +3604,20 @@ msgstr "<link href=\"text/swriter/01/03100000.xhp\" name=\"Nonprinting Characters On/Off\">Nepreseblaj signoj ek/for</link>" #: 03090000.xhp -#, fuzzy msgctxt "" "03090000.xhp\n" "tit\n" "help.text" msgid "Field Names" -msgstr "Nomo de kampo" +msgstr "Nomoj de kampoj" #: 03090000.xhp -#, fuzzy msgctxt "" "03090000.xhp\n" "hd_id3154505\n" "help.text" msgid "<link href=\"text/swriter/01/03090000.xhp\" name=\"Fields Names\">Field Names</link>" -msgstr "<link href=\"text/swriter/01/03090000.xhp\" name=\"Fields\">Kampnomoj</link>" +msgstr "<link href=\"text/swriter/01/03090000.xhp\" name=\"Fields\">Nomoj de kampoj</link>" #: 03090000.xhp msgctxt "" @@ -3739,7 +3625,7 @@ "par_id3147171\n" "help.text" msgid "<ahelp hid=\".\">Switches between showing fields as field names or field values.</ahelp> When enabled the field names are displayed, and when disabled the field values displayed. Some field contents cannot be displayed." -msgstr "" +msgstr "<ahelp hid=\".\">Åœaltas inter vidigi kampojn kiel kamponomojn aÅ­ kampajn valorojn.</ahelp> Kiam aktiva la nomoj vidiÄas, kaj kiam malaktiva la kampaj valoroj vidiÄas. Iuj kampaj enhavoj ne estas vidigeblaj." #: 03090000.xhp msgctxt "" @@ -3758,16 +3644,14 @@ msgstr "Kiam oni presas dokumenton kun <item type=\"menuitem\">Vido - Kampaj nomoj</item> Åaltita, oni invitiÄas enmeti la kampajn nomojn en la elpresaĵo." #: 03090000.xhp -#, fuzzy msgctxt "" "03090000.xhp\n" "par_id102720151029387618\n" "help.text" msgid "<link href=\"text/swriter/01/04090000.xhp\" name=\"Insert - Field\">Insert - Field</link>." -msgstr "<link href=\"text/swriter/01/04090000.xhp\" name=\"Insert - Fields\">Enmeti - Kampojn</link>." +msgstr "<link href=\"text/swriter/01/04090000.xhp\" name=\"Insert - Fields\">Enmeti - Kampo</link>." #: 03100000.xhp -#, fuzzy msgctxt "" "03100000.xhp\n" "tit\n" @@ -3776,13 +3660,12 @@ msgstr "Nepreseblaj signoj" #: 03100000.xhp -#, fuzzy msgctxt "" "03100000.xhp\n" "hd_id3154507\n" "help.text" msgid "<link href=\"text/swriter/01/03100000.xhp\" name=\"Non-printing Characters\">Non-printing Characters</link>" -msgstr "<link href=\"text/swriter/01/03100000.xhp\" name=\"Nonprinting Characters\">Nepresaj signoj</link>" +msgstr "<link href=\"text/swriter/01/03100000.xhp\" name=\"Nonprinting Characters\">Nepreseblaj signoj</link>" #: 03100000.xhp msgctxt "" @@ -3793,7 +3676,6 @@ msgstr "<ahelp hid=\".\">Vidigas nepreseblajn signojn en via teksto, kiaj alinemarkoj, linisaltoj, taboj, kaj spacetoj.</ahelp>" #: 03100000.xhp -#, fuzzy msgctxt "" "03100000.xhp\n" "par_id3145410\n" @@ -3818,7 +3700,6 @@ msgstr "TTT-a aranÄo" #: 03120000.xhp -#, fuzzy msgctxt "" "03120000.xhp\n" "hd_id3145243\n" @@ -3832,7 +3713,7 @@ "par_id3154646\n" "help.text" msgid "<variable id=\"web_layout_text\"><ahelp hid=\".\">Displays the document as it would be viewed in a Web browser.</ahelp> This is useful when you create HTML documents.</variable>" -msgstr "" +msgstr "<variable id=\"web_layout_text\"><ahelp hid=\".\">Vidigas la dokumenton kiel Äi vidiÄos en TTT-krozilo.</ahelp> Tio estas utila kiam oni kreas HTML-dokumentojn.</variable>" #: 03130000.xhp msgctxt "" @@ -3840,16 +3721,15 @@ "tit\n" "help.text" msgid "Normal Layout" -msgstr "" +msgstr "Normala aranÄo" #: 03130000.xhp -#, fuzzy msgctxt "" "03130000.xhp\n" "hd_id3150018\n" "help.text" msgid "<link href=\"text/swriter/01/03130000.xhp\" name=\"Normal Layout\">Normal Layout</link>" -msgstr "<link href=\"text/swriter/01/03130000.xhp\" name=\"Print Layout\">Presa aranÄo</link>" +msgstr "<link href=\"text/swriter/01/03130000.xhp\" name=\"Normal Layout\">Normala aranÄo</link>" #: 03130000.xhp msgctxt "" @@ -3857,7 +3737,7 @@ "par_id3145249\n" "help.text" msgid "<variable id=\"normal_layout_text\"><ahelp hid=\".\">Displays how the document will look when you print it.</ahelp></variable>" -msgstr "" +msgstr "<variable id=\"normal_layout_text\"><ahelp hid=\".\">Vidigas kiel la dokumento aspektos kiam vi presas Äin.</ahelp></variable>" #: 03140000.xhp msgctxt "" @@ -3868,7 +3748,6 @@ msgstr "KaÅitaj alineoj" #: 03140000.xhp -#, fuzzy msgctxt "" "03140000.xhp\n" "hd_id3155959\n" @@ -3893,16 +3772,14 @@ msgstr "Por enÅalti ĉi tiun funkcion, elektu menuerojn <switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"menuitem\">%PRODUCTNAME - Preferoj</item></caseinline><defaultinline><item type=\"menuitem\">Iloj - Agordaro</item></defaultinline></switchinline><emph> - <link href=\"text/shared/optionen/01040600.xhp\" name=\"Writer - Formatting Aids\">%PRODUCTNAME Verkilo - Formata Asistanto</link></emph>, kaj certigu ke la markobutono <emph>KaÅitaj alineoj</emph> en la kampo <emph>Vidigo de</emph> estas markita." #: 03140000.xhp -#, fuzzy msgctxt "" "03140000.xhp\n" "par_id3154501\n" "help.text" msgid "Use the <link href=\"text/swriter/01/04090000.xhp\" name=\"field command\">field command</link> \"Hidden Paragraph\" to assign a <link href=\"text/swriter/01/04090200.xhp\" name=\"condition\">condition</link> that must be met to hide a paragraph. If the condition is not met, the paragraph is displayed." -msgstr "Uzu la <link href=\"text/swriter/01/04090000.xhp\" name=\"field command\">kampan komandon</link> \"KaÅita teksto\" por agordi <link href=\"text/swriter/01/04090200.xhp\" name=\"condition\">kondiĉon</link> kiu estas plenumenda por kaÅi alineon. Se la kondiĉo ne estas plenumita, la alineo vidiÄos." +msgstr "Uzu la <link href=\"text/swriter/01/04090000.xhp\" name=\"field command\">kampan komandon</link> \"KaÅita alineo\" por agordi <link href=\"text/swriter/01/04090200.xhp\" name=\"condition\">kondiĉon</link> kiu estas plenumenda por kaÅi alineon. Se la kondiĉo ne estas plenumita, la alineo vidiÄos." #: 03140000.xhp -#, fuzzy msgctxt "" "03140000.xhp\n" "par_id3083451\n" @@ -14169,7 +14046,6 @@ msgstr "ÅœanÄi datumbazon" #: 04180400.xhp -#, fuzzy msgctxt "" "04180400.xhp\n" "bm_id3145799\n" @@ -14186,7 +14062,6 @@ msgstr "<link href=\"text/swriter/01/04180400.xhp\" name=\"Exchange Database\">ÅœanÄi datumbazon</link>" #: 04180400.xhp -#, fuzzy msgctxt "" "04180400.xhp\n" "par_id3156384\n" @@ -14195,7 +14070,6 @@ msgstr "<variable id=\"datenbankaustext\"><ahelp hid=\".uno:ChangeDatabaseField\">ÅœanÄu la datumajn fontojn por la aktuala dokumento.</ahelp> Por Äuste vidigi la enhavon de enmetitaj kampoj, la anstataÅ­a datumbazo devas enhavi identajn kamponomojn. </variable>" #: 04180400.xhp -#, fuzzy msgctxt "" "04180400.xhp\n" "par_id3153818\n" @@ -14204,7 +14078,6 @@ msgstr "Ekzemple, se oni enmetas adresajn kampojn en formularan leteron el adresa datumbazo, oni povas interÅanÄi la datumbazon per alia adresa datumbazo por enmeti aliajn adresojn." #: 04180400.xhp -#, fuzzy msgctxt "" "04180400.xhp\n" "hd_id3149130\n" @@ -14213,7 +14086,6 @@ msgstr "InterÅanÄi datumbazojn" #: 04180400.xhp -#, fuzzy msgctxt "" "04180400.xhp\n" "par_id3154651\n" @@ -14222,16 +14094,14 @@ msgstr "Oni povas ÅanÄi nur unuope datumbazon per ĉi tiu dialogo." #: 04180400.xhp -#, fuzzy msgctxt "" "04180400.xhp\n" "hd_id3146965\n" "help.text" msgid "Databases in Use" -msgstr "Datumbazo jam uzata" +msgstr "Datumbazoj jam uzataj" #: 04180400.xhp -#, fuzzy msgctxt "" "04180400.xhp\n" "par_id3149053\n" @@ -14240,16 +14110,14 @@ msgstr "<ahelp hid=\"modules/swriter/ui/exchangedatabases/inuselb\">Listigas la datumbazojn aktuale uzatajn.</ahelp> La aktuala dokumento enhavas almenaÅ­ unu datuman kampon el ĉiu datumbazo en la listo." #: 04180400.xhp -#, fuzzy msgctxt "" "04180400.xhp\n" "hd_id3147300\n" "help.text" msgid "Available Databases" -msgstr "Haveblaj datumbazoj" +msgstr "Disponeblaj datumbazoj" #: 04180400.xhp -#, fuzzy msgctxt "" "04180400.xhp\n" "par_id3150533\n" @@ -14274,7 +14142,6 @@ msgstr "<ahelp hid=\"modules/swriter/ui/exchangedatabases/browse\">Malfermas dosiermalferman dialogon por elekti datumbazan dosieron (*.odb). La elektita dosiero aldoniÄos al la listo Disponeblaj Datumbazoj.</ahelp>" #: 04180400.xhp -#, fuzzy msgctxt "" "04180400.xhp\n" "hd_id3149349\n" @@ -14283,16 +14150,14 @@ msgstr "Difini" #: 04180400.xhp -#, fuzzy msgctxt "" "04180400.xhp\n" "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 "<ahelp hid=\"modules/swriter/ui/exchangedatabases/define\">AnstataÅ­igas la aktualan datuman fonton per la datuma fonto kiun vi elektis en la listo <emph>Disponeblaj Datumbazoj </emph>.</ahelp>" +msgstr "<ahelp hid=\"modules/swriter/ui/exchangedatabases/define\">AnstataÅ­igas la aktualan datuman fonton per la datuma fonto kiun vi elektis en la listo <emph>Disponeblaj datumbazoj </emph>.</ahelp>" #: 04180400.xhp -#, fuzzy msgctxt "" "04180400.xhp\n" "hd_id3154506\n" @@ -14301,16 +14166,14 @@ msgstr "Por interÅanÄi datumbazon:" #: 04180400.xhp -#, fuzzy msgctxt "" "04180400.xhp\n" "par_id3149881\n" "help.text" msgid "Ensure that both databases contain matching field names and field types." -msgstr "Certigu ke ambaÅ­ datumbazojn enhavas kongruajn kampnomojn kaj kamptipojn." +msgstr "Certigu ke ambaÅ­ datumbazoj enhavas kongruajn kampnomojn kaj kamptipojn." #: 04180400.xhp -#, fuzzy msgctxt "" "04180400.xhp\n" "par_id3148386\n" @@ -14324,10 +14187,9 @@ "par_id3150564\n" "help.text" msgid "Choose <item type=\"menuitem\">Edit - Exchange Database</item>." -msgstr "" +msgstr "Elektu je <item type=\"menuitem\">Redakti - ÅœanÄi datumbazon</item>." #: 04180400.xhp -#, fuzzy msgctxt "" "04180400.xhp\n" "par_id3153925\n" @@ -14336,16 +14198,14 @@ msgstr "En la listo <emph>Datumbazoj uzataj</emph>, elektu la datumbazon anstataÅ­igotan." #: 04180400.xhp -#, fuzzy msgctxt "" "04180400.xhp\n" "par_id3147169\n" "help.text" msgid "In the <emph>Available Databases</emph> list, select the replacement database table." -msgstr "En la <emph>Disponeblaj Datumbazoj</emph>, elektu la anstataÅ­igan datumbazon." +msgstr "En la <emph>Disponeblaj datumbazoj</emph>, elektu la anstataÅ­igan datumbazon." #: 04180400.xhp -#, fuzzy msgctxt "" "04180400.xhp\n" "par_id3151273\n" @@ -14582,13 +14442,12 @@ msgstr "<ahelp hid=\".uno:InsertPageHeader\">Enmetas aÅ­ forigas paÄokapon el la paÄa stilo kiun vi elektas en la submenuo. La paÄokapo enmetiÄos en ĉiujn paÄojn kiuj uzas la saman paÄan stilon.</ahelp> En nova dokumento, nur la \"Apriora\" paÄa stilo listiÄos. Aliaj paÄaj stiloj enmetiÄos en la liston post kiam vi aplikas ilin en la dokumento." #: 04220000.xhp -#, fuzzy msgctxt "" "04220000.xhp\n" "par_id2326425\n" "help.text" msgid "The headers are visible only when you view the document in print layout (enable <emph>View - Normal</emph>)." -msgstr "La paÄokapoj videblos nur kiam oni vidigas la dokumenton en presa aranÄo (enÅaltu je <emph>Vido - PresaranÄo</emph>)." +msgstr "La paÄokapoj videblos nur kiam oni vidigas la dokumenton en presa aranÄo (enÅaltu je <emph>Vido - Normala</emph>)." #: 04220000.xhp msgctxt "" @@ -14653,13 +14512,12 @@ msgstr "<ahelp hid=\".uno:InsertPageFooter\">Enmetas aÅ­ forigas paÄopiedon ĉe la paÄa stilo kiun vi elektas en la submenuo. La paÄpiedo enmetiÄos en ĉiuj paÄoj kiuj uzas la saman apaÄan stilon.</ahelp> En nova dokumento, nur la \"Apriora\" paÄa stilo listiÄos. Aliaj paÄaj stiloj enmetiÄos en la liston post kiam vi aplikas ilin en la dokumento." #: 04230000.xhp -#, fuzzy msgctxt "" "04230000.xhp\n" "par_id7026276\n" "help.text" msgid "The footers are visible only when you view the document in print layout (enable <emph>View - Normal</emph>)." -msgstr "La paÄopiedoj videblos nur kiam oni vidigas la dokumenton en presaranÄo (enÅaltu je <emph>Vido - PresaranÄo</emph>)." +msgstr "La paÄopiedoj videblos nur kiam oni vidigas la dokumenton en presaranÄo (enÅaltu je <emph>Vido - Normala</emph>)." #: 04230000.xhp msgctxt "" @@ -21945,7 +21803,6 @@ msgstr "<bookmark_value>Fenestro por stiloj kaj formatoj; apliki stilojn</bookmark_value>" #: 05140000.xhp -#, fuzzy msgctxt "" "05140000.xhp\n" "hd_id3154505\n" @@ -21954,13 +21811,12 @@ msgstr "<link href=\"text/swriter/01/05140000.xhp\" name=\"Styles and Formatting\">Stiloj kaj formatado</link>" #: 05140000.xhp -#, fuzzy msgctxt "" "05140000.xhp\n" "par_id3148391\n" "help.text" msgid "<ahelp hid=\".\">Use the Styles and Formatting deck of the Sidebar to apply, create, edit, and remove formatting styles. Double-click an entry to apply the style.</ahelp>" -msgstr "<ahelp hid=\".\">Uzu la fenestron Stiloj kaj formatado, por apliki, krei, redakti, enmeti kaj forigi formatajn stilojn. Duoble alklaku elementon por apliki la stilon.</ahelp>" +msgstr "<ahelp hid=\".\">Uzu la fenestron Stiloj kaj formatado de la flanka breto, por apliki, krei, redakti, enmeti kaj forigi formatajn stilojn. Duoble alklaku elementon por apliki la stilon.</ahelp>" #: 05140000.xhp msgctxt "" @@ -21979,7 +21835,6 @@ msgstr "Por <link href=\"text/shared/00/00000005.xhp#andocken\" name=\"dock\">doki</link> la fenestron Stiloj kaj formatado, Åovu ties titolan breton al la maldekstra aÅ­ dekstra flanko de la laborspaco. Por maldoki la fenestron, duoble alklaku liberan spacon en Äia ilbreto." #: 05140000.xhp -#, fuzzy msgctxt "" "05140000.xhp\n" "hd_id3147167\n" @@ -21988,16 +21843,14 @@ msgstr "Kiel apliki stilon:" #: 05140000.xhp -#, fuzzy msgctxt "" "05140000.xhp\n" "par_id3151264\n" "help.text" msgid "Select the text. To apply a Character Style to one word, click the word. To apply a Paragraph Style, click the paragraph." -msgstr "Elektu la tekston. Por apliki signan stilon al unu vorto, alklaku la vorton. Por apliki alinestilon, alklaku la alineon." +msgstr "Elektu la tekston. Por apliki signan stilon al unu vorto, alklaku la vorton. Por apliki alinean stilon, alklaku la alineon." #: 05140000.xhp -#, fuzzy msgctxt "" "05140000.xhp\n" "par_id3150756\n" @@ -22014,7 +21867,6 @@ msgstr "Oni povas atribui fulmoklavojn al stiloj en la langeto <item type=\"menuitem\">Iloj - Adapti - Klavaro</item>." #: 05140000.xhp -#, fuzzy msgctxt "" "05140000.xhp\n" "par_id3154643\n" @@ -22023,7 +21875,6 @@ msgstr "La ilbreto Stiloj kaj formatado enhavas bildsimbolojn por formati dokumentojn:" #: 05140000.xhp -#, fuzzy msgctxt "" "05140000.xhp\n" "hd_id3153146\n" @@ -22037,16 +21888,15 @@ "par_id3147506\n" "help.text" msgid "<image id=\"img_id3147512\" src=\"sfx2/res/styfam2.png\"><alt id=\"alt_id3147512\">Icon</alt></image>" -msgstr "" +msgstr "<image id=\"img_id3147512\" src=\"sfx2/res/styfam2.png\"><alt id=\"alt_id3147512\">Bildsimbolo</alt></image>" #: 05140000.xhp -#, fuzzy msgctxt "" "05140000.xhp\n" "par_id3154106\n" "help.text" msgid "Paragraph Styles" -msgstr "Alinestiloj" +msgstr "Alineaj stiloj" #: 05140000.xhp msgctxt "" @@ -22062,16 +21912,15 @@ "par_id3151319\n" "help.text" msgid "<image id=\"img_id3152955\" src=\"sfx2/res/styfam1.png\"><alt id=\"alt_id3152955\">Icon</alt></image>" -msgstr "" +msgstr "<image id=\"img_id3152955\" src=\"sfx2/res/styfam1.png\"><alt id=\"alt_id3152955\">Bildsimbolo</alt></image>" #: 05140000.xhp -#, fuzzy msgctxt "" "05140000.xhp\n" "par_id3150351\n" "help.text" msgid "Character Styles" -msgstr "Signostiloj" +msgstr "Signaj stiloj" #: 05140000.xhp msgctxt "" @@ -22087,10 +21936,9 @@ "par_id3159194\n" "help.text" msgid "<image id=\"img_id3159200\" src=\"sw/imglst/sf03.png\"><alt id=\"alt_id3159200\">Icon</alt></image>" -msgstr "" +msgstr "<image id=\"img_id3159200\" src=\"sw/imglst/sf03.png\"><alt id=\"alt_id3159200\">Bildsimbolo</alt></image>" #: 05140000.xhp -#, fuzzy msgctxt "" "05140000.xhp\n" "par_id3151332\n" @@ -22112,10 +21960,9 @@ "par_id3149819\n" "help.text" msgid "<image id=\"img_id3149826\" src=\"sw/imglst/sf04.png\"><alt id=\"alt_id3149826\">Icon</alt></image>" -msgstr "" +msgstr "<image id=\"img_id3149826\" src=\"sw/imglst/sf04.png\"><alt id=\"alt_id3149826\">Bildsimbolo</alt></image>" #: 05140000.xhp -#, fuzzy msgctxt "" "05140000.xhp\n" "par_id3148976\n" @@ -22137,10 +21984,9 @@ "par_id3152766\n" "help.text" msgid "<image id=\"img_id3152772\" src=\"sw/imglst/sf05.png\"><alt id=\"alt_id3152772\">Icon</alt></image>" -msgstr "" +msgstr "<image id=\"img_id3152772\" src=\"sw/imglst/sf05.png\"><alt id=\"alt_id3152772\">Bildsimbolo</alt></image>" #: 05140000.xhp -#, fuzzy msgctxt "" "05140000.xhp\n" "par_id3154390\n" @@ -22162,10 +22008,9 @@ "par_id3150576\n" "help.text" msgid "<image id=\"img_id3150590\" src=\"cmd/sc_fillstyle.png\"><alt id=\"alt_id3150590\">Icon</alt></image>" -msgstr "" +msgstr "<image id=\"img_id3150590\" src=\"cmd/sc_fillstyle.png\"><alt id=\"alt_id3150590\">Bildsimbolo</alt></image>" #: 05140000.xhp -#, fuzzy msgctxt "" "05140000.xhp\n" "par_id3145786\n" @@ -22174,7 +22019,6 @@ msgstr "Formatpleniga reÄimo" #: 05140000.xhp -#, fuzzy msgctxt "" "05140000.xhp\n" "par_id3156379\n" @@ -22188,16 +22032,15 @@ "par_id3150114\n" "help.text" msgid "<image id=\"img_id3150122\" src=\"cmd/sc_stylenewbyexample.png\"><alt id=\"alt_id3150122\">Icon</alt></image>" -msgstr "" +msgstr "<image id=\"img_id3150122\" src=\"cmd/sc_stylenewbyexample.png\"><alt id=\"alt_id3150122\">Bildsimbolo</alt></image>" #: 05140000.xhp -#, fuzzy msgctxt "" "05140000.xhp\n" "par_id3147490\n" "help.text" msgid "New Style from Selection" -msgstr "Nova stilo per elekto" +msgstr "Nova stilo el elektaĵo" #: 05140000.xhp msgctxt "" @@ -22216,7 +22059,6 @@ msgstr "Nova stilo per elekto" #: 05140000.xhp -#, fuzzy msgctxt "" "05140000.xhp\n" "par_id3149552\n" @@ -22233,7 +22075,6 @@ msgstr "Äœisdatigi stilon" #: 05140000.xhp -#, fuzzy msgctxt "" "05140000.xhp\n" "par_id3146333\n" @@ -22258,7 +22099,6 @@ msgstr "<ahelp hid=\".\">Malfermas la dialogon Åœargi stilon, por importi stilojn el alia dokumento.</ahelp>" #: 05140000.xhp -#, fuzzy msgctxt "" "05140000.xhp\n" "par_id3148860\n" @@ -22267,7 +22107,6 @@ msgstr "Plua informo pri <link href=\"text/swriter/01/05130000.xhp\" name=\"styles\">stiloj</link>." #: 05140000.xhp -#, fuzzy msgctxt "" "05140000.xhp\n" "hd_id3155576\n" diff -Nru libreoffice-5.1.1~rc2/translations/source/eo/helpcontent2/source/text/swriter/02.po libreoffice-5.1.2~rc2/translations/source/eo/helpcontent2/source/text/swriter/02.po --- libreoffice-5.1.1~rc2/translations/source/eo/helpcontent2/source/text/swriter/02.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/eo/helpcontent2/source/text/swriter/02.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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:48+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2016-02-28 23:05+0000\n" +"Last-Translator: Donald Rogers <donr2648@clear.net.nz>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: eo\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1452552507.000000\n" +"X-POOTLE-MTIME: 1456700725.000000\n" #: 02110000.xhp msgctxt "" @@ -3665,34 +3665,31 @@ "tit\n" "help.text" msgid "Images and Charts" -msgstr "" +msgstr "Bildoj kaj diagramoj" #: 18120000.xhp -#, fuzzy msgctxt "" "18120000.xhp\n" "hd_id3148568\n" "help.text" msgid "<link href=\"text/swriter/02/18120000.xhp\" name=\"Images and Charts\">Images and Charts</link>" -msgstr "<link href=\"text/swriter/02/18120000.xhp\" name=\"Images On/Off\">Bildoj ek/for</link>" +msgstr "<link href=\"text/swriter/02/18120000.xhp\" name=\"Images On/Off\">Bildoj kaj diagramoj</link>" #: 18120000.xhp -#, fuzzy msgctxt "" "18120000.xhp\n" "bm_id3147167\n" "help.text" msgid "<bookmark_value>graphics;do not show</bookmark_value> <bookmark_value>images;do not show</bookmark_value> <bookmark_value>pictures;do not show</bookmark_value>" -msgstr "<bookmark_value>grafikaĵoj;ne vidigi</bookmark_value><bookmark_value>diagramoj;ne vidigi</bookmark_value><bookmark_value>bildoj;ne vidigi</bookmark_value>" +msgstr "<bookmark_value>grafikaĵojn;ne vidigi</bookmark_value> <bookmark_value>bildojn;ne vidigi</bookmark_value><bookmark_value>diagramojn;ne vidigi</bookmark_value>" #: 18120000.xhp -#, fuzzy msgctxt "" "18120000.xhp\n" "par_id3147167\n" "help.text" msgid "<ahelp hid=\".uno:Graphic\">If the <emph>Images and Charts</emph> icon on the <emph>Tools</emph> bar is activated, no graphics are displayed - only empty frames as placeholders.</ahelp>" -msgstr "<ahelp hid=\".uno:Graphic\">Se la bildsimbolo <emph>Bildoj ek/for</emph> sur la breto <emph>Iloj</emph> estas aktiva, bildoj ne vidiÄas - nur vakaj kadroj kiel lokokupiloj.</ahelp>" +msgstr "<ahelp hid=\".uno:Graphic\">Se la bildsimbolo <emph>Vidi bildojn kaj diagramojn</emph> sur la breto <emph>Iloj</emph> estas aktiva, grafikaĵoj ne vidiÄas - nur vakaj kadroj kiel lokokupiloj.</ahelp>" #: 18120000.xhp msgctxt "" @@ -3708,7 +3705,7 @@ "par_id3154107\n" "help.text" msgid "Images and Charts" -msgstr "" +msgstr "Bildoj kaj diagramoj" #: 18130000.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/eo/helpcontent2/source/text/swriter/04.po libreoffice-5.1.2~rc2/translations/source/eo/helpcontent2/source/text/swriter/04.po --- libreoffice-5.1.1~rc2/translations/source/eo/helpcontent2/source/text/swriter/04.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/eo/helpcontent2/source/text/swriter/04.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibreOffice3.5.x\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-01-08 13:42+0100\n" -"PO-Revision-Date: 2015-07-17 04:58+0000\n" +"PO-Revision-Date: 2016-02-29 03:03+0000\n" "Last-Translator: Donald Rogers <donr2648@clear.net.nz>\n" "Language-Team: Esperanto <eo@li.org>\n" "Language: eo\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1437109107.000000\n" +"X-POOTLE-MTIME: 1456715030.000000\n" #: 01020000.xhp msgctxt "" @@ -1250,7 +1250,6 @@ msgstr "Movi kursoron al komenco de la antaÅ­a alineo" #: 01020000.xhp -#, fuzzy msgctxt "" "01020000.xhp\n" "par_id778527\n" @@ -1319,7 +1318,6 @@ msgstr "Movi kursoron al la fino de alineo." #: 01020000.xhp -#, fuzzy msgctxt "" "01020000.xhp\n" "par_id7405011\n" diff -Nru libreoffice-5.1.1~rc2/translations/source/eo/helpcontent2/source/text/swriter/guide.po libreoffice-5.1.2~rc2/translations/source/eo/helpcontent2/source/text/swriter/guide.po --- libreoffice-5.1.1~rc2/translations/source/eo/helpcontent2/source/text/swriter/guide.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/eo/helpcontent2/source/text/swriter/guide.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "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 @@ "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 @@ msgstr "RearanÄi dokumenton uzante la Navigilon" #: arrange_chapters.xhp -#, fuzzy msgctxt "" "arrange_chapters.xhp\n" "bm_id3149973\n" @@ -193,7 +192,6 @@ 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 @@ 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 @@ "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 @@ 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 @@ 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 @@ "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 @@ 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 @@ 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 @@ 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 @@ "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 @@ 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 @@ "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 @@ "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 -Nru libreoffice-5.1.1~rc2/translations/source/eo/helpcontent2/source/text/swriter.po libreoffice-5.1.2~rc2/translations/source/eo/helpcontent2/source/text/swriter.po --- libreoffice-5.1.1~rc2/translations/source/eo/helpcontent2/source/text/swriter.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/eo/helpcontent2/source/text/swriter.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "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 @@ "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 @@ msgstr "Dosiero" #: main0101.xhp -#, fuzzy msgctxt "" "main0101.xhp\n" "hd_id3147331\n" @@ -104,7 +103,6 @@ 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 @@ msgstr "Redakti" #: main0102.xhp -#, fuzzy msgctxt "" "main0102.xhp\n" "hd_id3149610\n" @@ -130,7 +127,6 @@ 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 @@ 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 @@ "hd_id102920150120456626\n" "help.text" msgid "Direct Cursor Mode" -msgstr "" +msgstr "Rektkursora reÄimo" #: main0102.xhp msgctxt "" @@ -161,7 +156,7 @@ "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 @@ "hd_id102920150120455108\n" "help.text" msgid "Go to Page" -msgstr "" +msgstr "Iri al paÄo" #: main0102.xhp msgctxt "" @@ -177,7 +172,7 @@ "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 @@ 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 @@ 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 @@ 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 @@ 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 @@ msgstr "Vido" #: main0103.xhp -#, fuzzy msgctxt "" "main0103.xhp\n" "hd_id3147233\n" @@ -258,7 +247,6 @@ 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 @@ "hd_id102720150854015048\n" "help.text" msgid "Scrollbars" -msgstr "" +msgstr "Rulumskaloj" #: main0103.xhp msgctxt "" @@ -296,7 +284,7 @@ "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 @@ "hd_id102720150854018740\n" "help.text" msgid "Hide Whitespace" -msgstr "" +msgstr "KaÅi blankspacojn" #: main0103.xhp msgctxt "" @@ -312,10 +300,9 @@ "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 @@ "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 @@ "hd_id102720150854011929\n" "help.text" msgid "Images and Charts" -msgstr "" +msgstr "Bildoj kaj diagramoj" #: main0103.xhp msgctxt "" @@ -345,7 +332,7 @@ "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 @@ "hd_id102720150854019880\n" "help.text" msgid "Comments" -msgstr "" +msgstr "Komentoj" #: main0103.xhp msgctxt "" @@ -361,7 +348,7 @@ "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 @@ "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 @@ msgstr "Formato" #: main0105.xhp -#, fuzzy msgctxt "" "main0105.xhp\n" "hd_id3147820\n" @@ -559,7 +544,6 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ msgstr "Iloj" #: main0106.xhp -#, fuzzy msgctxt "" "main0106.xhp\n" "hd_id3147241\n" @@ -657,7 +632,6 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ "tit\n" "help.text" msgid "Styles" -msgstr "" +msgstr "Stiloj" #: main0115.xhp msgctxt "" @@ -1192,7 +1159,7 @@ "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 @@ "hd_id0903201507192919\n" "help.text" msgid "Default" -msgstr "" +msgstr "Apriora" #: main0115.xhp msgctxt "" @@ -1208,7 +1175,7 @@ "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 -Nru libreoffice-5.1.1~rc2/translations/source/es/cui/uiconfig/ui.po libreoffice-5.1.2~rc2/translations/source/es/cui/uiconfig/ui.po --- libreoffice-5.1.1~rc2/translations/source/es/cui/uiconfig/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/es/cui/uiconfig/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: LibO 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 @@ "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 @@ "label\n" "string.text" msgid "Field shadings" -msgstr "Sombreado de los campos" +msgstr "Marcas de campos" #: colorconfigwin.ui msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/es/dbaccess/source/ext/macromigration.po libreoffice-5.1.2~rc2/translations/source/es/dbaccess/source/ext/macromigration.po --- libreoffice-5.1.1~rc2/translations/source/es/dbaccess/source/ext/macromigration.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/es/dbaccess/source/ext/macromigration.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,18 +3,18 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2014-11-18 11:23+0100\n" -"PO-Revision-Date: 2014-11-21 15:32+0000\n" -"Last-Translator: Adolfo <fito@libreoffice.org>\n" +"POT-Creation-Date: 2015-04-22 23:40+0200\n" +"PO-Revision-Date: 2016-03-16 12:56+0000\n" +"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: LibreOffice\n" +"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1416583959.000000\n" +"X-POOTLE-MTIME: 1458133017.000000\n" #: macromigration.src msgctxt "" @@ -200,7 +200,7 @@ "STR_INVALID_BACKUP_LOCATION\n" "string.text" msgid "You need to choose a backup location other than the document location itself." -msgstr "Para la copia de seguridad necesita elegir una ubicación diferente a la ubicación del documento." +msgstr "Para la copia de seguridad debe elegir una ubicación diferente de la ubicación del documento." #: macromigration.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/es/formula/source/core/resource.po libreoffice-5.1.2~rc2/translations/source/es/formula/source/core/resource.po --- libreoffice-5.1.1~rc2/translations/source/es/formula/source/core/resource.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/es/formula/source/core/resource.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\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-27 00:46+0100\n" +"POT-Creation-Date: 2016-03-29 16:07+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff -Nru libreoffice-5.1.1~rc2/translations/source/es/helpcontent2/source/text/sbasic/guide.po libreoffice-5.1.2~rc2/translations/source/es/helpcontent2/source/text/sbasic/guide.po --- libreoffice-5.1.1~rc2/translations/source/es/helpcontent2/source/text/sbasic/guide.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/es/helpcontent2/source/text/sbasic/guide.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-11-16 02:54+0000\n" +"PO-Revision-Date: 2016-03-27 16:53+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 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1447642467.000000\n" +"X-POOTLE-MTIME: 1459097628.000000\n" #: access2base.xhp msgctxt "" @@ -648,7 +648,7 @@ "par_id6998809\n" "help.text" msgid "<ahelp hid=\".\" visibility=\"hidden\">Select the language for the strings that you want to edit. Click the Manage Languages icon to add languages.</ahelp>" -msgstr "<ahelp hid=\".\" visibility=\"hidden\">Seleccione el idioma para las cadenas que quiere editar. Haga clic en el icono Gestionar idiomas para añadir idiomas.</ahelp>" +msgstr "<ahelp hid=\".\" visibility=\"hidden\">Seleccione el idioma para las cadenas que quiere editar. Pulse en el icono Gestionar idiomas para añadir idiomas.</ahelp>" #: translation.xhp msgctxt "" @@ -728,7 +728,7 @@ "par_id7359233\n" "help.text" msgid "Click the <emph>Manage Languages</emph> icon <image id=\"img_id2526017\" src=\"cmd/sc_managelanguage.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id2526017\">Manage Language icon</alt></image> on the Language toolbar or on the Toolbox bar." -msgstr "Haga clic en el icono <emph>Gestionar idiomas</emph> <image id=\"img_id2526017\" src=\"cmd/sc_managelanguage.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id2526017\">Icono Gestionar idiomas</alt></image> en la barra de herramientas de Idioma o en la barra Cuadro de herramientas." +msgstr "Pulse en el icono <emph>Gestionar idiomas</emph> <image id=\"img_id2526017\" src=\"cmd/sc_managelanguage.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id2526017\">Icono Gestionar idiomas</alt></image> en la barra de herramientas Idioma o en la barra Cuadro de herramientas." #: translation.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/es/helpcontent2/source/text/sbasic/shared.po libreoffice-5.1.2~rc2/translations/source/es/helpcontent2/source/text/sbasic/shared.po --- libreoffice-5.1.1~rc2/translations/source/es/helpcontent2/source/text/sbasic/shared.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/es/helpcontent2/source/text/sbasic/shared.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\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-27 22:53+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 @@ "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: 1459119206.000000\n" #: 00000002.xhp msgctxt "" @@ -3825,7 +3825,7 @@ "63\n" "help.text" msgid "Click the <emph>Modules</emph> tab or the <emph>Dialogs</emph> tab." -msgstr "Haga clic en la ficha <emph>Módulos</emph> o la ficha <emph>Diálogos</emph>." +msgstr "Pulse en la pestaña <emph>Módulos</emph> o la pestaña <emph>Diálogos</emph>." #: 01030400.xhp msgctxt "" @@ -3870,7 +3870,7 @@ "67\n" "help.text" msgid "Click the module to be renamed twice, with a pause between the clicks. Enter the new name." -msgstr "Haga doble clic en el módulo cuyo nombre debe cambiarse, con una pausa entre los clics. Especifique el nombre nuevo." +msgstr "Pulse dos veces en el módulo cuyo nombre quiere cambiarse, con una pausa pequeña entre los clics. Escriba el nombre nuevo." #: 01030400.xhp msgctxt "" @@ -3915,7 +3915,7 @@ "69\n" "help.text" msgid "Click the <emph>Modules</emph> tab or the <emph>Dialogs</emph> tab." -msgstr "Haga clic en la ficha <emph>Módulos</emph> o la ficha <emph>Diálogos</emph>." +msgstr "Pulse en la pestaña <emph>Módulos</emph> o la pestaña <emph>Diálogos</emph>." #: 01030400.xhp msgctxt "" @@ -3924,7 +3924,7 @@ "30\n" "help.text" msgid "Select the module or dialog to be deleted from the list. Double-click an entry to reveal sub-entries, if required." -msgstr "Seleccione el módulo o diálogo que se debe eliminar de la lista. Haga doble clic para mostrar las subentradas, si es necesario." +msgstr "Seleccione el módulo o el cuadro de diálogo que se debe eliminar de la lista. Pulse dos veces en una entrada para mostrar las subentradas, si es necesario." #: 01030400.xhp msgctxt "" @@ -7722,7 +7722,7 @@ "bm_id3147230\n" "help.text" msgid "<bookmark_value>Print statement</bookmark_value>" -msgstr "<bookmark_value>Print;instrucción</bookmark_value>" +msgstr "<bookmark_value>Instrucción Print</bookmark_value>" #: 03010103.xhp msgctxt "" @@ -10654,7 +10654,7 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 "" @@ -23134,7 +23134,7 @@ "8\n" "help.text" msgid "<emph>Name:</emph> A different name than defined in the DLL, to call the subroutine from $[officename] Basic." -msgstr "<emph>Nombre:</emph> nombre distinto al definido en la DLL para llamar a la subrutina desde $[officename] Basic." +msgstr "<emph>Nombre:</emph> un nombre distinto del definido en la DLL para llamar a la subrutina desde $[officename] Basic." #: 03090403.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/es/helpcontent2/source/text/scalc/00.po libreoffice-5.1.2~rc2/translations/source/es/helpcontent2/source/text/scalc/00.po --- libreoffice-5.1.1~rc2/translations/source/es/helpcontent2/source/text/scalc/00.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/es/helpcontent2/source/text/scalc/00.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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 @@ "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 @@ "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 -Nru libreoffice-5.1.1~rc2/translations/source/es/helpcontent2/source/text/scalc/01.po libreoffice-5.1.2~rc2/translations/source/es/helpcontent2/source/text/scalc/01.po --- libreoffice-5.1.1~rc2/translations/source/es/helpcontent2/source/text/scalc/01.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/es/helpcontent2/source/text/scalc/01.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-23 12:16+0000\n" +"PO-Revision-Date: 2016-03-27 17:18+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 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1456229798.000000\n" +"X-POOTLE-MTIME: 1459099133.000000\n" #: 01120000.xhp msgctxt "" @@ -8957,7 +8957,7 @@ "38\n" "help.text" msgid "<ahelp hid=\"HID_FUNC_ISTBEZUG\">Tests if the argument is a reference.</ahelp> Returns TRUE if the argument is a reference, returns FALSE otherwise. When given a reference this function does not examine the value being referenced." -msgstr "<ahelp hid=\"HID_FUNC_ISTBEZUG\">Verifica si el argumento es una referencia.</ahelp> Retorno TRUE si el argumento es una referencia, sino retorno FALSE. Cuando recibe una referencia este función no examina el valor de referencia." +msgstr "<ahelp hid=\"HID_FUNC_ISTBEZUG\">Comprueba si el argumento es una referencia.</ahelp> Devuelve VERDADERO si el argumento es una referencia, en caso contrario, FALSO. Cuando recibe una referencia, esta función no examina el valor referenciado." #: 04060104.xhp msgctxt "" @@ -9002,7 +9002,7 @@ "43\n" "help.text" msgid "<item type=\"input\">=ISREF(C5)</item> returns the result TRUE because C5 is a valid reference." -msgstr "<item type=\"input\">=ESREF(C5)</item> devuelve el resultado VERDADERO por que C5 es una referencia valido." +msgstr "<item type=\"input\">=ESREF(C5)</item> devuelve el resultado VERDADERO porque C5 es una referencia válida." #: 04060104.xhp msgctxt "" @@ -21422,7 +21422,7 @@ "par_id1027200802301348\n" "help.text" msgid "For interoperability the ADDRESS and INDIRECT functions support an optional parameter to specify whether the R1C1 address notation instead of the usual A1 notation should be used." -msgstr "Por motivos de interoperabilidad, las funciones DIRECCIÓN e INDIRECTO admiten un parámetro opcional para indicar si se debe utilizar la notación de dirección R1C1 en vez de la notación A1 habitual." +msgstr "Por motivos de interoperatividad, las funciones DIRECCIÓN e INDIRECTO admiten un parámetro opcional para indicar si se debe utilizar la notación de dirección R1C1 en vez de la notación A1 habitual." #: 04060109.xhp msgctxt "" @@ -21575,7 +21575,7 @@ "par_id1027200802465915\n" "help.text" msgid "<emph>A1</emph> (optional) - if set to 0, the R1C1 notation is used. If this parameter is absent or set to another value than 0, the A1 notation is used." -msgstr "<emph>A1</emph> (opcional): si se define en 0, se utiliza la notación R1C1. Si falta este parámetro o se define en otro valor distinto a 0, se utiliza la notación A1." +msgstr "<emph>A1</emph> (opcional): si se define en 0, se utiliza la notación R1C1. Si falta este parámetro o se define en otro valor distinto de 0, se utiliza la notación A1." #: 04060109.xhp msgctxt "" @@ -22168,7 +22168,7 @@ "par_id1027200802470312\n" "help.text" msgid "<emph>A1</emph> (optional) - if set to 0, the R1C1 notation is used. If this parameter is absent or set to another value than 0, the A1 notation is used." -msgstr "<emph>A1</emph> (opcional): si se define en 0, se utiliza la notación R1C1. Si falta este parámetro o se define en otro valor distinto a 0, se utiliza la notación A1." +msgstr "<emph>A1</emph> (opcional): si se define en 0, se utiliza la notación R1C1. Si falta este parámetro o se define en otro valor distinto de 0, se utiliza la notación A1." #: 04060109.xhp msgctxt "" @@ -42688,7 +42688,7 @@ "par_id291422405814\n" "help.text" msgid "This function is identical to GAMMAINV and was introduced for interoperability with other office suites." -msgstr "Esta función es idéntica a DISTR.GAMMA.INV y se ha introducido pora interopertividad con otras suites de oficina." +msgstr "Esta función es idéntica a DISTR.GAMMA.INV y se ha introducido por motivos de interoperatividad con otros paquetes de oficina." #: 04060182.xhp msgctxt "" @@ -42700,17 +42700,15 @@ msgstr "Sintaxis" #: 04060182.xhp -#, fuzzy msgctxt "" "04060182.xhp\n" "par_id2915828\n" "50\n" "help.text" msgid "GAMMA.INV(Number; Alpha; Beta)" -msgstr "DISTR.GAMMA.INV(probabilidad; alfa; beta)" +msgstr "DISTR.GAMMA.INV(Número; Alfa; Beta)" #: 04060182.xhp -#, fuzzy msgctxt "" "04060182.xhp\n" "par_id2915138\n" @@ -42747,7 +42745,6 @@ msgstr "Ejemplo" #: 04060182.xhp -#, fuzzy msgctxt "" "04060182.xhp\n" "par_id2913331\n" @@ -42828,13 +42825,12 @@ msgstr "<item type=\"input\">=GAMMA.LN(2)</item> da 0." #: 04060182.xhp -#, fuzzy msgctxt "" "04060182.xhp\n" "bm_id2914806\n" "help.text" msgid "<bookmark_value>GAMMALN.PRECISE function</bookmark_value> <bookmark_value>natural logarithm of Gamma function</bookmark_value>" -msgstr "<bookmark_value>GAMMA.LN</bookmark_value> <bookmark_value>logaritmo natural de función Gamma</bookmark_value>" +msgstr "<bookmark_value>GAMMA.LN.EXACTO</bookmark_value> <bookmark_value>logaritmo natural de la función Gamma</bookmark_value>" #: 04060182.xhp msgctxt "" @@ -42843,7 +42839,7 @@ "57\n" "help.text" msgid "GAMMALN.PRECISE" -msgstr "" +msgstr "GAMMA.LN.EXACTO" #: 04060182.xhp msgctxt "" @@ -42870,7 +42866,7 @@ "60\n" "help.text" msgid "GAMMALN.PRECISE(Number)" -msgstr "" +msgstr "GAMMA.LN.EXACTO(Número)" #: 04060182.xhp msgctxt "" @@ -42891,14 +42887,13 @@ msgstr "Ejemplo" #: 04060182.xhp -#, fuzzy msgctxt "" "04060182.xhp\n" "par_id2913730\n" "63\n" "help.text" msgid "<item type=\"input\">=GAMMALN.PRECISE(2)</item> yields 0." -msgstr "<item type=\"input\">=GAMMA.LN(2)</item> da 0." +msgstr "<item type=\"input\">=GAMMA.LN.EXACTO(2)</item> da 0." #: 04060182.xhp msgctxt "" @@ -43007,7 +43002,6 @@ msgstr "<item type=\"input\">=DISTR.GAMMA(2;1;1;1)</item> da 0,86." #: 04060182.xhp -#, fuzzy msgctxt "" "04060182.xhp\n" "bm_id240620142206421\n" @@ -43016,7 +43010,6 @@ msgstr "<bookmark_value>DISTR.GAMMA</bookmark_value>" #: 04060182.xhp -#, fuzzy msgctxt "" "04060182.xhp\n" "hd_id2406201422120061\n" @@ -43025,13 +43018,12 @@ msgstr "DISTR.GAMMA" #: 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\">Devuelve el valor de una distribución gamma.</ahelp>" +msgstr "<ahelp hid=\"HID_FUNC_GAMMADIST_MS\">Devuelve el valor de una distribución gamma.</ahelp>" #: 04060182.xhp msgctxt "" @@ -43039,7 +43031,7 @@ "par_id24061422414690\n" "help.text" msgid "The inverse function is GAMMAINV or GAMMA.INV." -msgstr "" +msgstr "La función inversa es DISTR.GAMMA.INV o INV.GAMMA" #: 04060182.xhp msgctxt "" @@ -43047,7 +43039,7 @@ "par_id2406201422405814\n" "help.text" msgid "This function is identical to GAMMADIST and was introduced for interoperability with other office suites." -msgstr "" +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 "" @@ -43058,16 +43050,14 @@ msgstr "Sintaxis" #: 04060182.xhp -#, fuzzy msgctxt "" "04060182.xhp\n" "par_id240620142238475\n" "help.text" msgid "GAMMA.DIST(Number; Alpha; Beta; C)" -msgstr "DISTR.GAMMA(x; alfa; beta; acum)" +msgstr "DISTR.GAMMA(Número; Alfa; Beta; C)" #: 04060182.xhp -#, fuzzy msgctxt "" "04060182.xhp\n" "par_id2406201422385134\n" @@ -43092,7 +43082,6 @@ msgstr "<emph>Beta</emph> es el parámetro Beta de la distribución Gamma." #: 04060182.xhp -#, fuzzy msgctxt "" "04060182.xhp\n" "par_id2406201422391058\n" @@ -43109,7 +43098,6 @@ msgstr "Ejemplo" #: 04060182.xhp -#, fuzzy msgctxt "" "04060182.xhp\n" "par_id2406201422392251\n" @@ -43436,7 +43424,6 @@ msgstr "Consulte también la <link href=\"http://wiki.documentfoundation.org/Documentation/How_Tos/Calc:_ZTEST_function\">página del wiki</link>." #: 04060182.xhp -#, fuzzy msgctxt "" "04060182.xhp\n" "bm_id2953216\n" @@ -43445,7 +43432,6 @@ msgstr "<bookmark_value>PRUEBA.Z</bookmark_value>" #: 04060182.xhp -#, fuzzy msgctxt "" "04060182.xhp\n" "hd_id2953216\n" @@ -43473,7 +43459,6 @@ msgstr "Sintaxis" #: 04060182.xhp -#, fuzzy msgctxt "" "04060182.xhp\n" "par_id2953274\n" @@ -43483,7 +43468,6 @@ msgstr "PRUEBA.Z(Datos; mu; Sigma)" #: 04060182.xhp -#, fuzzy msgctxt "" "04060182.xhp\n" "par_id2956109\n" @@ -43502,7 +43486,6 @@ msgstr "<emph>mu</emph> es la media conocida de la población." #: 04060182.xhp -#, fuzzy msgctxt "" "04060182.xhp\n" "par_id2954740\n" @@ -43527,7 +43510,7 @@ "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 "" +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 "" @@ -43696,10 +43679,9 @@ "131\n" "help.text" msgid "<item type=\"input\">=HYPGEOMDIST(2;2;90;100)</item> yields 0.81. 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(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 el lado untado primero, entonces si se caen 2 tostadas con mantequilla de la mesa, la probabilidad de que ambas caigan con el lado untado primero es del 81 %." #: 04060182.xhp -#, fuzzy msgctxt "" "04060182.xhp\n" "bm_id2952801\n" @@ -43708,7 +43690,6 @@ msgstr "<bookmark_value>DISTR.HIPERGEOM</bookmark_value> <bookmark_value>muestras sin reemplazo</bookmark_value>" #: 04060182.xhp -#, fuzzy msgctxt "" "04060182.xhp\n" "hd_id2952801\n" @@ -43718,14 +43699,13 @@ msgstr "DISTR.HIPERGEOM" #: 04060182.xhp -#, fuzzy msgctxt "" "04060182.xhp\n" "par_id2959341\n" "123\n" "help.text" msgid "<ahelp hid=\"HID_FUNC_HYP_GEOM_DIST_MS\">Returns the hypergeometric distribution.</ahelp>" -msgstr "<ahelp hid=\"HID_FUNC_HYPGEOMVERT\">Devuelve la distribución hipergeométrica.</ahelp>" +msgstr "<ahelp hid=\"HID_FUNC_HYP_GEOM_DIST_MS\">Devuelve la distribución hipergeométrica.</ahelp>" #: 04060182.xhp msgctxt "" @@ -43737,14 +43717,13 @@ msgstr "Sintaxis" #: 04060182.xhp -#, fuzzy msgctxt "" "04060182.xhp\n" "par_id2955388\n" "125\n" "help.text" msgid "HYPGEOM.DIST(X; NSample; Successes; NPopulation; Cumulative)" -msgstr "DISTR.HIPERGEOM(X; EjemploN; Éxitos; PoblaciónN)" +msgstr "DISTR.HIPERGEOM(X; EjemploN; Éxitos; PoblaciónN, Acumulado)" #: 04060182.xhp msgctxt "" @@ -43765,14 +43744,13 @@ msgstr "<emph>EjemploN</emph> es el tamaño del ejemplo aleatorio." #: 04060182.xhp -#, fuzzy msgctxt "" "04060182.xhp\n" "par_id2946992\n" "128\n" "help.text" msgid "<emph>Successes</emph> is the number of possible results in the total population." -msgstr "<emph>Éxitos</emph> es el número de posibles resultados en la población total." +msgstr "<emph>Éxitos</emph> es el número de resultados posibles en la población total." #: 04060182.xhp msgctxt "" @@ -43784,14 +43762,13 @@ msgstr "<emph>PoblaciónN</emph> es el tamaño de la población total." #: 04060182.xhp -#, fuzzy msgctxt "" "04060182.xhp\n" "par_id2948827\n" "129\n" "help.text" msgid "<emph>Cumulative </emph>: 0 or False calculates the probability density function. Other values or True calculates the cumulative distribution function." -msgstr "<emph>Acumulativa</emph> (opcional): 0 o Falso calcula la función de densidad de probabilidad. Otros valores o Verdadero u omitido calcula la función de distribución acumulativa." +msgstr "<emph>Acumulado </emph>: 0 o Falso calcula la función de densidad de probabilidad. Otros valores o Verdadero calcula la función de distribución acumulada." #: 04060182.xhp msgctxt "" @@ -43803,14 +43780,13 @@ 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 el lado untado primero, entonces si se caen 2 tostadas con mantequilla de la mesa, la probabilidad de que ambas caigan con el lado untado primero es del 81 %." #: 04060182.xhp msgctxt "" @@ -43819,7 +43795,7 @@ "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 "" @@ -44088,33 +44064,30 @@ 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 el intervalo de confianza (1-alfa) para una distribución t de Student.</ahelp>" #: 04060183.xhp msgctxt "" @@ -44126,14 +44099,13 @@ 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 "" @@ -44172,23 +44144,21 @@ 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 msgctxt "" "04060183.xhp\n" "bm_id2853559\n" "help.text" msgid "<bookmark_value>CONFIDENCE.NORM function</bookmark_value>" -msgstr "<bookmark_value>INTERVALO.CONFIANZA</bookmark_value>" +msgstr "<bookmark_value>función INTERVALO.CONFIANZA.NORM</bookmark_value>" #: 04060183.xhp msgctxt "" @@ -44197,17 +44167,16 @@ "20\n" "help.text" msgid "CONFIDENCE.NORM" -msgstr "" +msgstr "INTERVALO.CONFIANZA.NORM" #: 04060183.xhp -#, fuzzy msgctxt "" "04060183.xhp\n" "par_id2853814\n" "21\n" "help.text" msgid "<ahelp hid=\"HID_FUNC_CONFIDENCE_N\">Returns the (1-alpha) confidence interval for a normal 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_N\">Calcula un intervalo de confianza (1-alfa) para una distribución normal.</ahelp>" #: 04060183.xhp msgctxt "" @@ -44219,14 +44188,13 @@ msgstr "Sintaxis" #: 04060183.xhp -#, fuzzy msgctxt "" "04060183.xhp\n" "par_id2847501\n" "23\n" "help.text" msgid "CONFIDENCE.NORM(Alpha; StDev; Size)" -msgstr "CONFIANZA(Alpha; Desv_estándar; Tamaño)" +msgstr "INTERVALO.CONFIANZA.NORM(Alfa; Desv_estándar; Tamaño)" #: 04060183.xhp msgctxt "" @@ -44265,14 +44233,13 @@ msgstr "Ejemplo" #: 04060183.xhp -#, fuzzy msgctxt "" "04060183.xhp\n" "par_id2853335\n" "28\n" "help.text" msgid "<item type=\"input\">=CONFIDENCE.NORM(0.05;1.5;100)</item> gives 0.2939945977." -msgstr "<item type=\"input\">=INTERVALO.CONFIANZA(0.05;1.5;100)</item> da 0.29." +msgstr "<item type=\"input\">=INTERVALO.CONFIANZA.NORM(0,05;1,5;100)</item> da 0,2939945977." #: 04060183.xhp msgctxt "" @@ -44459,7 +44426,7 @@ "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 "" @@ -44541,7 +44508,7 @@ "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 "" @@ -44882,7 +44849,7 @@ "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 "" @@ -45059,14 +45026,13 @@ 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 "" @@ -45087,14 +45053,13 @@ 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 "" @@ -45115,23 +45080,21 @@ 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 "" @@ -45143,14 +45106,13 @@ 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 "" @@ -45877,13 +45839,12 @@ 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 "" @@ -45892,17 +45853,16 @@ "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 "" @@ -45914,24 +45874,22 @@ 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 "" @@ -45940,7 +45898,7 @@ "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 "" @@ -45952,14 +45910,13 @@ 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 "" @@ -45976,7 +45933,7 @@ "43\n" "help.text" msgid "MODE.MULT" -msgstr "" +msgstr "MODA.VARIOS" #: 04060184.xhp msgctxt "" @@ -45985,7 +45942,7 @@ "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 "" @@ -45997,24 +45954,22 @@ 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 "" @@ -46023,7 +45978,7 @@ "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 "" @@ -46035,14 +45990,13 @@ 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 "" @@ -46153,14 +46107,13 @@ 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 "" @@ -46208,14 +46161,13 @@ 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 "" @@ -46227,14 +46179,13 @@ 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 @@ -46345,24 +46296,22 @@ 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 "" @@ -46374,14 +46323,13 @@ 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 "" @@ -46402,7 +46350,6 @@ msgstr "<emph>Media</emph> es el valor medio de la distribución normal." #: 04060184.xhp -#, fuzzy msgctxt "" "04060184.xhp\n" "par_id2948594\n" @@ -46421,14 +46368,13 @@ 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 "" @@ -46538,33 +46484,30 @@ 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 "" @@ -46576,24 +46519,22 @@ 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 "" @@ -46614,14 +46555,13 @@ 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 "" @@ -46926,7 +46866,7 @@ "102\n" "help.text" msgid "POISSON.DIST" -msgstr "" +msgstr "DISTR.POISSON" #: 04060184.xhp msgctxt "" @@ -46947,27 +46887,24 @@ 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" @@ -46996,14 +46933,13 @@ 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 "" @@ -47086,13 +47022,12 @@ 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 "" @@ -47139,14 +47074,13 @@ 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 "" @@ -47185,13 +47119,12 @@ 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 "" @@ -47230,14 +47163,13 @@ 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 "" @@ -47381,7 +47313,7 @@ "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 "" @@ -47635,13 +47567,12 @@ 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 "" @@ -47659,7 +47590,7 @@ "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 "" @@ -47695,7 +47626,7 @@ "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 "" @@ -47704,7 +47635,7 @@ "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 "" @@ -47716,23 +47647,21 @@ 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 "" @@ -47770,14 +47699,13 @@ 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 "" @@ -51168,7 +51096,6 @@ msgstr "Ejemplo" #: 04060185.xhp -#, fuzzy msgctxt "" "04060185.xhp\n" "par_id2946077\n" @@ -52241,7 +52168,7 @@ "4\n" "help.text" msgid "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_NAMES_PASTE:LB_ENTRYLIST\">Lists all defined cell areas. Double-click an entry to insert the named area into the active sheet at the current cursor position.</ahelp>" -msgstr "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_NAMES_PASTE:LB_ENTRYLIST\">Lista todas las áreas de celda definidas. Haga doble clic en una entrada para insertar el área indicada en la hoja activa en la posición actual del cursor.</ahelp>" +msgstr "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_NAMES_PASTE:LB_ENTRYLIST\">Muestra todas las áreas de celda definidas. Pulse dos veces en una entrada para insertar el área indicada en la hoja activa, en la posición actual del cursor.</ahelp>" #: 04070200.xhp msgctxt "" @@ -52545,7 +52472,6 @@ msgstr "Lista de funciones" #: 04080000.xhp -#, fuzzy msgctxt "" "04080000.xhp\n" "bm_id3154126\n" @@ -52579,7 +52505,6 @@ 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" @@ -52588,7 +52513,6 @@ msgstr "Lista de categorías" #: 04080000.xhp -#, fuzzy msgctxt "" "04080000.xhp\n" "hd_id3153160\n" @@ -52606,7 +52530,6 @@ 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" @@ -52623,7 +52546,6 @@ 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" @@ -53390,7 +53312,7 @@ "2\n" "help.text" msgid "<variable id=\"umbenennentext\"><ahelp hid=\".uno:RenameTable\">This command opens a dialog where you can assign a different name to the current sheet.</ahelp></variable>" -msgstr "<variable id=\"umbenennentext\"><ahelp hid=\".uno:RenameTable\">Este comando abre un diálogo que permite asignar un nombre distinto a la hoja actual.</ahelp></variable>" +msgstr "<variable id=\"umbenennentext\"><ahelp hid=\".uno:RenameTable\">Esta orden abre un cuadro de diálogo que permite cambiar el nombre de la hoja actual.</ahelp></variable>" #: 05050100.xhp msgctxt "" @@ -54266,7 +54188,6 @@ msgstr "Estilo y formato" #: 05100000.xhp -#, fuzzy msgctxt "" "05100000.xhp\n" "bm_id3150447\n" @@ -54275,13 +54196,12 @@ 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 "" @@ -54292,16 +54212,14 @@ 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" @@ -54318,16 +54236,14 @@ 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" @@ -54352,7 +54268,6 @@ 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" @@ -54361,7 +54276,6 @@ msgstr "Estilos de celda" #: 05100000.xhp -#, fuzzy msgctxt "" "05100000.xhp\n" "hd_id3153963\n" @@ -54386,7 +54300,6 @@ 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" @@ -54395,7 +54308,6 @@ msgstr "Estilos de página" #: 05100000.xhp -#, fuzzy msgctxt "" "05100000.xhp\n" "hd_id3150202\n" @@ -54404,7 +54316,6 @@ msgstr "Modo de relleno de formato" #: 05100000.xhp -#, fuzzy msgctxt "" "05100000.xhp\n" "par_id3155531\n" @@ -54421,7 +54332,6 @@ 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" @@ -54430,25 +54340,22 @@ 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" @@ -54457,16 +54364,14 @@ 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" @@ -54475,22 +54380,20 @@ 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 "" @@ -54501,16 +54404,14 @@ 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" @@ -54519,13 +54420,12 @@ 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 "" @@ -54536,7 +54436,6 @@ 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" @@ -54569,7 +54468,6 @@ 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" @@ -54578,13 +54476,12 @@ 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 "" @@ -56594,13 +56491,12 @@ 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 "" @@ -56611,7 +56507,6 @@ 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" @@ -56620,13 +56515,12 @@ 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 "" @@ -56637,13 +56531,12 @@ 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 "" @@ -59957,7 +59850,6 @@ 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" @@ -60046,7 +59938,6 @@ 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" @@ -60064,7 +59955,6 @@ 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" @@ -61111,7 +61001,7 @@ "par_idN105D1\n" "help.text" msgid "You can also insert a list box from the Controls toolbar and link the list box to a cell. This way you can specify the valid values on the <link href=\"text/shared/02/01170102.xhp\">Data</link> page of the list box properties window." -msgstr "También se puede insertar un cuadro de lista desde la barra de herramientas Campos de control y vincularlo con una celda. De esta forma, se pueden especificar los valores correctos en la pestaña <link href=\"text/shared/02/01170102.xhp\">Datos</link> de la ventana de propiedades del cuadro de lista." +msgstr "También se puede insertar un cuadro de lista desde la barra de herramientas Controles y enlazarlo con una celda. De esta forma, se pueden especificar los valores correctos en la pestaña <link href=\"text/shared/02/01170102.xhp\">Datos</link> de la ventana de propiedades del cuadro de lista." #: 12120100.xhp msgctxt "" @@ -61778,7 +61668,6 @@ msgstr "" #: ex_data_stat_func.xhp -#, fuzzy msgctxt "" "ex_data_stat_func.xhp\n" "hd_id2657394931588\n" @@ -61931,7 +61820,6 @@ 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" @@ -61940,7 +61828,6 @@ msgstr "Sintaxis" #: ful_func.xhp -#, fuzzy msgctxt "" "ful_func.xhp\n" "hd_id980889808898088\n" @@ -62005,13 +61892,12 @@ 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 "" @@ -62038,7 +61924,6 @@ msgstr "" #: func_aggregate.xhp -#, fuzzy msgctxt "" "func_aggregate.xhp\n" "hd_id239693194826384\n" @@ -62079,7 +61964,6 @@ 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" @@ -62096,7 +61980,6 @@ msgstr "Función aplicada" #: func_aggregate.xhp -#, fuzzy msgctxt "" "func_aggregate.xhp\n" "par_id2309201511360043\n" @@ -62105,7 +61988,6 @@ msgstr "PROMEDIO" #: func_aggregate.xhp -#, fuzzy msgctxt "" "func_aggregate.xhp\n" "par_id230920151136007\n" @@ -62114,7 +61996,6 @@ msgstr "CONTAR" #: func_aggregate.xhp -#, fuzzy msgctxt "" "func_aggregate.xhp\n" "par_id2309201511360018\n" @@ -62123,7 +62004,6 @@ msgstr "CONTARA" #: func_aggregate.xhp -#, fuzzy msgctxt "" "func_aggregate.xhp\n" "par_id2309201511360026\n" @@ -62132,7 +62012,6 @@ msgstr "MÃX" #: func_aggregate.xhp -#, fuzzy msgctxt "" "func_aggregate.xhp\n" "par_id2309201511360078\n" @@ -62141,7 +62020,6 @@ msgstr "MÃN" #: func_aggregate.xhp -#, fuzzy msgctxt "" "func_aggregate.xhp\n" "par_id2309201511360087\n" @@ -62168,7 +62046,6 @@ msgstr "DESVESTP" #: func_aggregate.xhp -#, fuzzy msgctxt "" "func_aggregate.xhp\n" "par_id2309201511360199\n" @@ -62177,25 +62054,22 @@ 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" @@ -62212,7 +62086,6 @@ msgstr "" #: func_aggregate.xhp -#, fuzzy msgctxt "" "func_aggregate.xhp\n" "par_id2309201511360180\n" @@ -62221,7 +62094,6 @@ msgstr "K.ESIMO.MAYOR" #: func_aggregate.xhp -#, fuzzy msgctxt "" "func_aggregate.xhp\n" "par_id2309201511360150\n" @@ -62398,7 +62270,6 @@ msgstr "" #: func_aggregate.xhp -#, fuzzy msgctxt "" "func_aggregate.xhp\n" "hd_id198071265128228\n" @@ -62431,7 +62302,6 @@ msgstr "" #: func_aggregate.xhp -#, fuzzy msgctxt "" "func_aggregate.xhp\n" "par_id27530261624700\n" @@ -62448,7 +62318,6 @@ msgstr "" #: func_aggregate.xhp -#, fuzzy msgctxt "" "func_aggregate.xhp\n" "id_par29987248418152\n" @@ -62537,13 +62406,12 @@ 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 "" @@ -62562,7 +62430,6 @@ 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" @@ -62859,13 +62726,12 @@ 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 "" @@ -62884,7 +62750,6 @@ 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" @@ -63119,7 +62984,6 @@ msgstr "" #: func_countifs.xhp -#, fuzzy msgctxt "" "func_countifs.xhp\n" "hd_id465746574657\n" @@ -64369,13 +64233,12 @@ 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 "" @@ -64394,7 +64257,6 @@ msgstr "" #: func_error_type.xhp -#, fuzzy msgctxt "" "func_error_type.xhp\n" "hd_id351323513235132\n" @@ -64443,7 +64305,6 @@ msgstr "" #: func_error_type.xhp -#, fuzzy msgctxt "" "func_error_type.xhp\n" "par_id121020152053148760\n" @@ -64452,7 +64313,6 @@ msgstr "#DIV/0!" #: func_error_type.xhp -#, fuzzy msgctxt "" "func_error_type.xhp\n" "par_id121020152053296785\n" @@ -64485,7 +64345,6 @@ msgstr "" #: func_error_type.xhp -#, fuzzy msgctxt "" "func_error_type.xhp\n" "par_id121020152054007072\n" @@ -64502,7 +64361,6 @@ msgstr "" #: func_error_type.xhp -#, fuzzy msgctxt "" "func_error_type.xhp\n" "par_id121020152054075192\n" @@ -64511,7 +64369,6 @@ msgstr "#N/D" #: func_error_type.xhp -#, fuzzy msgctxt "" "func_error_type.xhp\n" "hd_id352113521135211\n" @@ -64713,13 +64570,12 @@ 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 "" @@ -64778,13 +64634,12 @@ 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 "" @@ -64843,13 +64698,12 @@ 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 "" @@ -64916,13 +64770,12 @@ 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 "" @@ -64989,13 +64842,12 @@ 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 "" @@ -65062,13 +64914,12 @@ 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 "" @@ -65135,13 +64986,12 @@ 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 "" @@ -65208,13 +65058,12 @@ 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 "" @@ -65281,13 +65130,12 @@ 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 "" @@ -66461,7 +66309,6 @@ 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" @@ -66478,7 +66325,6 @@ 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" @@ -66505,7 +66351,6 @@ 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" @@ -67197,7 +67042,7 @@ "par_idN105E4\n" "help.text" msgid "This function exists for interoperability with LibreOffice releases older than 5.1.0 and OpenOffice.org. It calculates week numbers for a week numbering system in that week number 1 is the week that contains the January 4th. This function does not provide interoperability with other spreadsheet applications. For new documents use the <link href=\"text/scalc/01/func_weeknum.xhp\">WEEKNUM</link> or <link href=\"text/scalc/01/func_isoweeknum.xhp\">ISOWEEKNUM</link> function instead." -msgstr "Esta función existe por motivos de interoperabilidad con versiones de LibreOffice anteriores a 5.1.0 y OpenOffice.org. Calcula los números de semana para un sistema de numeración de semanas en el que la primera semana es aquella que contiene el 4 de enero. Esta función no proporciona interoperabilidad con otras aplicaciones de gestión de hojas de cálculo. En documentos nuevos utilice las funciones <link href=\"text/scalc/01/func_weeknum.xhp\">NUM.DE.SEMANA</link> o <link href=\"text/scalc/01/func_isoweeknum.xhp\">ISO.NUM.DE.SEMANA</link> en su lugar." +msgstr "Esta función existe por motivos de interoperatividad con versiones de LibreOffice anteriores a 5.1.0 y OpenOffice.org. Calcula los números de semana para un sistema de numeración de semanas en el que la primera semana es aquella que contiene el 4 de enero. Esta función no proporciona interoperatividad con otras aplicaciones de gestión de hojas de cálculo. En documentos nuevos utilice las funciones <link href=\"text/scalc/01/func_weeknum.xhp\">NUM.DE.SEMANA</link> o <link href=\"text/scalc/01/func_isoweeknum.xhp\">ISO.NUM.DE.SEMANA</link> en su lugar." #: func_weeknum_ooo.xhp msgctxt "" @@ -68091,7 +67936,6 @@ msgstr "Datos" #: stat_data.xhp -#, fuzzy msgctxt "" "stat_data.xhp\n" "par_id1000010\n" @@ -68172,7 +68016,6 @@ msgstr "Ejemplo" #: stat_data.xhp -#, fuzzy msgctxt "" "stat_data.xhp\n" "par_id1000550\n" @@ -68229,13 +68072,12 @@ 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 "" @@ -68254,7 +68096,6 @@ 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" @@ -68263,16 +68104,14 @@ 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" @@ -68329,7 +68168,6 @@ msgstr "Ejemplo" #: statistics.xhp -#, fuzzy msgctxt "" "statistics.xhp\n" "par_id1000110\n" @@ -68346,13 +68184,12 @@ 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 "" @@ -68363,7 +68200,6 @@ msgstr "Estadísticas descriptivas" #: statistics.xhp -#, fuzzy msgctxt "" "statistics.xhp\n" "par_id1000640\n" @@ -68372,7 +68208,6 @@ 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" @@ -68381,7 +68216,6 @@ 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" @@ -68398,7 +68232,6 @@ 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" @@ -68551,7 +68384,6 @@ msgstr "Análisis de varianza (ANOVA)" #: statistics.xhp -#, fuzzy msgctxt "" "statistics.xhp\n" "par_id1001240\n" @@ -68560,7 +68392,6 @@ 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" @@ -68593,7 +68424,6 @@ msgstr "Tipo" #: statistics.xhp -#, fuzzy msgctxt "" "statistics.xhp\n" "par_id1001280\n" @@ -68626,7 +68456,6 @@ msgstr "<emph>Filas por muestra</emph>: define cuántas filas contiene una muestra." #: statistics.xhp -#, fuzzy msgctxt "" "statistics.xhp\n" "par_id1001310\n" @@ -68787,13 +68616,12 @@ 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 "" @@ -68804,7 +68632,6 @@ msgstr "Correlación" #: statistics.xhp -#, fuzzy msgctxt "" "statistics.xhp\n" "par_id1001740\n" @@ -68813,7 +68640,6 @@ 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" @@ -68822,31 +68648,28 @@ 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 "" @@ -68857,7 +68680,6 @@ 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" @@ -68938,7 +68760,6 @@ msgstr "Covarianza" #: statistics.xhp -#, fuzzy msgctxt "" "statistics.xhp\n" "par_id1001940\n" @@ -68947,7 +68768,6 @@ 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" @@ -68972,7 +68792,6 @@ 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" @@ -69053,7 +68872,6 @@ msgstr "Suavizamiento exponencial" #: statistics.xhp -#, fuzzy msgctxt "" "statistics.xhp\n" "par_id1002120\n" @@ -69062,7 +68880,6 @@ 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" @@ -69095,7 +68912,6 @@ msgstr "Parámetros" #: statistics.xhp -#, fuzzy msgctxt "" "statistics.xhp\n" "par_id1002160\n" @@ -69136,13 +68952,12 @@ 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 "" @@ -69153,22 +68968,20 @@ 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 "" @@ -69187,7 +69000,6 @@ msgstr "Parámetros" #: statistics.xhp -#, fuzzy msgctxt "" "statistics.xhp\n" "par_id1002530\n" @@ -69252,13 +69064,12 @@ 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 "" @@ -69277,7 +69088,6 @@ msgstr "" #: statistics.xhp -#, fuzzy msgctxt "" "statistics.xhp\n" "par_id1002830\n" @@ -69326,7 +69136,6 @@ 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" @@ -69343,7 +69152,6 @@ msgstr "Resultados para la prueba t:" #: statistics.xhp -#, fuzzy msgctxt "" "statistics.xhp\n" "par_id1002890\n" @@ -69464,13 +69272,12 @@ 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 "" @@ -69481,22 +69288,20 @@ 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 "" @@ -69515,7 +69320,6 @@ msgstr "" #: statistics.xhp -#, fuzzy msgctxt "" "statistics.xhp\n" "par_id1003250\n" @@ -69564,7 +69368,6 @@ 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" @@ -69573,25 +69376,22 @@ 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" @@ -69672,13 +69472,12 @@ 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 "" @@ -69689,13 +69488,12 @@ 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 "" @@ -69714,13 +69512,12 @@ 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 "" @@ -69779,7 +69576,6 @@ 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" @@ -69788,31 +69584,28 @@ 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 "" @@ -69887,7 +69680,6 @@ msgstr "z" #: statistics.xhp -#, fuzzy msgctxt "" "statistics.xhp\n" "par_id1003900\n" @@ -69904,7 +69696,6 @@ msgstr "" #: statistics.xhp -#, fuzzy msgctxt "" "statistics.xhp\n" "par_id1003920\n" @@ -69972,13 +69763,12 @@ 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 "" @@ -70006,7 +69796,6 @@ 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" @@ -70092,7 +69881,7 @@ "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 "" @@ -70100,7 +69889,7 @@ "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 "" @@ -70156,7 +69945,7 @@ "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 "" @@ -70172,7 +69961,7 @@ "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 -Nru libreoffice-5.1.1~rc2/translations/source/es/helpcontent2/source/text/scalc/guide.po libreoffice-5.1.2~rc2/translations/source/es/helpcontent2/source/text/scalc/guide.po --- libreoffice-5.1.1~rc2/translations/source/es/helpcontent2/source/text/scalc/guide.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/es/helpcontent2/source/text/scalc/guide.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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-27 18: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 @@ "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: 1459102548.000000\n" #: address_auto.xhp msgctxt "" @@ -931,7 +931,7 @@ "par_id8964201\n" "help.text" msgid "Click the left icon to clear all lines. This removes all outer borders, all inner lines, and all diagonal lines." -msgstr "Haga clic en el icono de la izquierda para suprimir todas las líneas. Esta acción quita todos los bordes externos, así como todas las líneas internas y en diagonal." +msgstr "Pulse en el icono de la izquierda para suprimir todas las líneas. Esta acción quita todos los bordes externos, así como todas las líneas interiores y diagonales." #: borders.xhp msgctxt "" @@ -947,7 +947,7 @@ "par_id1495406\n" "help.text" msgid "Click the rightmost icon to set an outer border. The inner lines are not changed, except the diagonal lines, which will be removed." -msgstr "Haga clic en el icono situado más a la derecha para establecer un borde exterior. Las líneas internas no se modifican, salvo las diagonales, que se quitan." +msgstr "Pulse en el icono situado más a la derecha para establecer un borde exterior. Las líneas internas no se modifican, salvo las diagonales, que se quitan." #: borders.xhp msgctxt "" @@ -2480,7 +2480,7 @@ "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 @@ "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 "" @@ -2770,7 +2770,7 @@ "46\n" "help.text" msgid "Click in a blank cell and select the command <emph>Format Cells</emph> in the context menu." -msgstr "Haga clic en una celda vacía, active el menú contextual y seleccione <emph>Formatear celdas</emph>." +msgstr "Pulse en una celda vacía, abra el menú contextual y seleccione <emph>Formato de celdas</emph>." #: cellstyle_conditional.xhp msgctxt "" @@ -2779,7 +2779,7 @@ "47\n" "help.text" msgid "In the <emph>Format Cells</emph> dialog on the <emph>Background</emph> tab, select a background color. Click <emph>OK</emph>." -msgstr "En la pestaña <emph>Fondo</emph> del diálogo <emph>Formato de celdas</emph>, seleccione un color de fondo. Haga clic en <emph>Aceptar</emph>." +msgstr "En la pestaña <emph>Fondo</emph> del cuadro de diálogo <emph>Formato de celdas</emph>, seleccione un color de fondo. Pulse en <emph>Aceptar</emph>." #: cellstyle_conditional.xhp msgctxt "" @@ -2788,7 +2788,7 @@ "48\n" "help.text" msgid "In the Styles and Formatting window, click the <emph>New Style from Selection</emph> icon. Enter the name of the new style. For this example, name the style \"Above\"." -msgstr "En la ventana Estilo y formato, haga clic en el símbolo <emph>Nuevo estilo a partir de selección</emph>. Escriba el nombre del nuevo estilo. En este ejemplo, llámelo \"Mayor que\"." +msgstr "En la ventana Estilos y formato, pulse en el icono <emph>Estilo nuevo a partir de selección</emph>. Escriba el nombre del nuevo estilo. En este ejemplo, llámelo «Mayor que»." #: cellstyle_conditional.xhp msgctxt "" @@ -2797,7 +2797,7 @@ "49\n" "help.text" msgid "To define a second style, click again in a blank cell and proceed as described above. Assign a different background color for the cell and assign a name (for this example, \"Below\")." -msgstr "Para definir otro estilo vuelva a pulsar en la celda vacía y siga de nuevo el proceso descrito. Asigne un color de fondo distinto a la celda y asigne un nombre (en este ejemplo, \"Menor que\")." +msgstr "Para definir otro estilo vuelva a pulsar en una celda vacía y siga de nuevo el proceso descrito. Asigne un color de fondo distinto a la celda y dele un nombre (en este ejemplo, «Menor que»)." #: cellstyle_conditional.xhp msgctxt "" @@ -2824,7 +2824,7 @@ "52\n" "help.text" msgid "Set the cursor in a blank cell, for example, J14, and choose <emph>Insert - Function</emph>." -msgstr "Sitúe el cursor en una celda vacía, por ejemplo, J14, y seleccione <emph>Insertar - Función</emph>." +msgstr "Sitúe el cursor en una celda vacía, por ejemplo, J14, y seleccione <emph>Insertar ▸ Función</emph>." #: cellstyle_conditional.xhp msgctxt "" @@ -4494,7 +4494,7 @@ "par_id0720201001344485\n" "help.text" msgid "The pop-up window displays a list of field members associated with that field. A check box is placed to the left of each field member name. When a field has an alternative display name that differs from its original name, that name is displayed in the list." -msgstr "La ventana emergente muestra una lista de miembros de campo asociados con este. A la izquierda de cada nombre de miembro de campo se muestra una casilla de verificación. Cuando un campo tiene un nombre para mostrar distinto al original, este nombre se mostrará en la lista." +msgstr "La ventana emergente muestra una lista de miembros de campo asociados con este. A la izquierda de cada nombre de miembro de campo se muestra una casilla de verificación. Cuando un campo tiene un nombre para mostrar distinto del original, este nombre aparecerá en la lista." #: datapilot_filtertable.xhp msgctxt "" @@ -5028,7 +5028,7 @@ "15\n" "help.text" msgid "Click the <emph>Choose Themes</emph> icon in the <emph>Tools</emph> bar." -msgstr "Haga clic en el icono <emph>Selección de temas</emph> de la barra <emph>Herramientas</emph>." +msgstr "Pulse en el icono <emph>Selección de temas</emph> de la barra <emph>Herramientas</emph>." #: design.xhp msgctxt "" @@ -10005,7 +10005,7 @@ "10\n" "help.text" msgid "You will see the commands <emph>Row Height</emph> and <emph>Optimal row height</emph>. Choosing either opens a dialog." -msgstr "Se pueden observar los comandos <emph>Altura de fila</emph> y <emph>Altura óptima de fila</emph>. Al seleccionar alguno de estos comandos se abrirá una caja de diálogo." +msgstr "Verá las órdenes <emph>Altura de fila</emph> y <emph>Altura óptima de fila</emph>. Al seleccionar alguna de estas órdenes se abrirá un cuadro de diálogo." #: row_height.xhp msgctxt "" @@ -10173,7 +10173,7 @@ "par_id1243629\n" "help.text" msgid "Double-click a scenario name in the Navigator to apply that scenario to the current sheet." -msgstr "Haga doble clic en el nombre de un escenario en el Navegador para aplicarlo a la hoja actual." +msgstr "Pulse dos veces en el nombre de un escenario en el Navegador para aplicarlo a la hoja actual." #: scenario.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/es/helpcontent2/source/text/scalc.po libreoffice-5.1.2~rc2/translations/source/es/helpcontent2/source/text/scalc.po --- libreoffice-5.1.1~rc2/translations/source/es/helpcontent2/source/text/scalc.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/es/helpcontent2/source/text/scalc.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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 @@ "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 @@ "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 -Nru libreoffice-5.1.1~rc2/translations/source/es/helpcontent2/source/text/schart.po libreoffice-5.1.2~rc2/translations/source/es/helpcontent2/source/text/schart.po --- libreoffice-5.1.1~rc2/translations/source/es/helpcontent2/source/text/schart.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/es/helpcontent2/source/text/schart.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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-29 05:11+0000\n" +"PO-Revision-Date: 2016-03-22 08:19+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 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1448773902.000000\n" +"X-POOTLE-MTIME: 1458634777.000000\n" #: main0000.xhp msgctxt "" @@ -145,7 +145,7 @@ "par_id7986693\n" "help.text" msgid "Double-click a chart to enter the chart edit mode:" -msgstr "Haga doble clic en un gráfico para entrar en el modo de edición gráfica:" +msgstr "Pulse dos veces en un diagrama para entrar en el modo de edición:" #: main0000.xhp msgctxt "" @@ -169,7 +169,7 @@ "par_id8442335\n" "help.text" msgid "Double-click a chart element in chart edit mode:" -msgstr "Haga doble clic en un elemento del gráfico en el modo de edición gráfica:" +msgstr "Pulse dos veces en un elemento del diagrama en el modo de edición:" #: main0000.xhp msgctxt "" @@ -185,7 +185,7 @@ "par_id8644672\n" "help.text" msgid "Double-click a data point to select and edit the data series to which the data point belongs." -msgstr "Haga doble clic en un punto de datos para seleccionar y editar la serie de datos a la que pertenece el punto." +msgstr "Pulse dos veces en un punto de datos para seleccionar y editar la serie de datos a la que pertenece el punto." #: main0000.xhp msgctxt "" @@ -201,7 +201,7 @@ "par_id1019200902360575\n" "help.text" msgid "Double-click the legend to select and edit the legend. Click, then double-click a symbol in the selected legend to edit the associated data series." -msgstr "Haga doble clic en la leyenda para seleccionarla y editarla. Haga clic sobre un símbolo, y luego doble clic sobre el mismo en la leyenda seleccionada para editar la serie de datos asociada." +msgstr "Pulse dos veces en la leyenda para seleccionarla y editarla. Pulse y, a continuación, pulse dos veces sobre un icono de la leyenda seleccionada para editar la serie de datos asociada." #: main0000.xhp msgctxt "" @@ -209,7 +209,7 @@ "par_id7528916\n" "help.text" msgid "Double-click any other chart element, or click the element and open the Format menu, to edit the properties." -msgstr "Haga doble clic en cualquier otro elemento del gráfico, o haga clic sobre el elemento y abra el menú Formato, para modificar las propiedades." +msgstr "Pulse dos veces en cualquier otro elemento del diagrama, o bien, pulse sobre el elemento y abra el menú Formato, para modificar las propiedades." #: main0000.xhp msgctxt "" @@ -585,7 +585,7 @@ "par_id0810200911433835\n" "help.text" msgid "The Formatting Bar is shown when a chart is set to edit mode. Double-click a chart to enter edit mode. Click outside the chart to leave edit mode." -msgstr "La barra de formateo se muestra cuando la gráfica se posiciona para modo de edición. Haga doble clic en la gráfica para ingresar en modo de edición. Haga clic afuera de la gráfica para dejar el modo de edición." +msgstr "La barra de formato se muestra cuando se activa el modo de edición de un diagrama. Pulse dos veces en el diagrama para ingresar en el modo de edición. Pulse afuera del diagrama para abandonar el modo de edición." #: main0202.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/es/helpcontent2/source/text/sdraw/guide.po libreoffice-5.1.2~rc2/translations/source/es/helpcontent2/source/text/sdraw/guide.po --- libreoffice-5.1.1~rc2/translations/source/es/helpcontent2/source/text/sdraw/guide.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/es/helpcontent2/source/text/sdraw/guide.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-22 08:19+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 @@ "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: 1458634783.000000\n" #: align_arrange.xhp msgctxt "" @@ -383,7 +383,7 @@ "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 "" @@ -2261,7 +2261,7 @@ "53\n" "help.text" msgid "Double-click the text to edit it or to format text properties, such as font size or font color. Click the border of the text box to edit the object properties, such as border color or arranging in front or behind other objects." -msgstr "Haga doble clic en el texto para editarlo o para dar formato a las propiedades del texto, como el tamaño o el color del tipo de letra. Haga clic en el borde del objeto de texto para modificar las propiedades del objeto, como el color del borde o la colocación delante o detrás de otros objetos." +msgstr "Pulse dos veces en el texto para editarlo o para dar formato a sus propiedades, como el tamaño o el color del tipo de letra. Pulse en el borde del objeto de texto para modificar sus propiedades, como el color del borde o la colocación delante o detrás de otros objetos." #: text_enter.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/es/helpcontent2/source/text/shared/00.po libreoffice-5.1.2~rc2/translations/source/es/helpcontent2/source/text/shared/00.po --- libreoffice-5.1.1~rc2/translations/source/es/helpcontent2/source/text/shared/00.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/es/helpcontent2/source/text/shared/00.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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 09:59+0000\n" +"PO-Revision-Date: 2016-03-27 22:55+0000\n" "Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: es\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1456135185.000000\n" +"X-POOTLE-MTIME: 1459119353.000000\n" #: 00000001.xhp msgctxt "" @@ -288,7 +288,7 @@ "48\n" "help.text" msgid "<ahelp hid=\".\">Click the<emph> Shrink </emph>icon to reduce the dialog to the size of the input field. It is then easier to mark the required reference in the sheet. The icons then automatically convert to the <emph>Maximize</emph> icon. Click it to restore the dialog to its original size.</ahelp>" -msgstr "<ahelp hid=\".\">Haga clic en el icono <emph>Reducir</emph> para disminuir el diálogo al tamaño del campo de entrada. Esto facilita el marcar la referencia requerida en la hoja. El icono se convierte automáticamente en <emph>Maximizar</emph>. Haga clic para restaurar el tamaño original del diálogo.</ahelp>" +msgstr "<ahelp hid=\".\">Pulse en el icono <emph>Reducir</emph> para disminuir el cuadro de diálogo al tamaño del campo de entrada. Esto facilita el marcar la referencia requerida en la hoja. El icono se convierte automáticamente en <emph>Maximizar</emph>. Pulse de nuevo para restaurar el tamaño original del diálogo.</ahelp>" #: 00000001.xhp msgctxt "" @@ -6561,7 +6561,7 @@ "par_idN1117E\n" "help.text" msgid "Double-click the Signature field on the Status Bar." -msgstr "Haga doble clic en el campo Firma de la barra de estado." +msgstr "Pulse dos veces en el campo Firma de la barra de estado." #: 00000401.xhp msgctxt "" @@ -7538,7 +7538,7 @@ "13\n" "help.text" msgid "Double-click or right-click the field on the <emph>Status</emph> Bar" -msgstr "Haga doble clic o clic con el botón derecho en la barra de <emph>estado</emph>." +msgstr "Pulse dos veces, o bien, pulse con el botón secundario del ratón en la barra de <emph>estado</emph>" #: 00000403.xhp msgctxt "" @@ -9706,7 +9706,7 @@ "21\n" "help.text" msgid "<variable id=\"SQLStatement\">In a database file window, choose <emph>Tools - SQL</emph></variable>" -msgstr "<variable id=\"SQLStatement\">En la ventana de un archivo de base de datos, seleccione <emph>Herramientas - SQL</emph></variable>" +msgstr "<variable id=\"SQLStatement\">En la ventana de un archivo de base de datos, vaya a <emph>Herramientas ▸ SQL</emph></variable>" #: 00000450.xhp msgctxt "" @@ -10800,7 +10800,7 @@ "119\n" "help.text" msgid "<variable id=\"aupitab1\">Open <emph>Form Controls</emph> toolbar, click <emph>More Controls</emph> icon, click <emph>Table Control</emph> icon and drag mouse to generate field. No database connection in current form is allowed.</variable>" -msgstr "<variable id=\"aupitab1\">Abra la barra de herramientas <emph>Campos de control de formulario</emph>, haga clic en el icono <emph>Más campos de control</emph>, en el icono <emph>Control de tablas</emph> y arrastre el ratón para generar el campo. No se permite una conexión de bases de datos en el formulario actual. </variable>" +msgstr "<variable id=\"aupitab1\">Abra la barra de herramientas <emph>Controles de formulario</emph>, pulse en el icono <emph>Más controles</emph>, en el icono <emph>Control de tablas</emph> y arrastre el ratón para generar el campo. No se permite una conexión de bases de datos en el formulario actual. </variable>" #: 00040501.xhp msgctxt "" @@ -10809,7 +10809,7 @@ "120\n" "help.text" msgid "<variable id=\"aupitab2\">Open <emph>Form Controls</emph> toolbar, click <emph>More Controls</emph> icon, click <emph>Table Control</emph> icon and drag mouse to generate field. Database connection must exist.</variable>" -msgstr "<variable id=\"aupitab2\">Abra la barra de herramientas <emph>Campos de control de formulario</emph>, haga clic en el icono <emph>Más campos de control</emph>, en el icono <emph>Control de tablas</emph> y arrastre el ratón para generar el campo. Debe haber una conexión con la base de datos. </variable>" +msgstr "<variable id=\"aupitab2\">Abra la barra de herramientas <emph>Controles de formulario</emph>, pulse en el icono <emph>Más controles</emph>, en el icono <emph>Control de tablas</emph> y arrastre el ratón para generar el campo. Debe haber una conexión con la base de datos. </variable>" #: 00040501.xhp msgctxt "" @@ -10818,7 +10818,7 @@ "95\n" "help.text" msgid "<variable id=\"aupikomli\">Open Form Controls toolbar, click <emph>Combo Box</emph> or <emph>List Box</emph> icon and drag mouse to generate field. Database connection must exist in the form.</variable>" -msgstr "<variable id=\"aupikomli\">Abra la barra de herramientas Campos de control de formulario, haga clic en el icono <emph>Cuadro combinado</emph> o <emph>Cuadro de lista</emph> y arrastre el ratón para generar el campo. El formulario debe tener conexión con bases de datos. </variable>" +msgstr "<variable id=\"aupikomli\">Abra la barra de herramientas Controles de formulario, pulse en el icono <emph>Cuadro combinado</emph> o <emph>Cuadro de lista</emph> y arrastre el ratón para generar el campo. El formulario debe tener una conexión con una base de datos.</variable>" #: 00040501.xhp msgctxt "" @@ -10827,7 +10827,7 @@ "121\n" "help.text" msgid "<variable id=\"aupikomli1\">Open Form Controls toolbar, click <emph>Combo Box</emph> or <emph>List Box</emph> icon and drag mouse to generate field. Database connection must exist in the form: Wizard - Page 1.</variable>" -msgstr "<variable id=\"aupikomli1\">Abra la barra de herramientas Campos de control de formulario, haga clic en el icono <emph>Cuadro combinado</emph> o <emph>Cuadro de lista</emph> y arrastre el ratón para generar el campo. El formulario debe tener conexión con bases de datos: Asistente, página 1.</variable>" +msgstr "<variable id=\"aupikomli1\">Abra la barra de herramientas Controles de formulario, pulse en el icono <emph>Cuadro combinado</emph> o <emph>Cuadro de lista</emph> y arrastre el ratón para generar el campo. El formulario debe tener una conexión con una base de datos: Asistente, página 1.</variable>" #: 00040501.xhp msgctxt "" @@ -10836,7 +10836,7 @@ "122\n" "help.text" msgid "<variable id=\"aupikomli2\">Open Form Controls toolbar, click <emph>Combo Box</emph> or <emph>List Box</emph> icon and drag mouse to generate field. Database connection must exist in the form: Wizard - Page 2.</variable>" -msgstr "<variable id=\"aupikomli2\">Abra la barra de herramientas Campos de control de formulario, haga clic en el icono <emph>Cuadro combinado</emph> o <emph>Cuadro de lista</emph> y arrastre el ratón para generar el campo. El formulario debe tener conexión con bases de datos: Asistente, página 2.</variable>" +msgstr "<variable id=\"aupikomli2\">Abra la barra de herramientas Controles de formulario, pulse en el icono <emph>Cuadro combinado</emph> o <emph>Cuadro de lista</emph> y arrastre el ratón para generar el campo. El formulario debe una tener conexión con una base de datos: Asistente, página 2.</variable>" #: 00040501.xhp msgctxt "" @@ -10845,7 +10845,7 @@ "123\n" "help.text" msgid "<variable id=\"aupikomli3a\">Open Form Controls toolbar, click <emph>List Box</emph> icon and drag mouse to generate field. Database connection must exist in the form: Wizard - Page 3.</variable>" -msgstr "<variable id=\"aupikomli3a\">Abra la barra de herramientas Campos de control de formulario, haga clic en el icono <emph>Cuadro de lista</emph> y arrastre el ratón para generar el campo. El formulario debe tener conexión con bases de datos: Asistente, página 3.</variable>" +msgstr "<variable id=\"aupikomli3a\">Abra la barra de herramientas Controles de formulario, pulse en el icono <emph>Cuadro de lista</emph> y arrastre el ratón para generar el campo. El formulario debe tener una conexión con una base de datos: Asistente, página 3.</variable>" #: 00040501.xhp msgctxt "" @@ -10854,7 +10854,7 @@ "124\n" "help.text" msgid "<variable id=\"aupikomli3b\">Open Form Controls toolbar, click <emph>Combo Box</emph> icon and drag mouse to generate field. Database connection must exist in the form: Wizard - Page 3.</variable>" -msgstr "<variable id=\"aupikomli3b\">Abra la barra de herramientas Campos de control de formulario, haga clic en el icono <emph>Cuadro combinado</emph> y arrastre el ratón para generar el campo. El formulario debe tener conexión con bases de datos: Asistente, página 3.</variable>" +msgstr "<variable id=\"aupikomli3b\">Abra la barra de herramientas Controles de formulario, pulse en el icono <emph>Cuadro combinado</emph> y arrastre el ratón para generar el campo. El formulario debe tener una conexión con una base de datos: Asistente, página 3.</variable>" #: 00040501.xhp msgctxt "" @@ -10924,7 +10924,7 @@ "98\n" "help.text" msgid "Open Form Controls toolbar or Form Design toolbar, click <emph>Form</emph> icon - <emph>General</emph> tab" -msgstr "Abra la barra de herramientas Campos de control del formulario o Diseño de formularios, pulse en el icono <emph>Formulario</emph> â–¸ pestaña <emph>General</emph>" +msgstr "Abra la barra de herramientas Controles de formulario o Diseño de formularios y pulse en el icono <emph>Formulario</emph> â–¸ pestaña <emph>General</emph>" #: 00040501.xhp msgctxt "" @@ -10942,7 +10942,7 @@ "101\n" "help.text" msgid "Open Form Controls toolbar or Form Design toolbar, click <emph>Form </emph>icon - <emph>Data</emph> tab" -msgstr "Abra la barra de herramientas Campos de control de formulario o Diseño de formularios, pulse en el icono <emph>Formulario</emph> â–¸ pestaña <emph>Datos</emph>" +msgstr "Abra la barra de herramientas Controles de formulario o Diseño de formularios, pulse en el icono <emph>Formulario</emph> â–¸ pestaña <emph>Datos</emph>" #: 00040501.xhp msgctxt "" @@ -11020,7 +11020,7 @@ "107\n" "help.text" msgid "Open Form Controls toolbar or Form Design toolbar, click <emph>Control</emph> icon - <emph>General</emph> tab" -msgstr "Abra la barra de herramientas Campos de control de formulario o Diseño de formularios y haga clic en el icono <emph>Campo de control</emph> - ficha <emph>General</emph>" +msgstr "Abra la barra de herramientas Controles de formulario o Diseño de formularios y pulse en el icono <emph>Control</emph> â–¸ pestaña <emph>General</emph>" #: 00040501.xhp msgctxt "" @@ -11038,7 +11038,7 @@ "110\n" "help.text" msgid "Open Form Controls toolbar or Form Design toolbar, click <emph>Control</emph> icon - <emph>Data</emph> tab" -msgstr "Abra la barra de herramientas Campos de control de formulario o Diseño de formularios y haga clic en el icono <emph>Campo de control</emph> - ficha <emph>Datos</emph>" +msgstr "Abra la barra de herramientas Controles de formulario o Diseño de formularios y pulse en el icono <emph>Control</emph> â–¸ pestaña <emph>Datos</emph>" #: 00040501.xhp msgctxt "" @@ -11056,7 +11056,7 @@ "113\n" "help.text" msgid "Open Form Controls toolbar or Form Design toolbar, click <emph>Control</emph> icon - <emph>Events</emph> tab" -msgstr "Abra la barra de herramientas Campos de control de formulario o Diseño de formularios y haga clic en el icono <emph>Campo de control</emph> - ficha <emph>Eventos</emph>" +msgstr "Abra la barra de herramientas Controles de formulario o Diseño de formularios y pulse en el icono <emph>Control</emph> â–¸ pestaña <emph>Eventos</emph>" #: 00040501.xhp msgctxt "" @@ -11139,7 +11139,7 @@ "par_id4886928\n" "help.text" msgid "Open Form Controls toolbar or Form Design toolbar, click" -msgstr "Abra la barra de herramientas Campos de control de formularios o Diseño de formularios y haga clic en" +msgstr "Abra la barra de herramientas Controles de formulario o Diseño de formularios y pulse en" #: 00040501.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/es/helpcontent2/source/text/shared/01.po libreoffice-5.1.2~rc2/translations/source/es/helpcontent2/source/text/shared/01.po --- libreoffice-5.1.1~rc2/translations/source/es/helpcontent2/source/text/shared/01.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/es/helpcontent2/source/text/shared/01.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-22 10:18+0000\n" +"PO-Revision-Date: 2016-03-27 17:35+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 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1456136328.000000\n" +"X-POOTLE-MTIME: 1459100120.000000\n" #: 01010000.xhp msgctxt "" @@ -3256,7 +3256,7 @@ "4\n" "help.text" msgid "The <emph>Properties</emph> dialog contains the following tab pages:" -msgstr "El diálogo <emph>Propiedades</emph> contiene las fichas siguientes:" +msgstr "El cuadro de diálogo <emph>Propiedades</emph> contiene estas pestañas:" #: 01100000.xhp msgctxt "" @@ -5449,7 +5449,7 @@ "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 "" @@ -9632,7 +9632,7 @@ "par_idN10646\n" "help.text" msgid "<ahelp hid=\"cui/ui/baselinksdialog/TB_LINKS\">Double-click a link in the list to open a file dialog where you can select another object for this link.</ahelp>" -msgstr "<ahelp hid=\"cui/ui/baselinksdialog/TB_LINKS\">Haga doble clic en un vínculo de la lista para abrir un diálogo de archivo en el que seleccionar otro objeto para este vínculo.</ahelp>" +msgstr "<ahelp hid=\"cui/ui/baselinksdialog/TB_LINKS\">Pulse dos veces en un enlace de la lista para abrir un cuadro de diálogo de archivos en el que seleccionar otro objeto para este enlace.</ahelp>" #: 02180000.xhp msgctxt "" @@ -12342,7 +12342,7 @@ "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 "" @@ -12639,7 +12639,7 @@ "52\n" "help.text" msgid "<ahelp hid=\".\" visibility=\"hidden\">Lets you choose a different data source for your bibliography.</ahelp>" -msgstr "<ahelp hid=\".\" visibility=\"hidden\">Permite elegir un origen de datos diferente al de Bibliografia.</ahelp>" +msgstr "<ahelp hid=\".\" visibility=\"hidden\">Permite elegir un origen de datos diferente para su bibliografia.</ahelp>" #: 02250000.xhp msgctxt "" @@ -16168,7 +16168,7 @@ "91\n" "help.text" msgid "To define a number format that adds a different text to a number depending on if the number is positive, negative, or equal to zero, use the following format:" -msgstr "Para definir un formato numérico que agrega un texto distinto a un número en función de si dicho número es positivo, negativo o cero, utilice el formato siguiente:" +msgstr "Para definir un formato numérico que añade un texto distinto de un número en función de si dicho número es positivo, negativo o cero, utilice el formato siguiente:" #: 05020301.xhp msgctxt "" @@ -17692,7 +17692,7 @@ "par_idN11234\n" "help.text" msgid "Displaying dates using [NatNum] modifiers can have a different effect than displaying other types of numbers. Such effects are indicated by 'CAL: '. For example, 'CAL: 1/4/4' indicates that the year is displayed using the [NatNum1] modifier, while the day and month are displayed using the [NatNum4] modifier. If 'CAL' is not specified, the date formats for that particular modifier are not supported." -msgstr "Muestra las fechas utilizando modificadores [NatNum] que pueden tener un efecto distinto al de mostrar otros tipos de números. Dichos efectos se indican mediante 'CAL: '. Por ejemplo, 'CAL: 1/4/4' indica que el año se muestra utilizando el modificador [NatNum1], mientras que el día y el mes se muestran utilizando el modificador [NatNum4]. Si no se especifica 'CAL', no se admiten los formatos de fecha para ese modificador concreto." +msgstr "Muestra las fechas utilizando modificadores [NatNum] que pueden tener un efecto distinto al de mostrar otros tipos de números. Dichos efectos se indican mediante «CAL: ». Por ejemplo, «CAL: 1/4/4» indica que el año se muestra utilizando el modificador [NatNum1], mientras que el día y el mes se muestran utilizando el modificador [NatNum4]. Si no se especifica «CAL», no se admiten los formatos de fecha para ese modificador concreto." #: 05020301.xhp msgctxt "" @@ -23084,7 +23084,7 @@ "2\n" "help.text" msgid "Set the alignment options for the current selection." -msgstr "Este comando presenta todas las posibilidades de alineación de objetos de texto." +msgstr "Defina las opciones de alineación de la selección actual." #: 05080100.xhp msgctxt "" @@ -33716,7 +33716,7 @@ "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=\".\">Haga clic sobre un elemento de la lista de alternativas para copiar en el cuadro de texto \"Reemplazar por\" el término relacionado. Haga doble clic sobre un elemento para copiar en el cuadro de texto \"Palabra actual\" el término relacionado y realizar una búsqueda del mismo.</ahelp>" +msgstr "<ahelp hid=\".\">Pulse sobre un elemento de la lista de alternativas para copiar en el cuadro de texto «Reemplazar por» el término relacionado. Pulse dos veces sobre un elemento para copiar en el cuadro de texto «Palabra actual» el término relacionado y buscarlo.</ahelp>" #: 06020000.xhp msgctxt "" @@ -39028,7 +39028,7 @@ "par_idN106B2\n" "help.text" msgid "Opens the Change Icon dialog, where you can assign a different icon to the current command." -msgstr "Abre el diálogo Cambiar icono, que permite asignar un icono distinto al comando actual." +msgstr "Abre el cuadro de diálogo Cambiar icono, que permite cambiar el icono de la orden actual." #: 06140400.xhp msgctxt "" @@ -42638,7 +42638,7 @@ "par_id9219641\n" "help.text" msgid "You need Administrator rights to update %PRODUCTNAME." -msgstr "Necesita privilegios de administrador para actualizar %PRODUCTNAME." +msgstr "Para actualizar %PRODUCTNAME necesita privilegios administrativos." #: online_update_dialog.xhp msgctxt "" @@ -42846,7 +42846,7 @@ "par_idN1068A\n" "help.text" msgid "Users with administrator or root privileges will see a dialog where they can choose to install extensions \"for all users\" or \"only for me\". Normal users without those privileges can install, remove, or modify extensions only for their own use." -msgstr "Usuarios con privilegios de administrador verán un diálogo donde podrán elegir instalar extensiones \"para todos los usuarios\" o \"solo para mí\". Usuarios normales sin estos privilegios pueden instalar, quitar, o modificar extensiones únicamente para su propio uso." +msgstr "Los usuarios de cuentas con privilegios administrativos verán un cuadro de diálogo que permitirá instalar las extensiones «para todos los usuarios» o «solo para mí». Los usuarios normales pueden únicamente instalar, quitar o modificar las extensiones dentro de los límites de su propia cuenta." #: packagemanager.xhp msgctxt "" @@ -42854,7 +42854,7 @@ "par_idN10626\n" "help.text" msgid "A user with root or administrator privileges can install an extension as a shared extension that is available to all users. After selecting an extension, a dialog opens and asks whether to install for the current user or all users." -msgstr "Un usuario como administrador o con privilegios de administrador puede instalar una extensión para ser compartida y disponible entre todos los usuarios. Después de seleccionar una extensión, un diálogo se muestra y le solicita el lugar donde se instalará para el usuario actual o todos los usuarios." +msgstr "Los usuarios de cuentas con privilegios administrativos pueden instalar una extensión en modo compartido, o sea, que estará disponible para todos los usuarios. Tras seleccionar una extensión se abrirá un cuadro de diálogo que le preguntará si quiere instalarla para la cuenta actual o para todas." #: packagemanager.xhp msgctxt "" @@ -42862,7 +42862,7 @@ "par_idN1069C\n" "help.text" msgid "A user without root privileges can only install an extension for own usage. This is called a user extension." -msgstr "Un usuario sin privilegios de administrador solamente podrá instalar extensiones para su propio uso. Esto se conoce como una extensión de usuario" +msgstr "Los usuarios sin privilegios administrativos solamente pueden instalar extensiones para su propio uso. A dichas extensiones se les denomina «extensiones de usuario»." #: packagemanager.xhp msgctxt "" @@ -44948,7 +44948,7 @@ "par_id8309274\n" "help.text" msgid "<ahelp hid=\".\">Creates a temporary copy of the current document in HTML format, opens the system default Web browser, and displays the HTML file in the Web browser.</ahelp>" -msgstr "<ahelp hid=\".\">Crea una copia temporal del documento actual en formato HTML, abre el navegador por defecto, y muestra el archivo HTML en el navegador.</ahelp>" +msgstr "<ahelp hid=\".\">Crea una copia temporal del documento actual en formato HTML, abre el navegador predeterminado y muestra el archivo HTML en este.</ahelp>" #: webhtml.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/es/helpcontent2/source/text/shared/02.po libreoffice-5.1.2~rc2/translations/source/es/helpcontent2/source/text/shared/02.po --- libreoffice-5.1.1~rc2/translations/source/es/helpcontent2/source/text/shared/02.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/es/helpcontent2/source/text/shared/02.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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-18 17:13+0000\n" +"PO-Revision-Date: 2016-03-27 17:23+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 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1450458819.000000\n" +"X-POOTLE-MTIME: 1459099397.000000\n" #: 01110000.xhp msgctxt "" @@ -48,7 +48,7 @@ "2\n" "help.text" msgid "<ahelp hid=\".uno:PrintDefault\">Click the <emph>Print File Directly</emph> icon to print the active document with the current default print settings.</ahelp> These can be found in the <emph>Printer Setup</emph> dialog, which you can call with the <link href=\"text/shared/01/01140000.xhp\" name=\"Printer Settings\"><emph>Printer Settings</emph></link> menu command." -msgstr "<ahelp hid=\".uno:PrintDefault\">Haga clic en el icono <emph>Imprimir</emph> para imprimir el documento activo con los parámetros de impresión predeterminados.</ahelp> Se encuentran en el diálogo <emph>Configuración de impresora</emph>, que se ejecuta con el comando de menú <link href=\"text/shared/01/01140000.xhp\" name=\"Printer Settings\"><emph>Configuración de impresora</emph></link>." +msgstr "<ahelp hid=\".uno:PrintDefault\">Pulse en el icono <emph>Imprimir</emph> para imprimir el documento activo con los parámetros de impresión predeterminados.</ahelp> Se encuentran en el cuadro de diálogo <emph>Configuración de impresora</emph>, que se ejecuta con la orden de menú <link href=\"text/shared/01/01140000.xhp\" name=\"Printer Settings\"><emph>Configuración de impresora</emph></link>." #: 01110000.xhp msgctxt "" @@ -279,7 +279,7 @@ "24\n" "help.text" msgid "<ahelp hid=\".uno:Polygon_Unfilled\">Draws a line composed of a series of straight line segments. Drag to draw a line segment, click to define the endpoint of the line segment, and then drag to draw a new line segment. Double-click to finish drawing the line. To create a closed shape, double-click the starting point of the line.</ahelp>" -msgstr "<ahelp hid=\".uno:Polygon_Unfilled\">Dibuja una línea compuesta de varios segmentos rectos. Arrastre para dibujar un segmento, haga clic donde quiera definir el punto final del mismo y arrastre para dibujar un nuevo segmento. Haga doble clic para finalizar la línea. Para crear una forma cerrada, haga doble clic en el punto inicial de la línea.</ahelp>" +msgstr "<ahelp hid=\".uno:Polygon_Unfilled\">Dibuja una línea compuesta de varios segmentos rectos. Arrastre para dibujar un segmento, pulse allí donde quiera definir su punto final y arrastre para dibujar un segmento nuevo. Pulse dos veces para finalizar la línea. Para crear una forma cerrada, pulse dos veces en el punto inicial de la línea.</ahelp>" #: 01140000.xhp msgctxt "" @@ -614,7 +614,7 @@ "tit\n" "help.text" msgid "Form Controls" -msgstr "Campos de control de formulario" +msgstr "Controles de formulario" #: 01170000.xhp msgctxt "" @@ -631,7 +631,7 @@ "1\n" "help.text" msgid "<link href=\"text/shared/02/01170000.xhp\" name=\"Form Controls\">Form Controls</link>" -msgstr "<link href=\"text/shared/02/01170000.xhp\" name=\"Form Controls\">Campos de control de formulario</link>" +msgstr "<link href=\"text/shared/02/01170000.xhp\" name=\"Controles de formulario\">Controles de formulario</link>" #: 01170000.xhp msgctxt "" @@ -674,7 +674,7 @@ "3\n" "help.text" msgid "Form Controls" -msgstr "Campos de control de formulario" +msgstr "Controles de formulario" #: 01170000.xhp msgctxt "" @@ -726,7 +726,7 @@ "4\n" "help.text" msgid "On the Form Controls toolbar, click the icon of the control that you want to add." -msgstr "En la barra de herramientas Campos de control de formulario, haga clic en el icono del campo de control que desee agregar." +msgstr "En la barra de herramientas Controles de formulario, pulse en el icono del control que quiera añadir." #: 01170000.xhp msgctxt "" @@ -8850,7 +8850,7 @@ "5\n" "help.text" msgid "<ahelp hid=\"modules/spropctrlr/ui/taborder/CTRLtree\">Lists all controls in the form. These controls can be selected with the tab key in the given order from top to bottom.</ahelp> Select a control from the <emph>Controls </emph>list to assign the desired position in the tab order." -msgstr "<ahelp hid=\"modules/spropctrlr/ui/taborder/CTRLtree\">Lista todos los campos de control del formulario. Estos controles se pueden seleccionar con la tecla de tabulación en el orden estipulado de arriba abajo.</ahelp> Seleccione un campo de control de la lista <emph>Campos de control </emph>para asignarle la posición que desee en el orden de tabulación." +msgstr "<ahelp hid=\"modules/spropctrlr/ui/taborder/CTRLtree\">Muestra todos los controles del formulario. Estos controles se pueden seleccionar con la tecla de tabulación en el orden estipulado de arriba abajo.</ahelp> Seleccione un control de la lista <emph>Controles </emph>para asignarle la posición que desee en el orden de tabulación." #: 01170300.xhp msgctxt "" @@ -11032,7 +11032,7 @@ "2\n" "help.text" msgid "<ahelp hid=\".uno:ParaspaceIncrease\">Click the<emph> Increase Spacing </emph>icon to increase the paragraph spacing above the selected paragraph.</ahelp>" -msgstr "<ahelp visibility=\"visible\" hid=\".uno:ParaspaceIncrease\">Haga clic en el icono<emph> Aumentar espacio </emph>para incrementar el espacio que hay por encima del párrafo seleccionado.</ahelp>" +msgstr "<ahelp hid=\".uno:ParaspaceIncrease\">Pulse en el icono<emph> Aumentar espacio </emph>para incrementar el espacio que hay por encima del párrafo seleccionado.</ahelp>" #: 03110000.xhp msgctxt "" @@ -11084,7 +11084,7 @@ "2\n" "help.text" msgid "<ahelp hid=\".uno:ParaspaceDecrease\">Click the<emph> Decrease Spacing </emph>icon to decrease the paragraph spacing above the selected paragraph.</ahelp>" -msgstr "<ahelp hid=\".uno:ParaspaceDecrease\">Haga clic en el icono <emph> Reducir espacio</emph> para disminuir el espacio que hay por encima del párrafo seleccionado.</ahelp>" +msgstr "<ahelp hid=\".uno:ParaspaceDecrease\">Pulse en el icono <emph> Reducir espacio</emph> para disminuir el espacio que hay por encima del párrafo seleccionado.</ahelp>" #: 03120000.xhp msgctxt "" @@ -11136,7 +11136,7 @@ "2\n" "help.text" msgid "<ahelp hid=\".uno:SetBorderStyle\">Click the <emph>Borders</emph> icon to open the <emph>Borders</emph> toolbar, where you can modify the border of a sheet area or an object.</ahelp>" -msgstr "<ahelp hid=\".uno:SetBorderStyle\">Haga clic en el icono <emph>Bordes</emph> para abrir la barra de herramientas de <emph>bordes</emph>, que permite modificar el borde de un área de página o un objeto.</ahelp>" +msgstr "<ahelp hid=\".uno:SetBorderStyle\">Pulse en el icono <emph>Bordes</emph> para abrir la barra de herramientas de <emph>bordes</emph>, que permite modificar el borde de un área de página o un objeto.</ahelp>" #: 03130000.xhp msgctxt "" @@ -11267,7 +11267,7 @@ "2\n" "help.text" msgid "<ahelp hid=\".uno:FrameLineColor\">Click the <emph>Line Color (of the border)</emph> icon to open the <emph>Border Color</emph> toolbar, which enables you to change the border color of an object.</ahelp>" -msgstr "<ahelp hid=\".uno:FrameLineColor\">Haga clic en el icono <emph>Color líneas del borde</emph> para abrir la barra de herramientas <emph>Color de borde</emph>, que permite cambiar el color del borde de un objeto.</ahelp>" +msgstr "<ahelp hid=\".uno:FrameLineColor\">Pulse en el icono <emph>Color de línea (del borde)</emph> para abrir la barra de herramientas <emph>Color de borde</emph>, que permite cambiar el color del borde de un objeto.</ahelp>" #: 03150000.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/es/helpcontent2/source/text/shared/05.po libreoffice-5.1.2~rc2/translations/source/es/helpcontent2/source/text/shared/05.po --- libreoffice-5.1.1~rc2/translations/source/es/helpcontent2/source/text/shared/05.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/es/helpcontent2/source/text/shared/05.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-12-19 04:15+0000\n" +"PO-Revision-Date: 2016-03-27 17:37+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 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1450498508.000000\n" +"X-POOTLE-MTIME: 1459100236.000000\n" #: 00000001.xhp msgctxt "" @@ -475,7 +475,7 @@ "par_idN10939\n" "help.text" msgid "Click the <emph>Find on this Page</emph> icon." -msgstr "Haga clic en el icono <emph>Buscar en esta página</emph>." +msgstr "Pulse en el icono <emph>Buscar en esta página</emph>." #: 00000110.xhp msgctxt "" @@ -589,7 +589,7 @@ "9\n" "help.text" msgid "<ahelp hid=\"sfx/ui/helpcontrol/tabcontrol\">The navigation pane of the Help window contains the tab pages <emph>Contents</emph>, <emph>Index</emph>, <emph>Find</emph> and <emph>Bookmarks</emph>.</ahelp>" -msgstr "<ahelp hid=\"sfx/ui/helpcontrol/tabcontrol\">El panel de navegación de la ventana de Ayuda contiene las fichas <emph>Contenido</emph>, <emph>Ãndice</emph>, <emph>Buscar</emph> y <emph>Marcadores</emph>.</ahelp>" +msgstr "<ahelp hid=\"sfx/ui/helpcontrol/tabcontrol\">El panel de navegación de la ventana de Ayuda contiene las pestañas <emph>Contenido</emph>, <emph>Ãndice</emph>, <emph>Búsqueda</emph> y <emph>Marcadores</emph>.</ahelp>" #: 00000110.xhp msgctxt "" @@ -598,7 +598,7 @@ "19\n" "help.text" msgid "<ahelp hid=\"sfx/ui/helpcontrol/active\">The list box located at the very top is where you can select other <item type=\"productname\">%PRODUCTNAME</item> Help modules.</ahelp> The <emph>Index</emph> and <emph>Find</emph> tab pages only contain the data for the selected <item type=\"productname\">%PRODUCTNAME</item> module." -msgstr "<ahelp hid=\"sfx/ui/helpcontrol/active\">En el cuadro de lista situado en la parte superior se pueden seleccionar otros módulos de la Ayuda de <item type=\"productname\">%PRODUCTNAME</item>.</ahelp> Las fichas <emph>Ãndice</emph> y <emph>Buscar</emph> sólo contienen información relativa al módulo de <item type=\"productname\">%PRODUCTNAME</item> seleccionado." +msgstr "<ahelp hid=\"sfx/ui/helpcontrol/active\">En el cuadro de lista situado en la parte superior se pueden seleccionar otros módulos de la Ayuda de <item type=\"productname\">%PRODUCTNAME</item>.</ahelp> Las pestañas <emph>Ãndice</emph> y <emph>Búsqueda</emph> únicamente contienen información relativa al módulo de <item type=\"productname\">%PRODUCTNAME</item> seleccionado." #: 00000110.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/es/helpcontent2/source/text/shared/autopi.po libreoffice-5.1.2~rc2/translations/source/es/helpcontent2/source/text/shared/autopi.po --- libreoffice-5.1.1~rc2/translations/source/es/helpcontent2/source/text/shared/autopi.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/es/helpcontent2/source/text/shared/autopi.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-11-25 16:17+0000\n" +"PO-Revision-Date: 2016-03-27 18: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 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1448468278.000000\n" +"X-POOTLE-MTIME: 1459102566.000000\n" #: 01000000.xhp msgctxt "" @@ -784,7 +784,7 @@ "par_idN105EC\n" "help.text" msgid "<ahelp hid=\"HID_LTRWIZ_OPTSENDERPLACEHOLDER\">Use the address data from %PRODUCTNAME - User Data in the Options dialog box.</ahelp>" -msgstr "<ahelp hid=\"HID_LTRWIZ_OPTSENDERPLACEHOLDER\">Utiliza los datos de la dirección de %PRODUCTNAME - Datos de Usuario en la caja de diálogo de Opciones.</ahelp>" +msgstr "<ahelp hid=\"HID_LTRWIZ_OPTSENDERPLACEHOLDER\">Utiliza los datos de la dirección de Opciones â–¸ %PRODUCTNAME â–¸ Datos de usuario.</ahelp>" #: 01010400.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/es/helpcontent2/source/text/shared/explorer/database.po libreoffice-5.1.2~rc2/translations/source/es/helpcontent2/source/text/shared/explorer/database.po --- libreoffice-5.1.1~rc2/translations/source/es/helpcontent2/source/text/shared/explorer/database.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/es/helpcontent2/source/text/shared/explorer/database.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-11 21:01+0000\n" +"PO-Revision-Date: 2016-03-27 17: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 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1449867713.000000\n" +"X-POOTLE-MTIME: 1459099996.000000\n" #: 02000000.xhp msgctxt "" @@ -3224,7 +3224,7 @@ "14\n" "help.text" msgid "<link href=\"text/shared/02/01170000.xhp\" name=\"Form Controls\">Form Controls</link>" -msgstr "<link href=\"text/shared/02/01170000.xhp\" name=\"Form Controls\">Formulario de control</link>" +msgstr "<link href=\"text/shared/02/01170000.xhp\" name=\"Controles de formulario\">Controles de formulario</link>" #: 04000000.xhp msgctxt "" @@ -3233,7 +3233,7 @@ "23\n" "help.text" msgid "The Form Controls toolbar offers the tools required to create a form in a text, table, drawing, or presentation document." -msgstr "En la barra de herramientas Campos de control de formulario hay opciones para crear un formulario en un documento de texto, tabla, dibujo o presentación." +msgstr "En la barra de herramientas Controles de formulario hay opciones para crear un formulario en un documento de texto, tabla, dibujo o presentación." #: 04000000.xhp msgctxt "" @@ -3321,7 +3321,7 @@ "3\n" "help.text" msgid "Open the Form Controls toolbar. The Form Controls toolbar contains the <link href=\"text/shared/02/01170000.xhp\" name=\"functions\">functions</link> needed to edit a form. More functions can be found in the <emph>Form Design</emph> bar and <emph>More Controls</emph> bar." -msgstr "Abra la barra de herramientas Campos de control de formulario. La barra de herramientas Campos de control de formulario contiene las <link href=\"text/shared/02/01170000.xhp\" name=\"functions\">funciones</link> necesarias para poder editar formularios. Encontrará más funciones en las barras <emph>Diseño de formularios</emph> y <emph>Más campos de control</emph>." +msgstr "Abra la barra de herramientas Controles de formulario. Esta barra de herramientas contiene las <link href=\"text/shared/02/01170000.xhp\" name=\"funciones\">funciones</link> necesarias para poder editar formularios. Encontrará más funciones en las barras <emph>Diseño de formularios</emph> y <emph>Más controles</emph>." #: 04030000.xhp msgctxt "" @@ -4339,7 +4339,7 @@ "19\n" "help.text" msgid "<ahelp hid=\"HID_CTL_RELATIONTAB\">Here you can link together tables from the current database through common data fields.</ahelp> Click the <emph>New Relation</emph> icon to create the relationships, or simply drag-and-drop with the mouse." -msgstr "<ahelp hid=\"HID_CTL_RELATIONTAB\">Aquí puede vincular las tablas de la base de datos actual mediante sus campos de datos comunes.</ahelp> Haga clic en el icono <emph>Relación nueva</emph> para crear las relaciones, o utilice el ratón para arrastrar y colocar." +msgstr "<ahelp hid=\"HID_CTL_RELATIONTAB\">Aquí puede enlazar las tablas de la base de datos actual mediante sus campos de datos comunes.</ahelp> Pulse en el icono <emph>Relación nueva</emph> para crear las relaciones, o utilice el ratón para arrastrar y colocar." #: 05020000.xhp msgctxt "" @@ -6956,7 +6956,7 @@ "4\n" "help.text" msgid "The free available Adabas database is restricted to a size of 100 MB, and a maximum of three users on a network. See the \"License.txt\" file in the Adabas directory for more details. The Adabas database must be installed in a separate directory from $[officename]." -msgstr "La base de datos Adabas está restringida a un tamaño de 100 MB y a un máximo de tres usuarios en red. Para obtener más detalles consulte el archivo \"License.txt\" del directorio Adabas. La base de datos Adabas se debe instalar en un directorio distinto al de $[officename]." +msgstr "La base de datos Adabas está restringida a un tamaño de 100 MB y a un máximo de tres usuarios en red. Para obtener más detalles consulte el archivo «License.txt» en la carpeta de Adabas. La base de datos Adabas se debe instalar en una carpeta distinta de la de $[officename]." #: 30000000.xhp msgctxt "" @@ -12950,7 +12950,7 @@ "par_id7050691\n" "help.text" msgid "Click the Reports icon in the Base window, then choose Create Report in Design View." -msgstr "Haga clic en el icono de Informes en la ventana de Base, luego seleccione Crear informe en Vista de Diseño." +msgstr "Pulse en el icono de Informes en la ventana de Base, luego seleccione Crear informe en vista de diseño." #: rep_main.xhp msgctxt "" @@ -13102,7 +13102,7 @@ "par_id4503921\n" "help.text" msgid "The Add Field window helps you to insert the table entries in the report. Click the Add Field icon in the toolbar to open the Add Field window." -msgstr "La ventana agregar campos permite insertar en el informe los datos de la tabla. Haga clic en el icono Agregar Campo de la barra de herramientas para abrir la ventana correspondiente." +msgstr "La ventana Añadir campo permite insertar en el informe los datos de la tabla. Pulse en el icono Añadir campo de la barra de herramientas para abrir la ventana homónima." #: rep_main.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/es/helpcontent2/source/text/shared/guide.po libreoffice-5.1.2~rc2/translations/source/es/helpcontent2/source/text/shared/guide.po --- libreoffice-5.1.1~rc2/translations/source/es/helpcontent2/source/text/shared/guide.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/es/helpcontent2/source/text/shared/guide.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-14 22:04+0000\n" +"PO-Revision-Date: 2016-03-27 23:07+0000\n" "Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: es\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1455487484.000000\n" +"X-POOTLE-MTIME: 1459120036.000000\n" #: aaa_start.xhp msgctxt "" @@ -1147,7 +1147,7 @@ "3\n" "help.text" msgid "Click the <emph>Borders</emph> icon on the <emph>Table </emph>toolbar (Writer) or on the <emph>Line and Filling</emph> bar to open the <emph>Borders</emph> window." -msgstr "Haga clic en el icono <emph>Bordes</emph> de la barra de herramientas <emph>Tabla </emph> (Writer) o en la barra <emph>Líneas y relleno</emph> para abrir la ventana <emph>Bordes</emph>." +msgstr "Pulse en el icono <emph>Bordes</emph> de la barra de herramientas <emph>Tabla </emph> (Writer) o la barra <emph>Líneas y relleno</emph> para abrir la ventana <emph>Bordes</emph>." #: border_table.xhp msgctxt "" @@ -1724,7 +1724,7 @@ "par_id7211218\n" "help.text" msgid "Click the <emph>Insert Chart</emph> icon on the <emph>Standard</emph> toolbar." -msgstr "Haga clic en el icono <emph>Insertar gráfico</emph> en la barra de herramientas <emph>Estándar</emph>." +msgstr "Pulse en el icono <emph>Insertar diagrama</emph> de la barra de herramientas <emph>Estándar</emph>." #: chart_insert.xhp msgctxt "" @@ -3276,7 +3276,7 @@ "tit\n" "help.text" msgid "Executing SQL Commands" -msgstr "Ejecutar comandos SQL" +msgstr "Ejecución de órdenes de SQL" #: data_enter_sql.xhp msgctxt "" @@ -3293,7 +3293,7 @@ "67\n" "help.text" msgid "<variable id=\"data_enter_sql\"><link href=\"text/shared/guide/data_enter_sql.xhp\" name=\"Executing SQL Commands\">Executing SQL Commands</link></variable>" -msgstr "<variable id=\"data_enter_sql\"><link href=\"text/shared/guide/data_enter_sql.xhp\" name=\"Executing SQL Commands\">Ejecutar comandos SQL</link></variable>" +msgstr "<variable id=\"data_enter_sql\"><link href=\"text/shared/guide/data_enter_sql.xhp\" name=\"Ejecución de órdenes de SQL\">Ejecución de órdenes de SQL</link></variable>" #: data_enter_sql.xhp msgctxt "" @@ -3311,7 +3311,7 @@ "72\n" "help.text" msgid "Not all database types support all SQL instructions. If necessary, find out which SQL commands are supported by your database system." -msgstr "No todos los tipos de base de datos apoyan las instrucciones SQL. Infórmese, dado el caso, sobre los comandos SQL apoyados por su sistema de base de datos." +msgstr "No todos los tipos de base de datos admiten todas las instrucciones de SQL. Infórmese, dado el caso, sobre las órdenes de SQL admitidas por su sistema de base de datos." #: data_enter_sql.xhp msgctxt "" @@ -3327,7 +3327,7 @@ "par_id7923825\n" "help.text" msgid "Choose <emph>File - Open</emph> to open a database file." -msgstr "Seleccione <emph>Archivo - Abrir</emph> para abrir un archivo de base de datos." +msgstr "Vaya a <emph>Archivo ▸ Abrir</emph> para abrir un archivo de base de datos." #: data_enter_sql.xhp msgctxt "" @@ -3335,7 +3335,7 @@ "par_id9448530\n" "help.text" msgid "Choose <emph>Tools - SQL</emph>." -msgstr "Elija <emph>Herramientas - SQL</emph>." +msgstr "Seleccione <emph>Herramientas ▸ SQL</emph>." #: data_enter_sql.xhp msgctxt "" @@ -3344,7 +3344,7 @@ "91\n" "help.text" msgid "Click the <emph>Create Query in SQL View</emph> icon <image id=\"img_id3154071\" src=\"cmd/sc_dbnewquerysql.png\" width=\"0.1862in\" height=\"0.1862in\"><alt id=\"alt_id3154071\">Icon</alt></image> or" -msgstr "Haga clic en el símbolo <emph>Crear consulta en vista SQL</emph> <image id=\"img_id3154071\" src=\"cmd/sc_dbnewquerysql.png\" width=\"0.1862in\" height=\"0.1862in\"><alt id=\"alt_id3154071\">Símbolo</alt></image> o" +msgstr "Pulse en el icono <emph>Crear consulta en vista SQL</emph> <image id=\"img_id3154071\" src=\"cmd/sc_dbnewquerysql.png\" width=\"0.1862in\" height=\"0.1862in\"><alt id=\"alt_id3154071\">Icono</alt></image> o" #: data_enter_sql.xhp msgctxt "" @@ -3362,7 +3362,7 @@ "94\n" "help.text" msgid "In the <emph>Query</emph> window, choose <emph>View - Switch Design View On/Off</emph>. Edit the SQL command." -msgstr "En la ventana <emph>Consulta</emph>, seleccione <emph>Ver - Activar o desactivar la vista Diseño</emph>. Edite el comando SQL." +msgstr "En la ventana <emph>Consulta</emph>, seleccione <emph>Ver ▸ Activar o desactivar la vista Diseño</emph>. Edite la orden de SQL." #: data_enter_sql.xhp msgctxt "" @@ -3371,7 +3371,7 @@ "96\n" "help.text" msgid "Click the <emph>Run</emph> icon <image id=\"img_id3152886\" src=\"cmd/sc_sbanativesql.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3152886\">Icon</alt></image>. The result of the query is displayed in the upper window." -msgstr "Haga clic en el símbolo <emph>Ejecutar</emph> <image id=\"img_id3152886\" src=\"cmd/sc_sbanativesql.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3152886\">Símbolo</alt></image>. El resultado de la consulta se muestra en la ventana superior." +msgstr "Pulse en el icono <emph>Ejecutar</emph> <image id=\"img_id3152886\" src=\"cmd/sc_sbanativesql.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3152886\">Icono</alt></image>. El resultado de la consulta se muestra en la ventana superior." #: data_enter_sql.xhp msgctxt "" @@ -3380,7 +3380,7 @@ "98\n" "help.text" msgid "Click the <emph>Save</emph> or <emph>Save As</emph> icon <image id=\"img_id3153159\" src=\"cmd/sc_save.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3153159\">Icon</alt></image> to save the query." -msgstr "Haga clic en el símbolo <emph>Guardar</emph> o <emph>Guardar como</emph><image id=\"img_id3153159\" src=\"cmd/sc_save.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3153159\">Símbolo</alt></image> para guardar la consulta." +msgstr "Pulse en el icono <emph>Guardar</emph> o <emph>Guardar como</emph><image id=\"img_id3153159\" src=\"cmd/sc_save.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3153159\">Icono</alt></image> para guardar la consulta." #: data_enter_sql.xhp msgctxt "" @@ -3501,7 +3501,7 @@ "par_idN1065F\n" "help.text" msgid "A new text document opens. Use the <link href=\"text/shared/02/01170000.xhp\">Form Controls</link> to insert form controls." -msgstr "Se abre un nuevo documento de texto. Utilice los <link href=\"text/shared/02/01170000.xhp\">Campos de control de formulario</link> para insertar controles de formulario." +msgstr "Se abre un nuevo documento de texto. Utilice los <link href=\"text/shared/02/01170000.xhp\">controles de formulario</link> para insertar controles de formulario." #: data_forms.xhp msgctxt "" @@ -3509,7 +3509,7 @@ "par_idN10670\n" "help.text" msgid "Click the <emph>Forms</emph> icon to access all forms that were created from within the current database window. In addition, you can use the <emph>Form Controls</emph> icons to add database form controls to any Writer or Calc document, but these documents will not be listed in the database window." -msgstr "Haga clic en el icono <emph>Formularios</emph> para acceder a todos los formularios creados desde la ventana de base de datos actual. Asimismo, los iconos <emph>Campos de control de formulario</emph> permiten agregar campos de control de formulario de base de datos a cualquier documento de Writer o Calc; sin embargo, estos documentos no aparecerán en la ventana de base de datos." +msgstr "Pulse en el icono <emph>Formularios</emph> para acceder a todos los formularios creados desde la ventana de base de datos actual. Asimismo, los iconos <emph>Controles de formulario</emph> permiten añadir campos de control de formulario de base de datos a cualquier documento de Writer o Calc; sin embargo, estos documentos no aparecerán en la ventana de base de datos." #: data_im_export.xhp msgctxt "" @@ -4523,7 +4523,7 @@ "11\n" "help.text" msgid "Click the <link href=\"text/shared/02/12120000.xhp\" name=\"Apply Filter\"><emph>Apply Filter</emph></link> icon <image id=\"img_id3144764\" src=\"cmd/sc_datafilterstandardfilter.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3144764\">Icon</alt></image> on the <emph>Form Navigation</emph> toolbar to change to the filtered view." -msgstr "Haga clic en el icono <link href=\"text/shared/02/12120000.xhp\" name=\"Apply Filter\"><emph>Aplicar filtro</emph></link> <image id=\"img_id3144764\" src=\"cmd/sc_datafilterstandardfilter.png\" width=\"5.64mm\" height=\"5.64mm\"><alt id=\"alt_id3144764\">Icono</alt></image> de la barra de herramientas <emph>Navegación de formularios</emph> para cambiar la vista filtrada." +msgstr "Pulse en el icono <link href=\"text/shared/02/12120000.xhp\" name=\"Aplicar filtro\"><emph>Aplicar filtro</emph></link> <image id=\"img_id3144764\" src=\"cmd/sc_datafilterstandardfilter.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3144764\">Icono</alt></image> de la barra de herramientas <emph>Navegación de formulario</emph> para cambiar a la vista filtrada." #: data_search2.xhp msgctxt "" @@ -4575,7 +4575,7 @@ "3\n" "help.text" msgid "Open the database file of the database where you want a new table. Click the <emph>Tables</emph> icon. Choose <emph>Create Table in Design View</emph> to create a new table." -msgstr "Abre la base de datos o el archivo de base de datos en el que desea agregar una tabla. Haga clic en el icono <emph>Tablas</emph>. Elija <emph>Crear tabla</emph> en modo diseño para crear una tabla." +msgstr "Abra la base de datos o el archivo de base de datos donde quiere añadir una tabla. Pulse en el icono <emph>Tablas</emph>. Elija <emph>Crear tabla en modo diseño</emph> para crear una tabla nueva." #: data_tabledefine.xhp msgctxt "" @@ -4948,7 +4948,7 @@ "4\n" "help.text" msgid "Choose <emph>View - Data Sources</emph> or press F4 to call the data source view from a text document or spreadsheet." -msgstr "Elija <emph>Ver - Orígenes de datos</emph> o pulse F4 para obtener la vista de orígenes de datos de un documento de texto o una hoja de cálculo." +msgstr "Vaya a <emph>Ver ▸ Orígenes de datos</emph> u oprima F4 para obtener la vista de orígenes de datos de un documento de texto o una hoja de cálculo." #: database_main.xhp msgctxt "" @@ -5869,7 +5869,7 @@ "4\n" "help.text" msgid "Choose <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01010200.xhp\" name=\"Load/Save - General\">Load/Save - General</link></emph>." -msgstr "Elija <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferencias</caseinline><defaultinline>Herramientas - Opciones</defaultinline></switchinline> - <link href=\"text/shared/optionen/01010200.xhp\" name=\"Cargar/Guardar - General\">Cargar/Guardar - General</link></emph>." +msgstr "Vaya a <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME ▸ Preferencias</caseinline><defaultinline>Herramientas ▸ Opciones</defaultinline></switchinline> ▸ <link href=\"text/shared/optionen/01010200.xhp\" name=\"Cargar/guardar - General\">Cargar/guardar ▸ General</link></emph>." #: doc_autosave.xhp msgctxt "" @@ -5896,7 +5896,7 @@ "7\n" "help.text" msgid "You can change the backup directory by choosing <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - $[officename] - Paths</emph>, then change the <emph>Backups</emph> path in the dialog." -msgstr "Puede cambiar el directorio de copias de seguridad eligiendo <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferencias</caseinline><defaultinline>Herramientas - Opciones</defaultinline></switchinline> - $[officename] - Rutas</emph>, y luego cambiando la ruta de <emph>Copias de seguridad</emph> en el cuadro de diálogo." +msgstr "Es posible cambiar la carpeta de las copias de seguridad: vaya a <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME ▸ Preferencias</caseinline><defaultinline>Herramientas ▸ Opciones</defaultinline></switchinline> ▸ $[officename] ▸ Rutas</emph> y edite la ruta de acceso <emph>Copias de seguridad</emph> en el cuadro de diálogo." #: doc_autosave.xhp msgctxt "" @@ -5923,7 +5923,7 @@ "10\n" "help.text" msgid "Choose <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01010200.xhp\" name=\"Load/Save - General\">Load/Save - General</link></emph>." -msgstr "Elija <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferencias</caseinline><defaultinline>Herramientas - Opciones</defaultinline></switchinline> - <link href=\"text/shared/optionen/01010200.xhp\" name=\"Cargar/Guardar - General\">Cargar/Guardar - General</link></emph>." +msgstr "Vaya a <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME ▸ Preferencias</caseinline><defaultinline>Herramientas ▸ Opciones</defaultinline></switchinline> ▸ <link href=\"text/shared/optionen/01010200.xhp\" name=\"Cargar/guardar - General\">Cargar/guardar ▸ General</link></emph>." #: doc_autosave.xhp msgctxt "" @@ -5941,7 +5941,7 @@ "13\n" "help.text" msgid "This command saves the information necessary to restore the current document in case of a crash. Additionally, in case of a crash %PRODUCTNAME tries automatically to save AutoRecovery information for all open documents, if possible." -msgstr "Este comando guarda la información necesaria para restaurar el documento actual en caso de bloqueo. Asimismo, en caso de bloqueo, %PRODUCTNAME intenta guardar automáticamente la información de recuperación automática para todos los documentos abiertos, si es posible." +msgstr "Esta orden guarda la información necesaria para restaurar el documento actual en caso de bloqueo. Asimismo, en caso de bloqueo, %PRODUCTNAME intenta guardar automáticamente la información de recuperación automática para todos los documentos abiertos, si es posible." #: doc_autosave.xhp msgctxt "" @@ -6237,7 +6237,7 @@ "5\n" "help.text" msgid "Click the <emph>Save</emph> icon or press the shortcut keys <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+S." -msgstr "Haga clic en el icono <emph>Guardar</emph> o pulse las teclas de acceso directo <switchinline select=\"sys\"><caseinline select=\"MAC\">Comando</caseinline><defaultinline>Ctrl</defaultinline></switchinline> + G." +msgstr "Pulse en el icono <emph>Guardar</emph> o presione la combinación de teclas <switchinline select=\"sys\"><caseinline select=\"MAC\">⌘</caseinline><defaultinline>Ctrl</defaultinline></switchinline> + S." #: doc_save.xhp msgctxt "" @@ -7592,7 +7592,7 @@ "par_idN106EB\n" "help.text" msgid "Click the arrow icon at the end of the <emph>Standard</emph> bar. In the drop-down menu, choose <emph>Customize</emph>." -msgstr "Haga clic en el icono de flecha al final de la barra <emph>Estándar</emph>. En el menú desplegable, seleccione <emph>Personalizar</emph>." +msgstr "Pulse en el icono de flecha al final de la barra <emph>Estándar</emph>. En el menú desplegable, seleccione <emph>Personalizar</emph>." #: fax.xhp msgctxt "" @@ -8004,7 +8004,7 @@ "par_id295724\n" "help.text" msgid "Click the icon in the toolbar's title bar, or choose <emph>Close Toolbar</emph> from the context menu. The toolbar will be shown automatically again when the context becomes active again." -msgstr "Haga clic en el icono de la barra de título de la barra de herramientas o seleccione <emph>Cerrar barra de herramientas</emph> en el menú contextual. La barra de herramientas se volverá a abrir automáticamente cuando el contexto se vuelva a activar." +msgstr "Pulse en el icono de la barra de título de la barra de herramientas o seleccione <emph>Cerrar barra de herramientas</emph> en el menú contextual. La barra de herramientas se volverá a abrir automáticamente cuando el contexto se vuelva a activar." #: floating_toolbar.xhp msgctxt "" @@ -8350,7 +8350,7 @@ "par_idN10731\n" "help.text" msgid "You can use the Form Controls toolbar to add checkboxes, buttons, tables showing data records, and other controls to a document." -msgstr "Puede utilizar la barra de herramientas Campos de control de formulario para agregar casillas de verificación, botones, tablas con registros de datos y otros controles a un documento." +msgstr "Puede utilizar la barra de herramientas Controles de formulario para añadir casillas de verificación, botones, tablas con registros de datos y otros controles a un documento." #: formfields.xhp msgctxt "" @@ -8367,7 +8367,7 @@ "6\n" "help.text" msgid "Choose <item type=\"menuitem\">View - Toolbars - Form Controls</item>." -msgstr "Elija <item type=\"menuitem\">Ver - Barras de herramientas - Campos de control de formulario</item>." +msgstr "Vaya a <item type=\"menuitem\">Ver â–¸ Barras de herramientas â–¸ Controles de formulario</item>." #: formfields.xhp msgctxt "" @@ -8376,7 +8376,7 @@ "7\n" "help.text" msgid "On the Form Controls toolbar, click the <emph>Push Button</emph> icon." -msgstr "En la barra de herramientas Campos de control de formulario, haga clic en el icono <emph>Botón de comando</emph>." +msgstr "En la barra de herramientas Controles de formulario, pulse en el icono <emph>Botón</emph>." #: formfields.xhp msgctxt "" @@ -8444,7 +8444,7 @@ "76\n" "help.text" msgid "(Optional) Specify the properties of the form that the button belongs to." -msgstr "Aparte de las propiedades de los controles seleccionados, también se pueden administrar las propiedades del formulario al que pertenece el control. Haga clic en el icono <emph>Propiedades del formulario</emph> en la barra de herramientas <emph>Funciones del formulario</emph>." +msgstr "(Opcional) Indique las propiedades del formulario al cual pertenece el botón." #: formfields.xhp msgctxt "" @@ -12710,7 +12710,7 @@ "6\n" "help.text" msgid "Click the <emph>Line</emph> icon <image id=\"img_id3144510\" src=\"cmd/sc_formatline.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3144510\">Icon</alt></image> to open the <emph>Line</emph> dialog." -msgstr "Haga clic en el icono <emph>Línea</emph> <image id=\"img_id3144510\" src=\"cmd/sc_formatline.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3144510\">Icono</alt></image> para abrir el diálogo <emph>Línea</emph>." +msgstr "Pulse en el icono <emph>Línea</emph> <image id=\"img_id3144510\" src=\"cmd/sc_formatline.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3144510\">Icono</alt></image> para abrir el cuadro de diálogo <emph>Línea</emph>." #: linestyles.xhp msgctxt "" @@ -12718,7 +12718,7 @@ "par_idN106D6\n" "help.text" msgid "Click the <emph>Arrow Styles</emph> icon <image id=\"img_id5858221\" src=\"cmd/sc_lineendstyle.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id5858221\">Icon</alt></image> to select an arrow style for the right and left ends of a line." -msgstr "Haga clic en el icono <emph>Estilos de flecha</emph> <image id=\"img_id5858221\" src=\"cmd/sc_lineendstyle.png\" width=\"5.64mm\" height=\"5.64mm\"><alt id=\"alt_id5858221\">Icono</alt></image> para seleccionar un estilo de flecha para los extremos izquierdo y derecho de una línea." +msgstr "Pulse en el icono <emph>Estilos de flecha</emph> <image id=\"img_id5858221\" src=\"cmd/sc_lineendstyle.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id5858221\">Icono</alt></image> para seleccionar un estilo de flecha para los extremos izquierdo y derecho de una línea." #: linestyles.xhp msgctxt "" @@ -15810,7 +15810,7 @@ "59\n" "help.text" msgid "The draw objects that you insert into your documents with the <emph>Drawing </emph>toolbar can be protected from being accidentally moved or changed in size. You can do the same with form objects inserted with the <emph>Form Controls</emph> toolbar." -msgstr "Los documentos de dibujo que inserta en los documentos con la barra de herramientas <emph>Dibujo</emph> se pueden proteger para que no se desplacen ni se cambie su tamaño de forma accidental. Puede hacer lo mismo con los objetos de formulario insertados en la barra de herramientas <emph>Campos de control de formulario</emph>." +msgstr "Los documentos de dibujo que inserta en los documentos con la barra de herramientas <emph>Dibujo</emph> se pueden proteger para que no se desplacen ni se cambie su tamaño de forma accidental. Puede hacer lo mismo con los objetos de formulario insertados en la barra de herramientas <emph>Controles de formulario</emph>." #: protection.xhp msgctxt "" @@ -17049,7 +17049,7 @@ "par_idN107AA\n" "help.text" msgid "Insert a form control, for example a button: Open the Form Controls toolbar, click the <emph>Push Button</emph> icon, drag open a button on your document." -msgstr "Inserte un control de formulario, por ejemplo un botón: Abra la barra de herramientas <emph>Campos de control de formulario</emph>, haga clic en el icono <emph>Botón de comando</emph> y arrastre para abrir un botón en el documento." +msgstr "Inserte un control de formulario, por ejemplo un botón: Abra la barra de herramientas Controles de formulario, pulse en el icono <emph>Botón</emph> y arrastre para abrir un botón en el documento." #: scripting.xhp msgctxt "" @@ -17065,7 +17065,7 @@ "par_idN10B5D\n" "help.text" msgid "Click the <emph>Events</emph> tab of the Properties dialog." -msgstr "Haga clic en la ficha <emph>Eventos</emph> del diálogo Propiedades." +msgstr "Pulse en la pestaña <emph>Eventos</emph> del cuadro de diálogo Propiedades." #: scripting.xhp msgctxt "" @@ -17105,7 +17105,7 @@ "par_idN10B87\n" "help.text" msgid "Click the <emph>Events</emph> tab of the Properties dialog." -msgstr "Haga clic en la ficha <emph>Eventos</emph> del diálogo Propiedades." +msgstr "Pulse en la pestaña <emph>Eventos</emph> del cuadro de diálogo Propiedades." #: scripting.xhp msgctxt "" @@ -19029,7 +19029,7 @@ "par_idN10665\n" "help.text" msgid "Click the <emph>Outline</emph> tab to open outline view." -msgstr "Haga clic en la ficha <emph>Esquema</emph> para abrir la vista de esquema." +msgstr "Pulse en la pestaña <emph>Esquema</emph> para abrir la vista de esquema." #: undo_formatting.xhp msgctxt "" @@ -19087,7 +19087,7 @@ "5\n" "help.text" msgid "Choose <emph>Help - About $[officename]</emph>. This opens a dialog containing information about the program." -msgstr "Seleccione <emph>Ayuda - Información sobre $[officename]</emph>. Se abrirá un diálogo con información sobre el programa." +msgstr "Vaya a <emph>Ayuda ▸ Acerca de $[officename]</emph>. Se abrirá un cuadro de diálogo con información sobre el programa." #: version_number.xhp msgctxt "" @@ -19432,7 +19432,7 @@ "par_idN10757\n" "help.text" msgid "<link href=\"text/shared/02/01170000.xhp\">Form Controls toolbar</link>" -msgstr "<link href=\"text/shared/02/01170000.xhp\">Barra de herramientas Campos de control de formulario</link>" +msgstr "<link href=\"text/shared/02/01170000.xhp\">Barra de herramientas Controles de formulario</link>" #: xforms.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/es/helpcontent2/source/text/shared/optionen.po libreoffice-5.1.2~rc2/translations/source/es/helpcontent2/source/text/shared/optionen.po --- libreoffice-5.1.1~rc2/translations/source/es/helpcontent2/source/text/shared/optionen.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/es/helpcontent2/source/text/shared/optionen.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "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-22 10:12+0000\n" +"PO-Revision-Date: 2016-03-27 16:57+0000\n" "Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: es\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1456135967.000000\n" +"X-POOTLE-MTIME: 1459097831.000000\n" #: 01000000.xhp msgctxt "" @@ -14924,7 +14924,7 @@ "par_id2507201516150422\n" "help.text" msgid "The use of UNO Extended Types in Basic programs can restrain interoperability of the program when executed in other office suites." -msgstr "El uso de tipos extendidos de UNO en sus programas de Basic puede restringir la interoperabilidad cuando los ejecute en otros paquetes de oficina." +msgstr "El uso de tipos extendidos de UNO en sus programas de Basic puede restringir la interoperatividad cuando los ejecute en otros paquetes de oficina." #: BasicIDE.xhp msgctxt "" @@ -16132,7 +16132,7 @@ "par_id8994109\n" "help.text" msgid "When an update is available, an icon in the menu bar displays some explaining text. Click the icon to proceed." -msgstr "Cuando hay una actualización disponible, aparece un icono en la barra de menús con una burbuja de ayuda que contiene texto explicativo. Haga clic en el icono para continuar." +msgstr "Cuando hay una actualización disponible, aparece un icono en la barra de menús que muestra un texto explicativo. Pulse en el icono para continuar." #: online_update.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/es/helpcontent2/source/text/shared.po libreoffice-5.1.2~rc2/translations/source/es/helpcontent2/source/text/shared.po --- libreoffice-5.1.1~rc2/translations/source/es/helpcontent2/source/text/shared.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/es/helpcontent2/source/text/shared.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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-11 00:53+0000\n" +"PO-Revision-Date: 2016-03-27 18:19+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 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1447203210.000000\n" +"X-POOTLE-MTIME: 1459102774.000000\n" #: 3dsettings_toolbar.xhp msgctxt "" @@ -516,7 +516,7 @@ "8\n" "help.text" msgid "<ahelp hid=\".uno:ShowLicense\">Displays the Licensing and Legal information dialog.</ahelp>" -msgstr "<ahelp hid=\".uno:ShowLicense\">Muestra la caja de diálogo de información sobre licenciamiento y legislación</ahelp>" +msgstr "<ahelp hid=\".uno:ShowLicense\">Muestra un cuadro de diálogo con información legal y de la licencia.</ahelp>" #: main0108.xhp msgctxt "" @@ -534,7 +534,7 @@ "8\n" "help.text" msgid "<ahelp hid=\".uno:ShowLicense\">Displays the CREDITS.odt document which lists the names of individuals who have contributed to OpenOffice.org source code (and whose contributions were imported into LibreOffice) or LibreOffice since 2010-09-28.</ahelp>" -msgstr "<ahelp hid=\".uno:ShowLicense\">Muestra el documento CREDITS.odt que detalla los nombres de las personas que han contribuido con el código fuente de OpenOffice.org (contribuciones que se han importado en LibreOffice) o con el código de LibreOffice desde el 28/09/2010.</ahelp>" +msgstr "<ahelp hid=\".uno:ShowLicense\">Muestra el documento CREDITS.odt que detalla los nombres de las personas que han contribuido con el código fuente de OpenOffice.org (contribuciones que se han importado en LibreOffice) o directamente con LibreOffice desde el 28 de septiembre de 2010.</ahelp>" #: main0108.xhp msgctxt "" @@ -542,7 +542,7 @@ "hd_id2926419\n" "help.text" msgid "<link href=\"text/shared/01/online_update.xhp\">Check for Updates</link>" -msgstr "<link href=\"text/shared/01/online_update.xhp\">Comprobar actualizaciones</link>" +msgstr "<link href=\"text/shared/01/online_update.xhp\">Buscar actualizaciones</link>" #: main0108.xhp msgctxt "" @@ -568,7 +568,7 @@ "8\n" "help.text" msgid "<ahelp hid=\".uno:About\">Displays general program information such as version number and copyrights.</ahelp>" -msgstr "<ahelp hid=\".uno:About\">Muestra información general del programa, como el número de versión y los copyrights.</ahelp>" +msgstr "<ahelp hid=\".uno:About\">Muestra información general del programa, como el número de versión y los derechos de autor.</ahelp>" #: main0201.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/es/helpcontent2/source/text/simpress/00.po libreoffice-5.1.2~rc2/translations/source/es/helpcontent2/source/text/simpress/00.po --- libreoffice-5.1.1~rc2/translations/source/es/helpcontent2/source/text/simpress/00.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/es/helpcontent2/source/text/simpress/00.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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-11 02:00+0000\n" +"PO-Revision-Date: 2016-03-27 16:57+0000\n" "Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: es\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1447207246.000000\n" +"X-POOTLE-MTIME: 1459097837.000000\n" #: 00000004.xhp msgctxt "" @@ -237,7 +237,7 @@ "par_id8695944\n" "help.text" msgid "<variable id=\"gluebar\">Click the <emph>Glue Points</emph> icon on the Drawing Bar </variable>" -msgstr "<variable id=\"gluebar\">Haga clic en el icono <emph>Puntos de adhesión</emph> de la barra Dibujo </variable>" +msgstr "<variable id=\"gluebar\">Pulse en el icono <emph>Puntos de adhesión</emph> de la barra Dibujo </variable>" #: 00000403.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/es/helpcontent2/source/text/simpress/01.po libreoffice-5.1.2~rc2/translations/source/es/helpcontent2/source/text/simpress/01.po --- libreoffice-5.1.1~rc2/translations/source/es/helpcontent2/source/text/simpress/01.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/es/helpcontent2/source/text/simpress/01.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "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-01-12 03:46+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2016-03-27 16:57+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 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1452570406.000000\n" +"X-POOTLE-MTIME: 1459097843.000000\n" #: 01170000.xhp msgctxt "" @@ -1787,7 +1787,7 @@ "5\n" "help.text" msgid "Click the <emph>Slide Show</emph> icon on the <emph>Presentation</emph> toolbar." -msgstr "Haga clic en el icono <emph>Presentación</emph> de la barra de herramientas <emph>Presentación</emph>." +msgstr "Pulse en el icono <emph>Presentación</emph> de la barra de herramientas <emph>Presentación</emph>." #: 03130000.xhp msgctxt "" @@ -4173,7 +4173,7 @@ "3\n" "help.text" msgid "This command is only available if the cursor is in a table." -msgstr "Este comando sólo está disponible si el cursor esta en la tabla ." +msgstr "Esta orden solo está disponible si el cursor se encuentra dentro de una tabla." #: 05120500m.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/es/helpcontent2/source/text/simpress/guide.po libreoffice-5.1.2~rc2/translations/source/es/helpcontent2/source/text/simpress/guide.po --- libreoffice-5.1.1~rc2/translations/source/es/helpcontent2/source/text/simpress/guide.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/es/helpcontent2/source/text/simpress/guide.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-27 17:24+0000\n" "Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: es\n" @@ -14,7 +14,7 @@ "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: 1459099491.000000\n" #: 3d_create.xhp msgctxt "" @@ -347,7 +347,7 @@ "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 @@ "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 @@ "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 "" @@ -2778,7 +2778,7 @@ "par_id7036957\n" "help.text" msgid "Layers do not determine the stacking order of objects on your page, except for the <emph>Controls</emph> layer which is always in front of other layers." -msgstr "Las capas no determinan el orden de apilado de los objetos en la página, excepto la capa <emph>Campos de control</emph>, que siempre va delante de las otras capas." +msgstr "Las capas no determinan el orden de apilamiento de los objetos en la página, excepto la capa <emph>Controles</emph>, que siempre va delante de las otras capas." #: layers.xhp msgctxt "" @@ -2857,7 +2857,7 @@ "18\n" "help.text" msgid "The <emph>Controls</emph> layer can be used for buttons that have been assigned an action, but that should not be printed. Set the layer's properties to not printable. Objects on the <emph>Controls</emph> layer are always in front of objects on other layers." -msgstr "La capa <emph>Controles</emph> se puede utilizar para los botones a los que se ha asignado una acción pero que no se deben imprimir. Configure las propiedades de la capa como no imprimibles. Los objetos de la capa <emph>Campos de control</emph> siempre están delante de los objetos en otras capas." +msgstr "La capa <emph>Controles</emph> se puede utilizar para los botones a los que se ha asignado una acción pero que no se deben imprimir. Configure las propiedades de la capa como no imprimibles. Los objetos de la capa <emph>Controles</emph> siempre están delante de los objetos en otras capas." #: layers.xhp msgctxt "" @@ -3145,7 +3145,7 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 -Nru libreoffice-5.1.1~rc2/translations/source/es/helpcontent2/source/text/smath/01.po libreoffice-5.1.2~rc2/translations/source/es/helpcontent2/source/text/smath/01.po --- libreoffice-5.1.1~rc2/translations/source/es/helpcontent2/source/text/smath/01.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/es/helpcontent2/source/text/smath/01.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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-15 00:21+0000\n" +"PO-Revision-Date: 2016-02-25 14:10+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 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1452817276.000000\n" +"X-POOTLE-MTIME: 1456409446.000000\n" #: 02080000.xhp msgctxt "" @@ -304,7 +304,7 @@ "2\n" "help.text" msgid "<ahelp hid=\"SID_DRAW\">This command updates the formula in the document window.</ahelp>" -msgstr "<ahelp hid=\"SID_DRAW\">Este comando actualiza la fórmula en la ventana del documento.</ahelp>" +msgstr "<ahelp hid=\"SID_DRAW\">Esta orden actualiza la fórmula en la ventana del documento.</ahelp>" #: 03070000.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/es/helpcontent2/source/text/swriter/00.po libreoffice-5.1.2~rc2/translations/source/es/helpcontent2/source/text/swriter/00.po --- libreoffice-5.1.1~rc2/translations/source/es/helpcontent2/source/text/swriter/00.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/es/helpcontent2/source/text/swriter/00.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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 @@ "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 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/es/helpcontent2/source/text/swriter/01.po libreoffice-5.1.2~rc2/translations/source/es/helpcontent2/source/text/swriter/01.po --- libreoffice-5.1.1~rc2/translations/source/es/helpcontent2/source/text/swriter/01.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/es/helpcontent2/source/text/swriter/01.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-27 18: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 @@ "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: 1459102574.000000\n" #: 01120000.xhp msgctxt "" @@ -2250,7 +2250,7 @@ "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 @@ "47\n" "help.text" msgid "File system" -msgstr "En el sistema de archivos" +msgstr "Sistema de archivos" #: 02120000.xhp msgctxt "" @@ -2277,7 +2277,7 @@ "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 @@ "49\n" "help.text" msgid "Internet" -msgstr "En Internet" +msgstr "Internet" #: 02120000.xhp msgctxt "" @@ -2295,7 +2295,7 @@ "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 @@ "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 "" @@ -5579,7 +5578,7 @@ "37\n" "help.text" msgid "<ahelp hid=\"modules/swriter/ui/envformatpage/format\">Select the envelope size that want, or select \"User Defined\", and then enter the width and the height of the custom size.</ahelp>" -msgstr "<ahelp hid=\"modules/swriter/ui/envformatpage/format\">Elija el tamaño del sobre que requiera, o seleccione “Definido por el usuario†e ingrese el largo y ancho correspondientes.</ahelp>" +msgstr "<ahelp hid=\"modules/swriter/ui/envformatpage/format\">Elija el tamaño del sobre que necesite, o bien, seleccione «Definido por el usuario» y proporcione la anchura y la altura.</ahelp>" #: 04070200.xhp msgctxt "" @@ -9241,7 +9240,7 @@ "20\n" "help.text" msgid "The condition is always met. You can also enter any value not equal to 0 as the conditional text." -msgstr "La condición se cumple siempre. Otra alternativa consiste en introducir cualquier valor distinto a 0, como texto de condición." +msgstr "La condición se cumple siempre. Otra alternativa consiste en introducir cualquier valor distinto de 0, como texto de condición." #: 04090200.xhp msgctxt "" @@ -10597,7 +10596,7 @@ "25\n" "help.text" msgid "<ahelp hid=\"modules/swriter/ui/indexentry/mainentrycb\">Makes the selected text the main entry in an alphabetical index.</ahelp> $[officename] displays the page number of the main entry in a different format than the other entries in the index." -msgstr "<ahelp hid=\"modules/swriter/ui/indexentry/mainentrycb\">Convierte el texto seleccionado en entrada principal de un índice alfabético.</ahelp> $[officename] muestra el número de la página de la entrada principal en un formato distinto al de las otras entradas del índice." +msgstr "<ahelp hid=\"modules/swriter/ui/indexentry/mainentrycb\">Convierte el texto seleccionado en entrada principal de un índice alfabético.</ahelp> $[officename] muestra el número de la página de la entrada principal en un formato distinto del de las otras entradas del índice." #: 04120100.xhp msgctxt "" @@ -16317,7 +16316,7 @@ "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 "<ahelp hid=\".\">Añade una cuadrícula de texto al estilo de página actual. Esta opción sólo está disponible si se activa la compatibilidad con idiomas asiáticos en <emph>Configuración de idioma - Idiomas</emph> en la caja de diálogo de \"Opciones\".</ahelp>" +msgstr "<ahelp hid=\".\">Añade una cuadrícula de texto al estilo de página actual. Esta opción está disponible solo si se activa la compatibilidad con idiomas asiáticos en <emph>Opciones â–¸ Configuración de idioma â–¸ Idiomas</emph>.</ahelp>" #: 05040800.xhp msgctxt "" @@ -23606,7 +23605,7 @@ "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 -Nru libreoffice-5.1.1~rc2/translations/source/es/helpcontent2/source/text/swriter/02.po libreoffice-5.1.2~rc2/translations/source/es/helpcontent2/source/text/swriter/02.po --- libreoffice-5.1.1~rc2/translations/source/es/helpcontent2/source/text/swriter/02.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/es/helpcontent2/source/text/swriter/02.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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-25 18:38+0000\n" +"PO-Revision-Date: 2016-03-27 17:25+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 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1448476713.000000\n" +"X-POOTLE-MTIME: 1459099503.000000\n" #: 02110000.xhp msgctxt "" @@ -2968,7 +2968,7 @@ "136\n" "help.text" msgid "not equal to 0" -msgstr "diferente a 0" +msgstr "diferente de 0" #: 14020000.xhp msgctxt "" @@ -3287,7 +3287,7 @@ "par_idN10768\n" "help.text" msgid "<link href=\"text/shared/02/01170000.xhp\">Controls</link>" -msgstr "<link href=\"text/shared/02/01170000.xhp\">Campos de control de formulario</link>" +msgstr "<link href=\"text/shared/02/01170000.xhp\">Controles</link>" #: 18010000.xhp msgctxt "" @@ -3295,7 +3295,7 @@ "par_idN107ED\n" "help.text" msgid "The Controls icon opens a toolbar with the tools that you need to create an interactive form." -msgstr "El ícono Campos de control del formulario abre una barra de herramientas con las herramientas necesarias para crear un formulario interactivo." +msgstr "El icono Controles de formulario abre una barra de herramientas con las herramientas necesarias para crear un formulario interactivo." #: 18010000.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/es/helpcontent2/source/text/swriter/04.po libreoffice-5.1.2~rc2/translations/source/es/helpcontent2/source/text/swriter/04.po --- libreoffice-5.1.1~rc2/translations/source/es/helpcontent2/source/text/swriter/04.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/es/helpcontent2/source/text/swriter/04.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 @@ "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 @@ "31\n" "help.text" msgid "Field shadings on / off" -msgstr "Activar/desactivar marcas" +msgstr "Activar o desactivar marcas de campos" #: 01020000.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/es/helpcontent2/source/text/swriter/guide.po libreoffice-5.1.2~rc2/translations/source/es/helpcontent2/source/text/swriter/guide.po --- libreoffice-5.1.1~rc2/translations/source/es/helpcontent2/source/text/swriter/guide.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/es/helpcontent2/source/text/swriter/guide.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-27 23:01+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 @@ "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: 1459119680.000000\n" #: anchor_object.xhp msgctxt "" @@ -4017,7 +4017,7 @@ "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 @@ "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 @@ "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 "" @@ -7340,7 +7340,7 @@ "par_id5640125\n" "help.text" msgid "If your text is <link href=\"text/swriter/guide/using_hyphen.xhp\">automatically hyphenated</link> and certain hyphenated words look ugly, or if you want specific words never to be hyphenated you can switch off hyphenation for those words:" -msgstr "Si su texto es <link href=\"text/swriter/guide/using_hyphen.xhp\">automáticamente divido con guiones</link> y determinadas palabras con guiones se ven feas, o si quiere que palabras especificas nunca sean separadas por guiones usted puede desactivar esta opción:" +msgstr "Si la <link href=\"text/swriter/guide/using_hyphen.xhp\">división de palabras automática</link> produce resultados desagradables en algunas palabras, o bien si quiere que la función no separe ciertas palabras, es posible excluir esas palabras de la división:" #: hyphen_prevent.xhp msgctxt "" @@ -7376,7 +7376,7 @@ "42\n" "help.text" msgid "In the<emph> Word</emph> box, type the word you want to exclude from hyphenation, followed by an equal sign (=), for example, \"pretentious=\"." -msgstr "En el cuadro <emph>Palabra</emph>, escriba la palabra que desee excluir de la división, seguida de un signo de igual (=), por ejemplo, \"pretencioso=\"." +msgstr "En el cuadro <emph>Palabra</emph>, escriba la palabra que quiera excluir de la división, seguida de un signo de igual (=), por ejemplo, «pomposo=»." #: hyphen_prevent.xhp msgctxt "" @@ -7573,7 +7573,7 @@ "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 "" @@ -8256,7 +8256,7 @@ "73\n" "help.text" msgid "In the <item type=\"menuitem\">Insert Bibliography Entry</item> dialog, click <item type=\"menuitem\">Insert</item>, and then <item type=\"menuitem\">Close</item>." -msgstr "En el cuadro de diálogo <item type=\"menuitem\">Insertar entrada de bibliografía</item> , haga clic en <item type=\"menuitem\">Insertar</item> y, a continuación en <item type=\"menuitem\">Cerrar</item>." +msgstr "En el cuadro de diálogo <item type=\"menuitem\">Insertar entrada bibliográfica</item>, pulse en <item type=\"menuitem\">Insertar</item> y, a continuación, en <item type=\"menuitem\">Cerrar</item>." #: indices_literature.xhp msgctxt "" @@ -11177,7 +11177,7 @@ "par_id9681997\n" "help.text" msgid "Click the <emph>Page</emph> tab." -msgstr "Haga clic en la ficha <emph>Página</emph>." +msgstr "Pulse en la pestaña <emph>Página</emph>." #: pageorientation.xhp msgctxt "" @@ -11185,7 +11185,7 @@ "par_id7994323\n" "help.text" msgid "Under <item type=\"menuitem\">Paper format</item>, select “Portrait†or “Landscapeâ€." -msgstr "En <item type=\"menuitem\">Formato del papel</item>, seleccione “Vertical†u“Horizontalâ€." +msgstr "En <item type=\"menuitem\">Formato de papel</item> seleccione «Vertical» u «Horizontal»." #: pageorientation.xhp msgctxt "" @@ -11249,7 +11249,7 @@ "par_idN10741\n" "help.text" msgid "Click the <emph>Page Styles</emph> icon." -msgstr "Haga clic en el símbolo <emph>Estilos de página</emph>." +msgstr "Pulse en el icono <emph>Estilos de página</emph>." #: pageorientation.xhp msgctxt "" @@ -11281,7 +11281,7 @@ "par_idN10775\n" "help.text" msgid "Click the <emph>Page</emph> tab." -msgstr "Haga clic en la ficha <emph>Página</emph>." +msgstr "Pulse en la pestaña <emph>Página</emph>." #: pageorientation.xhp msgctxt "" @@ -11289,7 +11289,7 @@ "par_idN1077D\n" "help.text" msgid "Under <item type=\"menuitem\">Paper format</item>, select “Portrait†or “Landscapeâ€." -msgstr "En <item type=\"menuitem\">Formato del papel</item>, seleccione “Vertical†u“Horizontalâ€." +msgstr "En <item type=\"menuitem\">Formato de papel</item> seleccione «Vertical» u «Horizontal»." #: pageorientation.xhp msgctxt "" @@ -11951,7 +11951,7 @@ "8\n" "help.text" msgid "Click the <item type=\"menuitem\">Page Styles</item> icon." -msgstr "Haga clic en el símbolo <item type=\"menuitem\">Estilos de página</item> ." +msgstr "Pulse en el icono <item type=\"menuitem\">Estilos de página</item>." #: printer_tray.xhp msgctxt "" @@ -12690,7 +12690,7 @@ "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 "" @@ -14238,7 +14238,7 @@ "33\n" "help.text" msgid "Click the icon of the style category that you want to apply." -msgstr "Haga clic en el símbolo de la categoría de estilo que desee aplicar." +msgstr "Pulse en el icono de la categoría de estilo que desee aplicar." #: stylist_fillformat.xhp msgctxt "" @@ -14326,7 +14326,7 @@ "42\n" "help.text" msgid "Click the icon of the style category that you want to create." -msgstr "Haga clic en el símbolo de la categoría de estilo que desee crear." +msgstr "Pulse en el icono de la categoría de estilo que desee crear." #: stylist_fromselect.xhp msgctxt "" @@ -14389,7 +14389,7 @@ "45\n" "help.text" msgid "Click the icon of the style category that you want to create." -msgstr "Haga clic en el símbolo de la categoría de estilo que desee crear." +msgstr "Pulse en el icono de la categoría de estilo que desee crear." #: stylist_fromselect.xhp msgctxt "" @@ -14475,7 +14475,7 @@ "47\n" "help.text" msgid "Click the icon of the style category that you want to update." -msgstr "Haga clic en el símbolo de la categoría de estilo que desee actualizar." +msgstr "Pulse en el icono de la categoría de estilo que desee actualizar." #: stylist_update.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/es/instsetoo_native/inc_openoffice/windows/msi_languages.po libreoffice-5.1.2~rc2/translations/source/es/instsetoo_native/inc_openoffice/windows/msi_languages.po --- libreoffice-5.1.1~rc2/translations/source/es/instsetoo_native/inc_openoffice/windows/msi_languages.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/es/instsetoo_native/inc_openoffice/windows/msi_languages.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 -Nru libreoffice-5.1.1~rc2/translations/source/es/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-5.1.2~rc2/translations/source/es/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-5.1.1~rc2/translations/source/es/officecfg/registry/data/org/openoffice/Office/UI.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/es/officecfg/registry/data/org/openoffice/Office/UI.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-27 17:25+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 @@ "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: 1459099516.000000\n" #: BaseWindowState.xcu msgctxt "" @@ -3335,7 +3335,7 @@ "Label\n" "value.text" msgid "~Sheet" -msgstr "~Hoja" +msgstr "H~oja" #: CalcCommands.xcu msgctxt "" @@ -3407,7 +3407,7 @@ "Label\n" "value.text" msgid "~Sheet" -msgstr "~Hoja" +msgstr "H~oja" #: CalcCommands.xcu msgctxt "" @@ -3632,7 +3632,7 @@ "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 @@ "UIName\n" "value.text" msgid "Text Box Formatting" -msgstr "Formato del cuadro de texto" +msgstr "Formato de cuadro de texto" #: DrawWindowState.xcu msgctxt "" @@ -12443,7 +12443,7 @@ "Name\n" "value.text" msgid "Controls" -msgstr "Campos de control" +msgstr "Controles" #: GenericCommands.xcu msgctxt "" @@ -18412,7 +18412,7 @@ "Label\n" "value.text" msgid "Controls" -msgstr "Campos de control" +msgstr "Controles" #: GenericCommands.xcu msgctxt "" @@ -20266,7 +20266,7 @@ "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 @@ "Label\n" "value.text" msgid "Fie~ld Shadings" -msgstr "~Marcas" +msgstr "~Marcar campos" #: WriterCommands.xcu msgctxt "" @@ -26098,7 +26098,7 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "UIName\n" "value.text" msgid "Text Box Formatting" -msgstr "Formato del cuadro de texto" +msgstr "Formato de cuadro de texto" #: XFormsWindowState.xcu msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/es/sc/source/ui/src.po libreoffice-5.1.2~rc2/translations/source/es/sc/source/ui/src.po --- libreoffice-5.1.1~rc2/translations/source/es/sc/source/ui/src.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/es/sc/source/ui/src.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\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-16 12:57+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 @@ "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: 1458133040.000000\n" #: condformatdlg.src msgctxt "" @@ -5383,7 +5383,7 @@ "\n" "Do you want to recalculate all formula cells in this document now?" msgstr "" -"Este documento se guardó por última vez con una aplicación diferente a %PRODUCTNAME. Algunas celdas con fórmulas podrían producir resultados diferentes al recalcularlas.\n" +"Este documento se guardó por última vez con una aplicación distinta de %PRODUCTNAME. Algunas celdas con fórmulas podrían producir resultados diferentes al recalcularlas.\n" "\n" "¿Quiere recalcular ahora todas las celdas con fórmulas de este documento?" @@ -6105,7 +6105,7 @@ "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 -Nru libreoffice-5.1.1~rc2/translations/source/es/scaddins/source/analysis.po libreoffice-5.1.2~rc2/translations/source/es/scaddins/source/analysis.po --- libreoffice-5.1.1~rc2/translations/source/es/scaddins/source/analysis.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/es/scaddins/source/analysis.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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-14 22:44+0000\n" +"PO-Revision-Date: 2016-02-24 21:49+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 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1452811444.000000\n" +"X-POOTLE-MTIME: 1456350558.000000\n" #: analysis.src msgctxt "" @@ -198,7 +198,7 @@ "This function exists for interoperability with older Microsoft Excel documents, for new documents use WEEKNUM instead." msgstr "" "Devuelve el número de la semana del calendario en que ocurre la fecha especificada.\n" -"Esta función existe por motivos de interoperabilidad con documentos antiguos de Microsoft Excel. Para documentos nuevos utilice NUM.DE.SEMANA." +"Esta función existe por motivos de interoperatividad con documentos antiguos de Microsoft Excel. Para documentos nuevos utilice NUM.DE.SEMANA." #: analysis.src msgctxt "" @@ -292,7 +292,7 @@ "This function exists for interoperability with older Microsoft Excel documents, for new documents use NETWORKDAYS instead." msgstr "" "Devuelve la cantidad de días laborables entre dos fechas.\n" -"Esta función existe por motivos de interoperabilidad con documentos antiguos de Microsoft Excel. Para documentos nuevos utilice DIAS.LAB." +"Esta función existe por motivos de interoperatividad con documentos antiguos de Microsoft Excel. Para documentos nuevos utilice DIAS.LAB." #: analysis.src msgctxt "" @@ -683,7 +683,7 @@ "This function exists for interoperability with older Microsoft Excel documents, for new documents use GCD instead." msgstr "" "Devuelve el máximo común divisor.\n" -"Esta función existe por motivos de interoperabilidad con documentos antiguos de Microsoft Excel. Para documentos nuevos utilice M.C.D." +"Esta función existe por motivos de interoperatividad con documentos antiguos de Microsoft Excel. Para documentos nuevos utilice M.C.D." #: analysis.src msgctxt "" @@ -714,7 +714,7 @@ "This function exists for interoperability with older Microsoft Excel documents, for new documents use LCM instead." msgstr "" "Devuelve el mínimo común múltiplo.\n" -"Esta función existe por motivos de interoperabilidad con documentos antiguos de Microsoft Excel. Para documentos nuevos utilice M.C.M." +"Esta función existe por motivos de interoperatividad con documentos antiguos de Microsoft Excel. Para documentos nuevos utilice M.C.M." #: analysis.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/es/svx/source/svdraw.po libreoffice-5.1.2~rc2/translations/source/es/svx/source/svdraw.po --- libreoffice-5.1.1~rc2/translations/source/es/svx/source/svdraw.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/es/svx/source/svdraw.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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-18 09:48+0000\n" +"PO-Revision-Date: 2016-03-27 17:25+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 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1453110528.000000\n" +"X-POOTLE-MTIME: 1459099521.000000\n" #: svdstr.src msgctxt "" @@ -886,7 +886,7 @@ "STR_ObjNamePluralUno\n" "string.text" msgid "Controls" -msgstr "Campos de control" +msgstr "Controles" #: svdstr.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/es/sw/uiconfig/swriter/ui.po libreoffice-5.1.2~rc2/translations/source/es/sw/uiconfig/swriter/ui.po --- libreoffice-5.1.1~rc2/translations/source/es/sw/uiconfig/swriter/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/es/sw/uiconfig/swriter/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 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-07 11:46+0000\n" +"PO-Revision-Date: 2016-03-26 15:01+0000\n" "Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n" "Language-Team: none\n" "Language: es\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1449488814.000000\n" +"X-POOTLE-MTIME: 1459004498.000000\n" #: abstractdialog.ui msgctxt "" @@ -8808,7 +8808,7 @@ "label\n" "string.text" msgid "Select Starting Document for the Mail Merge" -msgstr "Seleccionar documento inicial para combinar correspondencia" +msgstr "Seleccione un documento inicial para combinar correspondencia" #: mmsendmails.ui msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/es/uui/source.po libreoffice-5.1.2~rc2/translations/source/es/uui/source.po --- libreoffice-5.1.1~rc2/translations/source/es/uui/source.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/es/uui/source.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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 22:24+0000\n" +"PO-Revision-Date: 2016-02-26 23:10+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 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1435357471.000000\n" +"X-POOTLE-MTIME: 1456528200.000000\n" #: alreadyopen.src msgctxt "" @@ -35,7 +35,7 @@ "Open document read-only, or ignore own file locking and open the document for editing.\n" "\n" msgstr "" -"El documento «$(ARG1)» está bloqueado para evitar su edición por usted en un sistema diferente desde $(ARG2)\n" +"Ha bloqueado el documento «$(ARG1)» para evitar su edición desde el $(ARG2) en otro sistema\n" "\n" "Abra el documento en modo de solo lectura, o ignore su propio bloqueo y abra el documento para su edición.\n" "\n" @@ -67,9 +67,9 @@ "Close document on other system and retry saving or ignore own file locking and save current document.\n" "\n" msgstr "" -"El documento «$(ARG1)» está bloqueado para evitar su edición por usted en un sistema diferente desde $(ARG2)\n" +"Ha bloqueado el documento «$(ARG1)» para evitar su edición desde el $(ARG2) en otro sistema\n" "\n" -"Cierre el documento en el otro sistema y reintente el guardado o ignore su propio bloqueo y guarde el documento actual.\n" +"Cierre el documento en el otro sistema e intente guardarlo otra vez, o ignore su propio bloqueo y guarde el documento actual.\n" "\n" #: alreadyopen.src diff -Nru libreoffice-5.1.1~rc2/translations/source/es/vcl/source/src.po libreoffice-5.1.2~rc2/translations/source/es/vcl/source/src.po --- libreoffice-5.1.1~rc2/translations/source/es/vcl/source/src.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/es/vcl/source/src.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\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-02-14 15:09+0000\n" -"Last-Translator: Juan C. Sanz <juancsanzc@hotmail.com>\n" +"PO-Revision-Date: 2016-02-24 21:05+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 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1455462580.000000\n" +"X-POOTLE-MTIME: 1456347917.000000\n" #: app.src msgctxt "" @@ -54,7 +54,7 @@ "SV_APP_DEFAULT\n" "string.text" msgid "default" -msgstr "por defecto" +msgstr "predeterminado" #. This is used on buttons for platforms other than windows, there should be a ~ mnemonic in this string #: btntext.src diff -Nru libreoffice-5.1.1~rc2/translations/source/et/helpcontent2/source/text/scalc/01.po libreoffice-5.1.2~rc2/translations/source/et/helpcontent2/source/text/scalc/01.po --- libreoffice-5.1.1~rc2/translations/source/et/helpcontent2/source/text/scalc/01.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/et/helpcontent2/source/text/scalc/01.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "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 @@ "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 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/eu/basctl/uiconfig/basicide/ui.po libreoffice-5.1.2~rc2/translations/source/eu/basctl/uiconfig/basicide/ui.po --- libreoffice-5.1.1~rc2/translations/source/eu/basctl/uiconfig/basicide/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/eu/basctl/uiconfig/basicide/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: LibO 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-08-09 08:39+0000\n" -"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n" +"PO-Revision-Date: 2016-02-26 12:13+0000\n" +"Last-Translator: Osoitz <oelkoro@gmail.com>\n" "Language-Team: none\n" "Language: eu\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1439109546.000000\n" +"X-POOTLE-MTIME: 1456488805.000000\n" #: basicmacrodialog.ui msgctxt "" @@ -446,7 +446,7 @@ "label\n" "string.text" msgid "The default language is used if no localization for a user interface locale is present. Furthermore all strings from the default language are copied to resources of newly added languages." -msgstr "Hizkuntza lehenetsia erabiliko da erabiltzaile-interfazearen hizkuntzarako lokalizaziorik ez bagado. Hizkuntza lehenetsiaren kate guztiak berriki gehitutako hizkuntzen baliabideetara kopiatuko dira." +msgstr "Hizkuntza lehenetsia erabiliko da erabiltzaile-interfazearen hizkuntzarako lokalizaziorik ez badago. Hizkuntza lehenetsiaren kate guztiak berriki gehitutako hizkuntzen baliabideetara kopiatuko dira." #: managelanguages.ui msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/eu/basic/source/classes.po libreoffice-5.1.2~rc2/translations/source/eu/basic/source/classes.po --- libreoffice-5.1.1~rc2/translations/source/eu/basic/source/classes.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/eu/basic/source/classes.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 11:08+0000\n" +"PO-Revision-Date: 2016-02-26 20:11+0000\n" "Last-Translator: Osoitz <oelkoro@gmail.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: eu\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1456312139.000000\n" +"X-POOTLE-MTIME: 1456517510.000000\n" #: sb.src msgctxt "" @@ -179,7 +179,6 @@ msgstr "Errorea DLL fitxategia kargatzean." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -234,7 +233,6 @@ msgstr "Fitxategia jadanik irekita dago." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -271,7 +269,6 @@ msgstr "Disketea edo disko gogorra beteta." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -335,7 +332,6 @@ msgstr "Ez dago inplementatuta." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -345,7 +341,6 @@ msgstr "Ezin da izena aldatu unitate batetik bestera." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -355,7 +350,6 @@ msgstr "Errorea bide-izena/fitxategia atzitzean." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -383,7 +377,6 @@ msgstr "Kate-eredu baliogabea." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -411,7 +404,6 @@ msgstr "DDE konexioaren erantzunaren zain." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -421,7 +413,6 @@ msgstr "Ez dago DDE kanalik erabilgarri." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -431,7 +422,6 @@ msgstr "Aplikazio batek ere ez du erantzun DDE konexioa ezartzeko." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -441,7 +431,6 @@ msgstr "Aplikazio gehiegik erantzun dute DDE konexioa ezartzeko." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -451,7 +440,6 @@ msgstr "DDE kanala blokeatuta." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -461,7 +449,6 @@ msgstr "Kanpoko aplikazioak ezin du DDE eragiketa exekutatu." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -471,7 +458,6 @@ msgstr "Denbora-muga gainditu da DDEren erantzunaren zain." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -481,7 +467,6 @@ msgstr "Erabiltzaileak IHES sakatu du DDE eragiketan zehar." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -491,7 +476,6 @@ msgstr "Kanpoko aplikazioa ez dago prest." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -501,7 +485,6 @@ msgstr "DDE eragiketa daturik gabe." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -511,7 +494,6 @@ msgstr "Datuak okerreko formatuan daude." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -521,7 +503,6 @@ msgstr "Kanpoko aplikazioa amaitu egin dute." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -531,7 +512,6 @@ msgstr "DDE konexioa etenda edo aldatuta." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -541,7 +521,6 @@ msgstr "DDE metodoa kanal irekirik gabe deitu da." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -551,7 +530,6 @@ msgstr "DDE esteka-formatua ez da baliozkoa." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -561,7 +539,6 @@ msgstr "DDE mezua galdu egin da." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -571,7 +548,6 @@ msgstr "Esteka dagoeneko itsatsita." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -581,7 +557,6 @@ msgstr "Esteka modua ezin da ezarri, esteka-gaia baliogabea baita." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -591,7 +566,6 @@ msgstr "DDEk DDEML.DLL fitxategia behar du." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -601,7 +575,6 @@ msgstr "Modulua ezin da kargatu; formatu baliogabea." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -611,7 +584,6 @@ msgstr "Baliogabeko objektu-indizea." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -630,7 +602,6 @@ msgstr "Okerreko propietate-balioa." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -640,7 +611,6 @@ msgstr "Propietate hau soilik irakurtzekoa da." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -650,7 +620,6 @@ msgstr "Propietate hau soilik idaztekoa da." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -660,7 +629,6 @@ msgstr "Baliogabeko objektu-erreferentzia." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -670,7 +638,6 @@ msgstr "Ez da propietate edo metodoa aurkitu: $(ARG1)." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -680,7 +647,6 @@ msgstr "Objektua behar da." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -690,7 +656,6 @@ msgstr "Objektu baten okerreko erabilera." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -700,7 +665,6 @@ msgstr "Objektu honek ez du OLE automatizazioa onartzen." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -710,7 +674,6 @@ msgstr "Objektu honek ez du propietate edo metodo hori onartzen." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -720,7 +683,6 @@ msgstr "OLE automatizazio-errorea." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -730,7 +692,6 @@ msgstr "Aipatutako objektuak ez du ekintza hori onartzen." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -740,7 +701,6 @@ msgstr "Aipatutako objektuak ez ditu argumentu izendatuak onartzen." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -750,7 +710,6 @@ msgstr "Aipatutako objektuak ez du uneko ezarpen lokala onartzen." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -760,7 +719,6 @@ msgstr "Argumentu izendatua ez da aurkitu." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -770,7 +728,6 @@ msgstr "Argumentua ez da aukerakoa." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -780,7 +737,6 @@ msgstr "Argumentuen kopuru baliogabea." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -790,7 +746,6 @@ msgstr "Objektua ez da zerrenda." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -800,7 +755,6 @@ msgstr "Baliogabeko zenbaki ordinala." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -810,7 +764,6 @@ msgstr "Adierazitako DLL funtzioa ez da aurkitu." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -820,7 +773,6 @@ msgstr "Baliogabeko arbel-formatua." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -830,7 +782,6 @@ msgstr "Objektuak ez du propietate hori." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -840,7 +791,6 @@ msgstr "Objektuak ez du metodo hori." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -850,7 +800,6 @@ msgstr "Beharrezko argumentua falta da." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -860,7 +809,6 @@ msgstr "Argumentuen kopuru baliogabea." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -870,27 +818,24 @@ msgstr "Errorea metodo bat exekutatzean." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" "ERRCODE_BASIC_SETPROP_FAILED & ERRCODE_RES_MASK\n" "string.text" msgid "Unable to set property." -msgstr "Propietatea ezin da ezarri." +msgstr "Ezin izan da propietatea ezarri." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" "ERRCODE_BASIC_GETPROP_FAILED & ERRCODE_RES_MASK\n" "string.text" msgid "Unable to determine property." -msgstr "Propietatea ezin da zehaztu." +msgstr "Ezin izan da propietatea zehaztu." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -900,7 +845,6 @@ msgstr "Ustekabeko ikurra: $(ARG1)." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -910,7 +854,6 @@ msgstr "Espero dena: $(ARG1)." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -920,7 +863,6 @@ msgstr "Ikurra espero zen." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -930,7 +872,6 @@ msgstr "Aldagaia espero zen." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -940,7 +881,6 @@ msgstr "Etiketa espero zen." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -950,7 +890,6 @@ msgstr "Balioa ezin da aplikatu." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -960,7 +899,6 @@ msgstr "Jada definituta dago $(ARG1) aldagaia." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -970,7 +908,6 @@ msgstr "Jada definituta dago $(ARG1) azpiprozedura edo funtzio-prozedura." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -980,7 +917,6 @@ msgstr "Jada definituta dago $(ARG1) etiketa." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -990,7 +926,6 @@ msgstr "Ez da aurkitu $(ARG1) aldagaia." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -1000,7 +935,6 @@ msgstr "Ez da aurkitu $(ARG1) matrizea edo prozedura." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -1010,7 +944,6 @@ msgstr "Ez da aurkitu $(ARG1) prozedura." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -1020,7 +953,6 @@ msgstr "$(ARG1) etiketa ez dago definituta." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -1030,7 +962,6 @@ msgstr "Datu mota ezezaguna $(ARG1)." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -1040,7 +971,6 @@ msgstr "Exit $(ARG1) espero zen." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -1050,7 +980,6 @@ msgstr "Instrukzio-blokea irekita dago: $(ARG1) falta da." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -1060,7 +989,6 @@ msgstr "Parentesiak ez datoz bat." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -1070,7 +998,6 @@ msgstr "Jada beste era batera definituta dago $(ARG1) ikurra." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -1080,7 +1007,6 @@ msgstr "Parametroak ez datoz bat prozedurarekin." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -1090,27 +1016,24 @@ msgstr "Baliogabeko karakterea zenbakian." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" "ERRCODE_BASIC_MUST_HAVE_DIMS & ERRCODE_RES_MASK\n" "string.text" msgid "Array must be dimensioned." -msgstr "Taulari neurriak eman behar zaizkio." +msgstr "Matrizeari neurriak eman behar zaizkio." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" "ERRCODE_BASIC_NO_IF & ERRCODE_RES_MASK\n" "string.text" msgid "Else/Endif without If." -msgstr "Else/Endif: If gabe." +msgstr "Else/Endif If gabe." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -1120,7 +1043,6 @@ msgstr "$(ARG1) ez dago baimenduta prozeduraren barnean." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -1130,7 +1052,6 @@ msgstr "$(ARG1) ez dago baimenduta prozeduratik kanpo." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -1140,7 +1061,6 @@ msgstr "Neurri-zehaztapenak ez datoz bat." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -1150,7 +1070,6 @@ msgstr "Aukera ezezaguna: $(ARG1)." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -1160,7 +1079,6 @@ msgstr "$(ARG1) konstantea birdefinituta." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -1170,14 +1088,13 @@ msgstr "Programa handiegia da." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" "ERRCODE_BASIC_NO_STRINGS_ARRAYS & ERRCODE_RES_MASK\n" "string.text" msgid "Strings or arrays not permitted." -msgstr "Kate edo array-rik ez da onartzen." +msgstr "Kateak eta matrizeak ez dira onartzen." #: sb.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/eu/chart2/uiconfig/ui.po libreoffice-5.1.2~rc2/translations/source/eu/chart2/uiconfig/ui.po --- libreoffice-5.1.1~rc2/translations/source/eu/chart2/uiconfig/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/eu/chart2/uiconfig/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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-23 17:44+0000\n" +"PO-Revision-Date: 2016-02-26 15:36+0000\n" "Last-Translator: Osoitz <oelkoro@gmail.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: eu\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1456249492.000000\n" +"X-POOTLE-MTIME: 1456501004.000000\n" #: 3dviewdialog.ui msgctxt "" @@ -1016,7 +1016,6 @@ msgstr "Tabulazioak" #: sidebaraxis.ui -#, fuzzy msgctxt "" "sidebaraxis.ui\n" "checkbutton_show_label\n" @@ -1026,14 +1025,13 @@ msgstr "Erakutsi e_tiketak" #: sidebaraxis.ui -#, fuzzy msgctxt "" "sidebaraxis.ui\n" "checkbutton_reverse\n" "label\n" "string.text" msgid "Reverse direction" -msgstr "A_lderantzizko noranzkoa" +msgstr "Alderantzizko noranzkoa" #: sidebaraxis.ui msgctxt "" @@ -1042,10 +1040,9 @@ "label\n" "string.text" msgid "_Label position:" -msgstr "_Etiketaren kokalekua" +msgstr "_Etiketaren kokalekua:" #: sidebaraxis.ui -#, fuzzy msgctxt "" "sidebaraxis.ui\n" "comboboxtext_label_position\n" @@ -1055,7 +1052,6 @@ msgstr "Ardatzetik hurbil" #: sidebaraxis.ui -#, fuzzy msgctxt "" "sidebaraxis.ui\n" "comboboxtext_label_position\n" @@ -1065,7 +1061,6 @@ msgstr "Ardatzetik hurbil (beste aldea)" #: sidebaraxis.ui -#, fuzzy msgctxt "" "sidebaraxis.ui\n" "comboboxtext_label_position\n" @@ -1075,7 +1070,6 @@ msgstr "Kanpoko hasiera" #: sidebaraxis.ui -#, fuzzy msgctxt "" "sidebaraxis.ui\n" "comboboxtext_label_position\n" @@ -1085,37 +1079,33 @@ msgstr "Kanpoko amaiera" #: sidebaraxis.ui -#, fuzzy msgctxt "" "sidebaraxis.ui\n" "label2\n" "label\n" "string.text" msgid "_Text orientation:" -msgstr "Testu-orientazioa" +msgstr "_Testu-orientazioa:" #: sidebarelements.ui -#, fuzzy msgctxt "" "sidebarelements.ui\n" "checkbutton_subtitle\n" "label\n" "string.text" msgid "Subtitle" -msgstr "A_zpititulua" +msgstr "Azpititulua" #: sidebarelements.ui -#, fuzzy msgctxt "" "sidebarelements.ui\n" "checkbutton_title\n" "label\n" "string.text" msgid "Title" -msgstr "Tituluak" +msgstr "Titulua" #: sidebarelements.ui -#, fuzzy msgctxt "" "sidebarelements.ui\n" "l\n" @@ -1143,7 +1133,6 @@ msgstr "_Kokapena:" #: sidebarelements.ui -#, fuzzy msgctxt "" "sidebarelements.ui\n" "comboboxtext_legend\n" @@ -1153,27 +1142,24 @@ msgstr "Eskuinean" #: sidebarelements.ui -#, fuzzy msgctxt "" "sidebarelements.ui\n" "comboboxtext_legend\n" "1\n" "stringlist.text" msgid "Top" -msgstr "_Goian" +msgstr "Goian" #: sidebarelements.ui -#, fuzzy msgctxt "" "sidebarelements.ui\n" "comboboxtext_legend\n" "2\n" "stringlist.text" msgid "Bottom" -msgstr "_Behean" +msgstr "Behean" #: sidebarelements.ui -#, fuzzy msgctxt "" "sidebarelements.ui\n" "comboboxtext_legend\n" @@ -1192,7 +1178,6 @@ msgstr "Eskuz" #: sidebarelements.ui -#, fuzzy msgctxt "" "sidebarelements.ui\n" "label_legen\n" @@ -1202,7 +1187,6 @@ msgstr "Legenda" #: sidebarelements.ui -#, fuzzy msgctxt "" "sidebarelements.ui\n" "checkbutton_x_axis\n" @@ -1221,14 +1205,13 @@ msgstr "X ardatzaren titulua" #: sidebarelements.ui -#, fuzzy msgctxt "" "sidebarelements.ui\n" "checkbutton_y_axis\n" "label\n" "string.text" msgid "Y axis" -msgstr "_Y ardatza" +msgstr "Y ardatza" #: sidebarelements.ui msgctxt "" @@ -1240,14 +1223,13 @@ msgstr "Y ardatzaren titulua" #: sidebarelements.ui -#, fuzzy msgctxt "" "sidebarelements.ui\n" "checkbutton_z_axis\n" "label\n" "string.text" msgid "Z axis" -msgstr "_Z ardatza" +msgstr "Z ardatza" #: sidebarelements.ui msgctxt "" @@ -1295,7 +1277,6 @@ msgstr "2. Y ardatzaren titulua" #: sidebarelements.ui -#, fuzzy msgctxt "" "sidebarelements.ui\n" "label_axes\n" @@ -1350,34 +1331,31 @@ msgstr "Sareta-marrak" #: sidebarelements.ui -#, fuzzy msgctxt "" "sidebarelements.ui\n" "text_title\n" "label\n" "string.text" msgid "Title" -msgstr "Tituluak" +msgstr "Titulua" #: sidebarelements.ui -#, fuzzy msgctxt "" "sidebarelements.ui\n" "text_subtitle\n" "label\n" "string.text" msgid "Subtitle" -msgstr "A_zpititulua" +msgstr "Azpititulua" #: sidebarerrorbar.ui -#, fuzzy msgctxt "" "sidebarerrorbar.ui\n" "label2\n" "label\n" "string.text" msgid "Error category:" -msgstr "Errore-kategoria" +msgstr "Errore-kategoria:" #: sidebarerrorbar.ui msgctxt "" @@ -1389,27 +1367,24 @@ msgstr "Konstantea" #: sidebarerrorbar.ui -#, fuzzy msgctxt "" "sidebarerrorbar.ui\n" "comboboxtext_type\n" "1\n" "stringlist.text" msgid "Percentage" -msgstr "_Ehunekoa" +msgstr "Ehunekoa" #: sidebarerrorbar.ui -#, fuzzy msgctxt "" "sidebarerrorbar.ui\n" "comboboxtext_type\n" "2\n" "stringlist.text" msgid "Cell Range" -msgstr "Gelaxka-_barrutia" +msgstr "Gelaxka-barrutia" #: sidebarerrorbar.ui -#, fuzzy msgctxt "" "sidebarerrorbar.ui\n" "comboboxtext_type\n" @@ -1419,7 +1394,6 @@ msgstr "Desbiderapen estandarra" #: sidebarerrorbar.ui -#, fuzzy msgctxt "" "sidebarerrorbar.ui\n" "comboboxtext_type\n" @@ -1429,7 +1403,6 @@ msgstr "Errore estandarra" #: sidebarerrorbar.ui -#, fuzzy msgctxt "" "sidebarerrorbar.ui\n" "comboboxtext_type\n" @@ -1439,7 +1412,6 @@ msgstr "Bariantza" #: sidebarerrorbar.ui -#, fuzzy msgctxt "" "sidebarerrorbar.ui\n" "comboboxtext_type\n" @@ -1449,64 +1421,58 @@ msgstr "Errore-marjina" #: sidebarerrorbar.ui -#, fuzzy msgctxt "" "sidebarerrorbar.ui\n" "label3\n" "label\n" "string.text" msgid "Positive (+):" -msgstr "P_ositiboa (+)" +msgstr "Positiboa (+):" #: sidebarerrorbar.ui -#, fuzzy msgctxt "" "sidebarerrorbar.ui\n" "label4\n" "label\n" "string.text" msgid "Negative (-):" -msgstr "_Negatiboa (-)" +msgstr "Negatiboa (-):" #: sidebarerrorbar.ui -#, fuzzy msgctxt "" "sidebarerrorbar.ui\n" "radiobutton_positive_negative\n" "tooltip_text\n" "string.text" msgid "Positive and Negative" -msgstr "Positiboa e_ta negatiboa" +msgstr "Positiboa eta negatiboa" #: sidebarerrorbar.ui -#, fuzzy msgctxt "" "sidebarerrorbar.ui\n" "radiobutton_positive\n" "tooltip_text\n" "string.text" msgid "Positive" -msgstr "Po_sitiboa" +msgstr "Positiboa" #: sidebarerrorbar.ui -#, fuzzy msgctxt "" "sidebarerrorbar.ui\n" "radiobutton_negative\n" "tooltip_text\n" "string.text" msgid "Negative" -msgstr "Ne_gatiboa" +msgstr "Negatiboa" #: sidebarerrorbar.ui -#, fuzzy msgctxt "" "sidebarerrorbar.ui\n" "label1\n" "label\n" "string.text" msgid "Error indicators" -msgstr "Errore-adierazlea" +msgstr "Errore-adierazleak" #: sidebarerrorbar.ui msgctxt "" @@ -1536,7 +1502,6 @@ msgstr "_Kokapena:" #: sidebarseries.ui -#, fuzzy msgctxt "" "sidebarseries.ui\n" "comboboxtext_label\n" @@ -1546,7 +1511,6 @@ msgstr "Gainean" #: sidebarseries.ui -#, fuzzy msgctxt "" "sidebarseries.ui\n" "comboboxtext_label\n" @@ -1556,7 +1520,6 @@ msgstr "Azpian" #: sidebarseries.ui -#, fuzzy msgctxt "" "sidebarseries.ui\n" "comboboxtext_label\n" @@ -1566,7 +1529,6 @@ msgstr "Zentratuta" #: sidebarseries.ui -#, fuzzy msgctxt "" "sidebarseries.ui\n" "comboboxtext_label\n" @@ -1576,7 +1538,6 @@ msgstr "Kanpoan" #: sidebarseries.ui -#, fuzzy msgctxt "" "sidebarseries.ui\n" "comboboxtext_label\n" @@ -1586,7 +1547,6 @@ msgstr "Barnean" #: sidebarseries.ui -#, fuzzy msgctxt "" "sidebarseries.ui\n" "comboboxtext_label\n" @@ -1632,7 +1592,6 @@ msgstr "Errore-barrak" #: sidebarseries.ui -#, fuzzy msgctxt "" "sidebarseries.ui\n" "radiobutton_primary_axis\n" @@ -1642,14 +1601,13 @@ msgstr "Y ardatz nagusian" #: sidebarseries.ui -#, fuzzy msgctxt "" "sidebarseries.ui\n" "radiobutton_secondary_axis\n" "label\n" "string.text" msgid "Secondary Y axis" -msgstr "Y ardatz sekundarioa" +msgstr "Y ardatz sekundarioan" #: sidebarseries.ui msgctxt "" @@ -2648,7 +2606,7 @@ "label\n" "string.text" msgid "Auto text _wrap" -msgstr "" +msgstr "_Egokitu testuak automatikoki" #: tp_DataLabel.ui msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/eu/cui/source/dialogs.po libreoffice-5.1.2~rc2/translations/source/eu/cui/source/dialogs.po --- libreoffice-5.1.1~rc2/translations/source/eu/cui/source/dialogs.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/eu/cui/source/dialogs.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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-23 17:47+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 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1456249666.000000\n" +"X-POOTLE-MTIME: 1457400595.000000\n" #: cuires.src msgctxt "" @@ -62,7 +62,7 @@ "RID_SVXSTR_SELECTOR_RUN\n" "string.text" msgid "Run" -msgstr "E~xekutatu" +msgstr "Exekutatu" #: cuires.src msgctxt "" @@ -87,7 +87,7 @@ "RID_SVXSTR_COL\n" "string.text" msgid "Insert Columns" -msgstr "~Txertatu zutabeak" +msgstr "Txertatu zutabeak" #: cuires.src msgctxt "" @@ -111,7 +111,7 @@ "RID_SVXSTR_ENGINEERING\n" "string.text" msgid "Engineering notation" -msgstr "" +msgstr "Ingeniaritza idazkera" #: cuires.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/eu/cui/source/tabpages.po libreoffice-5.1.2~rc2/translations/source/eu/cui/source/tabpages.po --- libreoffice-5.1.1~rc2/translations/source/eu/cui/source/tabpages.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/eu/cui/source/tabpages.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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-23 17:49+0000\n" +"PO-Revision-Date: 2016-02-26 20:12+0000\n" "Last-Translator: Osoitz <oelkoro@gmail.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: eu\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1456249777.000000\n" +"X-POOTLE-MTIME: 1456517524.000000\n" #: border.src msgctxt "" @@ -967,7 +967,7 @@ "RID_SVXSTR_CHARNAME_HIGHLIGHTING\n" "string.text" msgid "Highlight Color" -msgstr "" +msgstr "Nabarmentze-kolorea" #: strings.src msgctxt "" @@ -1082,7 +1082,6 @@ msgstr "Konbinatu lerro bakarreko paragrafoak, luzera hau baino handiagoa bada:" #: strings.src -#, fuzzy msgctxt "" "strings.src\n" "RID_SVXSTR_NUM\n" diff -Nru libreoffice-5.1.1~rc2/translations/source/eu/cui/uiconfig/ui.po libreoffice-5.1.2~rc2/translations/source/eu/cui/uiconfig/ui.po --- libreoffice-5.1.1~rc2/translations/source/eu/cui/uiconfig/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/eu/cui/uiconfig/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: LibO 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-23 17:53+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 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1456250021.000000\n" +"X-POOTLE-MTIME: 1457401392.000000\n" #: aboutconfigdialog.ui msgctxt "" @@ -179,14 +179,13 @@ msgstr "%PRODUCTNAME kode irekiko produktibitate-suite moderno eta erabilerraz bat da, testu-prozesamendurako, kalkulu-orri gisa, aurkezpenetarako eta gehiagorako erabil daitekeena." #: aboutdialog.ui -#, fuzzy msgctxt "" "aboutdialog.ui\n" "copyright\n" "label\n" "string.text" msgid "Copyright © 2000–2016 LibreOffice contributors." -msgstr "Copyright © 2000 - 2014 LibreOfficen kolaboratzaileak." +msgstr "Copyright © 2000 - 2016 LibreOfficen kolaboratzaileak." #: aboutdialog.ui msgctxt "" @@ -216,7 +215,6 @@ msgstr "Aplikazio honen argitaratzailea %OOOVENDOR da." #: aboutdialog.ui -#, fuzzy msgctxt "" "aboutdialog.ui\n" "link\n" @@ -1654,7 +1652,7 @@ "label\n" "string.text" msgid "Create OpenCL Whitelist Entry" -msgstr "" +msgstr "Sortu OpenCL zerrenda zuriko sarrera" #: blackorwhitelistentrydialog.ui msgctxt "" @@ -1663,7 +1661,7 @@ "label\n" "string.text" msgid "OpenCL Information" -msgstr "" +msgstr "OpenCL informazioa" #: blackorwhitelistentrydialog.ui msgctxt "" @@ -1672,7 +1670,7 @@ "0\n" "stringlist.text" msgid "Any" -msgstr "" +msgstr "Edozein" #: borderareatransparencydialog.ui msgctxt "" @@ -3319,7 +3317,7 @@ "label\n" "string.text" msgid "_Pick…" -msgstr "" +msgstr "_Hautatu…" #: colorpage.ui msgctxt "" @@ -3445,7 +3443,7 @@ "label\n" "string.text" msgid "H_ue:" -msgstr "_Ñabardura:" +msgstr "Ñabard_ura:" #: colorpickerdialog.ui msgctxt "" @@ -3949,7 +3947,7 @@ "label\n" "string.text" msgid "Context Menus" -msgstr "" +msgstr "Laster-menuak" #: customizedialog.ui msgctxt "" @@ -4390,7 +4388,7 @@ "label\n" "string.text" msgid "Get more dictionaries online..." -msgstr "_Lortu lineako hiztegi gehiago..." +msgstr "Lortu lineako hiztegi gehiago..." #: editmodulesdialog.ui msgctxt "" @@ -5200,7 +5198,7 @@ "label\n" "string.text" msgid "Similarities..." -msgstr "" +msgstr "Antzekota" #: fmsearchdialog.ui msgctxt "" @@ -5218,7 +5216,7 @@ "label\n" "string.text" msgid "Similarities..." -msgstr "" +msgstr "Antzekotasunak..." #: fmsearchdialog.ui msgctxt "" @@ -6577,7 +6575,7 @@ "label\n" "string.text" msgid "Mail" -msgstr "" +msgstr "Posta" #: hyperlinkmailpage.ui msgctxt "" @@ -7064,7 +7062,7 @@ "label\n" "string.text" msgid "Create new" -msgstr "~Sortu berria" +msgstr "Sortu berria" #: insertoleobject.ui msgctxt "" @@ -7073,7 +7071,7 @@ "label\n" "string.text" msgid "Create from file" -msgstr "Sortu ~fitxategitik" +msgstr "Sortu fitxategitik" #: insertoleobject.ui msgctxt "" @@ -7127,7 +7125,7 @@ "label\n" "string.text" msgid "Warning: Plugins may not work on all platforms and may be removed in the future" -msgstr "" +msgstr "Abisua: Baliteke pluginak plataforma guztietan ez ibiltzea eta etorkizunean kendu daitezke" #: insertplugin.ui msgctxt "" @@ -7190,7 +7188,7 @@ "label\n" "string.text" msgid "_Before" -msgstr "Aurretik" +msgstr "_Aurretik" #: insertrowcolumn.ui msgctxt "" @@ -7199,7 +7197,7 @@ "label\n" "string.text" msgid "A_fter" -msgstr "Ondoren" +msgstr "O_ndoren" #: insertrowcolumn.ui msgctxt "" @@ -10128,7 +10126,7 @@ "label\n" "string.text" msgid "Suppress hidden elements of documents" -msgstr "" +msgstr "Kendu ezkutuko elementuak dokumentuetatik" #: optemailpage.ui msgctxt "" @@ -10173,7 +10171,7 @@ "label\n" "string.text" msgid "Export as:" -msgstr "" +msgstr "Esportatu honela:" #: optfltrembedpage.ui msgctxt "" @@ -10191,7 +10189,7 @@ "label\n" "string.text" msgid "Shading" -msgstr "" +msgstr "Itzaldura" #: optfltrembedpage.ui msgctxt "" @@ -10524,7 +10522,7 @@ "label\n" "string.text" msgid "Collect usage data and send it to The Document Foundation" -msgstr "" +msgstr "Bildu erabilera datuak eta bidali The Document Foundation fundazioari" #: optgeneralpage.ui msgctxt "" @@ -10533,7 +10531,7 @@ "label\n" "string.text" msgid "Help Improve %PRODUCTNAME" -msgstr "" +msgstr "Lagungu %PRODUCTNAME hobetzen" #: opthtmlpage.ui msgctxt "" @@ -11091,7 +11089,7 @@ "label\n" "string.text" msgid "Get more dictionaries online..." -msgstr "_Lortu lineako hiztegi gehiago..." +msgstr "Lortu lineako hiztegi gehiago..." #: optlingupage.ui msgctxt "" @@ -11352,7 +11350,7 @@ "label\n" "string.text" msgid "_Send OS version & simple hardware info." -msgstr "" +msgstr "_Bidali SE bertsioa eta oinarrizko hardware informazioa." #: optonlineupdatepage.ui msgctxt "" @@ -11361,7 +11359,7 @@ "tooltip_text\n" "string.text" msgid "This information lets us optimize for your hardware & OS." -msgstr "" +msgstr "Informazio honek zure hardware eta SErentzat optimizatzea ahalbidetzen digu." #: optonlineupdatepage.ui msgctxt "" @@ -11370,7 +11368,7 @@ "label\n" "string.text" msgid "User Agent:" -msgstr "" +msgstr "Erabiltzaile Agentea:" #: optonlineupdatepage.ui msgctxt "" @@ -11379,7 +11377,7 @@ "label\n" "string.text" msgid "Hit apply to update" -msgstr "" +msgstr "Sakatu aplikatu eguneratzeko" #: optonlineupdatepage.ui msgctxt "" @@ -11406,7 +11404,7 @@ "label\n" "string.text" msgid "Allow use of Software Interpreter (even when OpenCL is not available)" -msgstr "" +msgstr "Baimendu software interpretea erabiltzea (OpenCL eskuragarri ez dagoenean ere)" #: optopenclpage.ui msgctxt "" @@ -11973,7 +11971,7 @@ "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 "Mantendu Denbora-zigilu Autoritateen (TSA) URLen zerrenda bat digitalki sinatutako PDFak esportatzean erabiltzeko." #: optsecuritypage.ui msgctxt "" @@ -11982,7 +11980,7 @@ "label\n" "string.text" msgid "_TSAs..." -msgstr "" +msgstr "_TSAk..." #: optsecuritypage.ui msgctxt "" @@ -11991,7 +11989,7 @@ "label\n" "string.text" msgid "TSAs" -msgstr "" +msgstr "TSAk" #: optsecuritypage.ui msgctxt "" @@ -12321,7 +12319,7 @@ "AtkObject::accessible-name\n" "string.text" msgid "FAX number" -msgstr "Fax-zenbakia" +msgstr "FAX-zenbakia" #: optuserpage.ui msgctxt "" @@ -12510,7 +12508,7 @@ "label\n" "string.text" msgid "Use OpenGL for all rendering (on restart)" -msgstr "" +msgstr "Erabili OpenGL errendatze guztietan (berrabiarazi eta gero)" #: optviewpage.ui msgctxt "" @@ -12519,7 +12517,7 @@ "label\n" "string.text" msgid "Force OpenGL even if blacklisted (on restart)" -msgstr "" +msgstr "Behartu OpenGL zerrenda beltzean egon arren (berrabiarazi eta gero)" #: optviewpage.ui msgctxt "" @@ -12528,7 +12526,7 @@ "tooltip_text\n" "string.text" msgid "Enabling this may expose driver bugs" -msgstr "" +msgstr "Hau gaitzeak kontrolatzailearen akatsak erakuts ditzake" #: optviewpage.ui msgctxt "" @@ -12537,7 +12535,7 @@ "label\n" "string.text" msgid "Current GL status: Enabled" -msgstr "" +msgstr "Uneko GL egoera: Gaituta" #: optviewpage.ui msgctxt "" @@ -12546,7 +12544,7 @@ "label\n" "string.text" msgid "Current GL status: Disabled" -msgstr "" +msgstr "Uneko GL egoera: Desgaituta" #: optviewpage.ui msgctxt "" @@ -12762,7 +12760,7 @@ "10\n" "stringlist.text" msgid "Breeze" -msgstr "" +msgstr "Haize leuna" #: optviewpage.ui msgctxt "" @@ -14127,7 +14125,7 @@ "label\n" "string.text" msgid "Add and Resize" -msgstr "" +msgstr "Gehitu eta aldatu tamaina" #: pickgraphicpage.ui msgctxt "" @@ -14190,7 +14188,7 @@ "label\n" "string.text" msgid "Raise/lower by" -msgstr "~Goi/Azpindizea:" +msgstr "Goi/Azpindizea:" #: positionpage.ui msgctxt "" @@ -14262,7 +14260,7 @@ "label\n" "string.text" msgid "Scale width" -msgstr "Eskalatu ~zabalera" +msgstr "Eskalatu zabalera" #: positionpage.ui msgctxt "" @@ -14298,7 +14296,7 @@ "label\n" "string.text" msgid "Pair kerning" -msgstr "~Pareko karaktere-tartea doitu" +msgstr "Pareko karaktere-tartea doitu" #: positionpage.ui msgctxt "" @@ -15120,7 +15118,6 @@ msgstr "Asiar tipografia" #: searchformatdialog.ui -#, fuzzy msgctxt "" "searchformatdialog.ui\n" "background\n" @@ -15433,7 +15430,7 @@ "label\n" "string.text" msgid "_X:" -msgstr "" +msgstr "_X:" #: slantcornertabpage.ui msgctxt "" @@ -15442,7 +15439,7 @@ "label\n" "string.text" msgid "_Y:" -msgstr "" +msgstr "_Y:" #: slantcornertabpage.ui msgctxt "" @@ -15451,7 +15448,7 @@ "label\n" "string.text" msgid "Control Point 1" -msgstr "" +msgstr "1. kontrol-puntua" #: slantcornertabpage.ui msgctxt "" @@ -15496,7 +15493,7 @@ "label\n" "string.text" msgid "_X:" -msgstr "" +msgstr "_X:" #: slantcornertabpage.ui msgctxt "" @@ -15505,7 +15502,7 @@ "label\n" "string.text" msgid "_Y:" -msgstr "" +msgstr "_Y:" #: slantcornertabpage.ui msgctxt "" @@ -15514,7 +15511,7 @@ "label\n" "string.text" msgid "Control Point 2" -msgstr "" +msgstr "2. kontrol-puntua" #: smarttagoptionspage.ui msgctxt "" @@ -15652,14 +15649,13 @@ msgstr "Karaktereak:" #: specialcharacters.ui -#, fuzzy msgctxt "" "specialcharacters.ui\n" "decimallabel\n" "label\n" "string.text" msgid "Decimal:" -msgstr "De_zimala" +msgstr "Dezimala:" #: specialcharacters.ui msgctxt "" @@ -15668,7 +15664,7 @@ "label\n" "string.text" msgid "Hexadecimal:" -msgstr "" +msgstr "Hexadezimala:" #: spellingdialog.ui msgctxt "" @@ -15839,17 +15835,16 @@ "label\n" "string.text" msgid "Paste" -msgstr "" +msgstr "Itsatsi" #: spellingdialog.ui -#, fuzzy msgctxt "" "spellingdialog.ui\n" "insert\n" "label\n" "string.text" msgid "Special Character" -msgstr "Karaktere bereziak" +msgstr "Karaktere berezia" #: spelloptionsdialog.ui msgctxt "" @@ -17001,7 +16996,7 @@ "title\n" "string.text" msgid "Time Stamping Authority URLs" -msgstr "" +msgstr "Denbora-zigilu Autoritateen URLak" #: tsaurldialog.ui msgctxt "" @@ -17028,7 +17023,7 @@ "label\n" "string.text" msgid "Add or delete Time Stamp Authority URLs" -msgstr "" +msgstr "Gehitu edo ezabatu Denbora-zigilu Autoritateen URLak" #: tsaurldialog.ui msgctxt "" @@ -17037,7 +17032,7 @@ "label\n" "string.text" msgid "Enter a Time Stamp Authority URL" -msgstr "" +msgstr "Sartu Denbora-zigilu Autoritate baten URLa" #: tsaurldialog.ui msgctxt "" @@ -17046,7 +17041,7 @@ "label\n" "string.text" msgid "TSA URL" -msgstr "" +msgstr "TSA URLa" #: twolinespage.ui msgctxt "" @@ -17055,7 +17050,7 @@ "label\n" "string.text" msgid "Write in double lines" -msgstr "~Idatzi marra bikoitzetan" +msgstr "Idatzi marra bikoitzetan" #: twolinespage.ui msgctxt "" @@ -17073,7 +17068,7 @@ "label\n" "string.text" msgid "Initial character" -msgstr "Ha~sierako karakterea" +msgstr "Hasierako karakterea" #: twolinespage.ui msgctxt "" @@ -17082,7 +17077,7 @@ "label\n" "string.text" msgid "Final character" -msgstr "Azken karakte~rea" +msgstr "Azken karakt~rea" #: twolinespage.ui msgctxt "" @@ -17316,7 +17311,7 @@ "label\n" "string.text" msgid "Fit width and height" -msgstr "~Doitu zabalera eta altuera" +msgstr "Doitu zabalera eta altuera" #: zoomdialog.ui msgctxt "" @@ -17325,7 +17320,7 @@ "label\n" "string.text" msgid "Fit width" -msgstr "Doitu ~zabalera" +msgstr "Doitu zabalera" #: zoomdialog.ui msgctxt "" @@ -17370,7 +17365,7 @@ "label\n" "string.text" msgid "Single page" -msgstr "~Orrialde bakarra" +msgstr "Orrialde bakarra" #: zoomdialog.ui msgctxt "" @@ -17388,7 +17383,7 @@ "label\n" "string.text" msgid "Book mode" -msgstr "~Liburu modua" +msgstr "Liburu modua" #: zoomdialog.ui msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/eu/dbaccess/source/ui/dlg.po libreoffice-5.1.2~rc2/translations/source/eu/dbaccess/source/ui/dlg.po --- libreoffice-5.1.1~rc2/translations/source/eu/dbaccess/source/ui/dlg.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/eu/dbaccess/source/ui/dlg.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\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-01-10 11:46+0000\n" -"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n" +"PO-Revision-Date: 2016-02-24 20:13+0000\n" +"Last-Translator: Osoitz <oelkoro@gmail.com>\n" "Language-Team: Librezale <librezale@librezale.org>\n" "Language: eu\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1420890360.000000\n" +"X-POOTLE-MTIME: 1456344807.000000\n" #: AutoControls.src msgctxt "" @@ -86,7 +86,7 @@ "STR_COMMONURL\n" "string.text" msgid "Datasource URL (e.g. postgresql://host:port/database)" -msgstr "" +msgstr "Datu-iturburuaren URLa (adib. postgresql://ostalaria:ataka/datubasea)" #: AutoControls.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/eu/dbaccess/uiconfig/ui.po libreoffice-5.1.2~rc2/translations/source/eu/dbaccess/uiconfig/ui.po --- libreoffice-5.1.1~rc2/translations/source/eu/dbaccess/uiconfig/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/eu/dbaccess/uiconfig/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\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:00+0000\n" -"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n" +"PO-Revision-Date: 2016-02-24 20:14+0000\n" +"Last-Translator: Osoitz <oelkoro@gmail.com>\n" "Language-Team: Librezale <librezale@librezale.org>\n" "Language: eu\n" "MIME-Version: 1.0\n" @@ -14,17 +14,16 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1431428447.000000\n" +"X-POOTLE-MTIME: 1456344843.000000\n" #: admindialog.ui -#, fuzzy msgctxt "" "admindialog.ui\n" "AdminDialog\n" "title\n" "string.text" msgid "Database Properties" -msgstr "Datu-baseen propietateak" +msgstr "Datu-base propietateak" #: admindialog.ui msgctxt "" @@ -117,17 +116,15 @@ msgstr "_Probatu konexioa" #: autocharsetpage.ui -#, fuzzy msgctxt "" "autocharsetpage.ui\n" "charsetlabel\n" "label\n" "string.text" msgid "_Character set:" -msgstr "_Karaktere-jokoa" +msgstr "_Karaktere-jokoa:" #: autocharsetpage.ui -#, fuzzy msgctxt "" "autocharsetpage.ui\n" "charsetheader\n" @@ -137,7 +134,6 @@ msgstr "Datu-bihurketa" #: backuppage.ui -#, fuzzy msgctxt "" "backuppage.ui\n" "label1\n" @@ -165,7 +161,6 @@ msgstr "Sakatu 'Hurrengoa' dokumentuaren kopia bat gordetzeko, eta migrazioa hasteko." #: backuppage.ui -#, fuzzy msgctxt "" "backuppage.ui\n" "label3\n" @@ -265,14 +260,13 @@ msgstr "Zutabe-zabalera" #: colwidthdialog.ui -#, fuzzy msgctxt "" "colwidthdialog.ui\n" "label1\n" "label\n" "string.text" msgid "_Width:" -msgstr "_Zabalera" +msgstr "_Zabalera:" #: colwidthdialog.ui msgctxt "" @@ -284,14 +278,13 @@ msgstr "_Automatikoa" #: connectionpage.ui -#, fuzzy msgctxt "" "connectionpage.ui\n" "browseurllabel\n" "label\n" "string.text" msgid "Path to the dBASE files:" -msgstr "dBASE fitxategien bide-izena" +msgstr "dBASE fitxategien bide-izena:" #: connectionpage.ui msgctxt "" @@ -303,14 +296,13 @@ msgstr "_Sortu berria" #: connectionpage.ui -#, fuzzy msgctxt "" "connectionpage.ui\n" "browse\n" "label\n" "string.text" msgid "_Browse…" -msgstr "_Arakatu" +msgstr "_Arakatu…" #: connectionpage.ui msgctxt "" @@ -322,14 +314,13 @@ msgstr "Orokorra" #: connectionpage.ui -#, fuzzy msgctxt "" "connectionpage.ui\n" "userNameLabel\n" "label\n" "string.text" msgid "_User name:" -msgstr "E_rabiltzaile-izena" +msgstr "E_rabiltzaile-izena:" #: connectionpage.ui msgctxt "" @@ -341,7 +332,6 @@ msgstr "Pasahitza behar da" #: connectionpage.ui -#, fuzzy msgctxt "" "connectionpage.ui\n" "userlabel\n" @@ -351,14 +341,13 @@ msgstr "Erabiltzailearen autentifikazioa" #: connectionpage.ui -#, fuzzy msgctxt "" "connectionpage.ui\n" "javaDriverLabel\n" "label\n" "string.text" msgid "_JDBC driver class:" -msgstr "_JDBC kontrolatzaile-klasea" +msgstr "_JDBC kontrolatzaile-klasea:" #: connectionpage.ui msgctxt "" @@ -370,7 +359,6 @@ msgstr "Probatu klasea" #: connectionpage.ui -#, fuzzy msgctxt "" "connectionpage.ui\n" "JDBCLabel\n" @@ -443,14 +431,13 @@ msgstr "Sortu lehen mailako _gakoa" #: copytablepage.ui -#, fuzzy msgctxt "" "copytablepage.ui\n" "keynamelabel\n" "label\n" "string.text" msgid "Name:" -msgstr "Izena" +msgstr "Izena:" #: copytablepage.ui msgctxt "" @@ -462,14 +449,13 @@ msgstr "Aukerak" #: copytablepage.ui -#, fuzzy msgctxt "" "copytablepage.ui\n" "label2\n" "label\n" "string.text" msgid "Ta_ble name:" -msgstr "Ta_ula-izena" +msgstr "Ta_ula-izena:" #: dbaseindexdialog.ui msgctxt "" @@ -481,14 +467,13 @@ msgstr "Indizeak" #: dbaseindexdialog.ui -#, fuzzy msgctxt "" "dbaseindexdialog.ui\n" "label1\n" "label\n" "string.text" msgid "_Table:" -msgstr "_Taula" +msgstr "_Taula:" #: dbaseindexdialog.ui msgctxt "" @@ -518,17 +503,15 @@ msgstr "Esleipena" #: dbasepage.ui -#, fuzzy msgctxt "" "dbasepage.ui\n" "charsetlabel\n" "label\n" "string.text" msgid "_Character set:" -msgstr "_Karaktere-jokoa" +msgstr "_Karaktere-jokoa:" #: dbasepage.ui -#, fuzzy msgctxt "" "dbasepage.ui\n" "charsetheader\n" @@ -583,14 +566,13 @@ msgstr "etiketa" #: dbwizconnectionpage.ui -#, fuzzy msgctxt "" "dbwizconnectionpage.ui\n" "browseurllabel\n" "label\n" "string.text" msgid "Path to the dBASE files:" -msgstr "dBASE fitxategien bide-izena" +msgstr "dBASE fitxategien bide-izena:" #: dbwizconnectionpage.ui msgctxt "" @@ -602,14 +584,13 @@ msgstr "_Sortu berria" #: dbwizconnectionpage.ui -#, fuzzy msgctxt "" "dbwizconnectionpage.ui\n" "browse\n" "label\n" "string.text" msgid "_Browse…" -msgstr "_Arakatu" +msgstr "_Arakatu…" #: dbwizmysqlintropage.ui msgctxt "" @@ -661,7 +642,6 @@ msgstr "Nola konektatu nahi duzu MySQL datu-basera?" #: dbwizmysqlintropage.ui -#, fuzzy msgctxt "" "dbwizmysqlintropage.ui\n" "header\n" @@ -680,7 +660,6 @@ msgstr "Sartu MySQL datu-base batekin konektatzeko behar den informazioa." #: dbwizmysqlnativepage.ui -#, fuzzy msgctxt "" "dbwizmysqlnativepage.ui\n" "header\n" @@ -771,14 +750,13 @@ msgstr "Exekutatu SQL instrukzioa" #: directsqldialog.ui -#, fuzzy msgctxt "" "directsqldialog.ui\n" "sql_label\n" "label\n" "string.text" msgid "_Command to execute:" -msgstr "Exekutatu beharreko _komandoa" +msgstr "Exekutatu beharreko _komandoa:" #: directsqldialog.ui msgctxt "" @@ -799,14 +777,13 @@ msgstr "_Exekutatu" #: directsqldialog.ui -#, fuzzy msgctxt "" "directsqldialog.ui\n" "sqlhistory_label\n" "label\n" "string.text" msgid "_Previous commands:" -msgstr "_Aurreko komandoak" +msgstr "_Aurreko komandoak:" #: directsqldialog.ui msgctxt "" @@ -1013,7 +990,6 @@ msgstr "Datu-base _berria sortu" #: generalpagewizard.ui -#, fuzzy msgctxt "" "generalpagewizard.ui\n" "embeddeddbLabel\n" @@ -1059,34 +1035,31 @@ msgstr "Lehendik dagoen datu-basera _konektatzea" #: generalspecialjdbcdetailspage.ui -#, fuzzy msgctxt "" "generalspecialjdbcdetailspage.ui\n" "label2\n" "label\n" "string.text" msgid "_Host name:" -msgstr "_Ostalari-izena" +msgstr "_Ostalari-izena:" #: generalspecialjdbcdetailspage.ui -#, fuzzy msgctxt "" "generalspecialjdbcdetailspage.ui\n" "label3\n" "label\n" "string.text" msgid "_Port number:" -msgstr "_Ataka-zenbakia" +msgstr "_Ataka-zenbakia:" #: generalspecialjdbcdetailspage.ui -#, fuzzy msgctxt "" "generalspecialjdbcdetailspage.ui\n" "socketLabel\n" "label\n" "string.text" msgid "Socket:" -msgstr "Socket-a" +msgstr "Socket-a:" #: generalspecialjdbcdetailspage.ui msgctxt "" @@ -1116,17 +1089,15 @@ msgstr "Konexioaren ezarpenak" #: generalspecialjdbcdetailspage.ui -#, fuzzy msgctxt "" "generalspecialjdbcdetailspage.ui\n" "charsetlabel\n" "label\n" "string.text" msgid "_Character set:" -msgstr "_Karaktere-jokoa" +msgstr "_Karaktere-jokoa:" #: generalspecialjdbcdetailspage.ui -#, fuzzy msgctxt "" "generalspecialjdbcdetailspage.ui\n" "charsetheader\n" @@ -1145,24 +1116,22 @@ msgstr "E_skuratu sortutako balioak" #: generatedvaluespage.ui -#, fuzzy msgctxt "" "generatedvaluespage.ui\n" "statementft\n" "label\n" "string.text" msgid "_Auto-increment statement:" -msgstr "Ge_hikuntza automatikoko instrukzioa" +msgstr "Ge_hikuntza automatikoko instrukzioa:" #: generatedvaluespage.ui -#, fuzzy msgctxt "" "generatedvaluespage.ui\n" "queryft\n" "label\n" "string.text" msgid "_Query of generated values:" -msgstr "So_rtutako balioen kontsulta" +msgstr "So_rtutako balioen kontsulta:" #: generatedvaluespage.ui msgctxt "" @@ -1246,17 +1215,15 @@ msgstr "_Bakarra" #: indexdesigndialog.ui -#, fuzzy msgctxt "" "indexdesigndialog.ui\n" "FIELDS_LABEL\n" "label\n" "string.text" msgid "Fields:" -msgstr "Eremuak" +msgstr "Eremuak:" #: indexdesigndialog.ui -#, fuzzy msgctxt "" "indexdesigndialog.ui\n" "INDEX_DETAILS\n" @@ -1266,7 +1233,6 @@ msgstr "Indizearen xehetasunak" #: jdbcconnectionpage.ui -#, fuzzy msgctxt "" "jdbcconnectionpage.ui\n" "header\n" @@ -1285,14 +1251,13 @@ msgstr "Sartu JDBC datu-base batekin konektatzeko behar den informazioa. Hitz egin zure sistema-administratzailearekin hurrengo ezarpenak nola ezarri ez badakizu." #: jdbcconnectionpage.ui -#, fuzzy msgctxt "" "jdbcconnectionpage.ui\n" "browseurllabel\n" "label\n" "string.text" msgid "Path to the dBASE files:" -msgstr "dBASE fitxategien bide-izena" +msgstr "dBASE fitxategien bide-izena:" #: jdbcconnectionpage.ui msgctxt "" @@ -1304,34 +1269,31 @@ msgstr "_Sortu berria" #: jdbcconnectionpage.ui -#, fuzzy msgctxt "" "jdbcconnectionpage.ui\n" "browse\n" "label\n" "string.text" msgid "_Browse…" -msgstr "_Arakatu" +msgstr "_Arakatu…" #: jdbcconnectionpage.ui -#, fuzzy msgctxt "" "jdbcconnectionpage.ui\n" "jdbcLabel\n" "label\n" "string.text" msgid "JDBC d_river class:" -msgstr "JDBC _kontrolatzaile-klasea" +msgstr "JDBC _kontrolatzaile-klasea:" #: jdbcconnectionpage.ui -#, fuzzy msgctxt "" "jdbcconnectionpage.ui\n" "jdbcButton\n" "label\n" "string.text" msgid "_Test Class" -msgstr "Probatu klasea" +msgstr "_Probatu klasea" #: joindialog.ui msgctxt "" @@ -1361,14 +1323,13 @@ msgstr "Parte hartzen duten eremuak" #: joindialog.ui -#, fuzzy msgctxt "" "joindialog.ui\n" "label5\n" "label\n" "string.text" msgid "_Type:" -msgstr "M_ota" +msgstr "M_ota:" #: joindialog.ui msgctxt "" @@ -1434,7 +1395,6 @@ msgstr "Lotura gurutzatua" #: ldapconnectionpage.ui -#, fuzzy msgctxt "" "ldapconnectionpage.ui\n" "header\n" @@ -1453,24 +1413,22 @@ msgstr "Sartu LDAP direktorio batekin konektatzeko behar den informazioa. Hitz egin zure sistema-administratzailearekin hurrengo ezarpenak nola ezarri ez badakizu." #: ldapconnectionpage.ui -#, fuzzy msgctxt "" "ldapconnectionpage.ui\n" "hostNameLabel\n" "label\n" "string.text" msgid "_Server:" -msgstr "_Zerbitzaria" +msgstr "_Zerbitzaria:" #: ldapconnectionpage.ui -#, fuzzy msgctxt "" "ldapconnectionpage.ui\n" "portNumLabel\n" "label\n" "string.text" msgid "_Port number:" -msgstr "_Ataka-zenbakia" +msgstr "_Ataka-zenbakia:" #: ldapconnectionpage.ui msgctxt "" @@ -1482,14 +1440,13 @@ msgstr "Lehenetsia: 389" #: ldapconnectionpage.ui -#, fuzzy msgctxt "" "ldapconnectionpage.ui\n" "baseDNLabel\n" "label\n" "string.text" msgid "Base _DN:" -msgstr "Base _DN" +msgstr "Base _DN:" #: ldapconnectionpage.ui msgctxt "" @@ -1501,14 +1458,13 @@ msgstr "Erabili konexio _segurua (SSL)" #: ldappage.ui -#, fuzzy msgctxt "" "ldappage.ui\n" "label1\n" "label\n" "string.text" msgid "_Base DN:" -msgstr "O_inarrizko DNa" +msgstr "O_inarrizko DNa:" #: ldappage.ui msgctxt "" @@ -1520,24 +1476,22 @@ msgstr "Erabili konexio segurua (SSL)" #: ldappage.ui -#, fuzzy msgctxt "" "ldappage.ui\n" "label2\n" "label\n" "string.text" msgid "_Port number:" -msgstr "_Ataka-zenbakia" +msgstr "_Ataka-zenbakia:" #: ldappage.ui -#, fuzzy msgctxt "" "ldappage.ui\n" "label3\n" "label\n" "string.text" msgid "Maximum number of _records:" -msgstr "Gehieneko _erregistro kopurua" +msgstr "Gehieneko _erregistro kopurua:" #: ldappage.ui msgctxt "" @@ -1621,14 +1575,13 @@ msgstr "Konexioaren ezarpenak" #: mysqlnativepage.ui -#, fuzzy msgctxt "" "mysqlnativepage.ui\n" "usernamelabel\n" "label\n" "string.text" msgid "_User name:" -msgstr "E_rabiltzaile-izena" +msgstr "E_rabiltzaile-izena:" #: mysqlnativepage.ui msgctxt "" @@ -1640,7 +1593,6 @@ msgstr "Pasahitza behar da" #: mysqlnativepage.ui -#, fuzzy msgctxt "" "mysqlnativepage.ui\n" "userheader\n" @@ -1650,17 +1602,15 @@ msgstr "Erabiltzailearen autentifikazioa" #: mysqlnativepage.ui -#, fuzzy msgctxt "" "mysqlnativepage.ui\n" "charsetlabel\n" "label\n" "string.text" msgid "_Character set:" -msgstr "_Karaktere-jokoa" +msgstr "_Karaktere-jokoa:" #: mysqlnativepage.ui -#, fuzzy msgctxt "" "mysqlnativepage.ui\n" "charsetheader\n" @@ -1670,44 +1620,40 @@ msgstr "Datu-bihurketa" #: mysqlnativesettings.ui -#, fuzzy msgctxt "" "mysqlnativesettings.ui\n" "dbnamelabel\n" "label\n" "string.text" msgid "_Database name:" -msgstr "_Datu-basearen izena" +msgstr "_Datu-basearen izena:" #: mysqlnativesettings.ui -#, fuzzy msgctxt "" "mysqlnativesettings.ui\n" "hostport\n" "label\n" "string.text" msgid "Se_rver/port" -msgstr "Ze_rbitzaria / Ataka" +msgstr "Ze_rbitzaria/ataka" #: mysqlnativesettings.ui -#, fuzzy msgctxt "" "mysqlnativesettings.ui\n" "serverlabel\n" "label\n" "string.text" msgid "_Server:" -msgstr "_Zerbitzaria" +msgstr "_Zerbitzaria:" #: mysqlnativesettings.ui -#, fuzzy msgctxt "" "mysqlnativesettings.ui\n" "portlabel\n" "label\n" "string.text" msgid "_Port:" -msgstr "_Ataka" +msgstr "_Ataka:" #: mysqlnativesettings.ui msgctxt "" @@ -1719,24 +1665,22 @@ msgstr "Lehenetsia: 3306" #: mysqlnativesettings.ui -#, fuzzy msgctxt "" "mysqlnativesettings.ui\n" "socketlabel\n" "label\n" "string.text" msgid "So_cket:" -msgstr "So_cket-a" +msgstr "So_cket-a:" #: mysqlnativesettings.ui -#, fuzzy msgctxt "" "mysqlnativesettings.ui\n" "namedpipelabel\n" "label\n" "string.text" msgid "Named p_ipe:" -msgstr "Kana_lizazio izenduna" +msgstr "Kana_lizazio izenduna:" #: namematchingpage.ui msgctxt "" @@ -1775,17 +1719,15 @@ msgstr "Helburuko taula: " #: odbcpage.ui -#, fuzzy msgctxt "" "odbcpage.ui\n" "charsetlabel\n" "label\n" "string.text" msgid "_Character set:" -msgstr "_Karaktere-jokoa" +msgstr "_Karaktere-jokoa:" #: odbcpage.ui -#, fuzzy msgctxt "" "odbcpage.ui\n" "charsetheader\n" @@ -1795,14 +1737,13 @@ msgstr "Datu-bihurketa" #: odbcpage.ui -#, fuzzy msgctxt "" "odbcpage.ui\n" "optionslabel\n" "label\n" "string.text" msgid "ODBC _options:" -msgstr "_ODBC aukerak" +msgstr "_ODBC aukerak:" #: odbcpage.ui msgctxt "" @@ -1832,14 +1773,13 @@ msgstr "Parametro-sarrera" #: parametersdialog.ui -#, fuzzy msgctxt "" "parametersdialog.ui\n" "label2\n" "label\n" "string.text" msgid "_Value:" -msgstr "_Balioa" +msgstr "_Balioa:" #: parametersdialog.ui msgctxt "" @@ -1869,44 +1809,40 @@ msgstr "Aldatu pasahitza" #: password.ui -#, fuzzy msgctxt "" "password.ui\n" "label2\n" "label\n" "string.text" msgid "Old p_assword:" -msgstr "P_asahitz zaharra" +msgstr "P_asahitz zaharra:" #: password.ui -#, fuzzy msgctxt "" "password.ui\n" "label3\n" "label\n" "string.text" msgid "_Password:" -msgstr "_Pasahitza" +msgstr "_Pasahitza:" #: password.ui -#, fuzzy msgctxt "" "password.ui\n" "label4\n" "label\n" "string.text" msgid "_Confirm password:" -msgstr "_Baieztatu pasahitza" +msgstr "_Baieztatu pasahitza:" #: password.ui -#, fuzzy msgctxt "" "password.ui\n" "label1\n" "label\n" "string.text" msgid "User “$name$: $â€" -msgstr "Erabiltzailea: \"$name$: $\"" +msgstr "Erabiltzailea: “$name$: $â€" #: preparepage.ui msgctxt "" @@ -2166,14 +2102,13 @@ msgstr "Kontsultaren propietateak" #: querypropertiesdialog.ui -#, fuzzy msgctxt "" "querypropertiesdialog.ui\n" "limit-label\n" "label\n" "string.text" msgid "Limit:" -msgstr "Muga" +msgstr "Muga:" #: querypropertiesdialog.ui msgctxt "" @@ -2194,14 +2129,13 @@ msgstr "Ez" #: querypropertiesdialog.ui -#, fuzzy msgctxt "" "querypropertiesdialog.ui\n" "distinctvalues\n" "label\n" "string.text" msgid "Distinct values:" -msgstr "Balio unibokoak" +msgstr "Balio unibokoak:" #: relationdialog.ui msgctxt "" @@ -2375,14 +2309,13 @@ msgstr "Errenkada-altuera" #: rowheightdialog.ui -#, fuzzy msgctxt "" "rowheightdialog.ui\n" "label1\n" "label\n" "string.text" msgid "_Height:" -msgstr "_Altuera" +msgstr "_Altuera:" #: rowheightdialog.ui msgctxt "" @@ -2421,24 +2354,22 @@ msgstr "Sartu izen bat sortuko den objekturako:" #: savedialog.ui -#, fuzzy msgctxt "" "savedialog.ui\n" "catalogft\n" "label\n" "string.text" msgid "_Catalog:" -msgstr "_Katalogoa" +msgstr "_Katalogoa:" #: savedialog.ui -#, fuzzy msgctxt "" "savedialog.ui\n" "schemaft\n" "label\n" "string.text" msgid "_Schema:" -msgstr "E_skema" +msgstr "E_skema:" #: saveindexdialog.ui msgctxt "" @@ -2612,34 +2543,31 @@ msgstr "Sartu JDBC erabiliz MySQL datu-base batekin konektatzeko behar den informazioa. JDBC kontrolatzaile-klase batek zure sisteman instalatuta eta %PRODUCTNAME aplikazioarekin erregistratuta egon behar du . Hitz egin zure sistema-administratzailearekin hurrengo ezarpenak nola ezarri ez badakizu. " #: specialjdbcconnectionpage.ui -#, fuzzy msgctxt "" "specialjdbcconnectionpage.ui\n" "dbNameLabel\n" "label\n" "string.text" msgid "_Database name:" -msgstr "_Datu-basearen izena" +msgstr "_Datu-basearen izena:" #: specialjdbcconnectionpage.ui -#, fuzzy msgctxt "" "specialjdbcconnectionpage.ui\n" "hostNameLabel\n" "label\n" "string.text" msgid "_Server:" -msgstr "_Zerbitzaria" +msgstr "_Zerbitzaria:" #: specialjdbcconnectionpage.ui -#, fuzzy msgctxt "" "specialjdbcconnectionpage.ui\n" "portNumLabel\n" "label\n" "string.text" msgid "_Port number:" -msgstr "_Ataka-zenbakia" +msgstr "_Ataka-zenbakia:" #: specialjdbcconnectionpage.ui msgctxt "" @@ -2660,14 +2588,13 @@ msgstr "MySQL JDBC _kontrolatzaile-klasea:" #: specialjdbcconnectionpage.ui -#, fuzzy msgctxt "" "specialjdbcconnectionpage.ui\n" "testDriverButton\n" "label\n" "string.text" msgid "_Test Class" -msgstr "Probatu klasea" +msgstr "_Probatu klasea" #: specialsettingspage.ui msgctxt "" @@ -3021,14 +2948,13 @@ msgstr "Testu soileko fitxategiak (*.txt)" #: textpage.ui -#, fuzzy msgctxt "" "textpage.ui\n" "csvfile\n" "label\n" "string.text" msgid "Comma-separated value files (*.csv)" -msgstr "'Komaz bereiztutako balioak' fitxategiak (*.csv)" +msgstr "Komaz berezitutako baliodun fitxategiak (*.csv)" #: textpage.ui msgctxt "" @@ -3049,7 +2975,6 @@ msgstr "Pertsonalizatua: *.abc" #: textpage.ui -#, fuzzy msgctxt "" "textpage.ui\n" "extensionheader\n" @@ -3068,44 +2993,40 @@ msgstr "_Testuak goiburukoa du" #: textpage.ui -#, fuzzy msgctxt "" "textpage.ui\n" "fieldlabel\n" "label\n" "string.text" msgid "Field separator:" -msgstr "Eremu-bereizlea" +msgstr "Eremu-bereizlea:" #: textpage.ui -#, fuzzy msgctxt "" "textpage.ui\n" "textlabel\n" "label\n" "string.text" msgid "Text separator:" -msgstr "Testu-bereizlea" +msgstr "Testu-bereizlea:" #: textpage.ui -#, fuzzy msgctxt "" "textpage.ui\n" "decimallabel\n" "label\n" "string.text" msgid "Decimal separator:" -msgstr "Dezimalen bereizlea" +msgstr "Dezimalen bereizlea:" #: textpage.ui -#, fuzzy msgctxt "" "textpage.ui\n" "thousandslabel\n" "label\n" "string.text" msgid "Thousands separator:" -msgstr "Milakoen bereizlea" +msgstr "Milakoen bereizlea:" #: textpage.ui msgctxt "" @@ -3171,17 +3092,15 @@ msgstr "Errenkada-formatua" #: textpage.ui -#, fuzzy msgctxt "" "textpage.ui\n" "charsetlabel\n" "label\n" "string.text" msgid "_Character set:" -msgstr "_Karaktere-jokoa" +msgstr "_Karaktere-jokoa:" #: textpage.ui -#, fuzzy msgctxt "" "textpage.ui\n" "charsetheader\n" @@ -3191,7 +3110,6 @@ msgstr "Datu-bihurketa" #: typeselectpage.ui -#, fuzzy msgctxt "" "typeselectpage.ui\n" "columns\n" @@ -3201,14 +3119,13 @@ msgstr "Zutabe-informazioa" #: typeselectpage.ui -#, fuzzy msgctxt "" "typeselectpage.ui\n" "autolabel\n" "label\n" "string.text" msgid "Lines (ma_x.):" -msgstr "Lerroak (ma_x)" +msgstr "Lerroak (ma_x.):" #: typeselectpage.ui msgctxt "" @@ -3220,7 +3137,6 @@ msgstr "_Auto" #: typeselectpage.ui -#, fuzzy msgctxt "" "typeselectpage.ui\n" "autotype\n" @@ -3230,7 +3146,6 @@ msgstr "Mota-ezagutze automatikoa" #: useradmindialog.ui -#, fuzzy msgctxt "" "useradmindialog.ui\n" "UserAdminDialog\n" @@ -3285,7 +3200,6 @@ msgstr "Eza_batu erabiltzailea..." #: useradminpage.ui -#, fuzzy msgctxt "" "useradminpage.ui\n" "label1\n" @@ -3295,7 +3209,6 @@ msgstr "Erabiltzailearen hautapena" #: useradminpage.ui -#, fuzzy msgctxt "" "useradminpage.ui\n" "label2\n" @@ -3305,24 +3218,22 @@ msgstr "Hautatutako erabiltzailearen eskubideak" #: userdetailspage.ui -#, fuzzy msgctxt "" "userdetailspage.ui\n" "hostnameft\n" "label\n" "string.text" msgid "_Host name:" -msgstr "_Ostalari-izena" +msgstr "_Ostalari-izena:" #: userdetailspage.ui -#, fuzzy msgctxt "" "userdetailspage.ui\n" "portnumberft\n" "label\n" "string.text" msgid "_Port number:" -msgstr "_Ataka-zenbakia" +msgstr "_Ataka-zenbakia:" #: userdetailspage.ui msgctxt "" @@ -3334,14 +3245,13 @@ msgstr "Erabili _katalogoa" #: userdetailspage.ui -#, fuzzy msgctxt "" "userdetailspage.ui\n" "optionslabel\n" "label\n" "string.text" msgid "_Driver settings:" -msgstr "Kon_trolatzailearen ezarpenak" +msgstr "Kon_trolatzailearen ezarpenak:" #: userdetailspage.ui msgctxt "" @@ -3353,14 +3263,13 @@ msgstr "Konexioaren ezarpenak" #: userdetailspage.ui -#, fuzzy msgctxt "" "userdetailspage.ui\n" "charsetlabel\n" "label\n" "string.text" msgid "_Character set:" -msgstr "_Karaktere-jokoa" +msgstr "_Karaktere-jokoa:" #: userdetailspage.ui msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/eu/desktop/uiconfig/ui.po libreoffice-5.1.2~rc2/translations/source/eu/desktop/uiconfig/ui.po --- libreoffice-5.1.1~rc2/translations/source/eu/desktop/uiconfig/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/eu/desktop/uiconfig/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: LibO 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: 2014-12-06 19:47+0000\n" -"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.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 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1417895272.000000\n" +"X-POOTLE-MTIME: 1457401787.000000\n" #: cmdlinehelp.ui msgctxt "" @@ -68,7 +68,7 @@ "label\n" "string.text" msgid "Check for updates..." -msgstr "Bilatu ~eguneratzeak..." +msgstr "Bilatu eguneratzeak..." #: extensionmanager.ui msgctxt "" @@ -215,14 +215,13 @@ 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 "Irakurri osorik lizentzia-kontratua. Erabili korritze-barra edo 'Korritu behera' botoia lizentzia-testua osorik ikusteko.\"" +msgstr "Irakurri osorik lizentzia-kontratua. Erabili korritze-barra edo 'Korritu behera' botoia lizentzia-testua osorik ikusteko." #: licensedialog.ui msgctxt "" @@ -402,7 +401,7 @@ "label\n" "string.text" msgid "Check for _Updates..." -msgstr "Bilatu ~eguneratzeak..." +msgstr "Bilatu _eguneratzeak..." #: updaterequireddialog.ui msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/eu/dictionaries/is.po libreoffice-5.1.2~rc2/translations/source/eu/dictionaries/is.po --- libreoffice-5.1.1~rc2/translations/source/eu/dictionaries/is.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/eu/dictionaries/is.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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-07-31 18:37+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2016-02-24 20:12+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 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1375295878.000000\n" +"X-POOTLE-MTIME: 1456344725.000000\n" #: description.xml msgctxt "" @@ -22,4 +22,4 @@ "dispname\n" "description.text" msgid "Icelandic spelling dictionary, hyphenation rules and thesaurus" -msgstr "" +msgstr "Islandieraren ortografia-egiaztatzailea, hitzak zatitzeko arauak eta thesaurusa" diff -Nru libreoffice-5.1.1~rc2/translations/source/eu/dictionaries/sv_SE.po libreoffice-5.1.2~rc2/translations/source/eu/dictionaries/sv_SE.po --- libreoffice-5.1.1~rc2/translations/source/eu/dictionaries/sv_SE.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/eu/dictionaries/sv_SE.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "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-07-31 18:37+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2016-02-24 20:12+0000\n" +"Last-Translator: Osoitz <oelkoro@gmail.com>\n" "Language-Team: none\n" "Language: eu\n" "MIME-Version: 1.0\n" @@ -14,13 +14,12 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1375295865.000000\n" +"X-POOTLE-MTIME: 1456344741.000000\n" #: description.xml -#, fuzzy msgctxt "" "description.xml\n" "dispname\n" "description.text" msgid "Swedish spelling dictionary, hyphenation and thesaurus" -msgstr "Suedieraren ortografia-egiaztatzailea eta thesaurusa" +msgstr "Suedieraren ortografia-egiaztatzailea, hitzak zatitzeko arauak eta thesaurusa" diff -Nru libreoffice-5.1.1~rc2/translations/source/eu/editeng/source/editeng.po libreoffice-5.1.2~rc2/translations/source/eu/editeng/source/editeng.po --- libreoffice-5.1.1~rc2/translations/source/eu/editeng/source/editeng.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/eu/editeng/source/editeng.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-11-10 19:33+0100\n" -"PO-Revision-Date: 2013-08-04 10:16+0000\n" -"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n" +"PO-Revision-Date: 2016-02-24 18:20+0000\n" +"Last-Translator: Osoitz <oelkoro@gmail.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: eu\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1375611402.000000\n" +"X-POOTLE-MTIME: 1456338038.000000\n" #: editeng.src msgctxt "" @@ -89,14 +89,13 @@ msgstr "Aldatu maiuskula/minuskula" #: editeng.src -#, fuzzy msgctxt "" "editeng.src\n" "RID_MENU_SPELL\n" "MN_IGNORE\n" "menuitem.text" msgid "I~gnore All" -msgstr "Ez ikusi egin denei" +msgstr "Ez ikusi e~gin denei" #: editeng.src msgctxt "" @@ -132,7 +131,7 @@ "MN_AUTOCORR\n" "menuitem.text" msgid "AutoCorrect ~To" -msgstr "" +msgstr "Au~toZuzendu hona" #: editeng.src msgctxt "" @@ -141,7 +140,7 @@ "MN_AUTO_CORRECT_DLG\n" "menuitem.text" msgid "Auto~Correct Options..." -msgstr "" +msgstr "Auto~Zuzenketaren aukerak..." #: editeng.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/eu/extensions/source/scanner.po libreoffice-5.1.2~rc2/translations/source/eu/extensions/source/scanner.po --- libreoffice-5.1.1~rc2/translations/source/eu/extensions/source/scanner.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/eu/extensions/source/scanner.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\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-25 23:57+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2016-02-24 18:22+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 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1435276622.000000\n" +"X-POOTLE-MTIME: 1456338146.000000\n" #: strings.src msgctxt "" @@ -22,7 +22,7 @@ "STR_COULD_NOT_BE_INIT\n" "string.text" msgid "The SANE interface could not be initialized. Scanning is not possible." -msgstr "" +msgstr "SANE interfazea ezin izan da hasieratu. Ezin da eskaneatu." #: strings.src msgctxt "" @@ -30,7 +30,7 @@ "STR_SLOW_PREVIEW\n" "string.text" msgid "The device does not offer a preview option. Therefore, a normal scan will be used as a preview instead. This may take a considerable amount of time." -msgstr "" +msgstr "Gailuak ez dauka aurrebista erakusteko aukerarik. Horren ordez, eskaneatze normal bat egin dezake aurrebista gisa, baina denbora asko beharko du horretarako." #: strings.src msgctxt "" @@ -38,7 +38,7 @@ "STR_ERROR_SCAN\n" "string.text" msgid "An error occurred while scanning." -msgstr "" +msgstr "Errorea gertatu da eskaneatzean." #: strings.src msgctxt "" @@ -51,3 +51,7 @@ "Model: %s\n" "Type: %s" msgstr "" +"Gailua: %s\n" +"Hornitzailea: %s\n" +"Modeloa: %s\n" +"Mota: %s" diff -Nru libreoffice-5.1.1~rc2/translations/source/eu/extensions/uiconfig/sabpilot/ui.po libreoffice-5.1.2~rc2/translations/source/eu/extensions/uiconfig/sabpilot/ui.po --- libreoffice-5.1.1~rc2/translations/source/eu/extensions/uiconfig/sabpilot/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/eu/extensions/uiconfig/sabpilot/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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:57+0000\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" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1435276624.000000\n" +"X-POOTLE-MTIME: 1457402178.000000\n" #: contentfieldpage.ui msgctxt "" @@ -118,10 +118,9 @@ "label\n" "string.text" msgid "Embed this address book definition into the current document." -msgstr "" +msgstr "Txertatu helbide-liburu definizio hau uneko dokumentuan." #: datasourcepage.ui -#, fuzzy msgctxt "" "datasourcepage.ui\n" "locationft\n" @@ -417,7 +416,7 @@ "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 -Nru libreoffice-5.1.1~rc2/translations/source/eu/extras/source/autocorr/emoji.po libreoffice-5.1.2~rc2/translations/source/eu/extras/source/autocorr/emoji.po --- libreoffice-5.1.1~rc2/translations/source/eu/extras/source/autocorr/emoji.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/eu/extras/source/autocorr/emoji.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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 00:00+0000\n" -"Last-Translator: system user <>\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" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1435276817.000000\n" +"X-POOTLE-MTIME: 1457860401.000000\n" #. ¢ (U+000A2), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -23,7 +23,7 @@ "CENT_SIGN\n" "LngText.text" msgid "cent" -msgstr "" +msgstr "zentimoa" #. £ (U+000A3), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -32,7 +32,7 @@ "POUND_SIGN\n" "LngText.text" msgid "pound" -msgstr "" +msgstr "libra" #. Â¥ (U+000A5), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -41,7 +41,7 @@ "YEN_SIGN\n" "LngText.text" msgid "yen" -msgstr "" +msgstr "yen" #. § (U+000A7), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -50,7 +50,7 @@ "SECTION_SIGN\n" "LngText.text" msgid "section" -msgstr "" +msgstr "sekzioa" #. © (U+000A9), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -59,7 +59,7 @@ "COPYRIGHT_SIGN\n" "LngText.text" msgid "copyright" -msgstr "" +msgstr "copyright" #. ¬ (U+000AC), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -68,7 +68,7 @@ "NOT_SIGN\n" "LngText.text" msgid "not" -msgstr "" +msgstr "ez" #. ® (U+000AE), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -77,7 +77,7 @@ "REGISTERED_SIGN\n" "LngText.text" msgid "registered" -msgstr "" +msgstr "erregistratua" #. ° (U+000B0), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -86,7 +86,7 @@ "DEGREE_SIGN\n" "LngText.text" msgid "degree" -msgstr "" +msgstr "gradua" #. ± (U+000B1), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -95,7 +95,7 @@ "PLUS-MINUS_SIGN\n" "LngText.text" msgid "+-" -msgstr "" +msgstr "+-" #. · (U+000B7), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -104,7 +104,7 @@ "MIDDLE_DOT\n" "LngText.text" msgid "middle dot" -msgstr "" +msgstr "Erdiko puntua" #. × (U+000D7), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -113,7 +113,7 @@ "MULTIPLICATION_SIGN\n" "LngText.text" msgid "x" -msgstr "" +msgstr "x" #. Α (U+00391), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -122,7 +122,7 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "GREEK_CAPITAL_LETTER_THETA\n" "LngText.text" msgid "Theta" -msgstr "" +msgstr "Teta" #. Ι (U+00399), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -194,7 +194,7 @@ "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 @@ "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 @@ "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 @@ "GREEK_CAPITAL_LETTER_MU\n" "LngText.text" msgid "Mu" -msgstr "" +msgstr "Mu" #. Î (U+0039D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -230,7 +230,7 @@ "GREEK_CAPITAL_LETTER_NU\n" "LngText.text" msgid "Nu" -msgstr "" +msgstr "Nu" #. Ξ (U+0039E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -239,7 +239,7 @@ "GREEK_CAPITAL_LETTER_XI\n" "LngText.text" msgid "Xi" -msgstr "" +msgstr "Xi" #. Ο (U+0039F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -248,7 +248,7 @@ "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 @@ "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 @@ "GREEK_CAPITAL_LETTER_RHO\n" "LngText.text" msgid "Rho" -msgstr "" +msgstr "Ro" #. Σ (U+003A3), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -275,7 +275,7 @@ "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 @@ "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 @@ "GREEK_CAPITAL_LETTER_UPSILON\n" "LngText.text" msgid "Upsilon" -msgstr "" +msgstr "Upsilon" #. Φ (U+003A6), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -302,7 +302,7 @@ "GREEK_CAPITAL_LETTER_PHI\n" "LngText.text" msgid "Phi" -msgstr "" +msgstr "Phi" #. Χ (U+003A7), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -311,7 +311,7 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "GREEK_SMALL_LETTER_THETA\n" "LngText.text" msgid "theta" -msgstr "" +msgstr "teta" #. ι (U+003B9), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -410,7 +410,7 @@ "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 @@ "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 @@ "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 @@ "GREEK_SMALL_LETTER_MU\n" "LngText.text" msgid "mu" -msgstr "" +msgstr "mu" #. ν (U+003BD), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -446,7 +446,7 @@ "GREEK_SMALL_LETTER_NU\n" "LngText.text" msgid "nu" -msgstr "" +msgstr "nu" #. ξ (U+003BE), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -455,7 +455,7 @@ "GREEK_SMALL_LETTER_XI\n" "LngText.text" msgid "xi" -msgstr "" +msgstr "xi" #. ο (U+003BF), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -464,7 +464,7 @@ "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 @@ "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 @@ "GREEK_SMALL_LETTER_RHO\n" "LngText.text" msgid "rho" -msgstr "" +msgstr "ro" #. Ï‚ (U+003C2), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -491,7 +491,7 @@ "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 @@ "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 @@ "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 @@ "GREEK_SMALL_LETTER_UPSILON\n" "LngText.text" msgid "upsilon" -msgstr "" +msgstr "upsilon" #. φ (U+003C6), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -527,7 +527,7 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ #. — (U+02014), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "EM_DASH\n" @@ -587,7 +585,6 @@ #. ’ (U+02019), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "RIGHT_SINGLE_QUOTATION_MARK\n" @@ -602,7 +599,7 @@ "DAGGER\n" "LngText.text" msgid "dagger" -msgstr "" +msgstr "daga" #. ‡ (U+02021), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -611,7 +608,7 @@ "DOUBLE_DAGGER\n" "LngText.text" msgid "dagger2" -msgstr "" +msgstr "daga2" #. • (U+02022), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -620,7 +617,7 @@ "BULLET\n" "LngText.text" msgid "bullet" -msgstr "" +msgstr "bala" #. ‣ (U+02023), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -629,11 +626,10 @@ "TRIANGULAR_BULLET\n" "LngText.text" msgid "bullet2" -msgstr "" +msgstr "buleta2" #. … (U+02026), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "HORIZONTAL_ELLIPSIS\n" @@ -648,7 +644,7 @@ "PER_MILLE_SIGN\n" "LngText.text" msgid "per mille" -msgstr "" +msgstr "miliako" #. ‱ (U+02031), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -657,7 +653,7 @@ "PER_TEN_THOUSAND_SIGN\n" "LngText.text" msgid "basis point" -msgstr "" +msgstr "oinarri-puntua" #. ′ (U+02032), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -666,7 +662,7 @@ "PRIME\n" "LngText.text" msgid "prime" -msgstr "" +msgstr "primoa" #. ″ (U+02033), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -675,11 +671,10 @@ "DOUBLE_PRIME\n" "LngText.text" msgid "inch" -msgstr "" +msgstr "hazbetea" #. ‼ (U+0203C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "DOUBLE_EXCLAMATION_MARK\n" @@ -689,7 +684,6 @@ #. ≠(U+02049), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "EXCLAMATION_QUESTION_MARK\n" @@ -704,7 +698,7 @@ "LIRA_SIGN\n" "LngText.text" msgid "lira" -msgstr "" +msgstr "lira" #. â‚© (U+020A9), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -713,7 +707,7 @@ "WON_SIGN\n" "LngText.text" msgid "won" -msgstr "" +msgstr "garaipena" #. ₪ (U+020AA), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -722,7 +716,7 @@ "NEW_SHEQEL_SIGN\n" "LngText.text" msgid "shekel" -msgstr "" +msgstr "sikloa" #. € (U+020AC), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -731,7 +725,7 @@ "EURO_SIGN\n" "LngText.text" msgid "euro" -msgstr "" +msgstr "euroa" #. ₱ (U+020B1), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -740,7 +734,7 @@ "PESO_SIGN\n" "LngText.text" msgid "peso" -msgstr "" +msgstr "pesoa" #. â‚´ (U+020B4), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -749,7 +743,7 @@ "HRYVNIA_SIGN\n" "LngText.text" msgid "hryvnia" -msgstr "" +msgstr "hryvnia" #. ₹ (U+020B9), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -758,7 +752,7 @@ "INDIAN_RUPEE_SIGN\n" "LngText.text" msgid "rupee" -msgstr "" +msgstr "errupia" #. ₺ (U+020BA), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -767,7 +761,7 @@ "TURKISH_LIRA_SIGN\n" "LngText.text" msgid "Turkish lira" -msgstr "" +msgstr "Turkiako lira" #. â„¢ (U+02122), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -776,7 +770,7 @@ "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 @@ "INFORMATION_SOURCE\n" "LngText.text" msgid "information" -msgstr "" +msgstr "informazioa" #. ↠(U+02190), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -794,7 +788,7 @@ "LEFTWARDS_ARROW\n" "LngText.text" msgid "W" -msgstr "" +msgstr "M" #. ↑ (U+02191), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -803,7 +797,7 @@ "UPWARDS_ARROW\n" "LngText.text" msgid "N" -msgstr "" +msgstr "I" #. → (U+02192), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -812,7 +806,7 @@ "RIGHTWARDS_ARROW\n" "LngText.text" msgid "E" -msgstr "" +msgstr "E" #. ↓ (U+02193), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -821,7 +815,7 @@ "DOWNWARDS_ARROW\n" "LngText.text" msgid "S" -msgstr "" +msgstr "H" #. ↔ (U+02194), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -830,7 +824,7 @@ "LEFT_RIGHT_ARROW\n" "LngText.text" msgid "EW" -msgstr "" +msgstr "EM" #. ↕ (U+02195), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -839,7 +833,7 @@ "UP_DOWN_ARROW\n" "LngText.text" msgid "NS" -msgstr "" +msgstr "IH" #. ↖ (U+02196), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -848,7 +842,7 @@ "NORTH_WEST_ARROW\n" "LngText.text" msgid "NW" -msgstr "" +msgstr "IM" #. ↗ (U+02197), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -857,7 +851,7 @@ "NORTH_EAST_ARROW\n" "LngText.text" msgid "NE" -msgstr "" +msgstr "IE" #. ↘ (U+02198), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -866,7 +860,7 @@ "SOUTH_EAST_ARROW\n" "LngText.text" msgid "SE" -msgstr "" +msgstr "HE" #. ↙ (U+02199), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -875,7 +869,7 @@ "SOUTH_WEST_ARROW\n" "LngText.text" msgid "SW" -msgstr "" +msgstr "HM" #. ⇠(U+021D0), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -884,7 +878,7 @@ "LEFTWARDS_DOUBLE_ARROW\n" "LngText.text" msgid "W2" -msgstr "" +msgstr "M2" #. ⇑ (U+021D1), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -893,7 +887,7 @@ "UPWARDS_DOUBLE_ARROW\n" "LngText.text" msgid "N2" -msgstr "" +msgstr "I2" #. ⇒ (U+021D2), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -902,7 +896,7 @@ "RIGHTWARDS_DOUBLE_ARROW\n" "LngText.text" msgid "E2" -msgstr "" +msgstr "E2" #. ⇓ (U+021D3), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -911,7 +905,7 @@ "DOWNWARDS_DOUBLE_ARROW\n" "LngText.text" msgid "S2" -msgstr "" +msgstr "H2" #. ⇔ (U+021D4), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -920,7 +914,7 @@ "LEFT_RIGHT_DOUBLE_ARROW\n" "LngText.text" msgid "EW2" -msgstr "" +msgstr "EM2" #. ⇕ (U+021D5), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -929,7 +923,7 @@ "UP_DOWN_DOUBLE_ARROW\n" "LngText.text" msgid "NS2" -msgstr "" +msgstr "IH2" #. ⇖ (U+021D6), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -938,7 +932,7 @@ "NORTH_WEST_DOUBLE_ARROW\n" "LngText.text" msgid "NW2" -msgstr "" +msgstr "IM2" #. ⇗ (U+021D7), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -947,7 +941,7 @@ "NORTH_EAST_DOUBLE_ARROW\n" "LngText.text" msgid "NE2" -msgstr "" +msgstr "IE2" #. ⇘ (U+021D8), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -956,7 +950,7 @@ "SOUTH_EAST_DOUBLE_ARROW\n" "LngText.text" msgid "SE2" -msgstr "" +msgstr "HE2" #. ⇙ (U+021D9), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -965,7 +959,7 @@ "SOUTH_WEST_DOUBLE_ARROW\n" "LngText.text" msgid "SW2" -msgstr "" +msgstr "HM2" #. ∀ (U+02200), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -974,7 +968,7 @@ "FOR_ALL\n" "LngText.text" msgid "for all" -msgstr "" +msgstr "guztientzat" #. ∂ (U+02202), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -983,7 +977,7 @@ "PARTIAL_DIFFERENTIAL\n" "LngText.text" msgid "partial" -msgstr "" +msgstr "partziala" #. ∃ (U+02203), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -992,7 +986,7 @@ "THERE_EXISTS\n" "LngText.text" msgid "exists" -msgstr "" +msgstr "badago" #. ∄ (U+02204), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1001,7 +995,7 @@ "THERE_DOES_NOT_EXIST\n" "LngText.text" msgid "not exists" -msgstr "" +msgstr "ez dago" #. ∅ (U+02205), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1010,7 +1004,7 @@ "EMPTY_SET\n" "LngText.text" msgid "empty set" -msgstr "" +msgstr "multzo hutsa" #. ∈ (U+02208), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1019,7 +1013,7 @@ "ELEMENT_OF\n" "LngText.text" msgid "in" -msgstr "" +msgstr "barne" #. ∉ (U+02209), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1028,7 +1022,7 @@ "NOT_AN_ELEMENT_OF\n" "LngText.text" msgid "not in" -msgstr "" +msgstr "ez-barne" #. ∊ (U+0220A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1037,7 +1031,7 @@ "SMALL_ELEMENT_OF\n" "LngText.text" msgid "small in" -msgstr "" +msgstr "barne txikia" #. ∋ (U+0220B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1073,7 +1067,7 @@ "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 @@ -1082,7 +1076,7 @@ "N-ARY_PRODUCT\n" "LngText.text" msgid "product" -msgstr "" +msgstr "produktua" #. ∑ (U+02211), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1091,11 +1085,10 @@ "N-ARY_SUMMATION\n" "LngText.text" msgid "sum" -msgstr "" +msgstr "batura" #. − (U+02212), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "MINUS_SIGN\n" @@ -1110,11 +1103,10 @@ "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 @@ #. ∖ (U+02216), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "SET_MINUS\n" @@ -1139,7 +1130,7 @@ "SQUARE_ROOT\n" "LngText.text" msgid "sqrt" -msgstr "" +msgstr "erro karratua" #. ∛ (U+0221B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1148,7 +1139,7 @@ "CUBE_ROOT\n" "LngText.text" msgid "cube root" -msgstr "" +msgstr "erro kubikoa" #. ∜ (U+0221C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1166,7 +1157,7 @@ "INFINITY\n" "LngText.text" msgid "infinity" -msgstr "" +msgstr "infinitua" #. ∠ (U+02220), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1175,7 +1166,7 @@ "ANGLE\n" "LngText.text" msgid "angle" -msgstr "" +msgstr "angelua" #. ∡ (U+02221), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1184,7 +1175,7 @@ "MEASURED_ANGLE\n" "LngText.text" msgid "angle2" -msgstr "" +msgstr "angelua2" #. ∣ (U+02223), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1193,7 +1184,7 @@ "DIVIDES\n" "LngText.text" msgid "divides" -msgstr "" +msgstr "zatitzen du" #. ∤ (U+02224), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1202,7 +1193,7 @@ "DOES_NOT_DIVIDE\n" "LngText.text" msgid "not divides" -msgstr "" +msgstr "ez du zatitzen" #. ∥ (U+02225), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1211,7 +1202,7 @@ "PARALLEL_TO\n" "LngText.text" msgid "parallel" -msgstr "" +msgstr "paraleloa" #. ∦ (U+02226), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1220,7 +1211,7 @@ "NOT_PARALLEL_TO\n" "LngText.text" msgid "nparallel" -msgstr "" +msgstr "ezparaleloa" #. ∧ (U+02227), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1229,7 +1220,7 @@ "LOGICAL_AND\n" "LngText.text" msgid "and" -msgstr "" +msgstr "eta" #. ∨ (U+02228), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1238,7 +1229,7 @@ "LOGICAL_OR\n" "LngText.text" msgid "or" -msgstr "" +msgstr "edo" #. ∩ (U+02229), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1247,7 +1238,7 @@ "INTERSECTION\n" "LngText.text" msgid "intersection" -msgstr "" +msgstr "intersekzioa" #. ∪ (U+0222A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1256,7 +1247,7 @@ "UNION\n" "LngText.text" msgid "union" -msgstr "" +msgstr "bilketa" #. ∫ (U+0222B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1265,7 +1256,7 @@ "INTEGRAL\n" "LngText.text" msgid "integral" -msgstr "" +msgstr "integrala" #. ∬ (U+0222C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1274,7 +1265,7 @@ "DOUBLE_INTEGRAL\n" "LngText.text" msgid "integral2" -msgstr "" +msgstr "integrala2" #. ∭ (U+0222D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1283,7 +1274,7 @@ "TRIPLE_INTEGRAL\n" "LngText.text" msgid "integral3" -msgstr "" +msgstr "integrala3" #. ∮ (U+0222E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1292,7 +1283,7 @@ "CONTOUR_INTEGRAL\n" "LngText.text" msgid "integral4" -msgstr "" +msgstr "integrala4" #. ∰ (U+02230), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1301,7 +1292,7 @@ "VOLUME_INTEGRAL\n" "LngText.text" msgid "integral5" -msgstr "" +msgstr "integrala5" #. ≈ (U+02248), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1310,7 +1301,7 @@ "ALMOST_EQUAL_TO\n" "LngText.text" msgid "~" -msgstr "" +msgstr "~" #. ≠ (U+02260), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1319,7 +1310,7 @@ "NOT_EQUAL_TO\n" "LngText.text" msgid "not equal" -msgstr "" +msgstr "desberdin" #. ≤ (U+02264), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1328,7 +1319,7 @@ "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 @@ "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 @@ #. ≫ (U+0226B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "MUCH_GREATER-THAN\n" @@ -1366,7 +1355,7 @@ "SUBSET_OF\n" "LngText.text" msgid "subset" -msgstr "" +msgstr "azpimultzoa" #. ⊃ (U+02283), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1375,7 +1364,7 @@ "SUPERSET_OF\n" "LngText.text" msgid "superset" -msgstr "" +msgstr "gaineko multzoa" #. ⊄ (U+02284), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1384,7 +1373,7 @@ "NOT_A_SUBSET_OF\n" "LngText.text" msgid "not subset" -msgstr "" +msgstr "ez azpimultzoa" #. ⊅ (U+02285), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1393,7 +1382,7 @@ "NOT_A_SUPERSET_OF\n" "LngText.text" msgid "not superset" -msgstr "" +msgstr "ez da gaineko multzoa" #. ⊿ (U+022BF), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1402,7 +1391,7 @@ "RIGHT_TRIANGLE\n" "LngText.text" msgid "right triangle" -msgstr "" +msgstr "angelu zuzena" #. ⌚ (U+0231A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1411,7 +1400,7 @@ "WATCH\n" "LngText.text" msgid "watch" -msgstr "" +msgstr "ikuskatu" #. ⌛ (U+0231B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1420,7 +1409,7 @@ "HOURGLASS\n" "LngText.text" msgid "hourglass" -msgstr "" +msgstr "harea-erlojua" #. ⌨ (U+02328), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1429,7 +1418,7 @@ "KEYBOARD\n" "LngText.text" msgid "keyboard" -msgstr "" +msgstr "teklatua" #. ⢠(U+023E2), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1438,7 +1427,7 @@ "WHITE_TRAPEZIUM\n" "LngText.text" msgid "trapezium" -msgstr "" +msgstr "trapezioa" #. â° (U+023F0), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1447,7 +1436,7 @@ "ALARM_CLOCK\n" "LngText.text" msgid "alarm clock" -msgstr "" +msgstr "iratzargailua" #. â± (U+023F1), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1456,7 +1445,7 @@ "STOPWATCH\n" "LngText.text" msgid "stopwatch" -msgstr "" +msgstr "kronometroa" #. â² (U+023F2), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1465,7 +1454,7 @@ "TIMER_CLOCK\n" "LngText.text" msgid "timer clock" -msgstr "" +msgstr "tenporizadorea" #. â³ (U+023F3), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1474,7 +1463,7 @@ "HOURGLASS_WITH_FLOWING_SAND\n" "LngText.text" msgid "hourglass2" -msgstr "" +msgstr "harea-erlojua2" #. â–  (U+025A0), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1483,7 +1472,7 @@ "BLACK_SQUARE\n" "LngText.text" msgid "square2" -msgstr "" +msgstr "karratua2" #. â–¡ (U+025A1), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1492,7 +1481,7 @@ "WHITE_SQUARE\n" "LngText.text" msgid "square" -msgstr "" +msgstr "karratua" #. â–ª (U+025AA), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1501,7 +1490,7 @@ "BLACK_SMALL_SQUARE\n" "LngText.text" msgid "small square2" -msgstr "" +msgstr "karratu txikia2" #. â–« (U+025AB), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1510,7 +1499,7 @@ "WHITE_SMALL_SQUARE\n" "LngText.text" msgid "small square" -msgstr "" +msgstr "karratu txikia" #. â–¬ (U+025AC), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1519,7 +1508,7 @@ "BLACK_RECTANGLE\n" "LngText.text" msgid "rectangle2" -msgstr "" +msgstr "laukizuzena2" #. â–­ (U+025AD), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1528,7 +1517,7 @@ "WHITE_RECTANGLE\n" "LngText.text" msgid "rectangle" -msgstr "" +msgstr "laukizuzena" #. â–° (U+025B0), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1537,7 +1526,7 @@ "BLACK_PARALLELOGRAM\n" "LngText.text" msgid "parallelogram2" -msgstr "" +msgstr "paralelograma2" #. â–± (U+025B1), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1546,7 +1535,7 @@ "WHITE_PARALLELOGRAM\n" "LngText.text" msgid "parallelogram" -msgstr "" +msgstr "paralelograma" #. â–² (U+025B2), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1555,7 +1544,7 @@ "BLACK_UP-POINTING_TRIANGLE\n" "LngText.text" msgid "triangle2" -msgstr "" +msgstr "triangelua2" #. â–³ (U+025B3), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1564,7 +1553,7 @@ "WHITE_UP-POINTING_TRIANGLE\n" "LngText.text" msgid "triangle" -msgstr "" +msgstr "triangelua" #. â—Š (U+025CA), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1582,7 +1571,7 @@ "WHITE_CIRCLE\n" "LngText.text" msgid "circle" -msgstr "" +msgstr "zirkuloa" #. â— (U+025CF), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1591,7 +1580,7 @@ "BLACK_CIRCLE\n" "LngText.text" msgid "circle2" -msgstr "" +msgstr "zirkuloa2" #. â—¦ (U+025E6), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1600,7 +1589,7 @@ "WHITE_BULLET\n" "LngText.text" msgid "bullet3" -msgstr "" +msgstr "buleta3" #. â—¯ (U+025EF), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1609,7 +1598,7 @@ "LARGE_CIRCLE\n" "LngText.text" msgid "large circle" -msgstr "" +msgstr "zirkulu handia" #. â—» (U+025FB), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1618,7 +1607,7 @@ "WHITE_MEDIUM_SQUARE\n" "LngText.text" msgid "medium square" -msgstr "" +msgstr "karratu ertaina" #. â—¼ (U+025FC), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1627,7 +1616,7 @@ "BLACK_MEDIUM_SQUARE\n" "LngText.text" msgid "medium square2" -msgstr "" +msgstr "karratu ertaina2" #. â—½ (U+025FD), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1636,7 +1625,7 @@ "WHITE_MEDIUM_SMALL_SQUARE\n" "LngText.text" msgid "smaller square" -msgstr "" +msgstr "karratu txikiagoa" #. â—¾ (U+025FE), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1645,7 +1634,7 @@ "BLACK_MEDIUM_SMALL_SQUARE\n" "LngText.text" msgid "smaller square2" -msgstr "" +msgstr "karratu txikiagoa2" #. ☀ (U+02600), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1654,7 +1643,7 @@ "BLACK_SUN_WITH_RAYS\n" "LngText.text" msgid "sunny" -msgstr "" +msgstr "eguzkitsu" #. ☠(U+02601), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1663,7 +1652,7 @@ "CLOUD\n" "LngText.text" msgid "cloud" -msgstr "" +msgstr "hodeia" #. ☂ (U+02602), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1672,7 +1661,7 @@ "UMBRELLA\n" "LngText.text" msgid "umbrella" -msgstr "" +msgstr "aterkina" #. ☃ (U+02603), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1681,7 +1670,7 @@ "SNOWMAN\n" "LngText.text" msgid "snowman" -msgstr "" +msgstr "elur-gizona" #. ☄ (U+02604), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1690,7 +1679,7 @@ "COMET\n" "LngText.text" msgid "comet" -msgstr "" +msgstr "kometa" #. ★ (U+02605), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1699,7 +1688,7 @@ "BLACK_STAR\n" "LngText.text" msgid "star" -msgstr "" +msgstr "izarra" #. ☆ (U+02606), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1708,7 +1697,7 @@ "WHITE_STAR\n" "LngText.text" msgid "star2" -msgstr "" +msgstr "izarra2" #. ☇ (U+02607), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1717,7 +1706,7 @@ "LIGHTNING\n" "LngText.text" msgid "lighting" -msgstr "" +msgstr "tximista" #. ☈ (U+02608), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1726,7 +1715,7 @@ "THUNDERSTORM\n" "LngText.text" msgid "storm" -msgstr "" +msgstr "ekaitza" #. ☉ (U+02609), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1735,7 +1724,7 @@ "SUN\n" "LngText.text" msgid "Sun" -msgstr "" +msgstr "Eguzkia" #. ☎ (U+0260E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1744,7 +1733,7 @@ "BLACK_TELEPHONE\n" "LngText.text" msgid "phone" -msgstr "" +msgstr "telefonoa" #. ☠(U+0260F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1753,7 +1742,7 @@ "WHITE_TELEPHONE\n" "LngText.text" msgid "phone2" -msgstr "" +msgstr "telefonoa2" #. ☠(U+02610), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1762,7 +1751,7 @@ "BALLOT_BOX\n" "LngText.text" msgid "checkbox" -msgstr "" +msgstr "kontrol-laukia" #. ☑ (U+02611), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1771,7 +1760,7 @@ "BALLOT_BOX_WITH_CHECK\n" "LngText.text" msgid "checkbox2" -msgstr "" +msgstr "kontrol-laukia2" #. ☒ (U+02612), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1780,7 +1769,7 @@ "BALLOT_BOX_WITH_X\n" "LngText.text" msgid "checkbox3" -msgstr "" +msgstr "kontrol-laukia3" #. ☓ (U+02613), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1789,7 +1778,7 @@ "SALTIRE\n" "LngText.text" msgid "saltire" -msgstr "" +msgstr "San Andres gurutzea" #. ☔ (U+02614), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1798,7 +1787,7 @@ "UMBRELLA_WITH_RAIN_DROPS\n" "LngText.text" msgid "rain" -msgstr "" +msgstr "euria" #. ☕ (U+02615), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1807,7 +1796,7 @@ "HOT_BEVERAGE\n" "LngText.text" msgid "coffee" -msgstr "" +msgstr "kafea" #. ☚ (U+0261A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1816,7 +1805,7 @@ "BLACK_LEFT_POINTING_INDEX\n" "LngText.text" msgid "left3" -msgstr "" +msgstr "ezkerra3" #. ☛ (U+0261B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1825,7 +1814,7 @@ "BLACK_RIGHT_POINTING_INDEX\n" "LngText.text" msgid "right3" -msgstr "" +msgstr "eskuma3" #. ☜ (U+0261C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1834,7 +1823,7 @@ "WHITE_LEFT_POINTING_INDEX\n" "LngText.text" msgid "left" -msgstr "" +msgstr "ezkerra" #. ☠(U+0261D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1843,7 +1832,7 @@ "WHITE_UP_POINTING_INDEX\n" "LngText.text" msgid "up" -msgstr "" +msgstr "gora" #. ☞ (U+0261E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1852,7 +1841,7 @@ "WHITE_RIGHT_POINTING_INDEX\n" "LngText.text" msgid "right" -msgstr "" +msgstr "eskuma" #. ☟ (U+0261F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1861,7 +1850,7 @@ "WHITE_DOWN_POINTING_INDEX\n" "LngText.text" msgid "down" -msgstr "" +msgstr "behera" #. ☠ (U+02620), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1870,7 +1859,7 @@ "SKULL_AND_CROSSBONES\n" "LngText.text" msgid "poison" -msgstr "" +msgstr "pozoia" #. ☡ (U+02621), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1879,7 +1868,7 @@ "CAUTION_SIGN\n" "LngText.text" msgid "caution" -msgstr "" +msgstr "arreta" #. ☢ (U+02622), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1888,7 +1877,7 @@ "RADIOACTIVE_SIGN\n" "LngText.text" msgid "radioactive" -msgstr "" +msgstr "erradiaktiboa" #. ☣ (U+02623), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1897,7 +1886,7 @@ "BIOHAZARD_SIGN\n" "LngText.text" msgid "biohazard" -msgstr "" +msgstr "arrisku biologikoa" #. ☤ (U+02624), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1906,7 +1895,7 @@ "CADUCEUS\n" "LngText.text" msgid "caduceus" -msgstr "" +msgstr "kaduzeoa" #. ☥ (U+02625), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1915,7 +1904,7 @@ "ANKH\n" "LngText.text" msgid "ankh" -msgstr "" +msgstr "ankh" #. ☦ (U+02626), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1924,7 +1913,7 @@ "ORTHODOX_CROSS\n" "LngText.text" msgid "orthodox cross" -msgstr "" +msgstr "gurutze ortodoxoa" #. ☧ (U+02627), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1933,7 +1922,7 @@ "CHI_RHO\n" "LngText.text" msgid "chi rho" -msgstr "" +msgstr "kristograma" #. ☨ (U+02628), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1942,7 +1931,7 @@ "CROSS_OF_LORRAINE\n" "LngText.text" msgid "cross of Lorraine" -msgstr "" +msgstr "Lorrenako gurutzea" #. ☩ (U+02629), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1951,7 +1940,7 @@ "CROSS_OF_JERUSALEM\n" "LngText.text" msgid "cross of Jerusalem" -msgstr "" +msgstr "Jerusalemgo gurutzea" #. ☪ (U+0262A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1960,7 +1949,7 @@ "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 @@ -1978,7 +1967,7 @@ "ADI_SHAKTI\n" "LngText.text" msgid "Adi Shakti" -msgstr "" +msgstr "Adi Sakti" #. ☭ (U+0262D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1987,7 +1976,7 @@ "HAMMER_AND_SICKLE\n" "LngText.text" msgid "hammer and sickle" -msgstr "" +msgstr "mailua eta igitaia" #. ☮ (U+0262E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1996,7 +1985,7 @@ "PEACE_SYMBOL\n" "LngText.text" msgid "peace" -msgstr "" +msgstr "bakea" #. ☯ (U+0262F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2005,7 +1994,7 @@ "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 @@ "WHITE_FROWNING_FACE\n" "LngText.text" msgid "frown" -msgstr "" +msgstr "beltzuri" #. ☺ (U+0263A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2023,7 +2012,7 @@ "WHITE_SMILING_FACE\n" "LngText.text" msgid "smiling" -msgstr "" +msgstr "irribarretsu" #. ☻ (U+0263B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2032,7 +2021,7 @@ "BLACK_SMILING_FACE\n" "LngText.text" msgid "smiling2" -msgstr "" +msgstr "irribarretsu2" #. ☼ (U+0263C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2041,7 +2030,7 @@ "WHITE_SUN_WITH_RAYS\n" "LngText.text" msgid "Sun2" -msgstr "" +msgstr "Eguzkia2" #. ☽ (U+0263D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2050,7 +2039,7 @@ "FIRST_QUARTER_MOON\n" "LngText.text" msgid "Moon" -msgstr "" +msgstr "Ilargia" #. ☾ (U+0263E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2059,7 +2048,7 @@ "LAST_QUARTER_MOON\n" "LngText.text" msgid "Moon2" -msgstr "" +msgstr "Ilargia2" #. ☿ (U+0263F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2068,7 +2057,7 @@ "MERCURY\n" "LngText.text" msgid "Mercury" -msgstr "" +msgstr "Merkurio" #. ♀ (U+02640), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2077,7 +2066,7 @@ "FEMALE_SIGN\n" "LngText.text" msgid "female" -msgstr "" +msgstr "emakumezkoa" #. â™ (U+02641), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2086,7 +2075,7 @@ "EARTH\n" "LngText.text" msgid "Earth" -msgstr "" +msgstr "Lurra" #. ♂ (U+02642), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2095,7 +2084,7 @@ "MALE_SIGN\n" "LngText.text" msgid "male" -msgstr "" +msgstr "gizonezkoa" #. ♃ (U+02643), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2104,7 +2093,7 @@ "JUPITER\n" "LngText.text" msgid "Jupiter" -msgstr "" +msgstr "Jupiter" #. ♄ (U+02644), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2113,7 +2102,7 @@ "SATURN\n" "LngText.text" msgid "Saturn" -msgstr "" +msgstr "Saturno" #. â™… (U+02645), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2122,7 +2111,7 @@ "URANUS\n" "LngText.text" msgid "Uranus" -msgstr "" +msgstr "Urano" #. ♆ (U+02646), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2131,7 +2120,7 @@ "NEPTUNE\n" "LngText.text" msgid "Neptune" -msgstr "" +msgstr "Neptuno" #. ♇ (U+02647), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2140,7 +2129,7 @@ "PLUTO\n" "LngText.text" msgid "Pluto" -msgstr "" +msgstr "Pluton" #. ♈ (U+02648), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2149,7 +2138,7 @@ "ARIES\n" "LngText.text" msgid "Aries" -msgstr "" +msgstr "Aries" #. ♉ (U+02649), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2158,7 +2147,7 @@ "TAURUS\n" "LngText.text" msgid "Taurus" -msgstr "" +msgstr "Tauro" #. ♊ (U+0264A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2167,7 +2156,7 @@ "GEMINI\n" "LngText.text" msgid "Gemini" -msgstr "" +msgstr "Geminis" #. ♋ (U+0264B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2176,7 +2165,7 @@ "CANCER\n" "LngText.text" msgid "Cancer" -msgstr "" +msgstr "Kantzer" #. ♌ (U+0264C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2185,7 +2174,7 @@ "LEO\n" "LngText.text" msgid "Leo" -msgstr "" +msgstr "Leo" #. â™ (U+0264D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2194,7 +2183,7 @@ "VIRGO\n" "LngText.text" msgid "Virgo" -msgstr "" +msgstr "Birgo" #. ♎ (U+0264E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2203,7 +2192,7 @@ "LIBRA\n" "LngText.text" msgid "Libra" -msgstr "" +msgstr "Libra" #. â™ (U+0264F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2212,7 +2201,7 @@ "SCORPIUS\n" "LngText.text" msgid "Scorpius" -msgstr "" +msgstr "Eskorpio" #. â™ (U+02650), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2221,7 +2210,7 @@ "SAGITTARIUS\n" "LngText.text" msgid "Sagittarius" -msgstr "" +msgstr "Sagitario" #. ♑ (U+02651), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2230,7 +2219,7 @@ "CAPRICORN\n" "LngText.text" msgid "Capricorn" -msgstr "" +msgstr "Kaprikornio" #. â™’ (U+02652), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2239,7 +2228,7 @@ "AQUARIUS\n" "LngText.text" msgid "Aquarius" -msgstr "" +msgstr "Akuario" #. ♓ (U+02653), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2248,7 +2237,7 @@ "PISCES\n" "LngText.text" msgid "Pisces" -msgstr "" +msgstr "Piszis" #. â™” (U+02654), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2257,7 +2246,7 @@ "WHITE_CHESS_KING\n" "LngText.text" msgid "white king" -msgstr "" +msgstr "errege zuria" #. ♕ (U+02655), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2266,7 +2255,7 @@ "WHITE_CHESS_QUEEN\n" "LngText.text" msgid "white queen" -msgstr "" +msgstr "erregina zuria" #. â™– (U+02656), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2275,7 +2264,7 @@ "WHITE_CHESS_ROOK\n" "LngText.text" msgid "white rook" -msgstr "" +msgstr "dorre zuria" #. â™— (U+02657), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2284,7 +2273,7 @@ "WHITE_CHESS_BISHOP\n" "LngText.text" msgid "white bishop" -msgstr "" +msgstr "alfil zuria" #. ♘ (U+02658), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2293,7 +2282,7 @@ "WHITE_CHESS_KNIGHT\n" "LngText.text" msgid "white knight" -msgstr "" +msgstr "zaldun zuria" #. â™™ (U+02659), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2302,7 +2291,7 @@ "WHITE_CHESS_PAWN\n" "LngText.text" msgid "white pawn" -msgstr "" +msgstr "peoi zuria" #. ♚ (U+0265A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2311,7 +2300,7 @@ "BLACK_CHESS_KING\n" "LngText.text" msgid "black king" -msgstr "" +msgstr "errege beltza" #. â™› (U+0265B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2320,7 +2309,7 @@ "BLACK_CHESS_QUEEN\n" "LngText.text" msgid "black queen" -msgstr "" +msgstr "erregina beltza" #. ♜ (U+0265C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2329,7 +2318,7 @@ "BLACK_CHESS_ROOK\n" "LngText.text" msgid "black rook" -msgstr "" +msgstr "dorre beltza" #. â™ (U+0265D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2338,7 +2327,7 @@ "BLACK_CHESS_BISHOP\n" "LngText.text" msgid "black bishop" -msgstr "" +msgstr "alfil beltza" #. ♞ (U+0265E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2347,7 +2336,7 @@ "BLACK_CHESS_KNIGHT\n" "LngText.text" msgid "black knight" -msgstr "" +msgstr "zaldun beltza" #. ♟ (U+0265F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2356,7 +2345,7 @@ "BLACK_CHESS_PAWN\n" "LngText.text" msgid "black pawn" -msgstr "" +msgstr "peoi beltza" #. â™  (U+02660), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2365,7 +2354,7 @@ "BLACK_SPADE_SUIT\n" "LngText.text" msgid "spades" -msgstr "" +msgstr "espatak" #. ♡ (U+02661), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2374,7 +2363,7 @@ "WHITE_HEART_SUIT\n" "LngText.text" msgid "hearts2" -msgstr "" +msgstr "bihotzak2" #. ♢ (U+02662), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2383,7 +2372,7 @@ "WHITE_DIAMOND_SUIT\n" "LngText.text" msgid "diamonds2" -msgstr "" +msgstr "diamanteak2" #. ♣ (U+02663), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2392,7 +2381,7 @@ "BLACK_CLUB_SUIT\n" "LngText.text" msgid "clubs" -msgstr "" +msgstr "hirusta" #. ♤ (U+02664), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2401,7 +2390,7 @@ "WHITE_SPADE_SUIT\n" "LngText.text" msgid "spades2" -msgstr "" +msgstr "ezpatak2" #. ♥ (U+02665), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2410,7 +2399,7 @@ "BLACK_HEART_SUIT\n" "LngText.text" msgid "hearts" -msgstr "" +msgstr "bihotzak" #. ♦ (U+02666), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2419,7 +2408,7 @@ "BLACK_DIAMOND_SUIT\n" "LngText.text" msgid "diamonds" -msgstr "" +msgstr "diamanteak" #. ♧ (U+02667), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2428,7 +2417,7 @@ "WHITE_CLUB_SUIT\n" "LngText.text" msgid "clubs2" -msgstr "" +msgstr "hiruta2" #. ♨ (U+02668), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2437,7 +2426,7 @@ "HOT_SPRINGS\n" "LngText.text" msgid "hot springs" -msgstr "" +msgstr "ur termalak" #. ♩ (U+02669), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2446,7 +2435,7 @@ "QUARTER_NOTE\n" "LngText.text" msgid "note" -msgstr "" +msgstr "oharra" #. ♪ (U+0266A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2455,7 +2444,7 @@ "EIGHTH_NOTE\n" "LngText.text" msgid "note2" -msgstr "" +msgstr "oharra2" #. ♫ (U+0266B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2464,7 +2453,7 @@ "BEAMED_EIGHTH_NOTES\n" "LngText.text" msgid "notes" -msgstr "" +msgstr "oharrak" #. ♬ (U+0266C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2473,7 +2462,7 @@ "BEAMED_SIXTEENTH_NOTES\n" "LngText.text" msgid "notes2" -msgstr "" +msgstr "oharrak2" #. â™­ (U+0266D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2482,7 +2471,7 @@ "MUSIC_FLAT_SIGN\n" "LngText.text" msgid "flat" -msgstr "" +msgstr "bemol" #. â™® (U+0266E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2491,7 +2480,7 @@ "MUSIC_NATURAL_SIGN\n" "LngText.text" msgid "natural" -msgstr "" +msgstr "naturala" #. ♯ (U+0266F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2500,7 +2489,7 @@ "MUSIC_SHARP_SIGN\n" "LngText.text" msgid "sharp" -msgstr "" +msgstr "sostenitua" #. ♲ (U+02672), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2509,7 +2498,7 @@ "UNIVERSAL_RECYCLING_SYMBOL\n" "LngText.text" msgid "recycling" -msgstr "" +msgstr "birziklatzea" #. â™» (U+0267B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2518,7 +2507,7 @@ "BLACK_UNIVERSAL_RECYCLING_SYMBOL\n" "LngText.text" msgid "recycling2" -msgstr "" +msgstr "birziklatzea2" #. ♼ (U+0267C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2527,7 +2516,7 @@ "RECYCLED_PAPER\n" "LngText.text" msgid "recycled paper" -msgstr "" +msgstr "birziklatutako papera" #. ♾ (U+0267E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2536,7 +2525,7 @@ "PERMANENT_PAPER\n" "LngText.text" msgid "permanent paper" -msgstr "" +msgstr "azido gabeko papera" #. ♿ (U+0267F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2545,7 +2534,7 @@ "WHEELCHAIR_SYMBOL\n" "LngText.text" msgid "wheelchair" -msgstr "" +msgstr "elbarria" #. ⚀ (U+02680), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2554,7 +2543,7 @@ "DIE_FACE-1\n" "LngText.text" msgid "dice1" -msgstr "" +msgstr "dadoa1" #. âš (U+02681), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2563,7 +2552,7 @@ "DIE_FACE-2\n" "LngText.text" msgid "dice2" -msgstr "" +msgstr "dadoa2" #. âš‚ (U+02682), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2572,7 +2561,7 @@ "DIE_FACE-3\n" "LngText.text" msgid "dice3" -msgstr "" +msgstr "dadoa3" #. ⚃ (U+02683), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2581,7 +2570,7 @@ "DIE_FACE-4\n" "LngText.text" msgid "dice4" -msgstr "" +msgstr "dadoa4" #. âš„ (U+02684), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2590,7 +2579,7 @@ "DIE_FACE-5\n" "LngText.text" msgid "dice5" -msgstr "" +msgstr "dadoa5" #. âš… (U+02685), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2599,7 +2588,7 @@ "DIE_FACE-6\n" "LngText.text" msgid "dice6" -msgstr "" +msgstr "dadoa6" #. âš (U+02690), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2608,7 +2597,7 @@ "WHITE_FLAG\n" "LngText.text" msgid "flag" -msgstr "" +msgstr "bandera" #. âš‘ (U+02691), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2617,7 +2606,7 @@ "BLACK_FLAG\n" "LngText.text" msgid "flag2" -msgstr "" +msgstr "bandera2" #. âš’ (U+02692), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2626,7 +2615,7 @@ "HAMMER_AND_PICK\n" "LngText.text" msgid "hammer and pick" -msgstr "" +msgstr "mailu eta pikoa" #. âš“ (U+02693), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2635,7 +2624,7 @@ "ANCHOR\n" "LngText.text" msgid "anchor" -msgstr "" +msgstr "aingura" #. âš” (U+02694), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2644,7 +2633,7 @@ "CROSSED_SWORDS\n" "LngText.text" msgid "swords" -msgstr "" +msgstr "ezpatak" #. âš• (U+02695), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2653,7 +2642,7 @@ "STAFF_OF_AESCULAPIUS\n" "LngText.text" msgid "medical" -msgstr "" +msgstr "medikuntza" #. âš– (U+02696), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2662,7 +2651,7 @@ "SCALES\n" "LngText.text" msgid "scales" -msgstr "" +msgstr "balantza" #. âš— (U+02697), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2671,7 +2660,7 @@ "ALEMBIC\n" "LngText.text" msgid "alembic" -msgstr "" +msgstr "alanbikea" #. ⚘ (U+02698), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2680,7 +2669,7 @@ "FLOWER\n" "LngText.text" msgid "flower" -msgstr "" +msgstr "lorea" #. âš™ (U+02699), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2689,7 +2678,7 @@ "GEAR\n" "LngText.text" msgid "gear" -msgstr "" +msgstr "engranajea" #. âšš (U+0269A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2707,7 +2696,7 @@ "ATOM_SYMBOL\n" "LngText.text" msgid "atom" -msgstr "" +msgstr "atomoa" #. âšœ (U+0269C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2716,7 +2705,7 @@ "FLEUR-DE-LIS\n" "LngText.text" msgid "fleur de lis" -msgstr "" +msgstr "zitori horia" #. âš  (U+026A0), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2725,7 +2714,7 @@ "WARNING_SIGN\n" "LngText.text" msgid "warning" -msgstr "" +msgstr "abisua" #. âš¡ (U+026A1), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2734,7 +2723,7 @@ "HIGH_VOLTAGE_SIGN\n" "LngText.text" msgid "zap" -msgstr "" +msgstr "tximista" #. ⚪ (U+026AA), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2743,7 +2732,7 @@ "MEDIUM_WHITE_CIRCLE\n" "LngText.text" msgid "white circle" -msgstr "" +msgstr "zirkulu zuria" #. âš« (U+026AB), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2752,7 +2741,7 @@ "MEDIUM_BLACK_CIRCLE\n" "LngText.text" msgid "black circle" -msgstr "" +msgstr "zirkulu beltza" #. âš­ (U+026AD), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2761,7 +2750,7 @@ "MARRIAGE_SYMBOL\n" "LngText.text" msgid "marriage" -msgstr "" +msgstr "ezkontza" #. âš® (U+026AE), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2770,7 +2759,7 @@ "DIVORCE_SYMBOL\n" "LngText.text" msgid "divorce" -msgstr "" +msgstr "dibortzioa" #. âš° (U+026B0), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2779,7 +2768,7 @@ "COFFIN\n" "LngText.text" msgid "coffin" -msgstr "" +msgstr "zerraldoa" #. âš± (U+026B1), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2788,7 +2777,7 @@ "FUNERAL_URN\n" "LngText.text" msgid "urn" -msgstr "" +msgstr "urna" #. âš½ (U+026BD), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2797,7 +2786,7 @@ "SOCCER_BALL\n" "LngText.text" msgid "soccer" -msgstr "" +msgstr "futbola" #. âš¾ (U+026BE), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2806,7 +2795,7 @@ "BASEBALL\n" "LngText.text" msgid "baseball" -msgstr "" +msgstr "beisbola" #. ⛄ (U+026C4), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2815,7 +2804,7 @@ "SNOWMAN_WITHOUT_SNOW\n" "LngText.text" msgid "snowman2" -msgstr "" +msgstr "elur-gizona2" #. â›… (U+026C5), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2824,7 +2813,7 @@ "SUN_BEHIND_CLOUD\n" "LngText.text" msgid "cloud2" -msgstr "" +msgstr "hodeia2" #. ⛆ (U+026C6), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2833,7 +2822,7 @@ "RAIN\n" "LngText.text" msgid "rain2" -msgstr "" +msgstr "euria2" #. ⛈ (U+026C8), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2842,7 +2831,7 @@ "THUNDER_CLOUD_AND_RAIN\n" "LngText.text" msgid "cloud3" -msgstr "" +msgstr "hodeia3" #. ⛎ (U+026CE), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2851,7 +2840,7 @@ "OPHIUCHUS\n" "LngText.text" msgid "ophiuchus" -msgstr "" +msgstr "ofiuko" #. â› (U+026CF), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2860,7 +2849,7 @@ "PICK\n" "LngText.text" msgid "pick" -msgstr "" +msgstr "pIkoa" #. â› (U+026D0), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2869,7 +2858,7 @@ "CAR_SLIDING\n" "LngText.text" msgid "sliding car" -msgstr "" +msgstr "kotxea derrapatzen" #. ⛑ (U+026D1), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2878,7 +2867,7 @@ "HELMET_WITH_WHITE_CROSS\n" "LngText.text" msgid "helmet" -msgstr "" +msgstr "kaskoa" #. ⛓ (U+026D3), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2887,7 +2876,7 @@ "CHAINS\n" "LngText.text" msgid "chains" -msgstr "" +msgstr "kateak" #. â›” (U+026D4), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2896,7 +2885,7 @@ "NO_ENTRY\n" "LngText.text" msgid "no entry" -msgstr "" +msgstr "sarrera debekatua" #. ⛟ (U+026DF), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2905,7 +2894,7 @@ "BLACK_TRUCK\n" "LngText.text" msgid "truck" -msgstr "" +msgstr "kamioia" #. ⛤ (U+026E4), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2914,7 +2903,7 @@ "PENTAGRAM\n" "LngText.text" msgid "pentagram" -msgstr "" +msgstr "pentagrama" #. ⛨ (U+026E8), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2923,7 +2912,7 @@ "BLACK_CROSS_ON_SHIELD\n" "LngText.text" msgid "shield" -msgstr "" +msgstr "ezkutua" #. ⛪ (U+026EA), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2932,7 +2921,7 @@ "CHURCH\n" "LngText.text" msgid "church" -msgstr "" +msgstr "eliza" #. â›° (U+026F0), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2941,7 +2930,7 @@ "MOUNTAIN\n" "LngText.text" msgid "mountain" -msgstr "" +msgstr "mendia" #. â›± (U+026F1), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2950,7 +2939,7 @@ "UMBRELLA_ON_GROUND\n" "LngText.text" msgid "umbrella3" -msgstr "" +msgstr "aterkia3" #. ⛲ (U+026F2), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2959,7 +2948,7 @@ "FOUNTAIN\n" "LngText.text" msgid "fountain" -msgstr "" +msgstr "iturria" #. ⛳ (U+026F3), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2968,7 +2957,7 @@ "FLAG_IN_HOLE\n" "LngText.text" msgid "golf" -msgstr "" +msgstr "golfa" #. â›´ (U+026F4), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2977,7 +2966,7 @@ "FERRY\n" "LngText.text" msgid "ferry" -msgstr "" +msgstr "ferria" #. ⛵ (U+026F5), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2986,7 +2975,7 @@ "SAILBOAT\n" "LngText.text" msgid "sailboat" -msgstr "" +msgstr "itsasontzia" #. ⛺ (U+026FA), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2995,7 +2984,7 @@ "TENT\n" "LngText.text" msgid "tent" -msgstr "" +msgstr "denda" #. â›· (U+026F7), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3004,7 +2993,7 @@ "SKIER\n" "LngText.text" msgid "skier" -msgstr "" +msgstr "eskiatzailea" #. ⛸ (U+026F8), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3013,7 +3002,7 @@ "ICE_SKATE\n" "LngText.text" msgid "skate" -msgstr "" +msgstr "patina" #. ⛹ (U+026F9), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3022,7 +3011,7 @@ "PERSON_WITH_BALL\n" "LngText.text" msgid "ball" -msgstr "" +msgstr "baloia" #. ⛽ (U+026FD), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3031,7 +3020,7 @@ "FUEL_PUMP\n" "LngText.text" msgid "fuelpump" -msgstr "" +msgstr "gasolindegia" #. ✠(U+02701), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3040,7 +3029,7 @@ "UPPER_BLADE_SCISSORS\n" "LngText.text" msgid "scissors3" -msgstr "" +msgstr "artaziak3" #. ✂ (U+02702), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3049,7 +3038,7 @@ "BLACK_SCISSORS\n" "LngText.text" msgid "scissors" -msgstr "" +msgstr "artaziak" #. ✃ (U+02703), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3058,7 +3047,7 @@ "LOWER_BLADE_SCISSORS\n" "LngText.text" msgid "scissors4" -msgstr "" +msgstr "artaziak4" #. ✄ (U+02704), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3067,7 +3056,7 @@ "WHITE_SCISSORS\n" "LngText.text" msgid "scissors2" -msgstr "" +msgstr "artaziak2" #. ✅ (U+02705), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3076,7 +3065,7 @@ "WHITE_HEAVY_CHECK_MARK\n" "LngText.text" msgid "check mark3" -msgstr "" +msgstr "egiaztaketa marka3" #. ✆ (U+02706), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3085,7 +3074,7 @@ "TELEPHONE_LOCATION\n" "LngText.text" msgid "telephone" -msgstr "" +msgstr "telefonoa" #. ✈ (U+02708), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3094,7 +3083,7 @@ "AIRPLANE\n" "LngText.text" msgid "airplane" -msgstr "" +msgstr "hegazkina" #. ✉ (U+02709), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3103,7 +3092,7 @@ "ENVELOPE\n" "LngText.text" msgid "envelope" -msgstr "" +msgstr "gutun-azala" #. ✊ (U+0270A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3112,7 +3101,7 @@ "RAISED_FIST\n" "LngText.text" msgid "fist" -msgstr "" +msgstr "ukabila" #. ✋ (U+0270B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3121,7 +3110,7 @@ "RAISED_HAND\n" "LngText.text" msgid "hand" -msgstr "" +msgstr "eskua" #. ✌ (U+0270C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3130,7 +3119,7 @@ "VICTORY_HAND\n" "LngText.text" msgid "victory" -msgstr "" +msgstr "garaipena" #. ✠(U+0270D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3139,7 +3128,7 @@ "WRITING_HAND\n" "LngText.text" msgid "writing" -msgstr "" +msgstr "idaztea" #. ✎ (U+0270E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3148,7 +3137,7 @@ "LOWER_RIGHT_PENCIL\n" "LngText.text" msgid "pencil" -msgstr "" +msgstr "arkatza" #. ✠(U+0270F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3157,7 +3146,7 @@ "PENCIL\n" "LngText.text" msgid "pencil2" -msgstr "" +msgstr "arkatza2" #. ✠(U+02710), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3166,7 +3155,7 @@ "UPPER_RIGHT_PENCIL\n" "LngText.text" msgid "pencil3" -msgstr "" +msgstr "arkatza3" #. ✑ (U+02711), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3175,7 +3164,7 @@ "WHITE_NIB\n" "LngText.text" msgid "nib" -msgstr "" +msgstr "luma" #. ✒ (U+02712), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3184,7 +3173,7 @@ "BLACK_NIB\n" "LngText.text" msgid "nib2" -msgstr "" +msgstr "luma2" #. ✓ (U+02713), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3193,7 +3182,7 @@ "CHECK_MARK\n" "LngText.text" msgid "check mark" -msgstr "" +msgstr "egiaztaketa marka" #. ✔ (U+02714), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3202,7 +3191,7 @@ "HEAVY_CHECK_MARK\n" "LngText.text" msgid "check mark2" -msgstr "" +msgstr "egiaztaketa marka2" #. ✖ (U+02716), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3211,7 +3200,7 @@ "HEAVY_MULTIPLICATION_X\n" "LngText.text" msgid "times2" -msgstr "" +msgstr "bider2" #. ✙ (U+02719), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3220,7 +3209,7 @@ "OUTLINED_GREEK_CROSS\n" "LngText.text" msgid "Greek cross2" -msgstr "" +msgstr "Gurutze greziarra2" #. ✚ (U+0271A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3229,7 +3218,7 @@ "HEAVY_GREEK_CROSS\n" "LngText.text" msgid "Greek cross" -msgstr "" +msgstr "Gurutze greziarra" #. ✠(U+0271D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3238,7 +3227,7 @@ "LATIN_CROSS\n" "LngText.text" msgid "Latin cross" -msgstr "" +msgstr "Gurutze latinoa" #. ✠ (U+02720), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3247,7 +3236,7 @@ "MALTESE_CROSS\n" "LngText.text" msgid "Maltese cross" -msgstr "" +msgstr "Maltako gurutzea" #. ✡ (U+02721), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3256,7 +3245,7 @@ "STAR_OF_DAVID\n" "LngText.text" msgid "star of David" -msgstr "" +msgstr "Dabiden izarra" #. ✨ (U+02728), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3265,7 +3254,7 @@ "SPARKLES\n" "LngText.text" msgid "sparkles" -msgstr "" +msgstr "txinpartak" #. â„ (U+02744), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3274,7 +3263,7 @@ "SNOWFLAKE\n" "LngText.text" msgid "snowflake" -msgstr "" +msgstr "elur-maluta" #. ⇠(U+02747), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3283,7 +3272,7 @@ "SPARKLE\n" "LngText.text" msgid "sparkle" -msgstr "" +msgstr "txinparta" #. ⌠(U+0274C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3292,7 +3281,7 @@ "CROSS_MARK\n" "LngText.text" msgid "x2" -msgstr "" +msgstr "x2" #. ⎠(U+0274E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3301,11 +3290,10 @@ "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 @@ "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 @@ "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 @@ "HEAVY_BLACK_HEART\n" "LngText.text" msgid "heart" -msgstr "" +msgstr "bihotza" #. âž° (U+027B0), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3357,7 +3344,7 @@ "CURLY_LOOP\n" "LngText.text" msgid "loop" -msgstr "" +msgstr "begizta" #. âž¿ (U+027BF), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3366,7 +3353,7 @@ "DOUBLE_CURLY_LOOP\n" "LngText.text" msgid "loop2" -msgstr "" +msgstr "begizta2" #. ⬛ (U+02B1B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3375,7 +3362,7 @@ "BLACK_LARGE_SQUARE\n" "LngText.text" msgid "large square2" -msgstr "" +msgstr "karratu handia2" #. ⬜ (U+02B1C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3384,7 +3371,7 @@ "WHITE_LARGE_SQUARE\n" "LngText.text" msgid "large square" -msgstr "" +msgstr "karratu handia" #. ⬟ (U+02B1F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3393,7 +3380,7 @@ "BLACK_PENTAGON\n" "LngText.text" msgid "pentagon2" -msgstr "" +msgstr "pentagonoa2" #. ⬠ (U+02B20), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3402,7 +3389,7 @@ "WHITE_PENTAGON\n" "LngText.text" msgid "pentagon" -msgstr "" +msgstr "pentagonoa" #. ⬡ (U+02B21), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3411,7 +3398,7 @@ "WHITE_HEXAGON\n" "LngText.text" msgid "hexagon" -msgstr "" +msgstr "hexagonoa" #. ⬢ (U+02B22), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3420,7 +3407,7 @@ "BLACK_HEXAGON\n" "LngText.text" msgid "hexagon2" -msgstr "" +msgstr "hexagonoa2" #. ⬤ (U+02B24), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3429,7 +3416,7 @@ "BLACK_LARGE_CIRCLE\n" "LngText.text" msgid "large circle2" -msgstr "" +msgstr "zirkulu handia2" #. ⬭ (U+02B2D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3438,7 +3425,7 @@ "WHITE_HORIZONTAL_ELLIPSE\n" "LngText.text" msgid "ellipse" -msgstr "" +msgstr "elipsea" #. â­ (U+02B50), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3447,7 +3434,7 @@ "WHITE_MEDIUM_STAR\n" "LngText.text" msgid "medium star" -msgstr "" +msgstr "izar ertaina" #. â­‘ (U+02B51), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3456,7 +3443,7 @@ "BLACK_SMALL_STAR\n" "LngText.text" msgid "small star2" -msgstr "" +msgstr "izar txikia2" #. â­’ (U+02B52), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3465,7 +3452,7 @@ "WHITE_SMALL_STAR\n" "LngText.text" msgid "small star" -msgstr "" +msgstr "izar txikia" #. ff (U+0FB00), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3474,7 +3461,7 @@ "LATIN_SMALL_LIGATURE_FF\n" "LngText.text" msgid "ff" -msgstr "" +msgstr "ff" #. ï¬ (U+0FB01), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3483,7 +3470,7 @@ "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 @@ "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 @@ "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 @@ "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 @@ "MUSICAL_SYMBOL_G_CLEF\n" "LngText.text" msgid "clef" -msgstr "" +msgstr "klabea" #. ð„ª (U+1D12A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3528,7 +3515,7 @@ "MUSICAL_SYMBOL_DOUBLE_SHARP\n" "LngText.text" msgid "double sharp" -msgstr "" +msgstr "sostenitu bikoitza" #. ð„« (U+1D12B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3537,7 +3524,7 @@ "MUSICAL_SYMBOL_DOUBLE_FLAT\n" "LngText.text" msgid "double flat" -msgstr "" +msgstr "bemol bikoitza" #. ð„» (U+1D13B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3546,7 +3533,7 @@ "WHOLE_REST\n" "LngText.text" msgid "whole rest" -msgstr "" +msgstr "isilune borobila" #. ð„¼ (U+1D13C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3555,7 +3542,7 @@ "HALF_REST\n" "LngText.text" msgid "half rest" -msgstr "" +msgstr "isilune zuria" #. ð„½ (U+1D13D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3564,7 +3551,7 @@ "QUARTER_REST\n" "LngText.text" msgid "quarter rest" -msgstr "" +msgstr "isilune beltza" #. ð„¾ (U+1D13E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3573,7 +3560,7 @@ "EIGHTH_REST\n" "LngText.text" msgid "eighth rest" -msgstr "" +msgstr "isilune borobila" #. ð… (U+1D15D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3582,7 +3569,7 @@ "MUSICAL_SYMBOL_WHOLE_NOTE\n" "LngText.text" msgid "whole note" -msgstr "" +msgstr "nota borobila" #. ð…ž (U+1D15E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3591,7 +3578,7 @@ "MUSICAL_SYMBOL_HALF_NOTE\n" "LngText.text" msgid "half note" -msgstr "" +msgstr "nota zuria" #. ð…Ÿ (U+1D15F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3600,7 +3587,7 @@ "MUSICAL_SYMBOL_QUARTER_NOTE\n" "LngText.text" msgid "quarter note" -msgstr "" +msgstr "nota beltza" #. ð…  (U+1D160), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3609,7 +3596,7 @@ "MUSICAL_SYMBOL_EIGHTH_NOTE\n" "LngText.text" msgid "eighth note" -msgstr "" +msgstr "kortxea" #. ð…¡ (U+1D161), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3618,7 +3605,7 @@ "MUSICAL_SYMBOL_SIXTEENTH_NOTE\n" "LngText.text" msgid "sixteenth note" -msgstr "" +msgstr "semikortxea" #. 🀄 (U+1F004), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3627,7 +3614,7 @@ "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 @@ "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 @@ "PLAYING_CARD_ACE_OF_SPADES\n" "LngText.text" msgid "ace" -msgstr "" +msgstr "bata" #. 🂫 (U+1F0AB), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3654,7 +3641,7 @@ "PLAYING_CARD_JACK_OF_SPADES\n" "LngText.text" msgid "jack" -msgstr "" +msgstr "jota" #. 🂭 (U+1F0AD), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3663,7 +3650,7 @@ "PLAYING_CARD_QUEEN_OF_SPADES\n" "LngText.text" msgid "queen" -msgstr "" +msgstr "erregina" #. 🂮 (U+1F0AE), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3672,7 +3659,7 @@ "PLAYING_CARD_KING_OF_SPADES\n" "LngText.text" msgid "king" -msgstr "" +msgstr "erregea" #. 🃠(U+1F0CF), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3681,7 +3668,7 @@ "PLAYING_CARD_BLACK_JOKER\n" "LngText.text" msgid "joker" -msgstr "" +msgstr "komodina" #. 🌀 (U+1F300), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3690,7 +3677,7 @@ "CYCLONE\n" "LngText.text" msgid "cyclone" -msgstr "" +msgstr "zikloia" #. 🌠(U+1F301), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3699,7 +3686,7 @@ "FOGGY\n" "LngText.text" msgid "fog" -msgstr "" +msgstr "lainoa" #. 🌂 (U+1F302), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3708,7 +3695,7 @@ "CLOSED_UMBRELLA\n" "LngText.text" msgid "umbrella2" -msgstr "" +msgstr "aterkia2" #. 🌃 (U+1F303), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3717,7 +3704,7 @@ "NIGHT_WITH_STARS\n" "LngText.text" msgid "night" -msgstr "" +msgstr "gaua" #. 🌄 (U+1F304), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3726,7 +3713,7 @@ "SUNRISE_OVER_MOUNTAINS\n" "LngText.text" msgid "sunrise2" -msgstr "" +msgstr "egunsentia2" #. 🌅 (U+1F305), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3735,7 +3722,7 @@ "SUNRISE\n" "LngText.text" msgid "sunrise" -msgstr "" +msgstr "egunsentia" #. 🌆 (U+1F306), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3744,7 +3731,7 @@ "CITYSCAPE_AT_DUSK\n" "LngText.text" msgid "sunset" -msgstr "" +msgstr "ilunabarra" #. 🌇 (U+1F307), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3753,7 +3740,7 @@ "SUNSET_OVER_BUILDINGS\n" "LngText.text" msgid "sunrise3" -msgstr "" +msgstr "ilunabarra3" #. 🌈 (U+1F308), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3762,7 +3749,7 @@ "RAINBOW\n" "LngText.text" msgid "rainbow" -msgstr "" +msgstr "ostadarra" #. 🌉 (U+1F309), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3771,7 +3758,7 @@ "BRIDGE_AT_NIGHT\n" "LngText.text" msgid "bridge" -msgstr "" +msgstr "zubia" #. 🌊 (U+1F30A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3780,7 +3767,7 @@ "WATER_WAVE\n" "LngText.text" msgid "ocean" -msgstr "" +msgstr "ozeanoa" #. 🌋 (U+1F30B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3789,7 +3776,7 @@ "VOLCANO\n" "LngText.text" msgid "volcano" -msgstr "" +msgstr "sumendia" #. 🌌 (U+1F30C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3798,7 +3785,7 @@ "MILKY_WAY\n" "LngText.text" msgid "Milky way" -msgstr "" +msgstr "Esne bidea" #. 🌠(U+1F30D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3807,7 +3794,7 @@ "EARTH_GLOBE_EUROPE-AFRICA\n" "LngText.text" msgid "globe" -msgstr "" +msgstr "lurra" #. 🌎 (U+1F30E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3816,7 +3803,7 @@ "EARTH_GLOBE_AMERICAS\n" "LngText.text" msgid "globe2" -msgstr "" +msgstr "lurra2" #. 🌠(U+1F30F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3825,7 +3812,7 @@ "EARTH_GLOBE_ASIA-AUSTRALIA\n" "LngText.text" msgid "globe3" -msgstr "" +msgstr "lurra3" #. 🌠(U+1F310), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3834,7 +3821,7 @@ "GLOBE_WITH_MERIDIANS\n" "LngText.text" msgid "globe4" -msgstr "" +msgstr "lurra4" #. 🌑 (U+1F311), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3843,7 +3830,7 @@ "NEW_MOON_SYMBOL\n" "LngText.text" msgid "new moon" -msgstr "" +msgstr "ilargi berria" #. 🌒 (U+1F312), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3879,7 +3866,7 @@ "FULL_MOON_SYMBOL\n" "LngText.text" msgid "full moon" -msgstr "" +msgstr "ilargi betea" #. 🌖 (U+1F316), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3915,7 +3902,7 @@ "CRESCENT_MOON\n" "LngText.text" msgid "crescent moon" -msgstr "" +msgstr "ilgora" #. 🌚 (U+1F31A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3924,7 +3911,7 @@ "NEW_MOON_WITH_FACE\n" "LngText.text" msgid "new moon2" -msgstr "" +msgstr "ilargi berria2" #. 🌛 (U+1F31B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3933,7 +3920,7 @@ "FIRST_QUARTER_MOON_WITH_FACE\n" "LngText.text" msgid "moon" -msgstr "" +msgstr "ilargia" #. 🌜 (U+1F31C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3942,7 +3929,7 @@ "LAST_QUARTER_MOON_WITH_FACE\n" "LngText.text" msgid "moon2" -msgstr "" +msgstr "ilargia2" #. 🌠(U+1F31D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3951,7 +3938,7 @@ "FULL_MOON_WITH_FACE\n" "LngText.text" msgid "full moon2" -msgstr "" +msgstr "ilargi betea2" #. 🌞 (U+1F31E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3960,7 +3947,7 @@ "SUN_WITH_FACE\n" "LngText.text" msgid "sun" -msgstr "" +msgstr "eguzkia" #. 🌟 (U+1F31F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3969,7 +3956,7 @@ "GLOWING_STAR\n" "LngText.text" msgid "star3" -msgstr "" +msgstr "izarra3" #. 🌠 (U+1F320), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3978,7 +3965,7 @@ "SHOOTING_STAR\n" "LngText.text" msgid "star4" -msgstr "" +msgstr "izarra4" #. 🌰 (U+1F330), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3987,7 +3974,7 @@ "CHESTNUT\n" "LngText.text" msgid "chestnut" -msgstr "" +msgstr "gaztaina" #. 🌱 (U+1F331), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3996,7 +3983,7 @@ "SEEDLING\n" "LngText.text" msgid "seedling" -msgstr "" +msgstr "aldaxka" #. 🌲 (U+1F332), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4005,7 +3992,7 @@ "EVERGREEN_TREE\n" "LngText.text" msgid "pine" -msgstr "" +msgstr "pinua" #. 🌳 (U+1F333), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4014,7 +4001,7 @@ "DECIDUOUS_TREE\n" "LngText.text" msgid "tree" -msgstr "" +msgstr "zuhaitza" #. 🌴 (U+1F334), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4023,7 +4010,7 @@ "PALM_TREE\n" "LngText.text" msgid "palm" -msgstr "" +msgstr "palmera" #. 🌵 (U+1F335), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4032,7 +4019,7 @@ "CACTUS\n" "LngText.text" msgid "cactus" -msgstr "" +msgstr "kaktusa" #. 🌷 (U+1F337), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4041,7 +4028,7 @@ "TULIP\n" "LngText.text" msgid "tulip" -msgstr "" +msgstr "tulipa" #. 🌸 (U+1F338), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4050,7 +4037,7 @@ "CHERRY_BLOSSOM\n" "LngText.text" msgid "cherry blossom" -msgstr "" +msgstr "geriza-lorea" #. 🌹 (U+1F339), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4059,7 +4046,7 @@ "ROSE\n" "LngText.text" msgid "rose" -msgstr "" +msgstr "larrosa" #. 🌺 (U+1F33A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4068,7 +4055,7 @@ "HIBISCUS\n" "LngText.text" msgid "hibiscus" -msgstr "" +msgstr "hibiskoa" #. 🌻 (U+1F33B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4077,7 +4064,7 @@ "SUNFLOWER\n" "LngText.text" msgid "sunflower" -msgstr "" +msgstr "ekilorea" #. 🌼 (U+1F33C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4086,7 +4073,7 @@ "BLOSSOM\n" "LngText.text" msgid "blossom" -msgstr "" +msgstr "lorea" #. 🌽 (U+1F33D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4095,7 +4082,7 @@ "EAR_OF_MAIZE\n" "LngText.text" msgid "corn" -msgstr "" +msgstr "artoa" #. 🌾 (U+1F33E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4104,7 +4091,7 @@ "EAR_OF_RICE\n" "LngText.text" msgid "grass" -msgstr "" +msgstr "bedarra" #. 🌿 (U+1F33F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4113,7 +4100,7 @@ "HERB\n" "LngText.text" msgid "herb" -msgstr "" +msgstr "belar on" #. 🀠(U+1F340), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4122,7 +4109,7 @@ "FOUR_LEAF_CLOVER\n" "LngText.text" msgid "clover" -msgstr "" +msgstr "hirusta" #. ðŸ (U+1F341), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4131,7 +4118,7 @@ "MAPLE_LEAF\n" "LngText.text" msgid "leaf" -msgstr "" +msgstr "hostoa" #. 🂠(U+1F342), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4140,7 +4127,7 @@ "FALLEN_LEAF\n" "LngText.text" msgid "leaf2" -msgstr "" +msgstr "hostoa2" #. 🃠(U+1F343), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4149,7 +4136,7 @@ "LEAF_FLUTTERING_IN_WIND\n" "LngText.text" msgid "leaf3" -msgstr "" +msgstr "hostoa3" #. 🄠(U+1F344), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4158,7 +4145,7 @@ "MUSHROOM\n" "LngText.text" msgid "mushroom" -msgstr "" +msgstr "ziza" #. 🅠(U+1F345), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4167,7 +4154,7 @@ "TOMATO\n" "LngText.text" msgid "tomato" -msgstr "" +msgstr "tomatea" #. 🆠(U+1F346), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4176,7 +4163,7 @@ "AUBERGINE\n" "LngText.text" msgid "eggplant" -msgstr "" +msgstr "alberjinia" #. 🇠(U+1F347), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4185,7 +4172,7 @@ "GRAPES\n" "LngText.text" msgid "grapes" -msgstr "" +msgstr "mahatsak" #. 🈠(U+1F348), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4194,7 +4181,7 @@ "MELON\n" "LngText.text" msgid "melon" -msgstr "" +msgstr "meloia" #. 🉠(U+1F349), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4203,7 +4190,7 @@ "WATERMELON\n" "LngText.text" msgid "watermelon" -msgstr "" +msgstr "angurria" #. 🊠(U+1F34A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4212,7 +4199,7 @@ "TANGERINE\n" "LngText.text" msgid "tangerine" -msgstr "" +msgstr "mandarina" #. 🋠(U+1F34B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4221,7 +4208,7 @@ "LEMON\n" "LngText.text" msgid "lemon" -msgstr "" +msgstr "limoia" #. 🌠(U+1F34C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4230,7 +4217,7 @@ "BANANA\n" "LngText.text" msgid "banana" -msgstr "" +msgstr "platanoa" #. ðŸ (U+1F34D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4239,7 +4226,7 @@ "PINEAPPLE\n" "LngText.text" msgid "pineapple" -msgstr "" +msgstr "anana" #. 🎠(U+1F34E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4248,7 +4235,7 @@ "RED_APPLE\n" "LngText.text" msgid "apple" -msgstr "" +msgstr "sagarra" #. ðŸ (U+1F34F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4257,7 +4244,7 @@ "GREEN_APPLE\n" "LngText.text" msgid "green apple" -msgstr "" +msgstr "sagar berdea" #. ðŸ (U+1F350), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4266,7 +4253,7 @@ "PEAR\n" "LngText.text" msgid "pear" -msgstr "" +msgstr "madaria" #. 👠(U+1F351), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4275,7 +4262,7 @@ "PEACH\n" "LngText.text" msgid "peach" -msgstr "" +msgstr "melokotoia" #. 💠(U+1F352), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4284,7 +4271,7 @@ "CHERRIES\n" "LngText.text" msgid "cherries" -msgstr "" +msgstr "gerizak" #. 📠(U+1F353), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4293,7 +4280,7 @@ "STRAWBERRY\n" "LngText.text" msgid "strawberry" -msgstr "" +msgstr "marrubia" #. 🔠(U+1F354), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4302,7 +4289,7 @@ "HAMBURGER\n" "LngText.text" msgid "hamburger" -msgstr "" +msgstr "hanburgesa" #. 🕠(U+1F355), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4311,7 +4298,7 @@ "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 @@ "MEAT_ON_BONE\n" "LngText.text" msgid "meat" -msgstr "" +msgstr "okela" #. 🗠(U+1F357), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4329,7 +4316,7 @@ "POULTRY_LEG\n" "LngText.text" msgid "poultry leg" -msgstr "" +msgstr "oilasko hanka" #. 😠(U+1F358), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4338,7 +4325,7 @@ "RICE_CRACKER\n" "LngText.text" msgid "rice cracker" -msgstr "" +msgstr "arroz-torta" #. 🙠(U+1F359), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4347,7 +4334,7 @@ "RICE_BALL\n" "LngText.text" msgid "rice ball" -msgstr "" +msgstr "arroz-bola" #. 🚠(U+1F35A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4356,7 +4343,7 @@ "COOKED_RICE\n" "LngText.text" msgid "rice" -msgstr "" +msgstr "arroza" #. 🛠(U+1F35B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4365,7 +4352,7 @@ "CURRY_AND_RICE\n" "LngText.text" msgid "curry" -msgstr "" +msgstr "kurria" #. 🜠(U+1F35C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4374,7 +4361,7 @@ "STEAMING_BOWL\n" "LngText.text" msgid "ramen" -msgstr "" +msgstr "ramen" #. ðŸ (U+1F35D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4383,7 +4370,7 @@ "SPAGHETTI\n" "LngText.text" msgid "spaghetti" -msgstr "" +msgstr "espagetiak" #. 🞠(U+1F35E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4392,7 +4379,7 @@ "BREAD\n" "LngText.text" msgid "bread" -msgstr "" +msgstr "ogia" #. 🟠(U+1F35F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4401,7 +4388,7 @@ "FRENCH_FRIES\n" "LngText.text" msgid "fries" -msgstr "" +msgstr "patata frijituak" #. 🠠(U+1F360), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4410,7 +4397,7 @@ "ROASTED_SWEET_POTATO\n" "LngText.text" msgid "sweet potato" -msgstr "" +msgstr "batata" #. 🡠(U+1F361), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4419,7 +4406,7 @@ "DANGO\n" "LngText.text" msgid "dango" -msgstr "" +msgstr "dangoa" #. 🢠(U+1F362), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4428,7 +4415,7 @@ "ODEN\n" "LngText.text" msgid "oden" -msgstr "" +msgstr "odena" #. 🣠(U+1F363), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4437,7 +4424,7 @@ "SUSHI\n" "LngText.text" msgid "sushi" -msgstr "" +msgstr "sushia" #. 🤠(U+1F364), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4446,7 +4433,7 @@ "FRIED_SHRIMP\n" "LngText.text" msgid "fried shrimp" -msgstr "" +msgstr "izkira frijitua" #. 🥠(U+1F365), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4455,7 +4442,7 @@ "FISH_CAKE_WITH_SWIRL_DESIGN\n" "LngText.text" msgid "fish cake" -msgstr "" +msgstr "arrain pastela" #. 🦠(U+1F366), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4464,7 +4451,7 @@ "SOFT_ICE_CREAM\n" "LngText.text" msgid "icecream" -msgstr "" +msgstr "izozkia" #. 🧠(U+1F367), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4473,7 +4460,7 @@ "SHAVED_ICE\n" "LngText.text" msgid "shaved ice" -msgstr "" +msgstr "txingorkia" #. 🨠(U+1F368), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4482,7 +4469,7 @@ "ICE_CREAM\n" "LngText.text" msgid "ice cream" -msgstr "" +msgstr "izozkia2" #. 🩠(U+1F369), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4491,7 +4478,7 @@ "DOUGHNUT\n" "LngText.text" msgid "doughnut" -msgstr "" +msgstr "donutsa" #. 🪠(U+1F36A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4500,7 +4487,7 @@ "COOKIE\n" "LngText.text" msgid "cookie" -msgstr "" +msgstr "gaileta" #. 🫠(U+1F36B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4509,7 +4496,7 @@ "CHOCOLATE_BAR\n" "LngText.text" msgid "chocolate" -msgstr "" +msgstr "txokolatea" #. 🬠(U+1F36C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4518,7 +4505,7 @@ "CANDY\n" "LngText.text" msgid "candy" -msgstr "" +msgstr "gozokia" #. 🭠(U+1F36D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4527,7 +4514,7 @@ "LOLLIPOP\n" "LngText.text" msgid "lollipop" -msgstr "" +msgstr "txupatxusa" #. 🮠(U+1F36E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4536,7 +4523,7 @@ "CUSTARD\n" "LngText.text" msgid "custard" -msgstr "" +msgstr "krema" #. 🯠(U+1F36F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4545,7 +4532,7 @@ "HONEY_POT\n" "LngText.text" msgid "honey" -msgstr "" +msgstr "eztia" #. 🰠(U+1F370), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4554,7 +4541,7 @@ "SHORTCAKE\n" "LngText.text" msgid "cake" -msgstr "" +msgstr "pastela" #. 🱠(U+1F371), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4563,7 +4550,7 @@ "BENTO_BOX\n" "LngText.text" msgid "bento" -msgstr "" +msgstr "bentoa" #. 🲠(U+1F372), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4572,7 +4559,7 @@ "POT_OF_FOOD\n" "LngText.text" msgid "stew" -msgstr "" +msgstr "lapikokoa" #. 🳠(U+1F373), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4581,7 +4568,7 @@ "COOKING\n" "LngText.text" msgid "egg" -msgstr "" +msgstr "arrautza" #. 🴠(U+1F374), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4590,7 +4577,7 @@ "FORK_AND_KNIFE\n" "LngText.text" msgid "restaurant" -msgstr "" +msgstr "jatetxea" #. 🵠(U+1F375), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4599,7 +4586,7 @@ "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 @@ "SAKE_BOTTLE_AND_CUP\n" "LngText.text" msgid "sake" -msgstr "" +msgstr "sakea" #. 🷠(U+1F377), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4617,7 +4604,7 @@ "WINE_GLASS\n" "LngText.text" msgid "wine glass" -msgstr "" +msgstr "ardo-kopa" #. 🸠(U+1F378), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4626,7 +4613,7 @@ "COCKTAIL_GLASS\n" "LngText.text" msgid "cocktail" -msgstr "" +msgstr "koktela" #. 🹠(U+1F379), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4635,7 +4622,7 @@ "TROPICAL_DRINK\n" "LngText.text" msgid "tropical drink" -msgstr "" +msgstr "edari tropikala" #. 🺠(U+1F37A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4644,7 +4631,7 @@ "BEER_MUG\n" "LngText.text" msgid "beer" -msgstr "" +msgstr "garagardoa" #. 🻠(U+1F37B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4653,7 +4640,7 @@ "CLINKING_BEER_MUGS\n" "LngText.text" msgid "beer2" -msgstr "" +msgstr "garagardoa2" #. 🼠(U+1F37C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4662,7 +4649,7 @@ "BABY_BOTTLE\n" "LngText.text" msgid "baby bottle" -msgstr "" +msgstr "biberoia" #. 🎀 (U+1F380), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4671,7 +4658,7 @@ "RIBBON\n" "LngText.text" msgid "ribbon" -msgstr "" +msgstr "xingola" #. 🎠(U+1F381), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4680,7 +4667,7 @@ "WRAPPED_PRESENT\n" "LngText.text" msgid "gift" -msgstr "" +msgstr "oparia" #. 🎂 (U+1F382), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4689,7 +4676,7 @@ "BIRTHDAY_CAKE\n" "LngText.text" msgid "birthday" -msgstr "" +msgstr "urtebetetzea" #. 🎃 (U+1F383), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4698,7 +4685,7 @@ "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 @@ "CHRISTMAS_TREE\n" "LngText.text" msgid "Christmas" -msgstr "" +msgstr "Gabonak" #. 🎅 (U+1F385), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4716,7 +4703,7 @@ "FATHER_CHRISTMAS\n" "LngText.text" msgid "Santa" -msgstr "" +msgstr "Santa" #. 🎆 (U+1F386), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4725,7 +4712,7 @@ "FIREWORKS\n" "LngText.text" msgid "fireworks" -msgstr "" +msgstr "suziriak" #. 🎇 (U+1F387), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4734,7 +4721,7 @@ "FIREWORK_SPARKLER\n" "LngText.text" msgid "sparkler" -msgstr "" +msgstr "bengala" #. 🎈 (U+1F388), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4743,7 +4730,7 @@ "BALLOON\n" "LngText.text" msgid "balloon" -msgstr "" +msgstr "globoa" #. 🎉 (U+1F389), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4752,7 +4739,7 @@ "PARTY_POPPER\n" "LngText.text" msgid "party" -msgstr "" +msgstr "jaia" #. 🎊 (U+1F38A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4761,7 +4748,7 @@ "CONFETTI_BALL\n" "LngText.text" msgid "confetti ball" -msgstr "" +msgstr "konfeti-bola" #. 🎋 (U+1F38B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4770,7 +4757,7 @@ "TANABATA_TREE\n" "LngText.text" msgid "tanabata tree" -msgstr "" +msgstr "tanabata zuhaitza" #. 🎌 (U+1F38C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4779,7 +4766,7 @@ "CROSSED_FLAGS\n" "LngText.text" msgid "flags" -msgstr "" +msgstr "banderak" #. 🎠(U+1F38D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4788,7 +4775,7 @@ "PINE_DECORATION\n" "LngText.text" msgid "bamboo" -msgstr "" +msgstr "banbu" #. 🎎 (U+1F38E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4797,7 +4784,7 @@ "JAPANESE_DOLLS\n" "LngText.text" msgid "dolls" -msgstr "" +msgstr "panpinak" #. 🎠(U+1F38F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4806,7 +4793,7 @@ "CARP_STREAMER\n" "LngText.text" msgid "flags2" -msgstr "" +msgstr "banderak2" #. 🎠(U+1F390), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4815,7 +4802,7 @@ "WIND_CHIME\n" "LngText.text" msgid "wind chime" -msgstr "" +msgstr "fuurin" #. 🎑 (U+1F391), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4824,7 +4811,7 @@ "MOON_VIEWING_CEREMONY\n" "LngText.text" msgid "rice scene" -msgstr "" +msgstr "arrozaren eszena" #. 🎒 (U+1F392), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4833,7 +4820,7 @@ "SCHOOL_SATCHEL\n" "LngText.text" msgid "school satchel" -msgstr "" +msgstr "eskolako zakutoa" #. 🎓 (U+1F393), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4842,7 +4829,7 @@ "GRADUATION_CAP\n" "LngText.text" msgid "graduation" -msgstr "" +msgstr "graduazioa" #. 🎠 (U+1F3A0), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4851,7 +4838,7 @@ "CAROUSEL_HORSE\n" "LngText.text" msgid "carousel horse" -msgstr "" +msgstr "zaldiko-maldiko" #. 🎡 (U+1F3A1), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4860,7 +4847,7 @@ "FERRIS_WHEEL\n" "LngText.text" msgid "ferris wheel" -msgstr "" +msgstr "ferri-gurpila" #. 🎢 (U+1F3A2), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4869,7 +4856,7 @@ "ROLLER_COASTER\n" "LngText.text" msgid "roller coaster" -msgstr "" +msgstr "mendi errusiarra" #. 🎣 (U+1F3A3), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4878,7 +4865,7 @@ "FISHING_POLE_AND_FISH\n" "LngText.text" msgid "fishing" -msgstr "" +msgstr "arrantza" #. 🎤 (U+1F3A4), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4887,7 +4874,7 @@ "MICROPHONE\n" "LngText.text" msgid "microphone" -msgstr "" +msgstr "mikrofonoa" #. 🎥 (U+1F3A5), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4896,7 +4883,7 @@ "MOVIE_CAMERA\n" "LngText.text" msgid "movie camera" -msgstr "" +msgstr "zinema-kamera" #. 🎦 (U+1F3A6), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4905,7 +4892,7 @@ "CINEMA\n" "LngText.text" msgid "cinema" -msgstr "" +msgstr "zinema" #. 🎧 (U+1F3A7), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4914,7 +4901,7 @@ "HEADPHONE\n" "LngText.text" msgid "headphone" -msgstr "" +msgstr "entzungailuak" #. 🎨 (U+1F3A8), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4923,7 +4910,7 @@ "ARTIST_PALETTE\n" "LngText.text" msgid "art" -msgstr "" +msgstr "artea" #. 🎩 (U+1F3A9), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4932,7 +4919,7 @@ "TOP_HAT\n" "LngText.text" msgid "top hat" -msgstr "" +msgstr "kapela luze" #. 🎪 (U+1F3AA), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4941,7 +4928,7 @@ "CIRCUS_TENT\n" "LngText.text" msgid "circus tent" -msgstr "" +msgstr "zirko-karpa" #. 🎫 (U+1F3AB), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4950,7 +4937,7 @@ "TICKET\n" "LngText.text" msgid "ticket" -msgstr "" +msgstr "sarrera" #. 🎬 (U+1F3AC), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4959,7 +4946,7 @@ "CLAPPER_BOARD\n" "LngText.text" msgid "clapper" -msgstr "" +msgstr "klaketa" #. 🎭 (U+1F3AD), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4968,7 +4955,7 @@ "PERFORMING_ARTS\n" "LngText.text" msgid "theatre" -msgstr "" +msgstr "antzokia" #. 🎮 (U+1F3AE), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4977,7 +4964,7 @@ "VIDEO_GAME\n" "LngText.text" msgid "video game" -msgstr "" +msgstr "bideo-jokoa" #. 🎯 (U+1F3AF), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4995,7 +4982,7 @@ "SLOT_MACHINE\n" "LngText.text" msgid "slot machine" -msgstr "" +msgstr "txanpon-makina" #. 🎱 (U+1F3B1), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5004,7 +4991,7 @@ "BILLIARDS\n" "LngText.text" msgid "billiards" -msgstr "" +msgstr "biliarra" #. 🎲 (U+1F3B2), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5013,7 +5000,7 @@ "GAME_DIE\n" "LngText.text" msgid "dice" -msgstr "" +msgstr "dadoa" #. 🎳 (U+1F3B3), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5022,7 +5009,7 @@ "BOWLING\n" "LngText.text" msgid "bowling" -msgstr "" +msgstr "boloak" #. 🎴 (U+1F3B4), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5031,7 +5018,7 @@ "FLOWER_PLAYING_CARDS\n" "LngText.text" msgid "cards" -msgstr "" +msgstr "kartak" #. 🎵 (U+1F3B5), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5040,7 +5027,7 @@ "MUSICAL_NOTE\n" "LngText.text" msgid "music2" -msgstr "" +msgstr "musika2" #. 🎶 (U+1F3B6), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5049,7 +5036,7 @@ "MULTIPLE_MUSICAL_NOTES\n" "LngText.text" msgid "music" -msgstr "" +msgstr "musika" #. 🎷 (U+1F3B7), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5058,7 +5045,7 @@ "SAXOPHONE\n" "LngText.text" msgid "saxophone" -msgstr "" +msgstr "saxofoia" #. 🎸 (U+1F3B8), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5067,7 +5054,7 @@ "GUITAR\n" "LngText.text" msgid "guitar" -msgstr "" +msgstr "gitarra" #. 🎹 (U+1F3B9), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5076,7 +5063,7 @@ "MUSICAL_KEYBOARD\n" "LngText.text" msgid "piano" -msgstr "" +msgstr "pianoa" #. 🎺 (U+1F3BA), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5085,7 +5072,7 @@ "TRUMPET\n" "LngText.text" msgid "trumpet" -msgstr "" +msgstr "tronpeta" #. 🎻 (U+1F3BB), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5094,7 +5081,7 @@ "VIOLIN\n" "LngText.text" msgid "violin" -msgstr "" +msgstr "biolina" #. 🎼 (U+1F3BC), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5103,7 +5090,7 @@ "MUSICAL_SCORE\n" "LngText.text" msgid "score" -msgstr "" +msgstr "partitura" #. 🎽 (U+1F3BD), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5112,7 +5099,7 @@ "RUNNING_SHIRT_WITH_SASH\n" "LngText.text" msgid "shirt2" -msgstr "" +msgstr "alkandora2" #. 🎾 (U+1F3BE), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5121,7 +5108,7 @@ "TENNIS_RACQUET_AND_BALL\n" "LngText.text" msgid "tennis" -msgstr "" +msgstr "tenisa" #. 🎿 (U+1F3BF), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5130,7 +5117,7 @@ "SKI_AND_SKI_BOOT\n" "LngText.text" msgid "ski" -msgstr "" +msgstr "eskia" #. 🀠(U+1F3C0), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5139,7 +5126,7 @@ "BASKETBALL_AND_HOOP\n" "LngText.text" msgid "basketball" -msgstr "" +msgstr "saskibaloia" #. ðŸ (U+1F3C1), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5148,7 +5135,7 @@ "CHEQUERED_FLAG\n" "LngText.text" msgid "flag3" -msgstr "" +msgstr "bandera3" #. 🂠(U+1F3C2), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5157,7 +5144,7 @@ "SNOWBOARDER\n" "LngText.text" msgid "snowboarder" -msgstr "" +msgstr "snowboarder" #. 🃠(U+1F3C3), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5166,7 +5153,7 @@ "RUNNER\n" "LngText.text" msgid "runner" -msgstr "" +msgstr "korrikalaria" #. 🄠(U+1F3C4), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5175,7 +5162,7 @@ "SURFER\n" "LngText.text" msgid "surfer" -msgstr "" +msgstr "surflaria" #. 🆠(U+1F3C6), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5184,7 +5171,7 @@ "TROPHY\n" "LngText.text" msgid "trophy" -msgstr "" +msgstr "kopa" #. 🇠(U+1F3C7), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5193,7 +5180,7 @@ "HORSE_RACING\n" "LngText.text" msgid "horse racing" -msgstr "" +msgstr "zaldi lasterketa" #. 🈠(U+1F3C8), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5202,7 +5189,7 @@ "AMERICAN_FOOTBALL\n" "LngText.text" msgid "football" -msgstr "" +msgstr "futbola" #. 🉠(U+1F3C9), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5211,7 +5198,7 @@ "RUGBY_FOOTBALL\n" "LngText.text" msgid "rugby football" -msgstr "" +msgstr "errugbia" #. 🊠(U+1F3CA), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5220,7 +5207,7 @@ "SWIMMER\n" "LngText.text" msgid "swimmer" -msgstr "" +msgstr "igerilaria" #. 🠠(U+1F3E0), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5229,7 +5216,7 @@ "HOUSE_BUILDING\n" "LngText.text" msgid "house" -msgstr "" +msgstr "etxea" #. 🡠(U+1F3E1), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5238,7 +5225,7 @@ "HOUSE_WITH_GARDEN\n" "LngText.text" msgid "house2" -msgstr "" +msgstr "etxea2" #. 🢠(U+1F3E2), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5247,7 +5234,7 @@ "OFFICE_BUILDING\n" "LngText.text" msgid "office" -msgstr "" +msgstr "bulegoa" #. 🣠(U+1F3E3), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5256,7 +5243,7 @@ "JAPANESE_POST_OFFICE\n" "LngText.text" msgid "post office2" -msgstr "" +msgstr "posta-bulegoa2" #. 🤠(U+1F3E4), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5265,7 +5252,7 @@ "EUROPEAN_POST_OFFICE\n" "LngText.text" msgid "post office" -msgstr "" +msgstr "posta-bulegoa" #. 🥠(U+1F3E5), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5274,7 +5261,7 @@ "HOSPITAL\n" "LngText.text" msgid "hospital" -msgstr "" +msgstr "ospitala" #. 🦠(U+1F3E6), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5283,7 +5270,7 @@ "BANK\n" "LngText.text" msgid "bank" -msgstr "" +msgstr "bankua" #. 🧠(U+1F3E7), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5292,7 +5279,7 @@ "AUTOMATED_TELLER_MACHINE\n" "LngText.text" msgid "atm" -msgstr "" +msgstr "kutxazaina" #. 🨠(U+1F3E8), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5301,7 +5288,7 @@ "HOTEL\n" "LngText.text" msgid "hotel" -msgstr "" +msgstr "hotela" #. 🩠(U+1F3E9), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5310,7 +5297,7 @@ "LOVE_HOTEL\n" "LngText.text" msgid "hotel2" -msgstr "" +msgstr "hotela2" #. 🪠(U+1F3EA), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5319,7 +5306,7 @@ "CONVENIENCE_STORE\n" "LngText.text" msgid "store" -msgstr "" +msgstr "denda" #. 🫠(U+1F3EB), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5328,7 +5315,7 @@ "SCHOOL\n" "LngText.text" msgid "school" -msgstr "" +msgstr "eskola" #. 🬠(U+1F3EC), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5337,7 +5324,7 @@ "DEPARTMENT_STORE\n" "LngText.text" msgid "store2" -msgstr "" +msgstr "denda2" #. 🭠(U+1F3ED), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5346,7 +5333,7 @@ "FACTORY\n" "LngText.text" msgid "factory" -msgstr "" +msgstr "lantokia" #. 🮠(U+1F3EE), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5355,7 +5342,7 @@ "IZAKAYA_LANTERN\n" "LngText.text" msgid "lantern" -msgstr "" +msgstr "argiontzia" #. 🯠(U+1F3EF), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5364,7 +5351,7 @@ "JAPANESE_CASTLE\n" "LngText.text" msgid "castle2" -msgstr "" +msgstr "gaztelua2" #. 🰠(U+1F3F0), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5373,7 +5360,7 @@ "EUROPEAN_CASTLE\n" "LngText.text" msgid "castle" -msgstr "" +msgstr "gaztelua" #. 🀠(U+1F400), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5382,7 +5369,7 @@ "RAT\n" "LngText.text" msgid "rat" -msgstr "" +msgstr "arratoia" #. ðŸ (U+1F401), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5391,7 +5378,7 @@ "MOUSE\n" "LngText.text" msgid "mouse" -msgstr "" +msgstr "sagua" #. 🂠(U+1F402), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5400,7 +5387,7 @@ "OX\n" "LngText.text" msgid "ox" -msgstr "" +msgstr "idia" #. 🃠(U+1F403), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5409,7 +5396,7 @@ "WATER_BUFFALO\n" "LngText.text" msgid "water buffalo" -msgstr "" +msgstr "asiar bufaloa" #. 🄠(U+1F404), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5418,7 +5405,7 @@ "COW\n" "LngText.text" msgid "cow" -msgstr "" +msgstr "behia" #. 🅠(U+1F405), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5427,7 +5414,7 @@ "TIGER\n" "LngText.text" msgid "tiger" -msgstr "" +msgstr "tigrea" #. 🆠(U+1F406), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5436,7 +5423,7 @@ "LEOPARD\n" "LngText.text" msgid "leopard" -msgstr "" +msgstr "lehoinabar" #. 🇠(U+1F407), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5445,7 +5432,7 @@ "RABBIT\n" "LngText.text" msgid "rabbit" -msgstr "" +msgstr "untxia" #. 🈠(U+1F408), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5454,7 +5441,7 @@ "CAT\n" "LngText.text" msgid "cat" -msgstr "" +msgstr "katua" #. 🉠(U+1F409), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5463,7 +5450,7 @@ "DRAGON\n" "LngText.text" msgid "dragon" -msgstr "" +msgstr "dragoia" #. 🊠(U+1F40A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5472,7 +5459,7 @@ "CROCODILE\n" "LngText.text" msgid "crocodile" -msgstr "" +msgstr "krokodiloa" #. 🋠(U+1F40B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5481,7 +5468,7 @@ "WHALE\n" "LngText.text" msgid "whale2" -msgstr "" +msgstr "balea2" #. 🌠(U+1F40C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5490,7 +5477,7 @@ "SNAIL\n" "LngText.text" msgid "snail" -msgstr "" +msgstr "barrazkiloa" #. ðŸ (U+1F40D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5499,7 +5486,7 @@ "SNAKE\n" "LngText.text" msgid "snake" -msgstr "" +msgstr "sugea" #. 🎠(U+1F40E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5508,7 +5495,7 @@ "HORSE\n" "LngText.text" msgid "horse" -msgstr "" +msgstr "zaldia" #. ðŸ (U+1F40F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5517,7 +5504,7 @@ "RAM\n" "LngText.text" msgid "ram" -msgstr "" +msgstr "ahari" #. ðŸ (U+1F410), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5526,7 +5513,7 @@ "GOAT\n" "LngText.text" msgid "goat" -msgstr "" +msgstr "ahuntza" #. 👠(U+1F411), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5535,7 +5522,7 @@ "SHEEP\n" "LngText.text" msgid "sheep" -msgstr "" +msgstr "ardia" #. 💠(U+1F412), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5544,7 +5531,7 @@ "MONKEY\n" "LngText.text" msgid "monkey" -msgstr "" +msgstr "tximinoa" #. 📠(U+1F413), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5553,7 +5540,7 @@ "ROOSTER\n" "LngText.text" msgid "rooster" -msgstr "" +msgstr "oilar" #. 🔠(U+1F414), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5562,7 +5549,7 @@ "CHICKEN\n" "LngText.text" msgid "chicken" -msgstr "" +msgstr "oilaskoa" #. 🕠(U+1F415), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5571,7 +5558,7 @@ "DOG\n" "LngText.text" msgid "dog" -msgstr "" +msgstr "txakurra" #. 🖠(U+1F416), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5580,7 +5567,7 @@ "PIG\n" "LngText.text" msgid "pig" -msgstr "" +msgstr "txerria" #. 🗠(U+1F417), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5589,7 +5576,7 @@ "BOAR\n" "LngText.text" msgid "boar" -msgstr "" +msgstr "aketz" #. 😠(U+1F418), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5598,7 +5585,7 @@ "ELEPHANT\n" "LngText.text" msgid "elephant" -msgstr "" +msgstr "elefantea" #. 🙠(U+1F419), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5607,7 +5594,7 @@ "OCTOPUS\n" "LngText.text" msgid "octopus" -msgstr "" +msgstr "olagarroa" #. 🚠(U+1F41A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5616,7 +5603,7 @@ "SPIRAL_SHELL\n" "LngText.text" msgid "shell" -msgstr "" +msgstr "maskorra" #. 🛠(U+1F41B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5625,7 +5612,7 @@ "BUG\n" "LngText.text" msgid "bug" -msgstr "" +msgstr "zomorroa" #. 🜠(U+1F41C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5634,7 +5621,7 @@ "ANT\n" "LngText.text" msgid "ant" -msgstr "" +msgstr "inurria" #. ðŸ (U+1F41D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5643,7 +5630,7 @@ "HONEYBEE\n" "LngText.text" msgid "bee" -msgstr "" +msgstr "erlea" #. 🞠(U+1F41E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5652,7 +5639,7 @@ "LADY_BEETLE\n" "LngText.text" msgid "ladybug" -msgstr "" +msgstr "marigorringoa" #. 🟠(U+1F41F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5661,7 +5648,7 @@ "FISH\n" "LngText.text" msgid "fish" -msgstr "" +msgstr "arraina" #. 🠠(U+1F420), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5670,7 +5657,7 @@ "TROPICAL_FISH\n" "LngText.text" msgid "fish2" -msgstr "" +msgstr "arraina2" #. 🡠(U+1F421), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5679,7 +5666,7 @@ "BLOWFISH\n" "LngText.text" msgid "fish3" -msgstr "" +msgstr "arraina3" #. 🢠(U+1F422), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5688,7 +5675,7 @@ "TURTLE\n" "LngText.text" msgid "turtle" -msgstr "" +msgstr "dortoka" #. 🣠(U+1F423), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5697,7 +5684,7 @@ "HATCHING_CHICK\n" "LngText.text" msgid "chick" -msgstr "" +msgstr "txita" #. 🤠(U+1F424), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5706,7 +5693,7 @@ "BABY_CHICK\n" "LngText.text" msgid "chick2" -msgstr "" +msgstr "txita2" #. 🥠(U+1F425), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5715,7 +5702,7 @@ "FRONT-FACING_BABY_CHICK\n" "LngText.text" msgid "chick3" -msgstr "" +msgstr "txita3" #. 🦠(U+1F426), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5724,7 +5711,7 @@ "BIRD\n" "LngText.text" msgid "bird" -msgstr "" +msgstr "txoria" #. 🧠(U+1F427), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5733,7 +5720,7 @@ "PENGUIN\n" "LngText.text" msgid "penguin" -msgstr "" +msgstr "pinguinoa" #. 🨠(U+1F428), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5742,7 +5729,7 @@ "KOALA\n" "LngText.text" msgid "koala" -msgstr "" +msgstr "koala" #. 🩠(U+1F429), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5751,7 +5738,7 @@ "POODLE\n" "LngText.text" msgid "poodle" -msgstr "" +msgstr "kanitxea" #. 🪠(U+1F42A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5760,7 +5747,7 @@ "DROMEDARY_CAMEL\n" "LngText.text" msgid "camel" -msgstr "" +msgstr "gamelua" #. 🫠(U+1F42B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5769,7 +5756,7 @@ "BACTRIAN_CAMEL\n" "LngText.text" msgid "camel2" -msgstr "" +msgstr "gamelua2" #. 🬠(U+1F42C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5778,7 +5765,7 @@ "DOLPHIN\n" "LngText.text" msgid "dolphin" -msgstr "" +msgstr "delfina" #. 🭠(U+1F42D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5787,7 +5774,7 @@ "MOUSE_FACE\n" "LngText.text" msgid "mouse2" -msgstr "" +msgstr "sagua2" #. 🮠(U+1F42E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5796,7 +5783,7 @@ "COW_FACE\n" "LngText.text" msgid "cow2" -msgstr "" +msgstr "behia2" #. 🯠(U+1F42F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5805,7 +5792,7 @@ "TIGER_FACE\n" "LngText.text" msgid "tiger2" -msgstr "" +msgstr "tigrea2" #. 🰠(U+1F430), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5814,7 +5801,7 @@ "RABBIT_FACE\n" "LngText.text" msgid "rabbit2" -msgstr "" +msgstr "untxia2" #. 🱠(U+1F431), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5823,7 +5810,7 @@ "CAT_FACE\n" "LngText.text" msgid "cat2" -msgstr "" +msgstr "katua2" #. 🲠(U+1F432), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5832,7 +5819,7 @@ "DRAGON_FACE\n" "LngText.text" msgid "dragon2" -msgstr "" +msgstr "dragoia2" #. 🳠(U+1F433), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5841,7 +5828,7 @@ "SPOUTING_WHALE\n" "LngText.text" msgid "whale" -msgstr "" +msgstr "balea" #. 🴠(U+1F434), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5850,7 +5837,7 @@ "HORSE_FACE\n" "LngText.text" msgid "horse2" -msgstr "" +msgstr "zaldia2" #. 🵠(U+1F435), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5859,7 +5846,7 @@ "MONKEY_FACE\n" "LngText.text" msgid "monkey2" -msgstr "" +msgstr "tximinoa2" #. 🶠(U+1F436), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5868,7 +5855,7 @@ "DOG_FACE\n" "LngText.text" msgid "dog2" -msgstr "" +msgstr "txakurra2" #. 🷠(U+1F437), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5877,7 +5864,7 @@ "PIG_FACE\n" "LngText.text" msgid "pig2" -msgstr "" +msgstr "txerria2" #. 🸠(U+1F438), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5886,7 +5873,7 @@ "FROG_FACE\n" "LngText.text" msgid "frog" -msgstr "" +msgstr "igela" #. 🹠(U+1F439), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5895,7 +5882,7 @@ "HAMSTER_FACE\n" "LngText.text" msgid "hamster" -msgstr "" +msgstr "hamster" #. 🺠(U+1F43A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5904,7 +5891,7 @@ "WOLF_FACE\n" "LngText.text" msgid "wolf" -msgstr "" +msgstr "otsoa" #. 🻠(U+1F43B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5913,7 +5900,7 @@ "BEAR_FACE\n" "LngText.text" msgid "bear" -msgstr "" +msgstr "hartza" #. 🼠(U+1F43C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5922,7 +5909,7 @@ "PANDA_FACE\n" "LngText.text" msgid "panda" -msgstr "" +msgstr "panda" #. 🽠(U+1F43D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5931,7 +5918,7 @@ "PIG_NOSE\n" "LngText.text" msgid "pig nose" -msgstr "" +msgstr "txerri sudurra" #. 🾠(U+1F43E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5940,7 +5927,7 @@ "PAW_PRINTS\n" "LngText.text" msgid "feet" -msgstr "" +msgstr "oina" #. 👀 (U+1F440), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5949,7 +5936,7 @@ "EYES\n" "LngText.text" msgid "eyes" -msgstr "" +msgstr "begiak" #. 👂 (U+1F442), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5958,7 +5945,7 @@ "EAR\n" "LngText.text" msgid "ear" -msgstr "" +msgstr "belarria" #. 👃 (U+1F443), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5967,7 +5954,7 @@ "NOSE\n" "LngText.text" msgid "nose" -msgstr "" +msgstr "sudurra" #. 👄 (U+1F444), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5976,7 +5963,7 @@ "MOUTH\n" "LngText.text" msgid "mouth" -msgstr "" +msgstr "ahoa" #. 👅 (U+1F445), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5985,7 +5972,7 @@ "TONGUE\n" "LngText.text" msgid "tongue" -msgstr "" +msgstr "mihia" #. 👆 (U+1F446), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5994,7 +5981,7 @@ "WHITE_UP_POINTING_BACKHAND_INDEX\n" "LngText.text" msgid "up2" -msgstr "" +msgstr "gora2" #. 👇 (U+1F447), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6003,7 +5990,7 @@ "WHITE_DOWN_POINTING_BACKHAND_INDEX\n" "LngText.text" msgid "down2" -msgstr "" +msgstr "behera2" #. 👈 (U+1F448), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6012,7 +5999,7 @@ "WHITE_LEFT_POINTING_BACKHAND_INDEX\n" "LngText.text" msgid "left2" -msgstr "" +msgstr "ezkerrera2" #. 👉 (U+1F449), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6021,7 +6008,7 @@ "WHITE_RIGHT_POINTING_BACKHAND_INDEX\n" "LngText.text" msgid "right2" -msgstr "" +msgstr "eskumara2" #. 👊 (U+1F44A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6030,7 +6017,7 @@ "FISTED_HAND_SIGN\n" "LngText.text" msgid "fist2" -msgstr "" +msgstr "ukabila2" #. 👋 (U+1F44B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6039,7 +6026,7 @@ "WAVING_HAND_SIGN\n" "LngText.text" msgid "wave" -msgstr "" +msgstr "agurra" #. 👌 (U+1F44C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6048,7 +6035,7 @@ "OK_HAND_SIGN\n" "LngText.text" msgid "ok" -msgstr "" +msgstr "ados" #. 👠(U+1F44D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6057,7 +6044,7 @@ "THUMBS_UP_SIGN\n" "LngText.text" msgid "yes" -msgstr "" +msgstr "bai" #. 👎 (U+1F44E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6066,7 +6053,7 @@ "THUMBS_DOWN_SIGN\n" "LngText.text" msgid "no" -msgstr "" +msgstr "ez" #. 👠(U+1F44F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6075,7 +6062,7 @@ "CLAPPING_HANDS_SIGN\n" "LngText.text" msgid "clap" -msgstr "" +msgstr "txalo" #. 👠(U+1F450), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6084,7 +6071,7 @@ "OPEN_HANDS_SIGN\n" "LngText.text" msgid "open hands" -msgstr "" +msgstr "esku irekiak" #. 👑 (U+1F451), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6093,7 +6080,7 @@ "CROWN\n" "LngText.text" msgid "crown" -msgstr "" +msgstr "koroa" #. 👒 (U+1F452), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6102,7 +6089,7 @@ "WOMANS_HAT\n" "LngText.text" msgid "hat" -msgstr "" +msgstr "kapela" #. 👓 (U+1F453), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6111,7 +6098,7 @@ "EYEGLASSES\n" "LngText.text" msgid "eyeglasses" -msgstr "" +msgstr "betaurrekoak" #. 👔 (U+1F454), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6120,7 +6107,7 @@ "NECKTIE\n" "LngText.text" msgid "necktie" -msgstr "" +msgstr "korbata" #. 👕 (U+1F455), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6129,7 +6116,7 @@ "T-SHIRT\n" "LngText.text" msgid "shirt" -msgstr "" +msgstr "alkandora" #. 👖 (U+1F456), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6138,7 +6125,7 @@ "JEANS\n" "LngText.text" msgid "jeans" -msgstr "" +msgstr "bakeroak" #. 👗 (U+1F457), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6147,7 +6134,7 @@ "DRESS\n" "LngText.text" msgid "dress" -msgstr "" +msgstr "jantzia" #. 👘 (U+1F458), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6156,7 +6143,7 @@ "KIMONO\n" "LngText.text" msgid "kimono" -msgstr "" +msgstr "kimonoa" #. 👙 (U+1F459), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6165,7 +6152,7 @@ "BIKINI\n" "LngText.text" msgid "bikini" -msgstr "" +msgstr "bikinia" #. 👚 (U+1F45A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6174,7 +6161,7 @@ "WOMANS_CLOTHES\n" "LngText.text" msgid "clothes" -msgstr "" +msgstr "arropak" #. 👛 (U+1F45B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6183,7 +6170,7 @@ "PURSE\n" "LngText.text" msgid "purse" -msgstr "" +msgstr "diru-zorroa" #. 👜 (U+1F45C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6192,7 +6179,7 @@ "HANDBAG\n" "LngText.text" msgid "handbag" -msgstr "" +msgstr "poltsa" #. 👠(U+1F45D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6201,7 +6188,7 @@ "POUCH\n" "LngText.text" msgid "pouch" -msgstr "" +msgstr "toxa" #. 👞 (U+1F45E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6210,7 +6197,7 @@ "MANS_SHOE\n" "LngText.text" msgid "shoe" -msgstr "" +msgstr "zapata" #. 👟 (U+1F45F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6219,7 +6206,7 @@ "ATHLETIC_SHOE\n" "LngText.text" msgid "shoe2" -msgstr "" +msgstr "zapata2" #. 👠 (U+1F460), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6228,7 +6215,7 @@ "HIGH-HEELED_SHOE\n" "LngText.text" msgid "shoe3" -msgstr "" +msgstr "zapata3" #. 👡 (U+1F461), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6237,7 +6224,7 @@ "WOMANS_SANDAL\n" "LngText.text" msgid "sandal" -msgstr "" +msgstr "sandalia" #. 👢 (U+1F462), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6246,7 +6233,7 @@ "WOMANS_BOOTS\n" "LngText.text" msgid "boot" -msgstr "" +msgstr "bota" #. 👣 (U+1F463), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6255,7 +6242,7 @@ "FOOTPRINTS\n" "LngText.text" msgid "footprints" -msgstr "" +msgstr "oinatzak" #. 👤 (U+1F464), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6264,7 +6251,7 @@ "BUST_IN_SILHOUETTE\n" "LngText.text" msgid "bust" -msgstr "" +msgstr "bular" #. 👥 (U+1F465), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6273,7 +6260,7 @@ "BUSTS_IN_SILHOUETTE\n" "LngText.text" msgid "busts" -msgstr "" +msgstr "bularrak" #. 👦 (U+1F466), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6282,7 +6269,7 @@ "BOY\n" "LngText.text" msgid "boy" -msgstr "" +msgstr "mutila" #. 👧 (U+1F467), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6291,7 +6278,7 @@ "GIRL\n" "LngText.text" msgid "girl" -msgstr "" +msgstr "neska" #. 👨 (U+1F468), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6300,7 +6287,7 @@ "MAN\n" "LngText.text" msgid "man" -msgstr "" +msgstr "gizona" #. 👩 (U+1F469), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6309,7 +6296,7 @@ "WOMAN\n" "LngText.text" msgid "woman" -msgstr "" +msgstr "emakumea" #. 👪 (U+1F46A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6318,7 +6305,7 @@ "FAMILY\n" "LngText.text" msgid "family" -msgstr "" +msgstr "familia" #. 👫 (U+1F46B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6327,7 +6314,7 @@ "MAN_AND_WOMAN_HOLDING_HANDS\n" "LngText.text" msgid "couple" -msgstr "" +msgstr "bikotea" #. 👬 (U+1F46C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6336,7 +6323,7 @@ "TWO_MEN_HOLDING_HANDS\n" "LngText.text" msgid "couple2" -msgstr "" +msgstr "bikotea2" #. 👭 (U+1F46D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6345,7 +6332,7 @@ "TWO_WOMEN_HOLDING_HANDS\n" "LngText.text" msgid "couple3" -msgstr "" +msgstr "bikotea3" #. 👮 (U+1F46E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6354,7 +6341,7 @@ "POLICE_OFFICER\n" "LngText.text" msgid "cop" -msgstr "" +msgstr "polizia" #. 👯 (U+1F46F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6363,7 +6350,7 @@ "WOMAN_WITH_BUNNY_EARS\n" "LngText.text" msgid "bunny ears" -msgstr "" +msgstr "untxi belarriak" #. 👰 (U+1F470), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6372,7 +6359,7 @@ "BRIDE_WITH_VEIL\n" "LngText.text" msgid "bride" -msgstr "" +msgstr "ezkongaia" #. 👱 (U+1F471), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6381,7 +6368,7 @@ "PERSON_WITH_BLOND_HAIR\n" "LngText.text" msgid "blond hair" -msgstr "" +msgstr "ileoria" #. 👲 (U+1F472), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6390,7 +6377,7 @@ "MAN_WITH_GUA_PI_MAO\n" "LngText.text" msgid "hat2" -msgstr "" +msgstr "kapela2" #. 👳 (U+1F473), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6399,7 +6386,7 @@ "MAN_WITH_TURBAN\n" "LngText.text" msgid "turban" -msgstr "" +msgstr "turbantea" #. 👴 (U+1F474), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6408,7 +6395,7 @@ "OLDER_MAN\n" "LngText.text" msgid "older man" -msgstr "" +msgstr "adineko gizona" #. 👵 (U+1F475), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6417,7 +6404,7 @@ "OLDER_WOMAN\n" "LngText.text" msgid "older woman" -msgstr "" +msgstr "adineko emakumea" #. 👶 (U+1F476), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6426,7 +6413,7 @@ "BABY\n" "LngText.text" msgid "baby" -msgstr "" +msgstr "haurra" #. 👷 (U+1F477), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6435,7 +6422,7 @@ "CONSTRUCTION_WORKER\n" "LngText.text" msgid "worker" -msgstr "" +msgstr "langilea" #. 👸 (U+1F478), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6444,7 +6431,7 @@ "PRINCESS\n" "LngText.text" msgid "princess" -msgstr "" +msgstr "printzesa" #. 👹 (U+1F479), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6453,7 +6440,7 @@ "JAPANESE_OGRE\n" "LngText.text" msgid "ogre" -msgstr "" +msgstr "ogroa" #. 👺 (U+1F47A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6462,7 +6449,7 @@ "JAPANESE_GOBLIN\n" "LngText.text" msgid "goblin" -msgstr "" +msgstr "goblina" #. 👻 (U+1F47B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6471,7 +6458,7 @@ "GHOST\n" "LngText.text" msgid "ghost" -msgstr "" +msgstr "mamua" #. 👼 (U+1F47C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6480,7 +6467,7 @@ "BABY_ANGEL\n" "LngText.text" msgid "angel" -msgstr "" +msgstr "aingerua" #. 👽 (U+1F47D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6489,7 +6476,7 @@ "EXTRATERRESTRIAL_ALIEN\n" "LngText.text" msgid "alien" -msgstr "" +msgstr "estralurtarra" #. 👾 (U+1F47E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6498,7 +6485,7 @@ "ALIEN_MONSTER\n" "LngText.text" msgid "alien2" -msgstr "" +msgstr "estralurtarra2" #. 👿 (U+1F47F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6507,7 +6494,7 @@ "IMP\n" "LngText.text" msgid "imp" -msgstr "" +msgstr "iratxo" #. 💀 (U+1F480), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6516,7 +6503,7 @@ "SKULL\n" "LngText.text" msgid "skull" -msgstr "" +msgstr "burezurra" #. 💠(U+1F481), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6525,7 +6512,7 @@ "INFORMATION_DESK_PERSON\n" "LngText.text" msgid "information2" -msgstr "" +msgstr "informazioa2" #. 💂 (U+1F482), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6534,7 +6521,7 @@ "GUARDSMAN\n" "LngText.text" msgid "guard" -msgstr "" +msgstr "guarda" #. 💃 (U+1F483), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6543,7 +6530,7 @@ "DANCER\n" "LngText.text" msgid "dancer" -msgstr "" +msgstr "dantzaria" #. 💄 (U+1F484), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6552,7 +6539,7 @@ "LIPSTICK\n" "LngText.text" msgid "lipstick" -msgstr "" +msgstr "ezpainetako" #. 💅 (U+1F485), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6561,7 +6548,7 @@ "NAIL_POLISH\n" "LngText.text" msgid "nail care" -msgstr "" +msgstr "azazkalen zaintza" #. 💆 (U+1F486), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6570,7 +6557,7 @@ "FACE_MASSAGE\n" "LngText.text" msgid "massage" -msgstr "" +msgstr "masajea" #. 💇 (U+1F487), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6579,7 +6566,7 @@ "HAIRCUT\n" "LngText.text" msgid "haircut" -msgstr "" +msgstr "orrazkera" #. 💈 (U+1F488), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6588,7 +6575,7 @@ "BARBER_POLE\n" "LngText.text" msgid "barber" -msgstr "" +msgstr "bizargin" #. 💉 (U+1F489), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6597,7 +6584,7 @@ "SYRINGE\n" "LngText.text" msgid "syringe" -msgstr "" +msgstr "xiringa" #. 💊 (U+1F48A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6606,7 +6593,7 @@ "PILL\n" "LngText.text" msgid "pill" -msgstr "" +msgstr "pilula" #. 💋 (U+1F48B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6615,7 +6602,7 @@ "KISS_MARK\n" "LngText.text" msgid "kiss mark" -msgstr "" +msgstr "musu-marka" #. 💌 (U+1F48C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6624,7 +6611,7 @@ "LOVE_LETTER\n" "LngText.text" msgid "love letter" -msgstr "" +msgstr "amodio-gutuna" #. 💠(U+1F48D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6633,7 +6620,7 @@ "RING\n" "LngText.text" msgid "ring" -msgstr "" +msgstr "eraztuna" #. 💎 (U+1F48E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6642,7 +6629,7 @@ "GEM_STONE\n" "LngText.text" msgid "gem" -msgstr "" +msgstr "harribitxia" #. 💠(U+1F48F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6651,7 +6638,7 @@ "KISS\n" "LngText.text" msgid "kiss" -msgstr "" +msgstr "musua" #. 💠(U+1F490), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6660,7 +6647,7 @@ "BOUQUET\n" "LngText.text" msgid "bouquet" -msgstr "" +msgstr "lore-sorta" #. 💑 (U+1F491), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6669,7 +6656,7 @@ "COUPLE_WITH_HEART\n" "LngText.text" msgid "couple4" -msgstr "" +msgstr "bikotea4" #. 💒 (U+1F492), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6678,7 +6665,7 @@ "WEDDING\n" "LngText.text" msgid "wedding" -msgstr "" +msgstr "ezkontza" #. 💓 (U+1F493), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6687,7 +6674,7 @@ "BEATING_HEART\n" "LngText.text" msgid "heartbeat" -msgstr "" +msgstr "taupada" #. 💔 (U+1F494), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6696,7 +6683,7 @@ "BROKEN_HEART\n" "LngText.text" msgid "broken heart" -msgstr "" +msgstr "bihotz hautsia" #. 💕 (U+1F495), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6705,7 +6692,7 @@ "TWO_HEARTS\n" "LngText.text" msgid "two hearts" -msgstr "" +msgstr "bi bihotz" #. 💖 (U+1F496), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6714,7 +6701,7 @@ "SPARKLING_HEART\n" "LngText.text" msgid "sparkling heart" -msgstr "" +msgstr "bihotz dirdiratsua" #. 💗 (U+1F497), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6723,7 +6710,7 @@ "GROWING_HEART\n" "LngText.text" msgid "heartpulse" -msgstr "" +msgstr "bihotz-pultsua" #. 💘 (U+1F498), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6732,7 +6719,7 @@ "HEART_WITH_ARROW\n" "LngText.text" msgid "love" -msgstr "" +msgstr "maitasuna" #. 💠(U+1F49D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6741,7 +6728,7 @@ "HEART_WITH_RIBBON\n" "LngText.text" msgid "gift heart" -msgstr "" +msgstr "bihotza opari" #. 💞 (U+1F49E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6750,7 +6737,7 @@ "REVOLVING_HEARTS\n" "LngText.text" msgid "revolving hearts" -msgstr "" +msgstr "bihotzak biraka" #. 💟 (U+1F49F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6759,7 +6746,7 @@ "HEART_DECORATION\n" "LngText.text" msgid "heart decoration" -msgstr "" +msgstr "bihotz apaingarria" #. 💠 (U+1F4A0), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6768,7 +6755,7 @@ "DIAMOND_SHAPE_WITH_A_DOT_INSIDE\n" "LngText.text" msgid "cuteness" -msgstr "" +msgstr "poxpolin" #. 💡 (U+1F4A1), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6777,7 +6764,7 @@ "ELECTRIC_LIGHT_BULB\n" "LngText.text" msgid "bulb" -msgstr "" +msgstr "bonbilla" #. 💢 (U+1F4A2), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6786,7 +6773,7 @@ "ANGER_SYMBOL\n" "LngText.text" msgid "anger" -msgstr "" +msgstr "amorrua" #. 💣 (U+1F4A3), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6795,7 +6782,7 @@ "BOMB\n" "LngText.text" msgid "bomb" -msgstr "" +msgstr "bonba" #. 💤 (U+1F4A4), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6804,7 +6791,7 @@ "SLEEPING_SYMBOL\n" "LngText.text" msgid "zzz" -msgstr "" +msgstr "zzz" #. 💥 (U+1F4A5), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6813,7 +6800,7 @@ "COLLISION_SYMBOL\n" "LngText.text" msgid "boom" -msgstr "" +msgstr "danba" #. 💦 (U+1F4A6), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6822,7 +6809,7 @@ "SPLASHING_SWEAT_SYMBOL\n" "LngText.text" msgid "sweat drops" -msgstr "" +msgstr "izerdi tantak" #. 💧 (U+1F4A7), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6831,7 +6818,7 @@ "DROPLET\n" "LngText.text" msgid "droplet" -msgstr "" +msgstr "tanta" #. 💨 (U+1F4A8), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6840,7 +6827,7 @@ "DASH_SYMBOL\n" "LngText.text" msgid "dash" -msgstr "" +msgstr "marratxoa" #. 💩 (U+1F4A9), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6849,7 +6836,7 @@ "PILE_OF_POO\n" "LngText.text" msgid "poo" -msgstr "" +msgstr "kaka" #. 💪 (U+1F4AA), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6858,7 +6845,7 @@ "FLEXED_BICEPS\n" "LngText.text" msgid "muscle" -msgstr "" +msgstr "muskulua" #. 💫 (U+1F4AB), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6867,7 +6854,7 @@ "DIZZY_SYMBOL\n" "LngText.text" msgid "dizzy" -msgstr "" +msgstr "zorabiatuta" #. 💬 (U+1F4AC), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6876,7 +6863,7 @@ "SPEECH_BALLOON\n" "LngText.text" msgid "speech balloon" -msgstr "" +msgstr "hizketa globoa" #. 💭 (U+1F4AD), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6885,7 +6872,7 @@ "THOUGHT_BALLOON\n" "LngText.text" msgid "thought balloon" -msgstr "" +msgstr "pentsamendu globoa" #. 💮 (U+1F4AE), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6894,7 +6881,7 @@ "WHITE_FLOWER\n" "LngText.text" msgid "white flower" -msgstr "" +msgstr "lore zuria" #. 💯 (U+1F4AF), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6903,7 +6890,7 @@ "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 @@ "MONEY_BAG\n" "LngText.text" msgid "moneybag" -msgstr "" +msgstr "diru-poltsa" #. 💱 (U+1F4B1), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6921,7 +6908,7 @@ "CURRENCY_EXCHANGE\n" "LngText.text" msgid "currency exchange" -msgstr "" +msgstr "moneta trukea" #. 💲 (U+1F4B2), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6930,7 +6917,7 @@ "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 @@ -6939,7 +6926,7 @@ "CREDIT_CARD\n" "LngText.text" msgid "credit card" -msgstr "" +msgstr "kreditu txartela" #. 💴 (U+1F4B4), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6948,7 +6935,7 @@ "BANKNOTE_WITH_YEN_SIGN\n" "LngText.text" msgid "yen2" -msgstr "" +msgstr "yen2" #. 💵 (U+1F4B5), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6957,7 +6944,7 @@ "BANKNOTE_WITH_DOLLAR_SIGN\n" "LngText.text" msgid "dollar2" -msgstr "" +msgstr "dolar2" #. 💶 (U+1F4B6), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6966,7 +6953,7 @@ "BANKNOTE_WITH_EURO_SIGN\n" "LngText.text" msgid "euro2" -msgstr "" +msgstr "euroa2" #. 💷 (U+1F4B7), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6975,7 +6962,7 @@ "BANKNOTE_WITH_POUND_SIGN\n" "LngText.text" msgid "pound2" -msgstr "" +msgstr "libra2" #. 💸 (U+1F4B8), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6984,7 +6971,7 @@ "MONEY_WITH_WINGS\n" "LngText.text" msgid "money" -msgstr "" +msgstr "dirua" #. 💹 (U+1F4B9), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6993,7 +6980,7 @@ "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 @@ -7002,7 +6989,7 @@ "SEAT\n" "LngText.text" msgid "seat" -msgstr "" +msgstr "eserlekua" #. 💻 (U+1F4BB), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7011,7 +6998,7 @@ "PERSONAL_COMPUTER\n" "LngText.text" msgid "computer" -msgstr "" +msgstr "ordenagailua" #. 💼 (U+1F4BC), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7020,7 +7007,7 @@ "BRIEFCASE\n" "LngText.text" msgid "briefcase" -msgstr "" +msgstr "maleta" #. 💽 (U+1F4BD), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7029,7 +7016,7 @@ "MINIDISC\n" "LngText.text" msgid "md" -msgstr "" +msgstr "md" #. 💾 (U+1F4BE), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7038,7 +7025,7 @@ "FLOPPY_DISK\n" "LngText.text" msgid "floppy" -msgstr "" +msgstr "disketea" #. 💿 (U+1F4BF), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7047,7 +7034,7 @@ "OPTICAL_DISC\n" "LngText.text" msgid "cd" -msgstr "" +msgstr "cd" #. 📀 (U+1F4C0), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7056,7 +7043,7 @@ "DVD\n" "LngText.text" msgid "dvd" -msgstr "" +msgstr "dvd" #. 📠(U+1F4C1), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7065,7 +7052,7 @@ "FILE_FOLDER\n" "LngText.text" msgid "folder" -msgstr "" +msgstr "karpeta" #. 📂 (U+1F4C2), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7074,7 +7061,7 @@ "OPEN_FILE_FOLDER\n" "LngText.text" msgid "folder2" -msgstr "" +msgstr "karpeta2" #. 📃 (U+1F4C3), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7083,7 +7070,7 @@ "PAGE_WITH_CURL\n" "LngText.text" msgid "page with curl" -msgstr "" +msgstr "kizkurtutako orria" #. 📄 (U+1F4C4), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7092,7 +7079,7 @@ "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 @@ -7101,7 +7088,7 @@ "CALENDAR\n" "LngText.text" msgid "calendar" -msgstr "" +msgstr "egutegia" #. 📆 (U+1F4C6), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7110,7 +7097,7 @@ "TEAR-OFF_CALENDAR\n" "LngText.text" msgid "calendar2" -msgstr "" +msgstr "egutegia2" #. 📇 (U+1F4C7), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7128,7 +7115,7 @@ "CHART_WITH_UPWARDS_TREND\n" "LngText.text" msgid "char" -msgstr "" +msgstr "diag" #. 📉 (U+1F4C9), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7137,7 +7124,7 @@ "CHART_WITH_DOWNWARDS_TREND\n" "LngText.text" msgid "chart2" -msgstr "" +msgstr "diagrama2" #. 📊 (U+1F4CA), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7146,7 +7133,7 @@ "BAR_CHART\n" "LngText.text" msgid "chart3" -msgstr "" +msgstr "diagrama3" #. 📋 (U+1F4CB), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7155,7 +7142,7 @@ "CLIPBOARD\n" "LngText.text" msgid "clipboard" -msgstr "" +msgstr "arbela" #. 📌 (U+1F4CC), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7164,7 +7151,7 @@ "PUSHPIN\n" "LngText.text" msgid "pushpin" -msgstr "" +msgstr "paper-orratza" #. 📠(U+1F4CD), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7173,7 +7160,7 @@ "ROUND_PUSHPIN\n" "LngText.text" msgid "round pushpin" -msgstr "" +msgstr "paper-orratz borobila" #. 📎 (U+1F4CE), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7182,7 +7169,7 @@ "PAPERCLIP\n" "LngText.text" msgid "paperclip" -msgstr "" +msgstr "klip" #. 📠(U+1F4CF), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7191,7 +7178,7 @@ "STRAIGHT_RULER\n" "LngText.text" msgid "ruler" -msgstr "" +msgstr "erregela" #. 📠(U+1F4D0), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7200,7 +7187,7 @@ "TRIANGULAR_RULER\n" "LngText.text" msgid "ruler2" -msgstr "" +msgstr "erregela2" #. 📑 (U+1F4D1), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7209,7 +7196,7 @@ "BOOKMARK_TABS\n" "LngText.text" msgid "bookmark" -msgstr "" +msgstr "laster-marka" #. 📒 (U+1F4D2), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7218,7 +7205,7 @@ "LEDGER\n" "LngText.text" msgid "ledger" -msgstr "" +msgstr "kontabilitate liburua" #. 📓 (U+1F4D3), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7227,7 +7214,7 @@ "NOTEBOOK\n" "LngText.text" msgid "notebook" -msgstr "" +msgstr "koadernoa" #. 📔 (U+1F4D4), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7236,7 +7223,7 @@ "NOTEBOOK_WITH_DECORATIVE_COVER\n" "LngText.text" msgid "notebook2" -msgstr "" +msgstr "koadernoa2" #. 📕 (U+1F4D5), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7245,7 +7232,7 @@ "CLOSED_BOOK\n" "LngText.text" msgid "book" -msgstr "" +msgstr "liburua" #. 📖 (U+1F4D6), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7254,7 +7241,7 @@ "OPEN_BOOK\n" "LngText.text" msgid "book2" -msgstr "" +msgstr "liburua2" #. 📚 (U+1F4DA), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7263,7 +7250,7 @@ "BOOKS\n" "LngText.text" msgid "books" -msgstr "" +msgstr "liburuak" #. 📛 (U+1F4DB), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7272,7 +7259,7 @@ "NAME_BADGE\n" "LngText.text" msgid "name" -msgstr "" +msgstr "izena" #. 📜 (U+1F4DC), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7290,7 +7277,7 @@ "MEMO\n" "LngText.text" msgid "memo" -msgstr "" +msgstr "oharra" #. 📞 (U+1F4DE), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7299,7 +7286,7 @@ "TELEPHONE_RECEIVER\n" "LngText.text" msgid "receiver" -msgstr "" +msgstr "telefonoa" #. 📟 (U+1F4DF), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7308,7 +7295,7 @@ "PAGER\n" "LngText.text" msgid "pager" -msgstr "" +msgstr "bilagailua" #. 📠 (U+1F4E0), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7317,7 +7304,7 @@ "FAX_MACHINE\n" "LngText.text" msgid "fax" -msgstr "" +msgstr "faxa" #. 📡 (U+1F4E1), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7326,7 +7313,7 @@ "SATELLITE_ANTENNA\n" "LngText.text" msgid "satellite" -msgstr "" +msgstr "satelitea" #. 📢 (U+1F4E2), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7335,7 +7322,7 @@ "PUBLIC_ADDRESS_LOUDSPEAKER\n" "LngText.text" msgid "loudspeaker" -msgstr "" +msgstr "bozgorailua" #. 📣 (U+1F4E3), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7344,7 +7331,7 @@ "CHEERING_MEGAPHONE\n" "LngText.text" msgid "mega" -msgstr "" +msgstr "megafonoa" #. 📤 (U+1F4E4), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7353,7 +7340,7 @@ "OUTBOX_TRAY\n" "LngText.text" msgid "tray" -msgstr "" +msgstr "erretilua" #. 📥 (U+1F4E5), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7362,7 +7349,7 @@ "INBOX_TRAY\n" "LngText.text" msgid "tray2" -msgstr "" +msgstr "erretilua2" #. 📦 (U+1F4E6), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7371,7 +7358,7 @@ "PACKAGE\n" "LngText.text" msgid "package" -msgstr "" +msgstr "paketea" #. 📧 (U+1F4E7), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7380,7 +7367,7 @@ "E-MAIL_SYMBOL\n" "LngText.text" msgid "e-mail" -msgstr "" +msgstr "e-posta" #. 📨 (U+1F4E8), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7389,7 +7376,7 @@ "INCOMING_ENVELOPE\n" "LngText.text" msgid "envelope2" -msgstr "" +msgstr "gutun-azala2" #. 📩 (U+1F4E9), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7398,7 +7385,7 @@ "ENVELOPE_WITH_DOWNWARDS_ARROW_ABOVE\n" "LngText.text" msgid "envelope3" -msgstr "" +msgstr "gutun-azala3" #. 📪 (U+1F4EA), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7407,7 +7394,7 @@ "CLOSED_MAILBOX_WITH_LOWERED_FLAG\n" "LngText.text" msgid "mailbox" -msgstr "" +msgstr "postontzia" #. 📫 (U+1F4EB), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7416,7 +7403,7 @@ "CLOSED_MAILBOX_WITH_RAISED_FLAG\n" "LngText.text" msgid "mailbox2" -msgstr "" +msgstr "postontzia2" #. 📬 (U+1F4EC), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7425,7 +7412,7 @@ "OPEN_MAILBOX_WITH_RAISED_FLAG\n" "LngText.text" msgid "mailbox3" -msgstr "" +msgstr "postontzia3" #. 📭 (U+1F4ED), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7434,7 +7421,7 @@ "OPEN_MAILBOX_WITH_LOWERED_FLAG\n" "LngText.text" msgid "mailbox4" -msgstr "" +msgstr "postontzia4" #. 📮 (U+1F4EE), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7443,7 +7430,7 @@ "POSTBOX\n" "LngText.text" msgid "postbox" -msgstr "" +msgstr "postakutxa" #. 📯 (U+1F4EF), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7452,7 +7439,7 @@ "POSTAL_HORN\n" "LngText.text" msgid "horn" -msgstr "" +msgstr "adarra" #. 📰 (U+1F4F0), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7461,7 +7448,7 @@ "NEWSPAPER\n" "LngText.text" msgid "newspaper" -msgstr "" +msgstr "egunkaria" #. 📱 (U+1F4F1), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7470,7 +7457,7 @@ "MOBILE_PHONE\n" "LngText.text" msgid "mobile" -msgstr "" +msgstr "mugikorra" #. 📲 (U+1F4F2), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7479,7 +7466,7 @@ "MOBILE_PHONE_WITH_RIGHTWARDS_ARROW_AT_LEFT\n" "LngText.text" msgid "calling" -msgstr "" +msgstr "deitzea" #. 📳 (U+1F4F3), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7488,7 +7475,7 @@ "VIBRATION_MODE\n" "LngText.text" msgid "vibration mode" -msgstr "" +msgstr "bibrazio modua" #. 📴 (U+1F4F4), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7497,7 +7484,7 @@ "MOBILE_PHONE_OFF\n" "LngText.text" msgid "mobile phone off" -msgstr "" +msgstr "mugikorra itzalita" #. 📵 (U+1F4F5), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7506,7 +7493,7 @@ "NO_MOBILE_PHONES\n" "LngText.text" msgid "no mobile" -msgstr "" +msgstr "mugikorrik ez" #. 📶 (U+1F4F6), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7515,7 +7502,7 @@ "ANTENNA_WITH_BARS\n" "LngText.text" msgid "signal strength" -msgstr "" +msgstr "seinalearen indarra" #. 📷 (U+1F4F7), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7524,7 +7511,7 @@ "CAMERA\n" "LngText.text" msgid "camera" -msgstr "" +msgstr "kamera" #. 📹 (U+1F4F9), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7533,7 +7520,7 @@ "VIDEO_CAMERA\n" "LngText.text" msgid "video camera" -msgstr "" +msgstr "bideokamera" #. 📺 (U+1F4FA), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7542,7 +7529,7 @@ "TELEVISION\n" "LngText.text" msgid "tv" -msgstr "" +msgstr "telebista" #. 📻 (U+1F4FB), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7551,7 +7538,7 @@ "RADIO\n" "LngText.text" msgid "radio" -msgstr "" +msgstr "irratia" #. 📼 (U+1F4FC), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7560,7 +7547,7 @@ "VIDEOCASSETTE\n" "LngText.text" msgid "vhs" -msgstr "" +msgstr "vhs" #. 🔅 (U+1F505), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7569,7 +7556,7 @@ "LOW_BRIGHTNESS_SYMBOL\n" "LngText.text" msgid "brightness" -msgstr "" +msgstr "distira" #. 🔆 (U+1F506), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7578,7 +7565,7 @@ "HIGH_BRIGHTNESS_SYMBOL\n" "LngText.text" msgid "brightness2" -msgstr "" +msgstr "distira2" #. 🔇 (U+1F507), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7587,7 +7574,7 @@ "SPEAKER_WITH_CANCELLATION_STROKE\n" "LngText.text" msgid "mute" -msgstr "" +msgstr "mutu" #. 🔈 (U+1F508), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7596,7 +7583,7 @@ "SPEAKER\n" "LngText.text" msgid "speaker" -msgstr "" +msgstr "bozgorailua" #. 🔉 (U+1F509), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7605,7 +7592,7 @@ "SPEAKER_WITH_ONE_SOUND_WAVE\n" "LngText.text" msgid "sound" -msgstr "" +msgstr "soinua" #. 🔊 (U+1F50A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7614,7 +7601,7 @@ "SPEAKER_WITH_THREE_SOUND_WAVES\n" "LngText.text" msgid "loud sound" -msgstr "" +msgstr "zarata" #. 🔋 (U+1F50B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7623,7 +7610,7 @@ "BATTERY\n" "LngText.text" msgid "battery" -msgstr "" +msgstr "bateria" #. 🔌 (U+1F50C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7632,7 +7619,7 @@ "ELECTRIC_PLUG\n" "LngText.text" msgid "plug" -msgstr "" +msgstr "entxufea" #. 🔠(U+1F50D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7641,7 +7628,7 @@ "LEFT-POINTING_MAGNIFYING_GLASS\n" "LngText.text" msgid "mag" -msgstr "" +msgstr "lupa" #. 🔎 (U+1F50E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7650,7 +7637,7 @@ "RIGHT-POINTING_MAGNIFYING_GLASS\n" "LngText.text" msgid "mag2" -msgstr "" +msgstr "lupa2" #. 🔠(U+1F50F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7659,7 +7646,7 @@ "LOCK_WITH_INK_PEN\n" "LngText.text" msgid "lock2" -msgstr "" +msgstr "giltzarrapoa2" #. 🔠(U+1F510), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7668,7 +7655,7 @@ "CLOSED_LOCK_WITH_KEY\n" "LngText.text" msgid "lock3" -msgstr "" +msgstr "giltzarrapoa3" #. 🔑 (U+1F511), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7677,7 +7664,7 @@ "KEY\n" "LngText.text" msgid "key" -msgstr "" +msgstr "giltza" #. 🔒 (U+1F512), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7686,7 +7673,7 @@ "LOCK\n" "LngText.text" msgid "lock" -msgstr "" +msgstr "giltzarrapoa" #. 🔓 (U+1F513), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7695,7 +7682,7 @@ "OPEN_LOCK\n" "LngText.text" msgid "unlock" -msgstr "" +msgstr "giltzez ireki" #. 🔔 (U+1F514), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7704,7 +7691,7 @@ "BELL\n" "LngText.text" msgid "bell" -msgstr "" +msgstr "kanpaia" #. 🔕 (U+1F515), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7713,7 +7700,7 @@ "BELL_WITH_CANCELLATION_STROKE\n" "LngText.text" msgid "no bell" -msgstr "" +msgstr "kanpairik ez" #. 🔖 (U+1F516), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7722,7 +7709,7 @@ "BOOKMARK\n" "LngText.text" msgid "bookmark2" -msgstr "" +msgstr "laster-marka2" #. 🔗 (U+1F517), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7731,7 +7718,7 @@ "LINK_SYMBOL\n" "LngText.text" msgid "link" -msgstr "" +msgstr "esteka" #. 🔘 (U+1F518), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7740,7 +7727,7 @@ "RADIO_BUTTON\n" "LngText.text" msgid "radio button" -msgstr "" +msgstr "aukera-botoi" #. 🔞 (U+1F51E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7749,7 +7736,7 @@ "NO_ONE_UNDER_EIGHTEEN_SYMBOL\n" "LngText.text" msgid "underage" -msgstr "" +msgstr "adingabea" #. 🔤 (U+1F524), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7758,7 +7745,7 @@ "INPUT_SYMBOL_FOR_LATIN_LETTERS\n" "LngText.text" msgid "abc" -msgstr "" +msgstr "abd" #. 🔥 (U+1F525), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7767,7 +7754,7 @@ "FIRE\n" "LngText.text" msgid "fire" -msgstr "" +msgstr "sua" #. 🔦 (U+1F526), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7776,7 +7763,7 @@ "ELECTRIC_TORCH\n" "LngText.text" msgid "flashlight" -msgstr "" +msgstr "linterna" #. 🔧 (U+1F527), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7785,7 +7772,7 @@ "WRENCH\n" "LngText.text" msgid "wrench" -msgstr "" +msgstr "giltza ingelesa" #. 🔨 (U+1F528), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7794,7 +7781,7 @@ "HAMMER\n" "LngText.text" msgid "hammer" -msgstr "" +msgstr "mailua" #. 🔩 (U+1F529), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7812,7 +7799,7 @@ "HOCHO\n" "LngText.text" msgid "knife" -msgstr "" +msgstr "labana" #. 🔫 (U+1F52B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7821,7 +7808,7 @@ "PISTOL\n" "LngText.text" msgid "pistol" -msgstr "" +msgstr "pistola" #. 🔬 (U+1F52C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7830,7 +7817,7 @@ "MICROSCOPE\n" "LngText.text" msgid "microscope" -msgstr "" +msgstr "mikroskopioa" #. 🔭 (U+1F52D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7839,7 +7826,7 @@ "TELESCOPE\n" "LngText.text" msgid "telescope" -msgstr "" +msgstr "teleskopioa" #. 🔮 (U+1F52E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7848,7 +7835,7 @@ "CRYSTAL_BALL\n" "LngText.text" msgid "crystal ball" -msgstr "" +msgstr "kristalezko bola" #. 🔰 (U+1F530), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7857,7 +7844,7 @@ "JAPANESE_SYMBOL_FOR_BEGINNER\n" "LngText.text" msgid "beginner" -msgstr "" +msgstr "hasberria" #. 🔱 (U+1F531), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7866,7 +7853,7 @@ "TRIDENT_EMBLEM\n" "LngText.text" msgid "trident" -msgstr "" +msgstr "tridentea" #. 🔲 (U+1F532), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7875,7 +7862,7 @@ "BLACK_SQUARE_BUTTON\n" "LngText.text" msgid "button2" -msgstr "" +msgstr "botoia2" #. 🔳 (U+1F533), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7884,7 +7871,7 @@ "WHITE_SQUARE_BUTTON\n" "LngText.text" msgid "button" -msgstr "" +msgstr "botoia" #. 🕠(U+1F550), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7893,7 +7880,7 @@ "CLOCK_FACE_ONE_OCLOCK\n" "LngText.text" msgid "1" -msgstr "" +msgstr "1" #. 🕑 (U+1F551), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7902,7 +7889,7 @@ "CLOCK_FACE_TWO_OCLOCK\n" "LngText.text" msgid "2" -msgstr "" +msgstr "2" #. 🕒 (U+1F552), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7911,7 +7898,7 @@ "CLOCK_FACE_THREE_OCLOCK\n" "LngText.text" msgid "3" -msgstr "" +msgstr "3" #. 🕓 (U+1F553), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7920,7 +7907,7 @@ "CLOCK_FACE_FOUR_OCLOCK\n" "LngText.text" msgid "4" -msgstr "" +msgstr "4" #. 🕔 (U+1F554), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7929,7 +7916,7 @@ "CLOCK_FACE_FIVE_OCLOCK\n" "LngText.text" msgid "5" -msgstr "" +msgstr "5" #. 🕕 (U+1F555), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7938,7 +7925,7 @@ "CLOCK_FACE_SIX_OCLOCK\n" "LngText.text" msgid "6" -msgstr "" +msgstr "6" #. 🕖 (U+1F556), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7947,7 +7934,7 @@ "CLOCK_FACE_SEVEN_OCLOCK\n" "LngText.text" msgid "7" -msgstr "" +msgstr "7" #. 🕗 (U+1F557), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7956,7 +7943,7 @@ "CLOCK_FACE_EIGHT_OCLOCK\n" "LngText.text" msgid "8" -msgstr "" +msgstr "8" #. 🕘 (U+1F558), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7965,7 +7952,7 @@ "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 @@ "CLOCK_FACE_TEN_OCLOCK\n" "LngText.text" msgid "10" -msgstr "" +msgstr "10" #. 🕚 (U+1F55A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7983,7 +7970,7 @@ "CLOCK_FACE_ELEVEN_OCLOCK\n" "LngText.text" msgid "11" -msgstr "" +msgstr "11" #. 🕛 (U+1F55B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7992,7 +7979,7 @@ "CLOCK_FACE_TWELVE_OCLOCK\n" "LngText.text" msgid "12" -msgstr "" +msgstr "12" #. 🕜 (U+1F55C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8001,7 +7988,7 @@ "CLOCK_FACE_ONE-THIRTY\n" "LngText.text" msgid "1.30" -msgstr "" +msgstr "1:30" #. 🕠(U+1F55D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8010,7 +7997,7 @@ "CLOCK_FACE_TWO-THIRTY\n" "LngText.text" msgid "2.30" -msgstr "" +msgstr "2:30" #. 🕞 (U+1F55E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8019,7 +8006,7 @@ "CLOCK_FACE_THREE-THIRTY\n" "LngText.text" msgid "3.30" -msgstr "" +msgstr "3:30" #. 🕟 (U+1F55F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8028,7 +8015,7 @@ "CLOCK_FACE_FOUR-THIRTY\n" "LngText.text" msgid "4.30" -msgstr "" +msgstr "4:30" #. 🕠 (U+1F560), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8037,7 +8024,7 @@ "CLOCK_FACE_FIVE-THIRTY\n" "LngText.text" msgid "5.30" -msgstr "" +msgstr "5:30" #. 🕡 (U+1F561), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8046,7 +8033,7 @@ "CLOCK_FACE_SIX-THIRTY\n" "LngText.text" msgid "6.30" -msgstr "" +msgstr "6:30" #. 🕢 (U+1F562), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8055,7 +8042,7 @@ "CLOCK_FACE_SEVEN-THIRTY\n" "LngText.text" msgid "7.30" -msgstr "" +msgstr "7:30" #. 🕣 (U+1F563), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8064,7 +8051,7 @@ "CLOCK_FACE_EIGHT-THIRTY\n" "LngText.text" msgid "8.30" -msgstr "" +msgstr "8:30" #. 🕤 (U+1F564), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8073,7 +8060,7 @@ "CLOCK_FACE_NINE-THIRTY\n" "LngText.text" msgid "9.30" -msgstr "" +msgstr "9:30" #. 🕥 (U+1F565), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8082,7 +8069,7 @@ "CLOCK_FACE_TEN-THIRTY\n" "LngText.text" msgid "10.30" -msgstr "" +msgstr "10:30" #. 🕦 (U+1F566), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8091,7 +8078,7 @@ "CLOCK_FACE_ELEVEN-THIRTY\n" "LngText.text" msgid "11.30" -msgstr "" +msgstr "11:30" #. 🕧 (U+1F567), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8100,7 +8087,7 @@ "CLOCK_FACE_TWELVE-THIRTY\n" "LngText.text" msgid "12.30" -msgstr "" +msgstr "12:30" #. 🗻 (U+1F5FB), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8109,7 +8096,7 @@ "MOUNT_FUJI\n" "LngText.text" msgid "Fuji" -msgstr "" +msgstr "Fuji" #. 🗼 (U+1F5FC), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8118,7 +8105,7 @@ "TOKYO_TOWER\n" "LngText.text" msgid "tower" -msgstr "" +msgstr "dorrea" #. 🗽 (U+1F5FD), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8127,7 +8114,7 @@ "STATUE_OF_LIBERTY\n" "LngText.text" msgid "liberty" -msgstr "" +msgstr "askatasuna" #. 🗾 (U+1F5FE), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8136,7 +8123,7 @@ "SILHOUETTE_OF_JAPAN\n" "LngText.text" msgid "Japan" -msgstr "" +msgstr "Japon" #. 🗿 (U+1F5FF), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8145,7 +8132,7 @@ "MOYAI\n" "LngText.text" msgid "statue" -msgstr "" +msgstr "estatua" #. 😀 (U+1F600), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8154,7 +8141,7 @@ "GRINNING_FACE\n" "LngText.text" msgid "grinning" -msgstr "" +msgstr "irribarretsu" #. 😠(U+1F601), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8163,7 +8150,7 @@ "GRINNING_FACE_WITH_SMILING_EYES\n" "LngText.text" msgid "grin" -msgstr "" +msgstr "irribarrea" #. 😂 (U+1F602), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8172,7 +8159,7 @@ "FACE_WITH_TEARS_OF_JOY\n" "LngText.text" msgid "joy" -msgstr "" +msgstr "poza" #. 😃 (U+1F603), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8181,7 +8168,7 @@ "SMILING_FACE_WITH_OPEN_MOUTH\n" "LngText.text" msgid "smiley" -msgstr "" +msgstr "irribarretsu" #. 😄 (U+1F604), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8190,7 +8177,7 @@ "SMILING_FACE_WITH_OPEN_MOUTH_AND_SMILING_EYES\n" "LngText.text" msgid "smile" -msgstr "" +msgstr "irribarrea" #. 😅 (U+1F605), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8199,7 +8186,7 @@ "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 @@ -8208,7 +8195,7 @@ "SMILING_FACE_WITH_OPEN_MOUTH_AND_TIGHTLY-CLOSED_EYES\n" "LngText.text" msgid "laughing" -msgstr "" +msgstr "barrezka" #. 😇 (U+1F607), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8217,7 +8204,7 @@ "SMILING_FACE_WITH_HALO\n" "LngText.text" msgid "innocent" -msgstr "" +msgstr "inozentea" #. 😈 (U+1F608), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8226,7 +8213,7 @@ "SMILING_FACE_WITH_HORNS\n" "LngText.text" msgid "smiling imp" -msgstr "" +msgstr "deabrutxoa" #. 😉 (U+1F609), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8235,7 +8222,7 @@ "WINKING_FACE\n" "LngText.text" msgid "wink" -msgstr "" +msgstr "begi-keinu" #. 😊 (U+1F60A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8244,7 +8231,7 @@ "SMILING_FACE_WITH_SMILING_EYES\n" "LngText.text" msgid "blush" -msgstr "" +msgstr "gorritu" #. 😋 (U+1F60B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8253,7 +8240,7 @@ "FACE_SAVOURING_DELICIOUS_FOOD\n" "LngText.text" msgid "yum" -msgstr "" +msgstr "mauka-mauka" #. 😌 (U+1F60C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8262,7 +8249,7 @@ "RELIEVED_FACE\n" "LngText.text" msgid "relieved" -msgstr "" +msgstr "lasaitua" #. 😠(U+1F60D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8271,7 +8258,7 @@ "SMILING_FACE_WITH_HEART-SHAPED_EYES\n" "LngText.text" msgid "heart eyes" -msgstr "" +msgstr "bihotz-begiak" #. 😎 (U+1F60E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8280,7 +8267,7 @@ "SMILING_FACE_WITH_SUNGLASSES\n" "LngText.text" msgid "sunglasses" -msgstr "" +msgstr "eguzkitarako betaurrekoak" #. 😠(U+1F60F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8289,7 +8276,7 @@ "SMIRKING_FACE\n" "LngText.text" msgid "smirk" -msgstr "" +msgstr "irribarretxo" #. 😠(U+1F610), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8298,7 +8285,7 @@ "NEUTRAL_FACE\n" "LngText.text" msgid "neutral face" -msgstr "" +msgstr "aurpegi neutroa" #. 😑 (U+1F611), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8307,7 +8294,7 @@ "EXPRESSIONLESS_FACE\n" "LngText.text" msgid "expressionless" -msgstr "" +msgstr "espresio gabea" #. 😒 (U+1F612), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8316,7 +8303,7 @@ "UNAMUSED_FACE\n" "LngText.text" msgid "unamused" -msgstr "" +msgstr "aspertuta" #. 😓 (U+1F613), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8325,7 +8312,7 @@ "FACE_WITH_COLD_SWEAT\n" "LngText.text" msgid "sweat" -msgstr "" +msgstr "izerdia" #. 😔 (U+1F614), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8334,7 +8321,7 @@ "PENSIVE_FACE\n" "LngText.text" msgid "pensive" -msgstr "" +msgstr "pentsakor" #. 😕 (U+1F615), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8343,7 +8330,7 @@ "CONFUSED_FACE\n" "LngText.text" msgid "confused" -msgstr "" +msgstr "nahastuta" #. 😖 (U+1F616), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8352,7 +8339,7 @@ "CONFOUNDED_FACE\n" "LngText.text" msgid "confounded" -msgstr "" +msgstr "nahastuta" #. 😗 (U+1F617), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8361,7 +8348,7 @@ "KISSING_FACE\n" "LngText.text" msgid "kissing" -msgstr "" +msgstr "musukatzen" #. 😘 (U+1F618), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8370,7 +8357,7 @@ "FACE_THROWING_A_KISS\n" "LngText.text" msgid "kiss2" -msgstr "" +msgstr "musua2" #. 😙 (U+1F619), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8379,7 +8366,7 @@ "KISSING_FACE_WITH_SMILING_EYES\n" "LngText.text" msgid "kiss3" -msgstr "" +msgstr "musua3" #. 😚 (U+1F61A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8388,7 +8375,7 @@ "KISSING_FACE_WITH_CLOSED_EYES\n" "LngText.text" msgid "kiss4" -msgstr "" +msgstr "musua4" #. 😛 (U+1F61B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8397,7 +8384,7 @@ "FACE_WITH_STUCK-OUT_TONGUE\n" "LngText.text" msgid "tongue2" -msgstr "" +msgstr "mihia2" #. 😜 (U+1F61C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8406,7 +8393,7 @@ "FACE_WITH_STUCK-OUT_TONGUE_AND_WINKING_EYE\n" "LngText.text" msgid "tongue3" -msgstr "" +msgstr "mihia3" #. 😠(U+1F61D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8415,7 +8402,7 @@ "FACE_WITH_STUCK-OUT_TONGUE_AND_TIGHTLY-CLOSED_EYES\n" "LngText.text" msgid "tongue4" -msgstr "" +msgstr "mihia4" #. 😞 (U+1F61E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8424,7 +8411,7 @@ "DISAPPOINTED_FACE\n" "LngText.text" msgid "disappointed" -msgstr "" +msgstr "desengainatuta" #. 😟 (U+1F61F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8433,7 +8420,7 @@ "WORRIED_FACE\n" "LngText.text" msgid "worried" -msgstr "" +msgstr "arduratuta" #. 😠 (U+1F620), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8442,7 +8429,7 @@ "ANGRY_FACE\n" "LngText.text" msgid "angry" -msgstr "" +msgstr "haserre" #. 😡 (U+1F621), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8451,7 +8438,7 @@ "POUTING_FACE\n" "LngText.text" msgid "rage" -msgstr "" +msgstr "hira" #. 😢 (U+1F622), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8460,7 +8447,7 @@ "CRYING_FACE\n" "LngText.text" msgid "cry" -msgstr "" +msgstr "negar" #. 😣 (U+1F623), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8469,7 +8456,7 @@ "PERSEVERING_FACE\n" "LngText.text" msgid "persevere" -msgstr "" +msgstr "ekin" #. 😤 (U+1F624), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8478,7 +8465,7 @@ "FACE_WITH_LOOK_OF_TRIUMPH\n" "LngText.text" msgid "triumph" -msgstr "" +msgstr "garaipena" #. 😥 (U+1F625), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8487,7 +8474,7 @@ "DISAPPOINTED_BUT_RELIEVED_FACE\n" "LngText.text" msgid "disappointed relieved" -msgstr "" +msgstr "desengainatuta lasaituta" #. 😦 (U+1F626), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8496,7 +8483,7 @@ "FROWNING_FACE_WITH_OPEN_MOUTH\n" "LngText.text" msgid "frowning" -msgstr "" +msgstr "kopetilun" #. 😧 (U+1F627), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8505,7 +8492,7 @@ "ANGUISHED_FACE\n" "LngText.text" msgid "anguished" -msgstr "" +msgstr "itolarrian" #. 😨 (U+1F628), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8514,7 +8501,7 @@ "FEARFUL_FACE\n" "LngText.text" msgid "fearful" -msgstr "" +msgstr "beldurrez" #. 😩 (U+1F629), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8523,7 +8510,7 @@ "WEARY_FACE\n" "LngText.text" msgid "weary" -msgstr "" +msgstr "nazkatuta" #. 😪 (U+1F62A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8532,7 +8519,7 @@ "SLEEPY_FACE\n" "LngText.text" msgid "sleepy" -msgstr "" +msgstr "logura" #. 😫 (U+1F62B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8541,7 +8528,7 @@ "TIRED_FACE\n" "LngText.text" msgid "tired face" -msgstr "" +msgstr "neke aurpegia" #. 😬 (U+1F62C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8550,7 +8537,7 @@ "GRIMACING_FACE\n" "LngText.text" msgid "grimacing" -msgstr "" +msgstr "imintzioka" #. 😭 (U+1F62D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8559,7 +8546,7 @@ "LOUDLY_CRYING_FACE\n" "LngText.text" msgid "sob" -msgstr "" +msgstr "negar" #. 😮 (U+1F62E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8568,7 +8555,7 @@ "FACE_WITH_OPEN_MOUTH\n" "LngText.text" msgid "open mouth" -msgstr "" +msgstr "ahoa irekita" #. 😯 (U+1F62F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8577,7 +8564,7 @@ "HUSHED_FACE\n" "LngText.text" msgid "hushed" -msgstr "" +msgstr "ixo" #. 😰 (U+1F630), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8586,7 +8573,7 @@ "FACE_WITH_OPEN_MOUTH_AND_COLD_SWEAT\n" "LngText.text" msgid "cold sweat" -msgstr "" +msgstr "izerdi hotza" #. 😱 (U+1F631), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8595,7 +8582,7 @@ "FACE_SCREAMING_IN_FEAR\n" "LngText.text" msgid "scream" -msgstr "" +msgstr "oihu" #. 😲 (U+1F632), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8604,7 +8591,7 @@ "ASTONISHED_FACE\n" "LngText.text" msgid "astonished" -msgstr "" +msgstr "txundituta" #. 😳 (U+1F633), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8613,7 +8600,7 @@ "FLUSHED_FACE\n" "LngText.text" msgid "flushed" -msgstr "" +msgstr "gorrituta" #. 😴 (U+1F634), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8622,7 +8609,7 @@ "SLEEPING_FACE\n" "LngText.text" msgid "sleeping" -msgstr "" +msgstr "lo" #. 😵 (U+1F635), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8631,7 +8618,7 @@ "DIZZY_FACE\n" "LngText.text" msgid "dizzy face" -msgstr "" +msgstr "zorabiatuta" #. 😶 (U+1F636), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8640,7 +8627,7 @@ "FACE_WITHOUT_MOUTH\n" "LngText.text" msgid "no mouth" -msgstr "" +msgstr "ahorik ez" #. 😷 (U+1F637), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8649,7 +8636,7 @@ "FACE_WITH_MEDICAL_MASK\n" "LngText.text" msgid "mask" -msgstr "" +msgstr "maskara" #. 😸 (U+1F638), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8658,7 +8645,7 @@ "GRINNING_CAT_FACE_WITH_SMILING_EYES\n" "LngText.text" msgid "smile cat" -msgstr "" +msgstr "katu irribarrea" #. 😹 (U+1F639), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8667,7 +8654,7 @@ "CAT_FACE_WITH_TEARS_OF_JOY\n" "LngText.text" msgid "joy cat" -msgstr "" +msgstr "katu poza" #. 😺 (U+1F63A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8676,7 +8663,7 @@ "SMILING_CAT_FACE_WITH_OPEN_MOUTH\n" "LngText.text" msgid "smiley cat" -msgstr "" +msgstr "katu irribarretsua" #. 😻 (U+1F63B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8685,7 +8672,7 @@ "SMILING_CAT_FACE_WITH_HEART-SHAPED_EYES\n" "LngText.text" msgid "heart eyes cat" -msgstr "" +msgstr "katu bihotz-begiak" #. 😼 (U+1F63C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8694,7 +8681,7 @@ "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 @@ -8703,7 +8690,7 @@ "KISSING_CAT_FACE_WITH_CLOSED_EYES\n" "LngText.text" msgid "kissing cat" -msgstr "" +msgstr "katua musukatzen" #. 😾 (U+1F63E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8712,7 +8699,7 @@ "POUTING_CAT_FACE\n" "LngText.text" msgid "pouting cat" -msgstr "" +msgstr "katua muturka" #. 😿 (U+1F63F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8721,7 +8708,7 @@ "CRYING_CAT_FACE\n" "LngText.text" msgid "crying cat" -msgstr "" +msgstr "katuak negar" #. 🙀 (U+1F640), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8730,7 +8717,7 @@ "WEARY_CAT_FACE\n" "LngText.text" msgid "scream cat" -msgstr "" +msgstr "katuak oihu" #. 🙅 (U+1F645), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8739,7 +8726,7 @@ "FACE_WITH_NO_GOOD_GESTURE\n" "LngText.text" msgid "no good" -msgstr "" +msgstr "ez ona" #. 🙆 (U+1F646), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8748,7 +8735,7 @@ "FACE_WITH_OK_GESTURE\n" "LngText.text" msgid "ok2" -msgstr "" +msgstr "ados2" #. 🙇 (U+1F647), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8757,7 +8744,7 @@ "PERSON_BOWING_DEEPLY\n" "LngText.text" msgid "bow" -msgstr "" +msgstr "makur" #. 🙈 (U+1F648), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8766,7 +8753,7 @@ "SEE-NO-EVIL_MONKEY\n" "LngText.text" msgid "see no evil" -msgstr "" +msgstr "ikusi ez" #. 🙉 (U+1F649), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8775,7 +8762,7 @@ "HEAR-NO-EVIL_MONKEY\n" "LngText.text" msgid "hear no evil" -msgstr "" +msgstr "entzun ez" #. 🙊 (U+1F64A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8784,7 +8771,7 @@ "SPEAK-NO-EVIL_MONKEY\n" "LngText.text" msgid "speak no evil" -msgstr "" +msgstr "hitz-egin ez" #. 🙋 (U+1F64B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8793,7 +8780,7 @@ "HAPPY_PERSON_RAISING_ONE_HAND\n" "LngText.text" msgid "happiness" -msgstr "" +msgstr "poztasuna" #. 🙌 (U+1F64C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8802,7 +8789,7 @@ "PERSON_RAISING_BOTH_HANDS_IN_CELEBRATION\n" "LngText.text" msgid "celebration" -msgstr "" +msgstr "ospakizuna" #. 🙠(U+1F64D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8811,7 +8798,7 @@ "PERSON_FROWNING\n" "LngText.text" msgid "person frowning" -msgstr "" +msgstr "pertsona kopetilun" #. 🙎 (U+1F64E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8820,7 +8807,7 @@ "PERSON_WITH_POUTING_FACE\n" "LngText.text" msgid "person pouting" -msgstr "" +msgstr "pertsona muturka" #. 🙠(U+1F64F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8829,7 +8816,7 @@ "PERSON_WITH_FOLDED_HANDS\n" "LngText.text" msgid "pray" -msgstr "" +msgstr "otoi" #. 🚀 (U+1F680), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8838,7 +8825,7 @@ "ROCKET\n" "LngText.text" msgid "rocket" -msgstr "" +msgstr "kohetea" #. 🚠(U+1F681), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8847,7 +8834,7 @@ "HELICOPTER\n" "LngText.text" msgid "helicopter" -msgstr "" +msgstr "helikopteroa" #. 🚂 (U+1F682), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8856,7 +8843,7 @@ "STEAM_LOCOMOTIVE\n" "LngText.text" msgid "steam locomotive" -msgstr "" +msgstr "lurrunezko tren-makina" #. 🚃 (U+1F683), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8865,7 +8852,7 @@ "RAILWAY_CAR\n" "LngText.text" msgid "railway car" -msgstr "" +msgstr "bagoia" #. 🚄 (U+1F684), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8874,7 +8861,7 @@ "HIGH-SPEED_TRAIN\n" "LngText.text" msgid "train2" -msgstr "" +msgstr "trena2" #. 🚅 (U+1F685), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8883,7 +8870,7 @@ "HIGH-SPEED_TRAIN_WITH_BULLET_NOSE\n" "LngText.text" msgid "train3" -msgstr "" +msgstr "trena3" #. 🚆 (U+1F686), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8892,7 +8879,7 @@ "TRAIN\n" "LngText.text" msgid "train" -msgstr "" +msgstr "trena" #. 🚇 (U+1F687), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8901,7 +8888,7 @@ "METRO\n" "LngText.text" msgid "metro" -msgstr "" +msgstr "metroa" #. 🚈 (U+1F688), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8910,7 +8897,7 @@ "LIGHT_RAIL\n" "LngText.text" msgid "light rail" -msgstr "" +msgstr "tranbia" #. 🚉 (U+1F689), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8919,7 +8906,7 @@ "STATION\n" "LngText.text" msgid "station" -msgstr "" +msgstr "geltokia" #. 🚊 (U+1F68A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8928,7 +8915,7 @@ "TRAM\n" "LngText.text" msgid "tram" -msgstr "" +msgstr "tranbia" #. 🚋 (U+1F68B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8937,7 +8924,7 @@ "TRAM_CAR\n" "LngText.text" msgid "tram2" -msgstr "" +msgstr "tranbia2" #. 🚌 (U+1F68C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8946,7 +8933,7 @@ "BUS\n" "LngText.text" msgid "bus" -msgstr "" +msgstr "autobusa" #. 🚠(U+1F68D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8955,7 +8942,7 @@ "ONCOMING_BUS\n" "LngText.text" msgid "bus2" -msgstr "" +msgstr "autobusa2" #. 🚎 (U+1F68E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8964,7 +8951,7 @@ "TROLLEYBUS\n" "LngText.text" msgid "trolleybus" -msgstr "" +msgstr "trolebusa" #. 🚠(U+1F68F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8973,7 +8960,7 @@ "BUS_STOP\n" "LngText.text" msgid "busstop" -msgstr "" +msgstr "bus geltokia" #. 🚠(U+1F690), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8982,7 +8969,7 @@ "MINIBUS\n" "LngText.text" msgid "minibus" -msgstr "" +msgstr "minibusa" #. 🚑 (U+1F691), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8991,7 +8978,7 @@ "AMBULANCE\n" "LngText.text" msgid "ambulance" -msgstr "" +msgstr "anbulantzia" #. 🚒 (U+1F692), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9000,7 +8987,7 @@ "FIRE_ENGINE\n" "LngText.text" msgid "fire engine" -msgstr "" +msgstr "suhiltzaile-kamioia" #. 🚓 (U+1F693), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9009,7 +8996,7 @@ "POLICE_CAR\n" "LngText.text" msgid "police car" -msgstr "" +msgstr "polizia-kotxea" #. 🚔 (U+1F694), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9018,7 +9005,7 @@ "ONCOMING_POLICE_CAR\n" "LngText.text" msgid "police car2" -msgstr "" +msgstr "polizia-kotxea2" #. 🚕 (U+1F695), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9027,7 +9014,7 @@ "TAXI\n" "LngText.text" msgid "taxi" -msgstr "" +msgstr "taxia" #. 🚖 (U+1F696), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9036,7 +9023,7 @@ "ONCOMING_TAXI\n" "LngText.text" msgid "taxi2" -msgstr "" +msgstr "taxia2" #. 🚗 (U+1F697), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9045,7 +9032,7 @@ "AUTOMOBILE\n" "LngText.text" msgid "car" -msgstr "" +msgstr "kotxea" #. 🚘 (U+1F698), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9054,7 +9041,7 @@ "ONCOMING_AUTOMOBILE\n" "LngText.text" msgid "car2" -msgstr "" +msgstr "kotxea2" #. 🚙 (U+1F699), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9063,7 +9050,7 @@ "RECREATIONAL_VEHICLE\n" "LngText.text" msgid "car3" -msgstr "" +msgstr "kotxea3" #. 🚚 (U+1F69A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9072,7 +9059,7 @@ "DELIVERY_TRUCK\n" "LngText.text" msgid "truck2" -msgstr "" +msgstr "kamioia2" #. 🚛 (U+1F69B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9081,7 +9068,7 @@ "ARTICULATED_LORRY\n" "LngText.text" msgid "lorry" -msgstr "" +msgstr "kamioia" #. 🚜 (U+1F69C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9090,7 +9077,7 @@ "TRACTOR\n" "LngText.text" msgid "tractor" -msgstr "" +msgstr "traktorea" #. 🚠(U+1F69D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9099,7 +9086,7 @@ "MONORAIL\n" "LngText.text" msgid "monorail" -msgstr "" +msgstr "monorraila" #. 🚞 (U+1F69E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9108,7 +9095,7 @@ "MOUNTAIN_RAILWAY\n" "LngText.text" msgid "mountain railway" -msgstr "" +msgstr "funikularra" #. 🚟 (U+1F69F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9117,7 +9104,7 @@ "SUSPENSION_RAILWAY\n" "LngText.text" msgid "suspension railway" -msgstr "" +msgstr "zintzilikatutako trenbidea" #. 🚠 (U+1F6A0), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9126,7 +9113,7 @@ "MOUNTAIN_CABLEWAY\n" "LngText.text" msgid "mountain cableway" -msgstr "" +msgstr "teleferikoa" #. 🚡 (U+1F6A1), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9135,7 +9122,7 @@ "AERIAL_TRAMWAY\n" "LngText.text" msgid "aerial tramway" -msgstr "" +msgstr "teleferikoa" #. 🚢 (U+1F6A2), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9144,7 +9131,7 @@ "SHIP\n" "LngText.text" msgid "ship" -msgstr "" +msgstr "barkua" #. 🚣 (U+1F6A3), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9153,7 +9140,7 @@ "ROWBOAT\n" "LngText.text" msgid "rowboat" -msgstr "" +msgstr "batela" #. 🚤 (U+1F6A4), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9162,7 +9149,7 @@ "SPEEDBOAT\n" "LngText.text" msgid "speedboat" -msgstr "" +msgstr "txalupa bizkorra" #. 🚥 (U+1F6A5), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9171,7 +9158,7 @@ "HORIZONTAL_TRAFFIC_LIGHT\n" "LngText.text" msgid "traffic light" -msgstr "" +msgstr "semaforoa" #. 🚦 (U+1F6A6), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9180,7 +9167,7 @@ "VERTICAL_TRAFFIC_LIGHT\n" "LngText.text" msgid "traffic light2" -msgstr "" +msgstr "semaforoa2" #. 🚧 (U+1F6A7), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9189,7 +9176,7 @@ "CONSTRUCTION_SIGN\n" "LngText.text" msgid "construction" -msgstr "" +msgstr "eraikuntza" #. 🚨 (U+1F6A8), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9198,7 +9185,7 @@ "POLICE_CARS_REVOLVING_LIGHT\n" "LngText.text" msgid "rotating light" -msgstr "" +msgstr "argi biragarria" #. 🚩 (U+1F6A9), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9207,7 +9194,7 @@ "TRIANGULAR_FLAG_ON_POST\n" "LngText.text" msgid "triangular flag" -msgstr "" +msgstr "bandera triangularra" #. 🚪 (U+1F6AA), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9216,7 +9203,7 @@ "DOOR\n" "LngText.text" msgid "door" -msgstr "" +msgstr "atea" #. 🚫 (U+1F6AB), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9225,7 +9212,7 @@ "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 @@ -9234,7 +9221,7 @@ "SMOKING_SYMBOL\n" "LngText.text" msgid "smoking" -msgstr "" +msgstr "erretzen" #. 🚭 (U+1F6AD), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9243,7 +9230,7 @@ "NO_SMOKING_SYMBOL\n" "LngText.text" msgid "no smoking" -msgstr "" +msgstr "ez erre" #. 🚮 (U+1F6AE), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9252,7 +9239,7 @@ "PUT_LITTER_IN_ITS_PLACE_SYMBOL\n" "LngText.text" msgid "litter" -msgstr "" +msgstr "zaborra" #. 🚯 (U+1F6AF), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9261,7 +9248,7 @@ "DO_NOT_LITTER_SYMBOL\n" "LngText.text" msgid "do not litter" -msgstr "" +msgstr "ez bota zaborrik" #. 🚰 (U+1F6B0), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9270,7 +9257,7 @@ "POTABLE_WATER_SYMBOL\n" "LngText.text" msgid "potable water" -msgstr "" +msgstr "ur edangarria" #. 🚱 (U+1F6B1), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9279,7 +9266,7 @@ "NON-POTABLE_WATER_SYMBOL\n" "LngText.text" msgid "non-potable water" -msgstr "" +msgstr "ur ez edangarria" #. 🚲 (U+1F6B2), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9288,7 +9275,7 @@ "BICYCLE\n" "LngText.text" msgid "bike" -msgstr "" +msgstr "bizikleta" #. 🚳 (U+1F6B3), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9297,7 +9284,7 @@ "NO_BICYCLES\n" "LngText.text" msgid "no bicycles" -msgstr "" +msgstr "bizikletarik ez" #. 🚴 (U+1F6B4), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9306,7 +9293,7 @@ "BICYCLIST\n" "LngText.text" msgid "bicyclist" -msgstr "" +msgstr "txirrindularia" #. 🚵 (U+1F6B5), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9315,7 +9302,7 @@ "MOUNTAIN_BICYCLIST\n" "LngText.text" msgid "bicyclist2" -msgstr "" +msgstr "txirrindularia2" #. 🚶 (U+1F6B6), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9324,7 +9311,7 @@ "PEDESTRIAN\n" "LngText.text" msgid "walking" -msgstr "" +msgstr "oinez" #. 🚷 (U+1F6B7), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9333,7 +9320,7 @@ "NO_PEDESTRIANS\n" "LngText.text" msgid "no pedestrians" -msgstr "" +msgstr "oinezkorik ez" #. 🚸 (U+1F6B8), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9342,7 +9329,7 @@ "CHILDREN_CROSSING\n" "LngText.text" msgid "children crossing" -msgstr "" +msgstr "umeak gurutzatzen" #. 🚹 (U+1F6B9), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9351,7 +9338,7 @@ "MENS_SYMBOL\n" "LngText.text" msgid "mens" -msgstr "" +msgstr "gizonak" #. 🚺 (U+1F6BA), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9360,7 +9347,7 @@ "WOMENS_SYMBOL\n" "LngText.text" msgid "womens" -msgstr "" +msgstr "emakumeak" #. 🚻 (U+1F6BB), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9369,7 +9356,7 @@ "RESTROOM\n" "LngText.text" msgid "restroom" -msgstr "" +msgstr "komuna" #. 🚼 (U+1F6BC), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9378,7 +9365,7 @@ "BABY_SYMBOL\n" "LngText.text" msgid "baby2" -msgstr "" +msgstr "haurra2" #. 🚽 (U+1F6BD), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9387,7 +9374,7 @@ "TOILET\n" "LngText.text" msgid "toilet" -msgstr "" +msgstr "komuna" #. 🚾 (U+1F6BE), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9396,7 +9383,7 @@ "WATER_CLOSET\n" "LngText.text" msgid "toilet2" -msgstr "" +msgstr "komuna2" #. 🚿 (U+1F6BF), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9405,7 +9392,7 @@ "SHOWER\n" "LngText.text" msgid "shower" -msgstr "" +msgstr "dutxa" #. 🛀 (U+1F6C0), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9414,7 +9401,7 @@ "BATH\n" "LngText.text" msgid "bath" -msgstr "" +msgstr "bainua" #. 🛠(U+1F6C1), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9423,7 +9410,7 @@ "BATHTUB\n" "LngText.text" msgid "bathtub" -msgstr "" +msgstr "bainera" #. 🛂 (U+1F6C2), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9432,7 +9419,7 @@ "PASSPORT_CONTROL\n" "LngText.text" msgid "passport" -msgstr "" +msgstr "pasaportea" #. 🛃 (U+1F6C3), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9441,7 +9428,7 @@ "CUSTOMS\n" "LngText.text" msgid "customs" -msgstr "" +msgstr "mozorroak" #. 🛄 (U+1F6C4), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9450,7 +9437,7 @@ "BAGGAGE_CLAIM\n" "LngText.text" msgid "baggage" -msgstr "" +msgstr "ekipajea" #. 🛅 (U+1F6C5), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9459,7 +9446,7 @@ "LEFT_LUGGAGE\n" "LngText.text" msgid "left luggage" -msgstr "" +msgstr "utzitako maletak" #. ½ (U+000BD), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9468,7 +9455,7 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "SUPERSCRIPT_ONE\n" "LngText.text" msgid "^1" -msgstr "" +msgstr "^1" #. ² (U+000B2), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9558,7 +9545,7 @@ "SUPERSCRIPT_TWO\n" "LngText.text" msgid "^2" -msgstr "" +msgstr "^2" #. ³ (U+000B3), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9567,7 +9554,7 @@ "SUPERSCRIPT_THREE\n" "LngText.text" msgid "^3" -msgstr "" +msgstr "^3" #. â´ (U+02074), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9576,7 +9563,7 @@ "SUPERSCRIPT_FOUR\n" "LngText.text" msgid "^4" -msgstr "" +msgstr "^4" #. âµ (U+02075), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9585,7 +9572,7 @@ "SUPERSCRIPT_FIVE\n" "LngText.text" msgid "^5" -msgstr "" +msgstr "^5" #. ⶠ(U+02076), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9594,7 +9581,7 @@ "SUPERSCRIPT_SIX\n" "LngText.text" msgid "^6" -msgstr "" +msgstr "^6" #. â· (U+02077), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9603,7 +9590,7 @@ "SUPERSCRIPT_SEVEN\n" "LngText.text" msgid "^7" -msgstr "" +msgstr "^7" #. ⸠(U+02078), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9612,7 +9599,7 @@ "SUPERSCRIPT_EIGHT\n" "LngText.text" msgid "^8" -msgstr "" +msgstr "^8" #. â¹ (U+02079), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9621,7 +9608,7 @@ "SUPERSCRIPT_NINE\n" "LngText.text" msgid "^9" -msgstr "" +msgstr "^9" #. â° (U+02070), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9630,7 +9617,7 @@ "SUPERSCRIPT_ZERO\n" "LngText.text" msgid "^0" -msgstr "" +msgstr "^0" #. ⺠(U+0207A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9639,11 +9626,10 @@ "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 @@ "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 @@ #. â¾ (U+0207E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "SUPERSCRIPT_RIGHT_PARENTHESIS\n" @@ -9687,7 +9671,7 @@ "SUBSCRIPT_ONE\n" "LngText.text" msgid "_1" -msgstr "" +msgstr "_1" #. â‚‚ (U+02082), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9696,7 +9680,7 @@ "SUBSCRIPT_TWO\n" "LngText.text" msgid "_2" -msgstr "" +msgstr "_2" #. ₃ (U+02083), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9705,7 +9689,7 @@ "SUBSCRIPT_THREE\n" "LngText.text" msgid "_3" -msgstr "" +msgstr "_3" #. â‚„ (U+02084), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9714,7 +9698,7 @@ "SUBSCRIPT_FOUR\n" "LngText.text" msgid "_4" -msgstr "" +msgstr "_4" #. â‚… (U+02085), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9723,7 +9707,7 @@ "SUBSCRIPT_FIVE\n" "LngText.text" msgid "_5" -msgstr "" +msgstr "_5" #. ₆ (U+02086), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9732,7 +9716,7 @@ "SUBSCRIPT_SIX\n" "LngText.text" msgid "_6" -msgstr "" +msgstr "_6" #. ₇ (U+02087), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9741,7 +9725,7 @@ "SUBSCRIPT_SEVEN\n" "LngText.text" msgid "_7" -msgstr "" +msgstr "_7" #. ₈ (U+02088), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9750,7 +9734,7 @@ "SUBSCRIPT_EIGHT\n" "LngText.text" msgid "_8" -msgstr "" +msgstr "_8" #. ₉ (U+02089), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9759,7 +9743,7 @@ "SUBSCRIPT_NINE\n" "LngText.text" msgid "_9" -msgstr "" +msgstr "_9" #. â‚€ (U+02080), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9768,7 +9752,7 @@ "SUBSCRIPT_ZERO\n" "LngText.text" msgid "_0" -msgstr "" +msgstr "_0" #. â‚Š (U+0208A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9777,11 +9761,10 @@ "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 @@ "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 @@ #. â‚Ž (U+0208E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "SUBSCRIPT_RIGHT_PARENTHESIS\n" @@ -9825,7 +9806,7 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "MODIFIER_LETTER_SMALL_ALPHA\n" "LngText.text" msgid "^alpha" -msgstr "" +msgstr "^alfa" #. áµ (U+01D5D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -10383,7 +10364,7 @@ "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 @@ "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 @@ "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 @@ "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 @@ "MODIFIER_LETTER_SMALL_THETA\n" "LngText.text" msgid "^theta" -msgstr "" +msgstr "^teta" #. ᶥ (U+01DA5), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -10428,7 +10409,7 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "GREEK_SUBSCRIPT_SMALL_LETTER_RHO\n" "LngText.text" msgid "_rho" -msgstr "" +msgstr "_ro" #. ᵩ (U+01D69), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -10491,7 +10472,7 @@ "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 @@ "GREEK_SUBSCRIPT_SMALL_LETTER_CHI\n" "LngText.text" msgid "_chi" -msgstr "" +msgstr "_chi" diff -Nru libreoffice-5.1.1~rc2/translations/source/eu/filter/source/config/fragments/filters.po libreoffice-5.1.2~rc2/translations/source/eu/filter/source/config/fragments/filters.po --- libreoffice-5.1.1~rc2/translations/source/eu/filter/source/config/fragments/filters.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/eu/filter/source/config/fragments/filters.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\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:43+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2016-02-26 21:00+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 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1449848600.000000\n" +"X-POOTLE-MTIME: 1456520422.000000\n" #: AbiWord.xcu msgctxt "" @@ -41,7 +41,7 @@ "UIName\n" "value.text" msgid "Apple Numbers 2" -msgstr "" +msgstr "Apple Numbers 2" #: ApplePages.xcu msgctxt "" @@ -50,7 +50,7 @@ "UIName\n" "value.text" msgid "Apple Pages 4" -msgstr "" +msgstr "Apple Pages 4" #: BMP___MS_Windows.xcu msgctxt "" @@ -347,47 +347,43 @@ "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 txantiloia" +msgstr "Microsoft Excel 97-2003 txantiloia" #: 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 AutoPlay" +msgstr "Microsoft PowerPoint 97-2003 erreprodukzio automatikoa" #: MS_PowerPoint_97_Vorlage.xcu -#, fuzzy msgctxt "" "MS_PowerPoint_97_Vorlage.xcu\n" "MS PowerPoint 97 Vorlage\n" "UIName\n" "value.text" msgid "Microsoft PowerPoint 97-2003 Template" -msgstr "Microsoft PowerPoint 97/2000/XP/2003 txantiloia" +msgstr "Microsoft PowerPoint 97-2003 txantiloia" #: MS_WinWord_5.xcu msgctxt "" @@ -417,24 +413,22 @@ msgstr "Microsoft Word 2003 XMLa" #: 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 XMLa" +msgstr "Microsoft Word 2007-2013 XMLa" #: 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 txantiloia" +msgstr "Microsoft Word 2007-2013 XML txantiloia" #: MS_Word_95.xcu msgctxt "" @@ -461,17 +455,16 @@ "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 txantiloia" +msgstr "Microsoft Word 97-2003 txantiloia" #: MS_Works.xcu msgctxt "" @@ -498,7 +491,7 @@ "UIName\n" "value.text" msgid "Microsoft Write" -msgstr "" +msgstr "Microsoft Write" #: MWAW_Bitmap.xcu msgctxt "" @@ -507,7 +500,7 @@ "UIName\n" "value.text" msgid "Legacy Mac Bitmap" -msgstr "" +msgstr "Mac Bitmapa zaharra" #: MWAW_Database.xcu msgctxt "" @@ -516,7 +509,7 @@ "UIName\n" "value.text" msgid "Legacy Mac Database" -msgstr "" +msgstr "Mac Datu-base zaharra" #: MWAW_Drawing.xcu msgctxt "" @@ -525,7 +518,7 @@ "UIName\n" "value.text" msgid "Legacy Mac Drawing" -msgstr "" +msgstr "Mac marrazki zaharra" #: MWAW_Presentation.xcu msgctxt "" @@ -534,7 +527,7 @@ "UIName\n" "value.text" msgid "Legacy Mac Presentation" -msgstr "" +msgstr "Mac aurkezpen zaharra" #: MWAW_Spreadsheet.xcu msgctxt "" @@ -543,7 +536,7 @@ "UIName\n" "value.text" msgid "Legacy Mac Spreadsheet" -msgstr "" +msgstr "Mac kalkulu-orri zaharra" #: MWAW_Text_Document.xcu msgctxt "" @@ -552,7 +545,7 @@ "UIName\n" "value.text" msgid "Legacy Mac Text Document" -msgstr "" +msgstr "Mac testu dokumentu zaharra" #: MacWrite.xcu msgctxt "" @@ -717,14 +710,13 @@ msgstr "BroadBand 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 testu-dokumentua" +msgstr "Palm testu-dokumentua" #: Plucker_eBook.xcu msgctxt "" @@ -1039,7 +1031,7 @@ "UIName\n" "value.text" msgid "Lotus Document" -msgstr "" +msgstr "Lotus dokumentua" #: WPS_QPro_Calc.xcu msgctxt "" @@ -1048,7 +1040,7 @@ "UIName\n" "value.text" msgid "QuattroPro Document" -msgstr "" +msgstr "QuattroPro dokumentua" #: WordPerfect.xcu msgctxt "" @@ -1120,7 +1112,7 @@ "UIName\n" "value.text" msgid "Gnumeric Spreadsheet" -msgstr "" +msgstr "Gnumeric kalkulu-orria" #: calc_HTML_WebQuery.xcu msgctxt "" @@ -1147,27 +1139,25 @@ "UIName\n" "value.text" msgid "Microsoft Excel 2007-2016 XML (macro enabled)" -msgstr "" +msgstr "Microsoft Excel 2007-2016 XMLa (makroak gaituta)" #: 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 XMLa" +msgstr "Microsoft Excel 2007-2013 XMLa" #: 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 txantiloia" +msgstr "Microsoft Excel 2007-2013 XML txantiloia" #: calc_OOXML.xcu msgctxt "" @@ -1206,7 +1196,6 @@ msgstr "PDF - Portable Document Format" #: calc_png_Export.xcu -#, fuzzy msgctxt "" "calc_png_Export.xcu\n" "calc_png_Export\n" @@ -1495,34 +1484,31 @@ msgstr "ODF aurkezpen-txantiloia" #: 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 XMLa" +msgstr "Microsoft PowerPoint 2007-2013 XMLa" #: 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 (erreprodukzio automatikoa)" +msgstr "Microsoft PowerPoint 2007-2013 XMLaren erreprodukzio automatikoa" #: 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 txantiloia" +msgstr "Microsoft PowerPoint 2007-2013 XML txantiloia" #: impress_OOXML.xcu msgctxt "" @@ -1540,7 +1526,7 @@ "UIName\n" "value.text" msgid "Office Open XML Presentation AutoPlay" -msgstr "Office Open XML aurkezpenaren AutoPlay" +msgstr "Office Open XML aurkezpenaren erreprodukzio automatikoa" #: impress_OOXML_Template.xcu msgctxt "" @@ -1912,7 +1898,6 @@ msgstr "OpenOffice.org 1.0 HTML txantiloia" #: writer_web_jpg_Export.xcu -#, fuzzy msgctxt "" "writer_web_jpg_Export.xcu\n" "writer_web_jpg_Export\n" @@ -1931,7 +1916,6 @@ msgstr "PDF - Portable Document Format" #: writer_web_png_Export.xcu -#, fuzzy msgctxt "" "writer_web_png_Export.xcu\n" "writer_web_png_Export\n" diff -Nru libreoffice-5.1.1~rc2/translations/source/eu/filter/source/config/fragments/types.po libreoffice-5.1.2~rc2/translations/source/eu/filter/source/config/fragments/types.po --- libreoffice-5.1.1~rc2/translations/source/eu/filter/source/config/fragments/types.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/eu/filter/source/config/fragments/types.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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-12 11:03+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2016-02-26 21:00+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 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1431428580.000000\n" +"X-POOTLE-MTIME: 1456520427.000000\n" #: MS_Excel_2007_Binary.xcu msgctxt "" @@ -26,64 +26,58 @@ msgstr "Microsoft Excel 2007 binarioa" #: 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 XMLa" +msgstr "Microsoft Excel 2007-2016 VBA XMLa" #: 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 XMLa" +msgstr "Microsoft Excel 2007-2013 XMLa" #: 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 txantiloia" +msgstr "Microsoft Excel 2007-2013 XML txantiloia" #: 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 XMLa" +msgstr "Microsoft PowerPoint 2007-2013 XMLa" #: 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 XMLa" +msgstr "Microsoft PowerPoint 2007-2013 XMLa" #: 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 txantiloia" +msgstr "Microsoft PowerPoint 2007-2013 XML txantiloia" #: StarBase.xcu msgctxt "" @@ -137,7 +131,7 @@ "UIName\n" "value.text" msgid "Gnumeric Spreadsheet" -msgstr "" +msgstr "Gnumeric kalkulu-orria" #: calc_MS_Excel_2003_XML.xcu msgctxt "" @@ -245,7 +239,7 @@ "UIName\n" "value.text" msgid "Office Open XML Presentation AutoPlay" -msgstr "Office Open XML aurkezpenen AutoPlay" +msgstr "Office Open XML aurkezpenaren erreprodukzio automatikoa" #: math8.xcu msgctxt "" @@ -284,24 +278,22 @@ msgstr "Microsoft Word 2003 XMLa" #: 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 XMLa" +msgstr "Microsoft Word 2007-2013 XMLa" #: 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 txantiloia" +msgstr "Microsoft Word 2007-2013 XML txantiloia" #: writer_ODT_FlatXML.xcu msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/eu/filter/uiconfig/ui.po libreoffice-5.1.2~rc2/translations/source/eu/filter/uiconfig/ui.po --- libreoffice-5.1.1~rc2/translations/source/eu/filter/uiconfig/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/eu/filter/uiconfig/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,17 +4,17 @@ "Project-Id-Version: PACKAGE VERSION\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: 2014-12-06 21:09+0000\n" -"Last-Translator: Asier <asiersar@yahoo.com>\n" +"PO-Revision-Date: 2016-02-26 21:39+0000\n" +"Last-Translator: Osoitz <oelkoro@gmail.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: eu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "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: 1417900141.000000\n" +"X-POOTLE-MTIME: 1456522756.000000\n" #: impswfdialog.ui msgctxt "" @@ -36,8 +36,7 @@ "100: max. quality" msgstr "" "1: Gutx. kalitatea\n" -"100: Geh.\n" -" kalitatea" +"100: Geh. kalitatea" #: impswfdialog.ui msgctxt "" @@ -865,7 +864,7 @@ "0\n" "stringlist.text" msgid "None" -msgstr "" +msgstr "Bat ere ez" #: pdfsignpage.ui msgctxt "" @@ -910,7 +909,7 @@ "label\n" "string.text" msgid "Time Stamp Authority:" -msgstr "" +msgstr "Denbora-zigilu Autoritatea:" #: pdfsignpage.ui msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/eu/formula/source/core/resource.po libreoffice-5.1.2~rc2/translations/source/eu/formula/source/core/resource.po --- libreoffice-5.1.1~rc2/translations/source/eu/formula/source/core/resource.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/eu/formula/source/core/resource.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\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-29 16:07+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -29,7 +29,7 @@ "SC_OPCODE_IF_ERROR\n" "string.text" msgid "IFERROR" -msgstr "ISERROR" +msgstr "IFERROR" #: core_resource.src msgctxt "" @@ -92,7 +92,7 @@ "SC_OPCODE_TABLE_REF_ITEM_THIS_ROW\n" "string.text" msgid "#This Row" -msgstr "" +msgstr "#This Row" #: core_resource.src msgctxt "" @@ -638,6 +638,15 @@ msgctxt "" "core_resource.src\n" "RID_STRLIST_FUNCTION_NAMES\n" +"SC_OPCODE_IS_ERROR\n" +"string.text" +msgid "ISERROR" +msgstr "ISERROR" + +#: core_resource.src +msgctxt "" +"core_resource.src\n" +"RID_STRLIST_FUNCTION_NAMES\n" "SC_OPCODE_IS_EVEN\n" "string.text" msgid "ISEVEN" @@ -3125,7 +3134,7 @@ "SC_OPCODE_ISOWEEKNUM\n" "string.text" msgid "ISOWEEKNUM" -msgstr "" +msgstr "ISOWEEKNUM" #: core_resource.src msgctxt "" @@ -3134,7 +3143,7 @@ "SC_OPCODE_WEEKNUM_OOO\n" "string.text" msgid "WEEKNUM_OOO" -msgstr "" +msgstr "WEEKNUM_OOO" #: core_resource.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/eu/fpicker/source/office.po libreoffice-5.1.2~rc2/translations/source/eu/fpicker/source/office.po --- libreoffice-5.1.1~rc2/translations/source/eu/fpicker/source/office.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/eu/fpicker/source/office.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\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-01-09 23:39+0000\n" -"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n" +"PO-Revision-Date: 2016-02-24 20:17+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 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1420846767.000000\n" +"X-POOTLE-MTIME: 1456345048.000000\n" #: OfficeFilePicker.src msgctxt "" @@ -251,6 +251,8 @@ "Are you sure you want to delete the service?\n" "\"$servicename$\"" msgstr "" +"Ziur zaude zerbitzua ezabatu nahi duzula?\n" +"\"$servicename$\"" #: iodlg.src msgctxt "" @@ -258,7 +260,7 @@ "STR_SVT_ROOTLABEL\n" "string.text" msgid "Root" -msgstr "" +msgstr "Root" #: iodlg.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/eu/fpicker/uiconfig/ui.po libreoffice-5.1.2~rc2/translations/source/eu/fpicker/uiconfig/ui.po --- libreoffice-5.1.1~rc2/translations/source/eu/fpicker/uiconfig/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/eu/fpicker/uiconfig/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\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-24 08:07+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2016-02-24 20:16+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 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1429862833.000000\n" +"X-POOTLE-MTIME: 1456345012.000000\n" #: explorerfiledialog.ui msgctxt "" @@ -149,7 +149,7 @@ "title\n" "string.text" msgid "Remote Files" -msgstr "" +msgstr "Urruneko fitxategiak" #: remotefilesdialog.ui msgctxt "" @@ -158,7 +158,7 @@ "label\n" "string.text" msgid "Service:" -msgstr "" +msgstr "Zerbitzua:" #: remotefilesdialog.ui msgctxt "" @@ -167,10 +167,9 @@ "label\n" "string.text" msgid "Add service" -msgstr "" +msgstr "Gehitu zerbitzua" #: remotefilesdialog.ui -#, fuzzy msgctxt "" "remotefilesdialog.ui\n" "new_folder\n" @@ -180,7 +179,6 @@ msgstr "Sortu karpeta berria" #: remotefilesdialog.ui -#, fuzzy msgctxt "" "remotefilesdialog.ui\n" "new_folder\n" @@ -196,17 +194,16 @@ "label\n" "string.text" msgid "Filter" -msgstr "" +msgstr "Iragazkia" #: remotefilesdialog.ui -#, fuzzy msgctxt "" "remotefilesdialog.ui\n" "nameLabel\n" "label\n" "string.text" msgid "File name" -msgstr "Fitxategi-_izena:" +msgstr "Fitxategi-izena" #: remotefilesdialog.ui msgctxt "" @@ -215,7 +212,7 @@ "label\n" "string.text" msgid "_Edit service" -msgstr "" +msgstr "_Editatu zerbitzua" #: remotefilesdialog.ui msgctxt "" @@ -224,7 +221,7 @@ "label\n" "string.text" msgid "_Delete service" -msgstr "" +msgstr "E_zabatu zerbitzua" #: remotefilesdialog.ui msgctxt "" @@ -233,4 +230,4 @@ "label\n" "string.text" msgid "_Change password" -msgstr "" +msgstr "_Aldatu pasahitza" diff -Nru libreoffice-5.1.1~rc2/translations/source/eu/framework/source/classes.po libreoffice-5.1.2~rc2/translations/source/eu/framework/source/classes.po --- libreoffice-5.1.1~rc2/translations/source/eu/framework/source/classes.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/eu/framework/source/classes.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\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-27 16:50+0000\n" -"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n" +"PO-Revision-Date: 2016-02-24 20:06+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 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1417107045.000000\n" +"X-POOTLE-MTIME: 1456344365.000000\n" #: resource.src msgctxt "" @@ -148,7 +148,7 @@ "STR_OPEN_REMOTE\n" "string.text" msgid "Open remote file" -msgstr "" +msgstr "Ireki urruneko fitxategia" #: resource.src msgctxt "" @@ -156,7 +156,7 @@ "STR_REMOTE_TITLE\n" "string.text" msgid " (Remote)" -msgstr "" +msgstr " (Urrunekoa)" #: resource.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/eu/helpcontent2/source/auxiliary.po libreoffice-5.1.2~rc2/translations/source/eu/helpcontent2/source/auxiliary.po --- libreoffice-5.1.1~rc2/translations/source/eu/helpcontent2/source/auxiliary.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/eu/helpcontent2/source/auxiliary.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,18 +3,18 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2014-11-18 11:24+0100\n" -"PO-Revision-Date: 2014-12-07 21:52+0000\n" -"Last-Translator: Asier <asiersar@yahoo.com>\n" +"POT-Creation-Date: 2015-04-22 23:40+0200\n" +"PO-Revision-Date: 2016-02-26 12:28+0000\n" +"Last-Translator: Osoitz <oelkoro@gmail.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: eu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "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: 1417989154.000000\n" +"X-POOTLE-MTIME: 1456489709.000000\n" #: sbasic.tree msgctxt "" @@ -158,7 +158,7 @@ "0809\n" "node.text" msgid "Pivot Table" -msgstr "Errotazio-taulak" +msgstr "Taula dinamikoa" #: scalc.tree msgctxt "" @@ -358,7 +358,7 @@ "1010\n" "node.text" msgid "Copy and Paste" -msgstr "Kopiatu eta itsati" +msgstr "Kopiatu eta itsatsi" #: shared.tree msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/eu/helpcontent2/source/text/sbasic/shared.po libreoffice-5.1.2~rc2/translations/source/eu/helpcontent2/source/text/sbasic/shared.po --- libreoffice-5.1.1~rc2/translations/source/eu/helpcontent2/source/text/sbasic/shared.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/eu/helpcontent2/source/text/sbasic/shared.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\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-08-06 21:25+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2016-03-23 14:50+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 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1438896313.000000\n" +"X-POOTLE-MTIME: 1458744649.000000\n" #: 00000002.xhp msgctxt "" @@ -667,7 +667,7 @@ "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 @@ "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 @@ "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 "" @@ -998,7 +998,7 @@ "par_id31469419\n" "help.text" msgid "<variable id=\"err289\">289 DDE operation without data</variable>" -msgstr "<variable id=\"err3\">3 Itzuli Gosub gabe </variable>" +msgstr "<variable id=\"err289\">289 DDE eragiketa daturik gabe</variable>" #: 00000003.xhp msgctxt "" @@ -1006,7 +1006,7 @@ "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 "" @@ -1014,7 +1014,7 @@ "par_id31469417\n" "help.text" msgid "<variable id=\"err291\">291 External application has been terminated</variable>" -msgstr "<variable id=\"err93\">93 Baliogabeko eredu-katea </variable>" +msgstr "<variable id=\"err291\">291 Kanpo aplikazioa itxi da</variable>" #: 00000003.xhp msgctxt "" @@ -1022,7 +1022,7 @@ "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 @@ "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 "" @@ -1038,7 +1038,7 @@ "par_id31469414\n" "help.text" msgid "<variable id=\"err294\">294 Invalid DDE link format</variable>" -msgstr "<variable id=\"err460\">460 Baliogabeko arbel-formatua </variable>" +msgstr "<variable id=\"err294\">294 Baliogabeko DDE esteka-formatua</variable>" #: 00000003.xhp msgctxt "" @@ -1046,7 +1046,7 @@ "par_id31469413\n" "help.text" msgid "<variable id=\"err295\">295 DDE message has been lost</variable>" -msgstr "<variable id=\"err55\">55 Fitxategia jada irekita </variable>" +msgstr "<variable id=\"err295\">295 DDE mezua galdu da</variable>" #: 00000003.xhp msgctxt "" @@ -1054,7 +1054,7 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 "" @@ -1301,7 +1301,7 @@ "par_id31455953\n" "help.text" msgid "<variable id=\"err953\">953 Symbol expected</variable>" -msgstr "<variable id=\"err53\">53 Fitxategia ez da aurkitu </variable>" +msgstr "<variable id=\"err953\">953 Sinboloa espero zen</variable>" #: 00000003.xhp msgctxt "" @@ -1309,7 +1309,7 @@ "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 "" @@ -1317,7 +1317,7 @@ "par_id31455955\n" "help.text" msgid "<variable id=\"err955\">955 Label expected</variable>" -msgstr "<variable id=\"err55\">55 Fitxategia jada irekita </variable>" +msgstr "<variable id=\"err955\">955 Etiketa espero zen</variable>" #: 00000003.xhp msgctxt "" @@ -1325,7 +1325,7 @@ "par_id31455956\n" "help.text" msgid "<variable id=\"err956\">956 Value cannot be applied</variable>" -msgstr "<variable id=\"err53\">53 Fitxategia ez da aurkitu </variable>" +msgstr "<variable id=\"err956\">956 Ezin da balioa aplikatu</variable>" #: 00000003.xhp msgctxt "" @@ -1333,7 +1333,7 @@ "par_id31455957\n" "help.text" msgid "<variable id=\"err957\">957 Variable already defined</variable>" -msgstr "<variable id=\"err55\">55 Fitxategia jada irekita </variable>" +msgstr "<variable id=\"err957\">957 Aldagaia jada definituta</variable>" #: 00000003.xhp msgctxt "" @@ -1341,7 +1341,7 @@ "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 "" @@ -1349,7 +1349,7 @@ "par_id31455959\n" "help.text" msgid "<variable id=\"err959\">959 Label already defined</variable>" -msgstr "<variable id=\"err55\">55 Fitxategia jada irekita </variable>" +msgstr "<variable id=\"err959\">959 Etiketa jada definituta</variable>" #: 00000003.xhp msgctxt "" @@ -1357,7 +1357,7 @@ "par_id31455960\n" "help.text" msgid "<variable id=\"err960\">960 Variable not found</variable>" -msgstr "<variable id=\"err53\">53 Fitxategia ez da aurkitu </variable>" +msgstr "<variable id=\"err960\">960 Ez da aldagaia aurkitu</variable>" #: 00000003.xhp msgctxt "" @@ -1365,7 +1365,7 @@ "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 @@ "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 @@ "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 @@ "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 "" @@ -1397,7 +1397,7 @@ "par_id31455965\n" "help.text" msgid "<variable id=\"err965\">965 Exit expected</variable>" -msgstr "<variable id=\"err53\">53 Fitxategia ez da aurkitu </variable>" +msgstr "<variable id=\"err965\">965 Exit espero zen</variable>" #: 00000003.xhp msgctxt "" @@ -1405,7 +1405,7 @@ "par_id31455966\n" "help.text" msgid "<variable id=\"err966\">966 Statement block still open: missing</variable>" -msgstr "<variable id=\"err62\">62 Sarrerak fitxategi-amaiera pasatu du </variable>" +msgstr "<variable id=\"err966\">966 Instrukzio-blokea oraindik irekita: falta da</variable>" #: 00000003.xhp msgctxt "" @@ -1413,7 +1413,7 @@ "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 +1421,7 @@ "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 +1429,7 @@ "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 "" @@ -1437,7 +1437,7 @@ "par_id31455970\n" "help.text" msgid "<variable id=\"err970\">970 Invalid character in number</variable>" -msgstr "<variable id=\"err93\">93 Baliogabeko eredu-katea </variable>" +msgstr "<variable id=\"err970\">970 Baliogabeko karakterea zenbakian</variable>" #: 00000003.xhp msgctxt "" @@ -1445,7 +1445,7 @@ "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 +1453,7 @@ "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 +1461,7 @@ "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 +1469,7 @@ "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 "" @@ -1477,7 +1477,7 @@ "par_id31455975\n" "help.text" msgid "<variable id=\"err975\">975 Dimension specifications do not match</variable>" -msgstr "<variable id=\"err53\">53 Fitxategia ez da aurkitu </variable>" +msgstr "<variable id=\"err975\">975 Dimentsio espezifikazioak ez datoz bat</variable>" #: 00000003.xhp msgctxt "" @@ -1485,7 +1485,7 @@ "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 +1493,7 @@ "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 +1501,7 @@ "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 +1509,7 @@ "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 +1517,7 @@ "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 +1525,7 @@ "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 +1533,7 @@ "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 +1541,7 @@ "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 +1549,7 @@ "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 +1557,7 @@ "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 +1565,7 @@ "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 +2718,7 @@ "60\n" "help.text" msgid "Public VarName As TYPENAME" -msgstr "PUBLIC AldagaiIzena As MotaIzena" +msgstr "Public AldagaiIzena As MOTAIZENA" #: 01020300.xhp msgctxt "" @@ -2736,7 +2736,7 @@ "62\n" "help.text" msgid "Private VarName As TYPENAME" -msgstr "PUBLIC AldagaiIzena As MotaIzena" +msgstr "Private AldagaiIzena As MOTAIZENA" #: 01020300.xhp msgctxt "" @@ -2748,14 +2748,13 @@ 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 +2837,7 @@ "67\n" "help.text" msgid "Static VarName As TYPENAME" -msgstr "STATIC AldagaiIzena As MotaIzena" +msgstr "Static AldagaiIzena As MOTAIZENA" #: 01020300.xhp msgctxt "" @@ -14107,32 +14106,29 @@ msgstr "Adibidea:" #: 03030111.xhp -#, fuzzy msgctxt "" "03030111.xhp\n" "tit\n" "help.text" msgid "CDateToUnoDate Function [Runtime]" -msgstr "CDateToIso funtzioa [Runtime]" +msgstr "CDateToUnoDate funtzioa [Runtime]" #: 03030111.xhp -#, fuzzy msgctxt "" "03030111.xhp\n" "bm_id3150620\n" "help.text" msgid "<bookmark_value>CDateToUnoDate function</bookmark_value>" -msgstr "<bookmark_value>CdateToIso funtzioa</bookmark_value>" +msgstr "<bookmark_value>CDateToUnoDate funtzioa</bookmark_value>" #: 03030111.xhp -#, fuzzy msgctxt "" "03030111.xhp\n" "hd_id3150620\n" "1\n" "help.text" msgid "<link href=\"text/sbasic/shared/03030111.xhp\" name=\"CDateToUnoDate Function [Runtime]\">CDateToUnoDate Function [Runtime]</link>" -msgstr "<link href=\"text/sbasic/shared/03030107.xhp\" name=\"CDateToIso Function [Runtime]\">CDateToIso funtzioa [Runtime]</link>" +msgstr "<link href=\"text/sbasic/shared/03030111.xhp\" name=\"CDateToUnoDate Function [Runtime]\">CDateToUnoDate funtzioa [Runtime]</link>" #: 03030111.xhp msgctxt "" @@ -14207,32 +14203,29 @@ 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 msgctxt "" "03030112.xhp\n" "bm_id3150620\n" "help.text" msgid "<bookmark_value>CDateFromUnoDate function</bookmark_value>" -msgstr "<bookmark_value>CdateFromIso funtzioa</bookmark_value>" +msgstr "<bookmark_value>CDateFromUnoDate 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 "" @@ -14307,32 +14300,29 @@ msgstr "Adibidea:" #: 03030113.xhp -#, fuzzy msgctxt "" "03030113.xhp\n" "tit\n" "help.text" msgid "CDateToUnoTime Function [Runtime]" -msgstr "CDateToIso funtzioa [Runtime]" +msgstr "CDateToUnoTime funtzioa [Runtime]" #: 03030113.xhp -#, fuzzy msgctxt "" "03030113.xhp\n" "bm_id3150620\n" "help.text" msgid "<bookmark_value>CDateToUnoTime function</bookmark_value>" -msgstr "<bookmark_value>CdateToIso funtzioa</bookmark_value>" +msgstr "<bookmark_value>CDateToUnoTime funtzioa</bookmark_value>" #: 03030113.xhp -#, fuzzy msgctxt "" "03030113.xhp\n" "hd_id3150620\n" "1\n" "help.text" msgid "<link href=\"text/sbasic/shared/03030113.xhp\" name=\"CDateToUnoTime Function [Runtime]\">CDateToUnoTime Function [Runtime]</link>" -msgstr "<link href=\"text/sbasic/shared/03030107.xhp\" name=\"CDateToIso Function [Runtime]\">CDateToIso funtzioa [Runtime]</link>" +msgstr "<link href=\"text/sbasic/shared/03030113.xhp\" name=\"CDateToUnoTime Function [Runtime]\">CDateToUnoTime funtzioa [Runtime]</link>" #: 03030113.xhp msgctxt "" @@ -14407,32 +14397,29 @@ 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 msgctxt "" "03030114.xhp\n" "bm_id3150620\n" "help.text" msgid "<bookmark_value>CDateFromUnoTime function</bookmark_value>" -msgstr "<bookmark_value>CdateFromIso funtzioa</bookmark_value>" +msgstr "<bookmark_value>CDateFromUnoTime 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 "" @@ -14507,32 +14494,29 @@ 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 msgctxt "" "03030115.xhp\n" "bm_id3150620\n" "help.text" msgid "<bookmark_value>CDateToUnoDateTime function</bookmark_value>" -msgstr "<bookmark_value>FileDateTime funtzioa</bookmark_value>" +msgstr "<bookmark_value>CDateToUnoDateTime funtzioa</bookmark_value>" #: 03030115.xhp -#, fuzzy msgctxt "" "03030115.xhp\n" "hd_id3150620\n" "1\n" "help.text" msgid "<link href=\"text/sbasic/shared/03030115.xhp\" name=\"CDateToUnoDateTime Function [Runtime]\">CDateToUnoDateTime Function [Runtime]</link>" -msgstr "<link href=\"text/sbasic/shared/03030107.xhp\" name=\"CDateToIso Function [Runtime]\">CDateToIso funtzioa [Runtime]</link>" +msgstr "<link href=\"text/sbasic/shared/03030115.xhp\" name=\"CDateToUnoDateTime Function [Runtime]\">CDateToUnoDateTime funtzioa [Runtime]</link>" #: 03030115.xhp msgctxt "" @@ -14607,32 +14591,29 @@ 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 msgctxt "" "03030116.xhp\n" "bm_id3150620\n" "help.text" msgid "<bookmark_value>CDateFromUnoDateTime function</bookmark_value>" -msgstr "<bookmark_value>FileDateTime funtzioa</bookmark_value>" +msgstr "<bookmark_value>CDateFromUnoDateTime 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 -Nru libreoffice-5.1.1~rc2/translations/source/eu/helpcontent2/source/text/scalc/00.po libreoffice-5.1.2~rc2/translations/source/eu/helpcontent2/source/text/scalc/00.po --- libreoffice-5.1.1~rc2/translations/source/eu/helpcontent2/source/text/scalc/00.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/eu/helpcontent2/source/text/scalc/00.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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-11-18 11:58+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2016-02-26 11:24+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 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1416311937.000000\n" +"X-POOTLE-MTIME: 1456485848.000000\n" #: 00000004.xhp msgctxt "" @@ -1690,7 +1690,7 @@ "par_id1774346\n" "help.text" msgid "<variable id=\"dngdrill\">Choose <emph>Data - Group and Outline - Show Details</emph> (for some pivot tables)</variable>" -msgstr "<variable id=\"dngdrill\">Aukeratu <emph>Datuak - Taldea eta eskema - Erakutsi xehetasunak</emph> (Datu-pilotuen taula batzuentzako)</variable>" +msgstr "<variable id=\"dngdrill\">Aukeratu <emph>Datuak - Taldea eta eskema - Erakutsi xehetasunak</emph> (Taula dinamiko batzuentzako)</variable>" #: 00000412.xhp msgctxt "" @@ -1699,7 +1699,7 @@ "42\n" "help.text" msgid "<variable id=\"dndtpt\">Choose <emph>Data - Pivot Table</emph></variable>" -msgstr "<variable id=\"dndtpt\">Aukeratu <emph>Datuak - Datu-pilotua</emph></variable>" +msgstr "<variable id=\"dndtpt\">Aukeratu <emph>Datuak - Taula dinamikoa</emph></variable>" #: 00000412.xhp msgctxt "" @@ -1708,7 +1708,7 @@ "43\n" "help.text" msgid "<variable id=\"dndpa\">Choose <emph>Data - Pivot Table - Create</emph></variable>" -msgstr "<variable id=\"dndpa\">Aukeratu <emph>Datuak - Datu-pilotua - Hasi</emph></variable>" +msgstr "<variable id=\"dndpa\">Aukeratu <emph>Datuak - Taula dinamikoa - Sortu</emph></variable>" #: 00000412.xhp msgctxt "" @@ -1717,7 +1717,7 @@ "53\n" "help.text" msgid "<variable id=\"dndq\">Choose <emph>Data - Pivot Table - Create</emph>, in the Select Source dialog choose the option <emph>Data source registered in $[officename]</emph>.</variable>" -msgstr "<variable id=\"dndq\">Aukeratu <emph>Datuak - Datu-pilotua - Hasi</emph>, eta hautatu <emph>$[officename](e)n erregistratutako datu-iturburua</emph> Iturburua hautatzeko elkarrizketa-koadroan. </variable>" +msgstr "<variable id=\"dndq\">Aukeratu <emph>Datuak - Taula dinamikoa - Sortu</emph>, eta hautatu <emph>$[officename](e)n erregistratutako datu-iturburua</emph> Iturburua hautatzeko elkarrizketa-koadroan. </variable>" #: 00000412.xhp msgctxt "" @@ -1726,7 +1726,7 @@ "50\n" "help.text" msgid "Choose <emph>Data - Pivot Table - Create</emph>, in the Select Source dialog choose the option <emph>Current selection</emph>." -msgstr "Hautatu <emph>Datuak - DatuPilotua - Hasi</emph>, eta aukeratu <emph>Uneko hautapena</emph>, Hautatu Iturburua elkarrizketa-koadroan." +msgstr "Hautatu <emph>Datuak - Taula dinamikoa - Sortu</emph>, eta aukeratu <emph>Uneko hautapena</emph>, Hautatu Iturburua elkarrizketa-koadroan." #: 00000412.xhp msgctxt "" @@ -1735,7 +1735,7 @@ "54\n" "help.text" msgid "Choose <emph>Data - Pivot Table - Create</emph>, in the Select Source dialog choose the option <emph>Data source registered in $[officename]</emph>, click <emph>OK</emph> to see <emph>Select Data Source</emph> dialog." -msgstr "Aukeratu <emph>Datuak - Datu-pilotua - Hasi</emph>, eta <emph>$[officename](e)n erregistratutako datu-iturburua</emph> Hautatu Iturburua elkarrizketa-koadroan. <emph>Hautatu datu-iturburua</emph> elkarrizketa-koadroa ikusteko, egin klik <emph>Ados</emph> botoian." +msgstr "Aukeratu <emph>Datuak - Taula dinamikoa - Sortu</emph>, eta <emph>$[officename](e)n erregistratutako datu-iturburua</emph> Hautatu Iturburua elkarrizketa-koadroan. <emph>Hautatu datu-iturburua</emph> elkarrizketa-koadroa ikusteko, egin klik <emph>Ados</emph> botoian." #: 00000412.xhp msgctxt "" @@ -1744,7 +1744,7 @@ "44\n" "help.text" msgid "<variable id=\"dndpak\">Choose <emph>Data - Pivot Table - Refresh</emph></variable>" -msgstr "<variable id=\"dndpak\">Aukeratu <emph>Datuak - Datu-pilotua - Freskatu</emph></variable>" +msgstr "<variable id=\"dndpak\">Aukeratu <emph>Datuak - Taula dinamikoa - Freskatu</emph></variable>" #: 00000412.xhp msgctxt "" @@ -1753,7 +1753,7 @@ "45\n" "help.text" msgid "<variable id=\"dndploe\">Choose <emph>Data - Pivot Table - Delete</emph></variable>" -msgstr "<variable id=\"dndploe\">Aukeratu <emph>Datuak - Datu-pilotua - Ezabatu</emph></variable>" +msgstr "<variable id=\"dndploe\">Aukeratu <emph>Datuak - Taula dinamikoa - Ezabatu</emph></variable>" #: 00000412.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/eu/helpcontent2/source/text/scalc/01.po libreoffice-5.1.2~rc2/translations/source/eu/helpcontent2/source/text/scalc/01.po --- libreoffice-5.1.1~rc2/translations/source/eu/helpcontent2/source/text/scalc/01.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/eu/helpcontent2/source/text/scalc/01.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\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:56+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2016-03-23 13:57+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 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1431366980.000000\n" +"X-POOTLE-MTIME: 1458741428.000000\n" #: 01120000.xhp msgctxt "" @@ -22,16 +22,15 @@ "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 @@ "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 @@ 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 @@ "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 @@ "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 @@ "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 @@ 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 @@ "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 @@ 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 @@ -648,7 +643,7 @@ "6\n" "help.text" msgid "<ahelp hid=\".\">Enter the text to be displayed at the center of the header or footer.</ahelp>" -msgstr "<ahelp hid=\"HID_SC_HF_FLL\">Sartu goiburuko edo orri-oinaren ezkerraldean bistaratzea nahi duzun testua.</ahelp>" +msgstr "<ahelp hid=\".\">Sartu goiburuko edo orri-oinaren erdian bistaratzea nahi duzun testua.</ahelp>" #: 02120100.xhp msgctxt "" @@ -708,7 +703,7 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 "" @@ -2294,7 +2284,7 @@ "2\n" "help.text" msgid "<variable id=\"zellenloeschentext\"><ahelp hid=\".uno:DeleteCell\">Completely deletes selected cells, columns or rows. The cells below or to the right of the deleted cells will fill the space.</ahelp></variable> Note that the selected delete option is stored and reloaded when the dialog is next called." -msgstr "<variable id=\"inhalteloeschentext\"><ahelp hid=\".uno:Delete\">Hautatutako gelaxkatik edo hautatutako gelaxka-areatik zein eduki ezabatuko den zehazten du.</ahelp></variable> Hainbat orri badaude hautatuta, hautatutako orri guztietan izango du eragina." +msgstr "<variable id=\"zellenloeschentext\"><ahelp hid=\".uno:DeleteCell\">Guztiz ezabatzen ditu hautatutako gelaxka, zutabe edo errenkadak. azpian edo eskuman dauden gelaxkek hutsunea beteko dute.</ahelp></variable> Kontuan izan hautatutako aukera gorde egingo dela eta elkarrizketa-koadroa berriz irekitzean kargatuko dela." #: 02160000.xhp msgctxt "" @@ -2743,14 +2733,13 @@ 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 +2819,12 @@ 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 +2877,12 @@ 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 +2947,12 @@ 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 @@ -3296,7 +3282,7 @@ "1\n" "help.text" msgid "<link href=\"text/scalc/01/04040000.xhp\" name=\"Columns\">Columns</link>" -msgstr "<link href=\"text/scalc/01/05040000.xhp\" name=\"Zutabea\">Zutabea</link>" +msgstr "<link href=\"text/scalc/01/04040000.xhp\" name=\"Zutabeak\">Zutabeak</link>" #: 04040000.xhp msgctxt "" @@ -8007,14 +7993,13 @@ msgstr "DB" #: 04060103.xhp -#, fuzzy msgctxt "" "04060103.xhp\n" "par_id3148989\n" "114\n" "help.text" msgid "<ahelp hid=\"HID_FUNC_GDA2\">Returns the depreciation of an asset for a specified period using the fixed-declining balance method.</ahelp>" -msgstr "<ahelp hid=\"HID_FUNC_GDA\">Denboraldi jakin bateko ondasun baten amortizazioa kalkulatzen du metodo aritmetiko beherakorraren bidez.</ahelp>" +msgstr "<ahelp hid=\"HID_FUNC_GDA2\">Denboraldi jakin bateko ondasun baten amortizazioa kalkulatzen du metodo beherakor finkoaren bidez.</ahelp>" #: 04060103.xhp msgctxt "" @@ -8355,14 +8340,13 @@ 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 +9127,7 @@ "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 "" @@ -9233,23 +9217,21 @@ msgstr "<item type=\"input\">=ISERROR(C9)</item> funtzioak EGIAZKOA ematen du C9 gelaxkak <item type=\"input\">=NA()</item> badu." #: 04060104.xhp -#, fuzzy msgctxt "" "04060104.xhp\n" "bm_id31470811\n" "help.text" msgid "<bookmark_value>IFERROR function</bookmark_value><bookmark_value>testing;general errors</bookmark_value>" -msgstr "<bookmark_value>ISERROR funtzioa</bookmark_value><bookmark_value>ezagutu;errore orokorrak</bookmark_value>" +msgstr "<bookmark_value>IFERROR funtzioa</bookmark_value><bookmark_value>probatzea;errore orokorrak</bookmark_value>" #: 04060104.xhp -#, fuzzy msgctxt "" "04060104.xhp\n" "hd_id31470811\n" "53\n" "help.text" msgid "IFERROR" -msgstr "ISERROR" +msgstr "IFERROR" #: 04060104.xhp msgctxt "" @@ -9306,23 +9288,21 @@ msgstr "Adibidea" #: 04060104.xhp -#, fuzzy msgctxt "" "04060104.xhp\n" "par_id31502561\n" "59\n" "help.text" msgid "<item type=\"input\">=IFERROR(C8;C9)</item> where cell C8 contains <item type=\"input\">=1/0</item> returns the value of C9, because 1/0 is an error." -msgstr "<item type=\"input\">=ISERROR(C8)</item> funtzioak EGIAZKOA ematen du C8 gelaxkak <item type=\"input\">=1/0</item> duenean, 1/0 errore bat baita." +msgstr "<item type=\"input\">=IFERROR(C8;C9)</item> funtzioak C9 gelaxkaren balioa ematen du C8 gelaxkak <item type=\"input\">=1/0</item> duenean, 1/0 errore bat baita." #: 04060104.xhp -#, fuzzy msgctxt "" "04060104.xhp\n" "par_id18890951\n" "help.text" msgid "<item type=\"input\">=IFERROR(C8;C9)</item> where cell C8 contains <item type=\"input\">13</item> returns 13, the value of C8, which is not an error." -msgstr "<item type=\"input\">=ISERROR(C8)</item> funtzioak EGIAZKOA ematen du C8 gelaxkak <item type=\"input\">=1/0</item> duenean, 1/0 errore bat baita." +msgstr "<item type=\"input\">=IFERROR(C8;9)</item> funtzioak 13 ematen du C8 gelaxkak <item type=\"input\">13</item> duenean, ez baita errore bat." #: 04060104.xhp msgctxt "" @@ -9907,13 +9887,12 @@ msgstr "<item type=\"input\">=ISNA(D3)</item> funtzioak FALTSUA ematen du emaitza gisa." #: 04060104.xhp -#, fuzzy msgctxt "" "04060104.xhp\n" "bm_id31536851\n" "help.text" msgid "<bookmark_value>IFNA function</bookmark_value><bookmark_value>#N/A error;testing</bookmark_value>" -msgstr "<bookmark_value>ISNA funtzioa</bookmark_value><bookmark_value>#E/E errorea;ezagutu</bookmark_value>" +msgstr "<bookmark_value>IFNA funtzioa</bookmark_value><bookmark_value>#E/E errorea;probatu</bookmark_value>" #: 04060104.xhp #, fuzzy @@ -10149,7 +10128,7 @@ "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 +10136,7 @@ "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 +10144,7 @@ "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 +10152,7 @@ "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 "" @@ -10677,7 +10656,7 @@ "162\n" "help.text" msgid "<item type=\"input\">=CELL(\"COL\";D2)</item> returns 4." -msgstr "<item type=\"input\">CELL(\"COORD\"; D2)</item> funtzioak $A:$D$2 ematen du." +msgstr "<item type=\"input\">CELL(\"COL\"; D2)</item> funtzioak 4 ematen du." #: 04060104.xhp msgctxt "" @@ -10704,7 +10683,7 @@ "163\n" "help.text" msgid "<item type=\"input\">=CELL(\"ROW\";D2)</item> returns 2." -msgstr "<item type=\"input\">=CELL(\"ADDRESS\";D2)</item> funtzioak $D$2 ematen du." +msgstr "<item type=\"input\">=CELL(\"ROW\";D2)</item> funtzioak 2 ematen du." #: 04060104.xhp msgctxt "" @@ -12081,7 +12060,7 @@ "56\n" "help.text" msgid "<item type=\"input\">=ACOS(-1)</item> returns 3.14159265358979 (PI radians)" -msgstr "<item type=\"input\">=PI()</item> funtzioak 3.14159265358979 balioa itzultzen du." +msgstr "<item type=\"input\">=ACOS(-1)</item> funtzioak 3,14159265358979 (PI radian) itzultzen du" #: 04060106.xhp msgctxt "" @@ -12176,7 +12155,7 @@ "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 "" @@ -12255,7 +12234,7 @@ "76\n" "help.text" msgid "<item type=\"input\">=ACOT(1)</item> returns 0.785398163397448 (PI/4 radians)." -msgstr "<item type=\"input\">=PI()</item> funtzioak 3.14159265358979 balioa itzultzen du." +msgstr "<item type=\"input\">=ACOT(1)</item> funtzioak 0,785398163397448 (PI/4 radian) balioa itzultzen du." #: 04060106.xhp msgctxt "" @@ -12463,7 +12442,7 @@ "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 +12495,7 @@ "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 "" @@ -13226,7 +13205,7 @@ "160\n" "help.text" msgid "<ahelp hid=\"HID_FUNC_COSECANTHYP\">Returns the hyperbolic cosecant of a number.</ahelp>" -msgstr "<ahelp hid=\"HID_FUNC_COSHYP\">Zenbaki baten kosinu hiperbolikoa ematen du.</ahelp>" +msgstr "<ahelp hid=\"HID_FUNC_COSECANTHYP\">Zenbaki baten kosekante hiperbolikoa ematen du.</ahelp>" #: 04060106.xhp msgctxt "" @@ -14588,7 +14567,7 @@ "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 +15619,7 @@ "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 +15722,7 @@ "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 +15921,7 @@ "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 +17099,7 @@ "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 +17107,7 @@ "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 +17115,7 @@ "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 +17394,7 @@ "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 +25145,12 @@ 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 @@ -25185,14 +25163,13 @@ msgstr "LEFT" #: 04060110.xhp -#, fuzzy msgctxt "" "04060110.xhp\n" "par_id2953622\n" "96\n" "help.text" msgid "<ahelp hid=\"HID_FUNC_LEFTB\">Returns the first characters of a DBCS text.</ahelp>" -msgstr "<ahelp hid=\"HID_FUNC_LINKS\">Testu-kateko lehen karakterea edo karaktereak ematen ditu.</ahelp>" +msgstr "<ahelp hid=\"HID_FUNC_LEFTB\">DBCS testu-kateko lehen karakterea ematen ditu.</ahelp>" #: 04060110.xhp msgctxt "" @@ -26149,23 +26126,21 @@ 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 +26161,13 @@ 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 +26871,7 @@ "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 +39329,12 @@ 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 +39414,7 @@ "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 +39668,13 @@ 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 +39734,6 @@ msgstr "<emph>Hasiera</emph> (aukerakoa): <emph>Zenbakia</emph>ren beheko muga da." #: 04060181.xhp -#, fuzzy msgctxt "" "04060181.xhp\n" "par_id2951268\n" @@ -39781,14 +39752,13 @@ 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 +39784,7 @@ "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 +39873,7 @@ "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 +39895,13 @@ 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 +39922,6 @@ msgstr "" #: 04060181.xhp -#, fuzzy msgctxt "" "04060181.xhp\n" "par_id2956317\n" @@ -39963,24 +39931,22 @@ 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 +39955,9 @@ "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 +39967,6 @@ msgstr "<emph>Hasiera</emph> (aukerakoa): <emph>Zenbakia</emph>ren beheko muga da." #: 04060181.xhp -#, fuzzy msgctxt "" "04060181.xhp\n" "par_id2949138\n" @@ -40021,24 +39985,22 @@ 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 +40071,7 @@ "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 +40182,7 @@ "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 +40285,7 @@ "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 "" @@ -40419,13 +40381,12 @@ msgstr "CHISQINV" #: 04060181.xhp -#, fuzzy msgctxt "" "04060181.xhp\n" "par_id2919200902421449\n" "help.text" msgid "<ahelp hid=\"HID_FUNC_CHISQINV_MS\">Returns the inverse of the left-tailed probability of the chi-square distribution.</ahelp>" -msgstr "<ahelp hid=\"HID_FUNC_CHIINV\">Ji-karratuaren banaketaren ilara bakarreko probabilitatearen alderantzizkoa ematen du.</ahelp>" +msgstr "<ahelp hid=\"HID_FUNC_CHISQINV_MS\">Khi-karratuaren banaketaren ezkerreko ilararen probabilitatearen alderantzizkoa ematen du.</ahelp>" #: 04060181.xhp msgctxt "" @@ -40505,7 +40466,7 @@ "89\n" "help.text" msgid "<ahelp hid=\"HID_FUNC_CHIINV\">Returns the inverse of the one-tailed probability of the chi-squared distribution.</ahelp>" -msgstr "<ahelp hid=\"HID_FUNC_CHIINV\">Ji-karratuaren banaketaren ilara bakarreko probabilitatearen alderantzizkoa ematen du.</ahelp>" +msgstr "<ahelp hid=\"HID_FUNC_CHIINV\">Khi-karratuaren banaketaren ilara bakarreko probabilitatearen alderantzizkoa ematen du.</ahelp>" #: 04060181.xhp msgctxt "" @@ -40568,7 +40529,7 @@ "131\n" "help.text" msgid "The Chi square distribution of the random sample is determined by the formula given above. Since the expected value for a given number on the die for n throws is n times 1/6, thus 1020/6 = 170, the formula returns a Chi square value of 13.27." -msgstr "Goian emandako formularen bidez zehazten da ausazko laginaren ji-karratuaren banaketa. Dadoa n aldiz botata, zenbaki bakoitza agertzeko probabilitatea 1/6 denez, espero den balioa 1020/6 = 170 izango da, eta ji-karratuaren formulak 13,27 emango du." +msgstr "Goian emandako formularen bidez zehazten da ausazko laginaren khi-karratuaren banaketa. Dadoa n aldiz botata, zenbaki bakoitza agertzeko probabilitatea 1/6 denez, espero den balioa 1020/6 = 170 izango da, eta khi-karratuaren formulak 13,27 emango du." #: 04060181.xhp msgctxt "" @@ -40577,7 +40538,7 @@ "132\n" "help.text" msgid "If the (observed) Chi square is greater than or equal to the (theoretical) Chi square CHIINV, the hypothesis will be discarded, since the deviation between theory and experiment is too great. If the observed Chi square is less that CHIINV, the hypothesis is confirmed with the indicated probability of error." -msgstr "(Behatutako) ji-karratua, CHIINV ji-karratua (teorikoa) baino handiagoa edo berdina bada, hipotesia baztertu egingo da, handiegia izango baita teoriaren eta saiakuntzaren arteko desbiderapena. Behatutako ji-karratua CHIINV baino txikiagoa bada, hipotesia baietsi egingo da adierazitako errore-probabilitatearekin." +msgstr "(Behatutako) khi-karratua, CHIINV khi-karratua (teorikoa) baino handiagoa edo berdina bada, hipotesia baztertu egingo da, handiegia izango baita teoriaren eta saiakuntzaren arteko desbiderapena. Behatutako khi-karratua CHIINV baino txikiagoa bada, hipotesia baietsi egingo da adierazitako errore-probabilitatearekin." #: 04060181.xhp msgctxt "" @@ -40626,14 +40587,13 @@ msgstr "CHISQINV" #: 04060181.xhp -#, fuzzy msgctxt "" "04060181.xhp\n" "par_id2949906\n" "89\n" "help.text" msgid "<ahelp hid=\"HID_FUNC_CHIINV_MS\">Returns the inverse of the one-tailed probability of the chi-squared distribution.</ahelp>" -msgstr "<ahelp hid=\"HID_FUNC_CHIINV\">Ji-karratuaren banaketaren ilara bakarreko probabilitatearen alderantzizkoa ematen du.</ahelp>" +msgstr "<ahelp hid=\"HID_FUNC_CHIINV_MS\">Khi-karratuaren banaketaren ilara bakarreko probabilitatearen alderantzizkoa ematen du.</ahelp>" #: 04060181.xhp msgctxt "" @@ -40693,24 +40653,22 @@ msgstr "Dado bat 1020 aldiz bota da. Hauek izan dira 1 eta 6 bitarteko zenbakien emaitzak: 195, 151, 148, 189, 183 eta 154 aldiz atera dira (behatutako balioak). Hipotesia da dadoak ez duela tranparik." #: 04060181.xhp -#, fuzzy msgctxt "" "04060181.xhp\n" "par_id2953062\n" "131\n" "help.text" msgid "The Chi square distribution of the random sample is determined by the formula given above. Since the expected value for a given number on the die for n throws is n times 1/6, thus 1020/6 = 170, the formula returns a Chi square value of 13.27." -msgstr "Goian emandako formularen bidez zehazten da ausazko laginaren ji-karratuaren banaketa. Dadoa n aldiz botata, zenbaki bakoitza agertzeko probabilitatea 1/6 denez, espero den balioa 1020/6 = 170 izango da, eta ji-karratuaren formulak 13,27 emango du." +msgstr "Goian emandako formularen bidez zehazten da ausazko laginaren khi-karratuaren banaketa. Dadoa n aldiz botata, zenbaki bakoitza agertzeko probabilitatea 1/6 denez, espero den balioa 1020/6 = 170 izango da, eta khi-karratuaren formulak 13,27 emango du." #: 04060181.xhp -#, fuzzy msgctxt "" "04060181.xhp\n" "par_id2948806\n" "132\n" "help.text" msgid "If the (observed) Chi square is greater than or equal to the (theoretical) Chi square CHIINV, the hypothesis will be discarded, since the deviation between theory and experiment is too great. If the observed Chi square is less that CHIINV, the hypothesis is confirmed with the indicated probability of error." -msgstr "(Behatutako) ji-karratua, CHIINV ji-karratua (teorikoa) baino handiagoa edo berdina bada, hipotesia baztertu egingo da, handiegia izango baita teoriaren eta saiakuntzaren arteko desbiderapena. Behatutako ji-karratua CHIINV baino txikiagoa bada, hipotesia baietsi egingo da adierazitako errore-probabilitatearekin." +msgstr "(Behatutako) khi-karratua, CHIINV khi-karratua (teorikoa) baino handiagoa edo berdina bada, hipotesia baztertu egingo da, handiegia izango baita teoriaren eta saiakuntzaren arteko desbiderapena. Behatutako khi-karratua CHIINV baino txikiagoa bada, hipotesia baietsi egingo da adierazitako errore-probabilitatearekin." #: 04060181.xhp #, fuzzy @@ -40766,7 +40724,7 @@ "98\n" "help.text" msgid "<ahelp hid=\"HID_FUNC_CHITEST\">Returns the probability of a deviance from a random distribution of two test series based on the chi-squared test for independence.</ahelp> CHITEST returns the chi-squared distribution of the data." -msgstr "<ahelp hid=\"HID_FUNC_CHITEST\">Ji-karratuaren independentzia-frogan oinarrituta, bi froga-serieren ausazko banaketako desbiderapen-probabilitatea ematen du.</ahelp> Datuen ji-karratuaren banaketa ematen du CHITEST funtzioak." +msgstr "<ahelp hid=\"HID_FUNC_CHITEST\">Khi-karratuaren independentzia-frogan oinarrituta, bi froga-serieren ausazko banaketako desbiderapen-probabilitatea ematen du.</ahelp> Datuen khi-karratuaren banaketa ematen du CHITEST funtzioak." #: 04060181.xhp msgctxt "" @@ -40775,7 +40733,7 @@ "135\n" "help.text" msgid "The probability determined by CHITEST can also be determined with CHIDIST, in which case the Chi square of the random sample must then be passed as a parameter instead of the data row." -msgstr "CHIDIST funtzioarekin ere lor daiteke CHITEST funtzioak ematen duen probabilitatea; horretarako, ausazko laginaren ji-karratua parametro gisa eman beharko da, datu-errenkadaren ordez." +msgstr "CHIDIST funtzioarekin ere lor daiteke CHITEST funtzioak ematen duen probabilitatea; horretarako, ausazko laginaren khi-karratua parametro gisa eman beharko da, datu-errenkadaren ordez." #: 04060181.xhp msgctxt "" @@ -40793,7 +40751,7 @@ "100\n" "help.text" msgid "CHITEST(DataB; DataE)" -msgstr "CHITEST(Datuak_B; Datuak_E)" +msgstr "CHITEST(DatuakB; DatuakE)" #: 04060181.xhp msgctxt "" @@ -41031,24 +40989,22 @@ msgstr "CHISQDIST" #: 04060181.xhp -#, fuzzy msgctxt "" "04060181.xhp\n" "par_id2951052\n" "98\n" "help.text" msgid "<ahelp hid=\"HID_FUNC_CHITEST_MS\">Returns the probability of a deviance from a random distribution of two test series based on the chi-squared test for independence.</ahelp> CHISQ.TEST returns the chi-squared distribution of the data." -msgstr "<ahelp hid=\"HID_FUNC_CHITEST\">Ji-karratuaren independentzia-frogan oinarrituta, bi froga-serieren ausazko banaketako desbiderapen-probabilitatea ematen du.</ahelp> Datuen ji-karratuaren banaketa ematen du CHITEST funtzioak." +msgstr "<ahelp hid=\"HID_FUNC_CHITEST_MS\">Khi-karratuaren independentzia-frogan oinarrituta, bi froga-serieren ausazko banaketako desbiderapen-probabilitatea ematen du.</ahelp> Datuen khi-karratuaren banaketa ematen du CHITEST funtzioak." #: 04060181.xhp -#, fuzzy msgctxt "" "04060181.xhp\n" "par_id2948925\n" "135\n" "help.text" msgid "The probability determined by CHISQ.TEST can also be determined with CHISQ.DIST, in which case the Chi square of the random sample must then be passed as a parameter instead of the data row." -msgstr "CHIDIST funtzioarekin ere lor daiteke CHITEST funtzioak ematen duen probabilitatea; horretarako, ausazko laginaren ji-karratua parametro gisa eman beharko da, datu-errenkadaren ordez." +msgstr "CHISQ.DIST funtzioarekin ere lor daiteke CHISQ.TEST funtzioak ematen duen probabilitatea; horretarako, ausazko laginaren khi-karratua parametro gisa eman beharko da, datu-errenkadaren ordez." #: 04060181.xhp msgctxt "" @@ -41060,14 +41016,13 @@ msgstr "Sintaxia" #: 04060181.xhp -#, fuzzy msgctxt "" "04060181.xhp\n" "par_id2949162\n" "100\n" "help.text" msgid "CHISQ.TEST(DataB; DataE)" -msgstr "CHITEST(Datuak_B; Datuak_E)" +msgstr "CHISQ.TEST(DatuakB; DatuakE)" #: 04060181.xhp msgctxt "" @@ -41310,7 +41265,7 @@ "156\n" "help.text" msgid "<ahelp hid=\"HID_FUNC_CHIVERT\">Returns the probability value from the indicated Chi square that a hypothesis is confirmed.</ahelp> CHIDIST compares the Chi square value to be given for a random sample that is calculated from the sum of (observed value-expected value)^2/expected value for all values with the theoretical Chi square distribution and determines from this the probability of error for the hypothesis to be tested." -msgstr "<ahelp hid=\"HID_FUNC_CHIVERT\">Adierazitako ji-karratuaren bidez, hipotesia berresten duen probabilitate-balioa ematen du.</ahelp> CHIDIST funtzioak ausazko lagin baten ji-karratuaren balioa kalkulatzen du, balio guztien \"(behatutako balioa - espero den balioa)^2/espero den balioa\" batuz, eta hortik abiatuta zehazten du probatu beharreko hipotesiaren errore-probabilitatea." +msgstr "<ahelp hid=\"HID_FUNC_CHIVERT\">Adierazitako khi-karratuaren bidez, hipotesia berresten duen probabilitate-balioa ematen du.</ahelp> CHIDIST funtzioak ausazko lagin baten khi-karratuaren balioa kalkulatzen du, balio guztien \"(behatutako balioa - espero den balioa)^2/espero den balioa\" batuz, eta hortik abiatuta zehazten du probatu beharreko hipotesiaren errore-probabilitatea." #: 04060181.xhp msgctxt "" @@ -41382,16 +41337,15 @@ "158\n" "help.text" msgid "If the Chi square value of the random sample is 13.27 and if the experiment has 5 degrees of freedom, then the hypothesis is assured with a probability of error of 2%." -msgstr "Ausazko laginaren ji-karratuaren balioa 13,27 bada eta saiakuntzak 5 graduko askatasuna badu, orduan, hipotesia bete egingo da % 2ko errore-probabilitatearekin." +msgstr "Ausazko laginaren khi-karratuaren balioa 13,27 bada eta saiakuntzak 5 graduko askatasuna badu, orduan, hipotesia bete egingo da % 2ko errore-probabilitatearekin." #: 04060181.xhp -#, fuzzy msgctxt "" "04060181.xhp\n" "bm_id2848690\n" "help.text" msgid "<bookmark_value>CHISQ.DIST function</bookmark_value>" -msgstr "<bookmark_value>CHIDIST funtzioa</bookmark_value>" +msgstr "<bookmark_value>CHISQ.DIST funtzioa</bookmark_value>" #: 04060181.xhp #, fuzzy @@ -41489,13 +41443,12 @@ msgstr "" #: 04060181.xhp -#, fuzzy msgctxt "" "04060181.xhp\n" "bm_id2948690\n" "help.text" msgid "<bookmark_value>CHISQ.DIST.RT function</bookmark_value>" -msgstr "<bookmark_value>CHIDIST funtzioa</bookmark_value>" +msgstr "<bookmark_value>CHISQ.DIST.RT funtzioa</bookmark_value>" #: 04060181.xhp #, fuzzy @@ -41508,24 +41461,22 @@ msgstr "CHISQDIST" #: 04060181.xhp -#, fuzzy msgctxt "" "04060181.xhp\n" "par_id2956338\n" "156\n" "help.text" msgid "<ahelp hid=\"HID_FUNC_CHIVERT_MS\">Returns the probability value from the indicated Chi square that a hypothesis is confirmed.</ahelp> CHISQ.DIST.RT compares the Chi square value to be given for a random sample that is calculated from the sum of (observed value-expected value)^2/expected value for all values with the theoretical Chi square distribution and determines from this the probability of error for the hypothesis to be tested." -msgstr "<ahelp hid=\"HID_FUNC_CHIVERT\">Adierazitako ji-karratuaren bidez, hipotesia berresten duen probabilitate-balioa ematen du.</ahelp> CHIDIST funtzioak ausazko lagin baten ji-karratuaren balioa kalkulatzen du, balio guztien \"(behatutako balioa - espero den balioa)^2/espero den balioa\" batuz, eta hortik abiatuta zehazten du probatu beharreko hipotesiaren errore-probabilitatea." +msgstr "<ahelp hid=\"HID_FUNC_CHIVERT_MS\">Adierazitako khi-karratuaren bidez, hipotesia berresten duen probabilitate-balioa ematen du.</ahelp> CHISQ.DIST.RT funtzioak ausazko lagin baten khi-karratuaren balioa kalkulatzen du, balio guztien \"(behatutako balioa - espero den balioa)^2/espero den balioa\" batuz, eta hortik abiatuta zehazten du probatu beharreko hipotesiaren errore-probabilitatea." #: 04060181.xhp -#, fuzzy msgctxt "" "04060181.xhp\n" "par_id2951316\n" "157\n" "help.text" msgid "The probability determined by CHISQ.DIST.RT can also be determined by CHITEST." -msgstr "CHITEST funtzioarekin ere lor daiteke CHIDIST funtzioak zehaztutako probabilitatea." +msgstr "CHITEST funtzioarekin ere lor daiteke CHISQ.DIST.RT funtzioak zehaztutako probabilitatea." #: 04060181.xhp msgctxt "" @@ -41537,14 +41488,13 @@ msgstr "Sintaxia" #: 04060181.xhp -#, fuzzy msgctxt "" "04060181.xhp\n" "par_id2958439\n" "109\n" "help.text" msgid "CHISQ.DIST.RT(Number; DegreesFreedom)" -msgstr "CHIDIST (Zenbakia; Askatasun_graduak)" +msgstr "CHISQ.DIST.RT(Zenbakia; Askatasun_graduak)" #: 04060181.xhp #, fuzzy @@ -41576,24 +41526,22 @@ msgstr "Adibidea" #: 04060181.xhp -#, fuzzy msgctxt "" "04060181.xhp\n" "par_id2945774\n" "113\n" "help.text" msgid "<item type=\"input\">=CHISQ.DIST.RT(13.27; 5)</item> equals 0.0209757694." -msgstr "<item type=\"input\">=CHIDIST(13,27; 5)</item>: 0,02 ematen du." +msgstr "<item type=\"input\">=CHISQ.DIST.RT(13,27; 5)</item> 0,0209757694 ematen du." #: 04060181.xhp -#, fuzzy msgctxt "" "04060181.xhp\n" "par_id2956141\n" "158\n" "help.text" msgid "If the Chi square value of the random sample is 13.27 and if the experiment has 5 degrees of freedom, then the hypothesis is assured with a probability of error of 2%." -msgstr "Ausazko laginaren ji-karratuaren balioa 13,27 bada eta saiakuntzak 5 graduko askatasuna badu, orduan, hipotesia bete egingo da % 2ko errore-probabilitatearekin." +msgstr "Ausazko laginaren khi-karratuaren balioa 13,27 bada eta saiakuntzak 5 graduko askatasuna badu, orduan, hipotesia bete egingo da % 2ko errore-probabilitatearekin." #: 04060181.xhp msgctxt "" @@ -42065,14 +42013,13 @@ msgstr "" #: 04060182.xhp -#, fuzzy msgctxt "" "04060182.xhp\n" "par_id2855089\n" "3\n" "help.text" msgid "<ahelp hid=\"HID_FUNC_F_INV_RT\">Returns the inverse right tail of the F distribution.</ahelp>" -msgstr "<ahelp hid=\"HID_FUNC_TINV\">T banaketaren alderantzizkoa kalkulatzen du.</ahelp>" +msgstr "<ahelp hid=\"HID_FUNC_F_INV_RT\">F banaketaren alderantzizko eskuin ilara ematen du.</ahelp>" #: 04060182.xhp msgctxt "" @@ -42384,14 +42331,13 @@ 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 "" @@ -42558,14 +42504,13 @@ msgstr "FDIST" #: 04060182.xhp -#, fuzzy msgctxt "" "04060182.xhp\n" "par_id2952981\n" "38\n" "help.text" msgid "<ahelp hid=\"HID_FUNC_F_DIST_LT\">Calculates the values of the left tail of the F distribution.</ahelp>" -msgstr "<ahelp hid=\"HID_FUNC_TINV\">T banaketaren alderantzizkoa kalkulatzen du.</ahelp>" +msgstr "<ahelp hid=\"HID_FUNC_F_DIST_LT\">F banaketaren ezker ilarako balioak kalkulatzen ditu.</ahelp>" #: 04060182.xhp msgctxt "" @@ -42636,24 +42581,22 @@ 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 @@ -42674,14 +42617,13 @@ msgstr "" #: 04060182.xhp -#, fuzzy msgctxt "" "04060182.xhp\n" "par_id2852981\n" "38\n" "help.text" msgid "<ahelp hid=\"HID_FUNC_F_DIST_RT\">Calculates the values of the right tail of the F distribution.</ahelp>" -msgstr "<ahelp hid=\"HID_FUNC_TINV\">T banaketaren alderantzizkoa kalkulatzen du.</ahelp>" +msgstr "<ahelp hid=\"HID_FUNC_F_DIST_RT\">F banaketaren eskuin ilarako balioak kalkulatzen ditu..</ahelp>" #: 04060182.xhp msgctxt "" @@ -43254,13 +43196,12 @@ 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 +45143,13 @@ 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 +45242,13 @@ 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 +47226,7 @@ "115\n" "help.text" msgid "PERCENTILE(Data; Alpha)" -msgstr "PERCENTILE(datuak;Alfa)" +msgstr "PERCENTILE(datuak; Alfa)" #: 04060184.xhp msgctxt "" @@ -47379,14 +47318,13 @@ 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 +47410,13 @@ 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 "" @@ -49763,14 +49700,13 @@ msgstr "TINV" #: 04060185.xhp -#, fuzzy msgctxt "" "04060185.xhp\n" "par_id2943232\n" "99\n" "help.text" msgid "<ahelp hid=\"HID_FUNC_TINV_MS\">Returns the one tailed inverse of the t-distribution.</ahelp>" -msgstr "<ahelp hid=\"HID_FUNC_TINV\">T banaketaren alderantzizkoa kalkulatzen du.</ahelp>" +msgstr "<ahelp hid=\"HID_FUNC_TINV_MS\">T banaketaren ilara bakarreko alderantzizkoa ematen du.</ahelp>" #: 04060185.xhp msgctxt "" @@ -50228,14 +50164,13 @@ 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 "" @@ -50341,14 +50276,13 @@ msgstr "Sintaxia" #: 04060185.xhp -#, fuzzy msgctxt "" "04060185.xhp\n" "par_id2850521\n" "121\n" "help.text" msgid "T.DIST.2T(Number; DegreesFreedom)" -msgstr "CHIDIST (Zenbakia; Askatasun_graduak)" +msgstr "T.DIST.2T(Zenbakia; Askatasun_graduak)" #: 04060185.xhp #, fuzzy @@ -50425,14 +50359,13 @@ msgstr "Sintaxia" #: 04060185.xhp -#, fuzzy msgctxt "" "04060185.xhp\n" "par_id2750521\n" "121\n" "help.text" msgid "T.DIST.RT(Number; DegreesFreedom)" -msgstr "CHIDIST (Zenbakia; Askatasun_graduak)" +msgstr "T.DIST.RT(Zenbakia; Askatasun_graduak)" #: 04060185.xhp #, fuzzy @@ -54106,14 +54039,13 @@ msgstr "<ahelp hid=\"modules/scalc/ui/sheetprintpage/checkBTN_PAGENO\">Lehen orrialdea 1 ez den zenbaki batekin hastea nahi baduzu, hautatu aukera hau.</ahelp>" #: 05070500.xhp -#, fuzzy msgctxt "" "05070500.xhp\n" "par_id3145389\n" "35\n" "help.text" msgid "<ahelp hid=\"modules/scalc/ui/sheetprintpage/spinED_PAGENO\">Enter the number of the first page.</ahelp>" -msgstr "<ahelp hid=\"modules/scalc/ui/sheetprintpage/spinED_SCALEPAGENUM\">Sar ezazu inprimatzeko gehienezko orrialde kopurua.</ahelp>" +msgstr "<ahelp hid=\"modules/scalc/ui/sheetprintpage/spinED_PAGENO\">Sartu lehen orriaren zenbakia.</ahelp>" #: 05070500.xhp msgctxt "" @@ -54370,14 +54302,13 @@ msgstr "" #: 05080200.xhp -#, fuzzy msgctxt "" "05080200.xhp\n" "hd_id3153562\n" "1\n" "help.text" msgid "<link href=\"text/scalc/01/05080200.xhp\" name=\"Clear\">Clear</link>" -msgstr "<link href=\"text/scalc/01/05040000.xhp\" name=\"Zutabea\">Zutabea</link>" +msgstr "<link href=\"text/scalc/01/05080200.xhp\" name=\"Garbitu\">Garbitu</link>" #: 05080200.xhp msgctxt "" @@ -54460,14 +54391,13 @@ msgstr "Errepikatu beharreko errenkadak" #: 05080300.xhp -#, fuzzy msgctxt "" "05080300.xhp\n" "par_id3147426\n" "8\n" "help.text" msgid "<ahelp hid=\"modules/scalc/ui/printareasdialog/edrepeatrow\">Choose one or more rows to print on every page. In the right text box enter the row reference, for example, \"1\" or \"$1\" or \"$2:$3\".</ahelp> The list box displays <emph>-user defined-</emph>. You can also select <emph>-none-</emph> to remove a defined repeating row." -msgstr "<ahelp hid=\"modules/scalc/ui/printareasdialog/edrepeatcol\">Aukeratu orrialde guztietan inprimatu beharreko zutabea(k). Eskuineko testu-koadroan sartu zutabearen erreferentzia, adibidez, \"A\" edo \"B\" edo \"$2:$3\".</ahelp> Zerrenda-koadroan <emph>-erabiltzaileak definitua-</emph> agertuko da. <emph>-bat ere ez-</emph> aukeratzen baduzu, definitutako zutabe errepikatua kendu egingo da." +msgstr "<ahelp hid=\"modules/scalc/ui/printareasdialog/edrepeatrow\">Aukeratu orrialde guztietan inprimatu beharreko errenkada bat edo batzuk. Eskuineko testu-koadroan sartu zutabearen erreferentzia, adibidez, \"1\" edo \"$1\" edo \"$2:$3\".</ahelp> Zerrenda-koadroan <emph>-erabiltzaileak definitua-</emph> agertuko da. <emph>-bat ere ez-</emph> aukeratzen baduzu, definitutako errenkada errepikatua kendu egingo da." #: 05080300.xhp msgctxt "" @@ -54494,7 +54424,7 @@ "11\n" "help.text" msgid "<ahelp hid=\"modules/scalc/ui/printareasdialog/edrepeatcol\">Choose one or more columns to print on every page. In the right text box enter the column reference, for example, \"A\" or \"AB\" or \"$C:$E\".</ahelp> The list box then displays <emph>-user defined-</emph>. You can also select <emph>-none-</emph> to remove a defined repeating column." -msgstr "<ahelp hid=\"modules/scalc/ui/printareasdialog/edrepeatcol\">Aukeratu orrialde guztietan inprimatu beharreko zutabea(k). Eskuineko testu-koadroan sartu zutabearen erreferentzia, adibidez, \"A\" edo \"B\" edo \"$2:$3\".</ahelp> Zerrenda-koadroan <emph>-erabiltzaileak definitua-</emph> agertuko da. <emph>-bat ere ez-</emph> aukeratzen baduzu, definitutako zutabe errepikatua kendu egingo da." +msgstr "<ahelp hid=\"modules/scalc/ui/printareasdialog/edrepeatcol\">Aukeratu orrialde guztietan inprimatu beharreko zutabe bat edo batzuk. Eskuineko testu-koadroan sartu zutabearen erreferentzia, adibidez, \"A\" edo \"AB\" edo \"$C:$E\".</ahelp> Zerrenda-koadroan <emph>-erabiltzaileak definitua-</emph> agertuko da. <emph>-bat ere ez-</emph> aukeratzen baduzu, definitutako zutabe errepikatua kendu egingo da." #: 05080300.xhp msgctxt "" @@ -56662,7 +56592,7 @@ "bm_id3145673\n" "help.text" msgid "<bookmark_value>calculating; auto calculating sheets</bookmark_value><bookmark_value>recalculating;auto calculating sheets</bookmark_value><bookmark_value>AutoCalculate function in sheets</bookmark_value><bookmark_value>correcting sheets automatically</bookmark_value><bookmark_value>formulas;AutoCalculate function</bookmark_value><bookmark_value>cell contents;AutoCalculate function</bookmark_value>" -msgstr "<bookmark_value>kalkuluak egin; kalkulu automatikoak egin orrietan</bookmark_value><bookmark_value>Kalkulatu automatikoki funtzioa orrietan</bookmark_value><bookmark_value>orriak automatikoki zuzendu</bookmark_value><bookmark_value>formulak;kalkulatu automatikoki funtzioa</bookmark_value><bookmark_value>gelaxka-edukiak;kalkulatu automatikoki funtzioa</bookmark_value>" +msgstr "<bookmark_value>kalkuluak egin; kalkulu automatikoak egin orrietan</bookmark_value><bookmark_value>birkalkulatzea;automatikoki kalkulatu orriak</bookmark_value><bookmark_value>Kalkulatu automatikoki funtzioa orrietan</bookmark_value><bookmark_value>orriak automatikoki zuzendu</bookmark_value><bookmark_value>formulak;kalkulatu automatikoki funtzioa</bookmark_value><bookmark_value>gelaxka-edukiak;kalkulatu automatikoki funtzioa</bookmark_value>" #: 06070000.xhp msgctxt "" @@ -58074,14 +58004,13 @@ msgstr "" #: 12040400.xhp -#, fuzzy msgctxt "" "12040400.xhp\n" "hd_id3153087\n" "1\n" "help.text" msgid "<link href=\"text/scalc/01/12040400.xhp\" name=\"Remove Filter\">Reset Filter</link>" -msgstr "<link href=\"text/scalc/01/12040100.xhp\" name=\"Iragazki automatikoa\">Iragazki automatikoa</link>" +msgstr "<link href=\"text/scalc/01/12040400.xhp\" name=\"Remove Filter\">Kendu iragazkia</link>" #: 12040400.xhp msgctxt "" @@ -58992,7 +58921,7 @@ "par_id6036561\n" "help.text" msgid "<link href=\"text/scalc/01/12080700.xhp\">Show Details command in pivot tables</link>" -msgstr "<link href=\"text/scalc/01/12080700.xhp\">Erakutsi xehetasunak (DatuPilotua)</link>" +msgstr "<link href=\"text/scalc/01/12080700.xhp\">Erakutsi xehetasunak komandoa taula dinamikoetan</link>" #: 12080300.xhp msgctxt "" @@ -59374,7 +59303,7 @@ "tit\n" "help.text" msgid "Show Details (Pivot Table)" -msgstr "Erakutsi xehetasunak (DatuPilotua)" +msgstr "Erakutsi xehetasunak (Taula dinamikoa)" #: 12080700.xhp msgctxt "" @@ -59382,7 +59311,7 @@ "hd_id3344523\n" "help.text" msgid "<link href=\"text/scalc/01/12080700.xhp\">Show Details (Pivot Table)</link>" -msgstr "<link href=\"text/scalc/01/12080700.xhp\">Erakutsi xehetasunak (DatuPilotua)</link>" +msgstr "<link href=\"text/scalc/01/12080700.xhp\">Erakutsi xehetasunak (Taula dinamikoa)</link>" #: 12080700.xhp msgctxt "" @@ -59406,7 +59335,7 @@ "tit\n" "help.text" msgid "Pivot Table" -msgstr "Errotazio-taulak" +msgstr "Taula dinamikoa" #: 12090000.xhp msgctxt "" @@ -59415,7 +59344,7 @@ "1\n" "help.text" msgid "<link href=\"text/scalc/01/12090000.xhp\" name=\"Pivot Table\">Pivot Table</link>" -msgstr "<link href=\"text/shared/01/01100500.xhp\" name=\"Priority Table\">Lehentasun-taula</link>" +msgstr "<link href=\"text/scalc/01/12090000.xhp\" name=\"Pivot Table\">Taula dinamikoa</link>" #: 12090000.xhp msgctxt "" @@ -59424,7 +59353,7 @@ "2\n" "help.text" msgid "A pivot table provides a summary of large amounts of data. You can then rearrange the pivot table to view different summaries of the data." -msgstr "DatuPilotuaren taulak datu kopuru handien laburpena egiten du. DatuPilotuaren taula berrantola dezakezu datuen laburpen desberdinak ikusteko." +msgstr "Taula dinamikoak datu kopuru handien laburpena egiten du. Taula dinamikoa berrantola dezakezu datuen laburpen desberdinak ikusteko." #: 12090000.xhp msgctxt "" @@ -59441,7 +59370,7 @@ "par_idN105FB\n" "help.text" msgid "<link href=\"text/scalc/01/12090102.xhp\" name=\"Pivot table dialog\">Pivot table dialog</link>" -msgstr "<link href=\"text/scalc/01/12090102.xhp\" name=\"DatuPilotuaren elkarrizketa-koadroa\">DatuPilotuaren elkarrizketa-koadroa</link>" +msgstr "<link href=\"text/scalc/01/12090102.xhp\" name=\"Taula dinamikoaren elkarrizketa-koadroa\">Taula dinamikoaren elkarrizketa-koadroa</link>" #: 12090100.xhp msgctxt "" @@ -59467,7 +59396,7 @@ "2\n" "help.text" msgid "<ahelp hid=\".uno:DataDataPilotRun\">Opens a dialog where you can select the source for your pivot table, and then create your table.</ahelp>" -msgstr "<ahelp hid=\".uno:DataDataPilotRun\">DatuPilotuaren taularen iturburua hautatu eta taula sortu ahal izango duzu elkarrizketa-koadro honetan.</ahelp>" +msgstr "<ahelp hid=\".uno:DataDataPilotRun\">Taula dinamikoaren iturburua hautatu eta taula sortu ahal izango duzu elkarrizketa-koadro honetan.</ahelp>" #: 12090100.xhp msgctxt "" @@ -59485,7 +59414,7 @@ "6\n" "help.text" msgid "Select a data source for the pivot table." -msgstr "Hautatu DatuPilotuaren taularen datu-iturburua." +msgstr "Hautatu taula dinamikoaren datu-iturburua." #: 12090100.xhp msgctxt "" @@ -59503,7 +59432,7 @@ "8\n" "help.text" msgid "<ahelp hid=\".\">Uses the selected cells as the data source for the pivot table.</ahelp>" -msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_DAPITYPE:BTN_SELECTION\">Hautatutako gelaxkak erabiltzen ditu DatuPilotuaren taularen datu-iturburu gisa.</ahelp>" +msgstr "<ahelp hid=\".\">Hautatutako gelaxkak erabiltzen ditu taula dinamikoaren datu-iturburu gisa.</ahelp>" #: 12090100.xhp msgctxt "" @@ -59512,7 +59441,7 @@ "13\n" "help.text" msgid "The data columns in the pivot table use the same number format as the first data row in the current selection." -msgstr "Uneko hautapeneko lehen datu-errenkadaren zenbaki-formatu bera erabiliko dute DatuPilotuaren taulako datu-zutabeek." +msgstr "Uneko hautapeneko lehen datu-errenkadaren zenbaki-formatu bera erabiliko dute taula dinamikoaren datu-zutabeek." #: 12090100.xhp msgctxt "" @@ -59530,7 +59459,7 @@ "10\n" "help.text" msgid "<ahelp hid=\".\">Uses a table or query in a database that is registered in $[officename] as the data source for the pivot table.</ahelp>" -msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_DAPITYPE:BTN_DATABASE\">$[officename] suitean erregistratutako taula edo kontsulta bat erabiltzen du DataPilotuaren taularen iturburu gisa.</ahelp>" +msgstr "<ahelp hid=\".\">$[officename] suitean erregistratutako taula edo kontsulta bat erabiltzen du taula dinamikoaren iturburu gisa.</ahelp>" #: 12090100.xhp msgctxt "" @@ -59548,7 +59477,7 @@ "12\n" "help.text" msgid "<ahelp hid=\".\">Opens the <emph>External Source</emph> dialog where you can select the OLAP data source for the pivot table.</ahelp>" -msgstr "<ahelp hid=\".uno:DiagramData\"><emph> Datu-taula</emph> elkarrizketa-koadroa irekitzen du, digramaren datuak editatzeko.</ahelp>" +msgstr "<ahelp hid=\".\"><emph>Kanpo iturria</emph> elkarrizketa-koadroa irekitzen du, taula dinamikoaren OLAP datu-iturria hautatzeko.</ahelp>" #: 12090100.xhp msgctxt "" @@ -59556,7 +59485,7 @@ "par_idN10670\n" "help.text" msgid "<link href=\"text/scalc/01/12090102.xhp\" name=\"Pivot table dialog\">Pivot table dialog</link>" -msgstr "<link href=\"text/scalc/01/12090102.xhp\" name=\"DatuPilotuaren elkarrizketa-koadroa\">DatuPilotuaren elkarrizketa-koadroa</link>" +msgstr "<link href=\"text/scalc/01/12090102.xhp\" name=\"Taula dinamikoaren elkarrizketa-koadroa\">Taula dinamikoaren elkarrizketa-koadroa</link>" #: 12090101.xhp msgctxt "" @@ -59663,7 +59592,7 @@ "11\n" "help.text" msgid "<link href=\"text/scalc/01/12090102.xhp\" name=\"Pivot table dialog\">Pivot table dialog</link>" -msgstr "<link href=\"text/scalc/01/12090102.xhp\" name=\"DatuPilotuaren elkarrizketa-koadroa\">DatuPilotuaren elkarrizketa-koadroa</link>" +msgstr "<link href=\"text/scalc/01/12090102.xhp\" name=\"Taula dinamikoaren elkarrizketa-koadroa\">Taula dinamikoaren elkarrizketa-koadroa</link>" #: 12090102.xhp msgctxt "" @@ -59671,7 +59600,7 @@ "tit\n" "help.text" msgid "Pivot Table" -msgstr "Errotazio-taulak" +msgstr "Taula dinamikoa" #: 12090102.xhp msgctxt "" @@ -59679,7 +59608,7 @@ "bm_id2306894\n" "help.text" msgid "<bookmark_value>pivot table function;show details</bookmark_value><bookmark_value>pivot table function;drill down</bookmark_value>" -msgstr "<bookmark_value>TypeName funtzioa</bookmark_value><bookmark_value>VarType funtzioa</bookmark_value>" +msgstr "<bookmark_value>taula dinamikoaren funtzioa;erakutsi xehetasunak</bookmark_value><bookmark_value>taula dinamikoaren funtzioa;xehetasunak bilatu</bookmark_value>" #: 12090102.xhp msgctxt "" @@ -59688,7 +59617,7 @@ "1\n" "help.text" msgid "Pivot Table" -msgstr "Errotazio-taulak" +msgstr "Taula dinamikoa" #: 12090102.xhp msgctxt "" @@ -59697,7 +59626,7 @@ "13\n" "help.text" msgid "<ahelp hid=\".uno:DataPilotExec\">Specify the layout of the table that is generated by the pivot table.</ahelp>" -msgstr "<ahelp hid=\".uno:DataPilotExec\">Zehaztu DatuPilotuak sortutako taularen diseinua.</ahelp>" +msgstr "<ahelp hid=\".uno:DataPilotExec\">Zehaztu taula dinamikoak sortutako taularen diseinua.</ahelp>" #: 12090102.xhp msgctxt "" @@ -59706,7 +59635,7 @@ "34\n" "help.text" msgid "The pivot table displays data fields as buttons which you can drag and drop to define the pivot table." -msgstr "DatuPilotuak botoi gisa bistaratzen ditu datu-eremuak; botoi horiek arrastatuz eta jareginez DatuPilotuaren taula defini dezakezu." +msgstr "Taula dinamikoak botoi gisa bistaratzen ditu datu-eremuak; botoi horiek arrastatuz eta jareginez taula dinamikoa defini dezakezu." #: 12090102.xhp msgctxt "" @@ -59724,7 +59653,7 @@ "19\n" "help.text" msgid "<ahelp hid=\"modules/scalc/ui/pivottablelayoutdialog/listbox-fields\">To define the layout of a pivot table, drag and drop data field buttons onto the <emph>Page Fields, Row Fields, Column Fields, </emph>and<emph> Data Fields </emph>areas.</ahelp> You can also use drag and drop to rearrange the data fields on a pivot table." -msgstr "<ahelp hid=\"modules/scalc/ui/pivottablelayoutdialog/listbox-fields\">DatuPilotuaren taula baten diseinua definitzeko, arrastatu eta jaregin datu-eremuen botoiak <emph>Orrialde-eremu, Errenkada-eremu, Zutabe-eremu, </emph>eta<emph> Datu-eremu</emph>en areetara.</ahelp> Arrastatu eta jareginez ere berrantola ditzakezu DatuPilotuaren taula bateko datu-eremuak." +msgstr "<ahelp hid=\"modules/scalc/ui/pivottablelayoutdialog/listbox-fields\">Taula dinamiko baten diseinua definitzeko, arrastatu eta jaregin datu-eremuen botoiak <emph>Orrialde-eremu, Errenkada-eremu, Zutabe-eremu, </emph>eta<emph> Datu-eremu</emph>en areetara.</ahelp> Arrastatu eta jareginez ere berrantola ditzakezu taula dinamiko bateko datu-eremuak." #: 12090102.xhp msgctxt "" @@ -59760,7 +59689,7 @@ "23\n" "help.text" msgid "<ahelp hid=\"modules/scalc/ui/pivottablelayoutdialog/more\">Displays or hides additional options for defining the pivot table.</ahelp>" -msgstr "<ahelp hid=\"modules/scalc/ui/pivottablelayoutdialog/more\">DatuPilotuaren taula definitzeko aukera osagarriak erakusten edo ezkutatzen ditu.</ahelp>" +msgstr "<ahelp hid=\"modules/scalc/ui/pivottablelayoutdialog/more\">Taula dinamikoa definitzeko aukera osagarriak erakusten edo ezkutatzen ditu.</ahelp>" #: 12090102.xhp msgctxt "" @@ -59778,7 +59707,7 @@ "3\n" "help.text" msgid "Specify the settings for displaying the results of the pivot table." -msgstr "Zehaztu DatuPilotuaren taularen emaitzak bistaratzeko ezarpenak." +msgstr "Zehaztu taula dinamikoaren emaitzak bistaratzeko ezarpenak." #: 12090102.xhp msgctxt "" @@ -59794,7 +59723,7 @@ "par_id0509200913025615\n" "help.text" msgid "<ahelp hid=\".\">Select the area that contains the data for the current pivot table.</ahelp>" -msgstr "<ahelp hid=\".\">Uneko kontrolaren hautapen-egoera zehazten du.</ahelp>" +msgstr "<ahelp hid=\".\">Uneko taula dinamikoaren datuak barne-hartzen dituen area hautatu.</ahelp>" #: 12090102.xhp msgctxt "" @@ -59812,7 +59741,7 @@ "5\n" "help.text" msgid "<ahelp hid=\"modules/scalc/ui/pivottablelayoutdialog/destination-edit\">Select the area where you want to display the results of the pivot table.</ahelp>" -msgstr "<ahelp hid=\"modules/scalc/ui/pivottablelayoutdialog/destination-edit\">Hautatu DatuPilotuaren taularen emaitzak bistaratzeko area.</ahelp>" +msgstr "<ahelp hid=\"modules/scalc/ui/pivottablelayoutdialog/destination-edit\">Hautatu taula dinamikoren emaitzak bistaratzeko area.</ahelp>" #: 12090102.xhp msgctxt "" @@ -59821,7 +59750,7 @@ "6\n" "help.text" msgid "If the selected area contains data, the pivot table overwrites the data. To prevent the loss of existing data, let the pivot table automatically select the area to display the results." -msgstr "Hautatutako areak datuak baditu, DatuPilotuak datuak gainidatziko ditu. Lehendik dauden datuak gal ez daitezen, utzi DatuPilotuari automatikoki hautatzen emaitzak bistaratzeko area." +msgstr "Hautatutako areak datuak baditu, taula dinamikoak datuak gainidatziko ditu. Lehendik dauden datuak gal ez daitezen, utzi taula dinamikoari automatikoki hautatzen emaitzak bistaratzeko area." #: 12090102.xhp msgctxt "" @@ -59909,7 +59838,7 @@ "par_idN1089B\n" "help.text" msgid "<ahelp hid=\".\">Adds a Filter button to pivot tables that are based on spreadsheet data.</ahelp>" -msgstr "<ahelp hid=\".\">Iragazki-botoi bat gehitzen du kalkulu-orriko datuetan oinarritutako DatuPilotu-tauletan.</ahelp>" +msgstr "<ahelp hid=\".\">Iragazki-botoi bat gehitzen du kalkulu-orriko datuetan oinarritutako taula dinamikoetan.</ahelp>" #: 12090102.xhp msgctxt "" @@ -59941,7 +59870,7 @@ "par_idN108DC\n" "help.text" msgid "To examine details inside a pivot table" -msgstr "DatuPilotu-taula baten barruan xehetasunak ikusteko" +msgstr "Taula dinamiko baten barruan xehetasunak ikusteko" #: 12090102.xhp msgctxt "" @@ -59998,7 +59927,7 @@ "35\n" "help.text" msgid "<link href=\"text/scalc/04/01020000.xhp\" name=\"Pivot table shortcut keys\">Pivot table shortcut keys</link>" -msgstr "<link href=\"text/scalc/04/01020000.xhp\" name=\"DatuPilotuaren laster-teklak\">DatuPilotuaren laster-teklak</link>" +msgstr "<link href=\"text/scalc/04/01020000.xhp\" name=\"Taula dinamikoaren laster-teklak\">Taula dinamikoaren laster-teklak</link>" #: 12090103.xhp msgctxt "" @@ -60135,13 +60064,14 @@ msgstr "berdin" #: 12090103.xhp +#, fuzzy msgctxt "" "12090103.xhp\n" "par_id3154254\n" "15\n" "help.text" msgid "<" -msgstr "" +msgstr "<" #: 12090103.xhp msgctxt "" @@ -60153,13 +60083,14 @@ 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 "" @@ -60389,7 +60320,7 @@ "bm_id7292397\n" "help.text" msgid "<bookmark_value>calculating;pivot table</bookmark_value>" -msgstr "<bookmark_value>kalkulatu;DatuPilotua</bookmark_value>" +msgstr "<bookmark_value>kalkulatu;taula dinamikoa</bookmark_value>" #: 12090105.xhp msgctxt "" @@ -60407,7 +60338,7 @@ "16\n" "help.text" msgid "The contents of this dialog is different for data fields in the <emph>Data</emph> area, and data fields in the <emph>Row</emph> or <emph>Column</emph> area of the <link href=\"text/scalc/01/12090102.xhp\" name=\"Pivot table\">Pivot Table</link> dialog." -msgstr "Elkarrizketa-koadro honetako edukia desberdina da <emph>Datuak</emph> areako datu-eremuentzat eta <emph> Errenkada</emph> edo<emph> Zutabe</emph> areetako datu-eremuentzat <link href=\"text/scalc/01/12090102.xhp\" name=\"DatuPilotua\">DatuPilotua</link>ren elkarrizketa-koadroan." +msgstr "Elkarrizketa-koadro honetako edukia desberdina da <emph>Datuak</emph> areako datu-eremuentzat eta <emph> Errenkada</emph> edo<emph> Zutabe</emph> areetako datu-eremuentzat <link href=\"text/scalc/01/12090102.xhp\" name=\"Taula dinamikoa\">Taula dinamikoa</link>ren elkarrizketa-koadroan." #: 12090105.xhp msgctxt "" @@ -60757,7 +60688,7 @@ "par_idN1078D\n" "help.text" msgid "Each result is divided by the total result for its row in the pivot table. If there are several data fields, the total for the result's data field is used. If there are subtotals with manually selected summary functions, the total with the data field's summary function is still used." -msgstr "Errenkadaren emaitzaren totalarekin zatituko da emaitza bakoitza DatuPilotuaren taulan. Hainbat datu-eremu badaude, emaitzen datu-eremurako totala erabiliko da. Eskuz hautatutako laburpen-funtzioak dituen subtotalik badago, datu-eremuaren laburpen-funtzioa daukan totala erabiltzen jarraituko da." +msgstr "Errenkadaren emaitzaren totalarekin zatituko da emaitza bakoitza taula dinamikoan. Hainbat datu-eremu badaude, emaitzen datu-eremurako totala erabiliko da. Eskuz hautatutako laburpen-funtzioak dituen subtotalik badago, datu-eremuaren laburpen-funtzioa daukan totala erabiltzen jarraituko da." #: 12090105.xhp msgctxt "" @@ -60861,7 +60792,7 @@ "bm_id711386\n" "help.text" msgid "<bookmark_value>hiding;data fields, from calculations in pivot table</bookmark_value><bookmark_value>display options in pivot table</bookmark_value><bookmark_value>sorting;options in pivot table</bookmark_value><bookmark_value>data field options for pivot table</bookmark_value>" -msgstr "<bookmark_value>ezkutatu;datu-eremuak, DatuPilotuko kalkuluetatik</bookmark_value><bookmark_value>bistaratu aukerak DatuPilotuan</bookmark_value><bookmark_value>ordenatu;aukerak DatuPilotuan</bookmark_value><bookmark_value>DatuPiloturako datu-eremuen aukerak</bookmark_value>" +msgstr "<bookmark_value>ezkutatu;datu-eremuak, taula dinamikoaren kalkuluetatik</bookmark_value><bookmark_value>bistaratu taula dinamikoaren aukerak</bookmark_value><bookmark_value>ordenatu;taula dinamikoaren aukerak</bookmark_value><bookmark_value>taula dinamikoaren datu-eremuen aukerak</bookmark_value>" #: 12090106.xhp msgctxt "" @@ -60877,7 +60808,7 @@ "par_idN10546\n" "help.text" msgid "You can specify additional options for column, row, and page data fields in the <link href=\"text/scalc/01/12090105.xhp\">pivot table</link>." -msgstr "Zutabe, errenkada eta orrialdeen datu-eremuetarako aukera osagarriak zehaztu ditzakezu <link href=\"text/scalc/01/12090105.xhp\">DatuPilotu</link>an." +msgstr "Zutabe, errenkada eta orrialdeen datu-eremuetarako aukera osagarriak zehaztu ditzakezu <link href=\"text/scalc/01/12090105.xhp\">taula dinamikoa</link>n." #: 12090106.xhp msgctxt "" @@ -60989,7 +60920,7 @@ "par_idN10597\n" "help.text" msgid "<ahelp hid=\"1495385090\">Adds an empty row after the data for each item in the pivot table.</ahelp>" -msgstr "<ahelp hid=\"1495385090\">Lerro huts bat gehitzen du DatuPilotuaren taulako elementu bakoitzaren datuen ondoren.</ahelp>" +msgstr "<ahelp hid=\"1495385090\">Lerro huts bat gehitzen du taula dinamikoaren elementu bakoitzaren datuen ondoren.</ahelp>" #: 12090106.xhp msgctxt "" @@ -61101,7 +61032,7 @@ "par_idN105C8\n" "help.text" msgid "<ahelp hid=\"1495387657\">Select the hierarchy that you want to use. The pivot table must be based on an external source data that contains data hierarchies.</ahelp>" -msgstr "<ahelp hid=\"1495387657\">Hautatu erabili nahi duzun hierarkia. Datu-hierarkiak dituzten kanpo-iturburuko datuetan oinarrituta egon behar du DatuPilotuak.</ahelp>" +msgstr "<ahelp hid=\"1495387657\">Hautatu erabili nahi duzun hierarkia. Datu-hierarkiak dituzten kanpo-iturburuko datuetan oinarrituta egon behar du taula dinamikoak.</ahelp>" #: 12090200.xhp msgctxt "" @@ -61127,7 +61058,7 @@ "2\n" "help.text" msgid "<ahelp hid=\".uno:RecalcPivotTable\">Updates the pivot table.</ahelp>" -msgstr "<ahelp hid=\".uno:RecalcPivotTable\">DatuPilotuaren taula eguneratzen du.</ahelp>" +msgstr "<ahelp hid=\".uno:RecalcPivotTable\">Taula dinamikoa eguneratzen du.</ahelp>" #: 12090200.xhp msgctxt "" @@ -61136,7 +61067,7 @@ "3\n" "help.text" msgid "After you import an Excel spreadsheet that contains a pivot table, click in the table, and then choose <emph>Data - Pivot Table - Refresh</emph>." -msgstr "Taula dinamiko bat duen Excel-eko kalkulu-orri bat inportatutakoan, egin klik taulan, eta ondoren aukeratu <emph>Datuak - DatuPilotua- Freskatu</emph>." +msgstr "Taula dinamiko bat duen Excel-eko kalkulu-orri bat inportatutakoan, egin klik taulan, eta ondoren aukeratu <emph>Datuak - Taula dinamikoa - Freskatu</emph>." #: 12090300.xhp msgctxt "" @@ -61162,7 +61093,7 @@ "2\n" "help.text" msgid "<ahelp hid=\".uno:DeletePivotTable\" visibility=\"visible\">Deletes the selected pivot table.</ahelp>" -msgstr "<ahelp hid=\".uno:DeletePivotTable\" visibility=\"visible\">Hautatutako DatuPilotuaren taula ezabatzen du.</ahelp>" +msgstr "<ahelp hid=\".uno:DeletePivotTable\" visibility=\"visible\">Hautatutako taula dinamikoa ezabatzen du.</ahelp>" #: 12090400.xhp msgctxt "" @@ -61186,7 +61117,7 @@ "par_idN10551\n" "help.text" msgid "Grouping pivot tables displays the <emph>Grouping</emph> dialog for either values or dates." -msgstr "DatuPilotuaren taulak elkartzean, balioak nahiz datak <emph>Elkartze</emph>ko elkarrizketa-koadroa agertzen da." +msgstr "Taula dinamikoak elkartzean, balioak nahiz datak <emph>Elkartze</emph>ko elkarrizketa-koadroa agertzen da." #: 12090400.xhp msgctxt "" @@ -62301,13 +62232,12 @@ msgstr "<bookmark_value>AREAS funtzioa</bookmark_value>" #: func_aggregate.xhp -#, fuzzy msgctxt "" "func_aggregate.xhp\n" "hd_id3154073\n" "help.text" msgid "<variable id=\"aggregate_head\"><link href=\"text/scalc/01/func_aggregate.xhp\">AGGREGATE</link></variable> function" -msgstr "<variable id=\"month\"><link href=\"text/scalc/01/func_month.xhp\">MONTH</link></variable>" +msgstr "<variable id=\"aggregate_head\"><link href=\"text/scalc/01/func_aggregate.xhp\">AGGREGATE</link></variable> funtzioa" #: func_aggregate.xhp msgctxt "" @@ -62923,13 +62853,12 @@ msgstr "" #: func_averageif.xhp -#, fuzzy msgctxt "" "func_averageif.xhp\n" "par_id2509201519225446\n" "help.text" msgid "<item type=\"input\">=AVERAGEIF(B2:B6;\"<35\")</item>" -msgstr "<item type=\"input\">=AVERAGE(A1:A50)</item>" +msgstr "<item type=\"input\">=AVERAGEIF(B2:B6;\"<35\")</item>" #: func_averageif.xhp msgctxt "" @@ -62940,13 +62869,12 @@ msgstr "" #: func_averageif.xhp -#, fuzzy msgctxt "" "func_averageif.xhp\n" "par_id250920151922590\n" "help.text" msgid "<item type=\"input\">=AVERAGEIF(B2:B6;\"<\"&MAX(B2:B6))</item>" -msgstr "<item type=\"input\">=AVERAGE(A1:A50)</item>" +msgstr "<item type=\"input\">=AVERAGEIF(B2:B6;\"<\"&MAX(B2:B6))</item>" #: func_averageif.xhp msgctxt "" @@ -62957,13 +62885,12 @@ msgstr "" #: func_averageif.xhp -#, fuzzy msgctxt "" "func_averageif.xhp\n" "par_id2509201519230832\n" "help.text" msgid "<item type=\"input\">=AVERAGEIF(B2:B6;\">\"&SMALL(B2:B6;1))</item>" -msgstr "<item type=\"input\">=AVERAGE(A1:A50)</item>" +msgstr "<item type=\"input\">=AVERAGEIF(B2:B6;\">\"&SMALL(B2:B6;1))</item>" #: func_averageif.xhp msgctxt "" @@ -62982,13 +62909,12 @@ msgstr "" #: func_averageif.xhp -#, fuzzy msgctxt "" "func_averageif.xhp\n" "par_id2509201519315584\n" "help.text" msgid "<item type=\"input\">=AVERAGEIF(B2:B6;\"<35\";C2:C6)</item>" -msgstr "<item type=\"input\">=AVERAGE(A1:A50)</item>" +msgstr "<item type=\"input\">=AVERAGEIF(B2:B6;\"<35\";C2:C6)</item>" #: func_averageif.xhp msgctxt "" @@ -62999,13 +62925,12 @@ msgstr "" #: func_averageif.xhp -#, fuzzy msgctxt "" "func_averageif.xhp\n" "par_id2509201519315535\n" "help.text" msgid "<item type=\"input\">=AVERAGEIF(B2:B6;\">\"&MIN(B2:B6);C2:C6)</item>" -msgstr "<item type=\"input\">=AVERAGE(A1:A50)</item>" +msgstr "<item type=\"input\">=AVERAGEIF(B2:B6;\">\"&MIN(B2:B6);C2:C6)</item>" #: func_averageif.xhp msgctxt "" @@ -63016,13 +62941,12 @@ msgstr "" #: func_averageif.xhp -#, fuzzy msgctxt "" "func_averageif.xhp\n" "par_id2509201519315547\n" "help.text" msgid "<item type=\"input\">=AVERAGEIF(B2:B6;\"<\"&LARGE(B2:B6;2);C2:C6)</item>" -msgstr "<item type=\"input\">=AVERAGE(A1:A50)</item>" +msgstr "<item type=\"input\">=AVERAGEIF(B2:B6;\"<\"&LARGE(B2:B6;2);C2:C6)</item>" #: func_averageif.xhp msgctxt "" @@ -63041,13 +62965,12 @@ msgstr "" #: func_averageif.xhp -#, fuzzy msgctxt "" "func_averageif.xhp\n" "par_id2509201519360514\n" "help.text" msgid "<item type=\"input\">=AVERAGEIF(A2:A6;\"pen\";B2:B6)</item>" -msgstr "<item type=\"input\">=AVERAGE(A1:A50)</item>" +msgstr "<item type=\"input\">=AVERAGEIF(A2:A6;\"pen\";B2:B6)</item>" #: func_averageif.xhp msgctxt "" @@ -63058,13 +62981,12 @@ msgstr "" #: func_averageif.xhp -#, fuzzy msgctxt "" "func_averageif.xhp\n" "par_id250920151936096\n" "help.text" msgid "<item type=\"input\">=AVERAGEIF(A2:A6;\"pen.*\";B2:B6)</item>" -msgstr "<item type=\"input\">=AVERAGE(A1:A50)</item>" +msgstr "<item type=\"input\">=AVERAGEIF(A2:A6;\"pen.*\";B2:B6)</item>" #: func_averageif.xhp msgctxt "" @@ -63075,13 +62997,12 @@ msgstr "" #: func_averageif.xhp -#, fuzzy msgctxt "" "func_averageif.xhp\n" "par_id2509201519361352\n" "help.text" msgid "<item type=\"input\">=AVERAGEIF(A2:A6;\".*book.*\";B2:B6)</item>" -msgstr "<item type=\"input\">=AVERAGE(A1:A50)</item>" +msgstr "<item type=\"input\">=AVERAGEIF(A2:A6;\".*book.*\";B2:B6)</item>" #: func_averageif.xhp msgctxt "" @@ -63108,13 +63029,12 @@ msgstr "" #: func_averageif.xhp -#, fuzzy msgctxt "" "func_averageif.xhp\n" "par_id134941261230060\n" "help.text" msgid "<item type=\"input\">=AVERAGEIF(A2:A6;\".*\"&E2&\".*\";B2:B6)</item>" -msgstr "<item type=\"input\">=AVERAGE(A1:A50)</item>" +msgstr "<item type=\"input\">=AVERAGEIF(A2:A6;\".*\"&E2&\".*\";B2:B6)</item>" #: func_averageif.xhp msgctxt "" @@ -63125,13 +63045,12 @@ msgstr "" #: func_averageif.xhp -#, fuzzy msgctxt "" "func_averageif.xhp\n" "par_id316901523627285\n" "help.text" msgid "<item type=\"input\">=AVERAGEIF(A2:A6;\"<\"&E2;B2:B6)</item>" -msgstr "<item type=\"input\">=AVERAGE(A1:A50)</item>" +msgstr "<item type=\"input\">=AVERAGEIF(A2:A6;\"<\"&E2;B2:B6)</item>" #: func_averageif.xhp msgctxt "" @@ -63273,13 +63192,12 @@ msgstr "" #: func_averageifs.xhp -#, fuzzy msgctxt "" "func_averageifs.xhp\n" "par_id24004653627203\n" "help.text" msgid "<item type=\"input\">=AVERAGEIFS(B2:B6;B2:B6;\">=20\")</item>" -msgstr "<item type=\"input\">=AVERAGE(A1:A50)</item>" +msgstr "<item type=\"input\">=AVERAGEIFS(B2:B6;B2:B6;\">=20\")</item>" #: func_averageifs.xhp msgctxt "" @@ -63290,13 +63208,12 @@ msgstr "" #: func_averageifs.xhp -#, fuzzy msgctxt "" "func_averageifs.xhp\n" "par_id30279247419921\n" "help.text" msgid "<item type=\"input\">=AVERAGEIFS(C2:C6;B2:B6;\">=20\";C2:C6;\">70\")</item>" -msgstr "<item type=\"input\">=AVERAGE(A1:A50)</item>" +msgstr "<item type=\"input\">=AVERAGEIFS(C2:C6;B2:B6;\">=20\";C2:C6;\">70\")</item>" #: func_averageifs.xhp msgctxt "" @@ -63493,13 +63410,12 @@ msgstr "" #: func_countifs.xhp -#, fuzzy msgctxt "" "func_countifs.xhp\n" "par_id15856592423333\n" "help.text" msgid "<item type=\"input\">=COUNTIFS(B2:B6;\">=20\")</item>" -msgstr "<item type=\"input\">=AVERAGE(A1:A50)</item>" +msgstr "<item type=\"input\">=COUNTIFS(B2:B6;\">=20\")</item>" #: func_countifs.xhp msgctxt "" @@ -63510,13 +63426,12 @@ msgstr "" #: func_countifs.xhp -#, fuzzy msgctxt "" "func_countifs.xhp\n" "par_id74301057922522\n" "help.text" msgid "<item type=\"input\">=COUNTIFS(B2:B6;\">=20\";C2:C6;\">70\")</item>" -msgstr "<item type=\"input\">=AVERAGE(A1:A50)</item>" +msgstr "<item type=\"input\">=COUNTIFS(B2:B6;\">=20\";C2:C6;\">70\")</item>" #: func_countifs.xhp msgctxt "" @@ -63535,13 +63450,12 @@ msgstr "" #: func_countifs.xhp -#, fuzzy msgctxt "" "func_countifs.xhp\n" "par_id22736248573471\n" "help.text" msgid "<item type=\"input\">=COUNTIFS(B2:B6;\"[:alpha:]*\")</item>" -msgstr "<item type=\"input\">=AVERAGE(A1:A50)</item>" +msgstr "<item type=\"input\">=COUNTIFS(B2:B6;\"[:alpha:]*\")</item>" #: func_countifs.xhp msgctxt "" @@ -63655,7 +63569,7 @@ "4\n" "help.text" msgid "<ahelp hid=\"HID_FUNC_DATUM\">This function calculates a date specified by year, month, day and displays it in the cell's formatting.</ahelp> The default format of a cell containing the DATE function is the date format, but you can format the cells with any other number format." -msgstr "<ahelp hid=\"HID_FUNC_DATUM\">Funtzio honek barne-funtzionamenduko serieko zenbaki bihurtzen du urtea, hilabetea, eguna formatuarekin idatzitako data bat, eta gelaxkaren formatuan bistaratzen du.</ahelp> DATE funtzioa daukan gelaxkaren formatu lehenetsia data-formatua da, baina <emph>0</emph> zenbaki-formatua ere eman diezaiekezu gelaxkei, eta orduan dataren barne-funtzionamenduko serieko zenbakia bistaratuko da zenbaki gisa." +msgstr "<ahelp hid=\"HID_FUNC_DATUM\">Funtzio honek urtea, hilabetea, eguna formatuarekin idatzitako data bat kalkulatzen du, eta gelaxkaren formatuan bistaratzen du.</ahelp> DATE funtzioa daukan gelaxkaren formatu lehenetsia data-formatua da, baina gelaxkei beste edozein zenbaki-formatu eman diezaiekezu." #: func_date.xhp msgctxt "" @@ -63760,7 +63674,7 @@ "hd_id3155511\n" "help.text" msgid "<variable id=\"datedif\"><link href=\"text/scalc/01/func_datedif.xhp\">DATEDIF</link></variable>" -msgstr "<variable id=\"date\"><link href=\"text/scalc/01/func_date.xhp\">DATE</link></variable>" +msgstr "<variable id=\"datedif\"><link href=\"text/scalc/01/func_datedif.xhp\">DATEDIF</link></variable>" #: func_datedif.xhp msgctxt "" @@ -64682,13 +64596,12 @@ msgstr "<bookmark_value>MINVERSE funtzioa</bookmark_value><bookmark_value>matrizearen alderantzizkoak</bookmark_value>" #: func_error_type.xhp -#, fuzzy msgctxt "" "func_error_type.xhp\n" "hd_id348223482234822\n" "help.text" msgid "<variable id=\"error_type_head\"><link href=\"text/scalc/01/func_error_type.xhp\">ERROR.TYPE</link></variable> function" -msgstr "<variable id=\"month\"><link href=\"text/scalc/01/func_month.xhp\">MONTH</link></variable>" +msgstr "<variable id=\"error_type_head\"><link href=\"text/scalc/01/func_error_type.xhp\">ERROR.TYPE</link></variable> funtzioa" #: func_error_type.xhp msgctxt "" @@ -65024,13 +64937,12 @@ msgstr "<bookmark_value>SUMIF funtzioa</bookmark_value><bookmark_value>batu;zehaztutako zenbakiak</bookmark_value>" #: func_imcos.xhp -#, fuzzy msgctxt "" "func_imcos.xhp\n" "hd_id90361032228870\n" "help.text" msgid "<variable id=\"imcos_head\"><link href=\"text/scalc/01/func_imcos.xhp\">IMCOS</link></variable> function" -msgstr "<variable id=\"second\"><link href=\"text/scalc/01/func_second.xhp\">SECOND</link></variable>" +msgstr "<variable id=\"imcos_head\"><link href=\"text/scalc/01/func_imcos.xhp\">IMCOS</link></variable> funtzioa" #: func_imcos.xhp msgctxt "" @@ -65090,13 +65002,12 @@ msgstr "<bookmark_value>DELTA funtzioa</bookmark_value><bookmark_value>ezagutu;zenbaki baliokideak</bookmark_value>" #: func_imcosh.xhp -#, fuzzy msgctxt "" "func_imcosh.xhp\n" "hd_id124691246912469\n" "help.text" msgid "<variable id=\"imcosh_head\"><link href=\"text/scalc/01/func_imcosh.xhp\">IMCOSH</link></variable> function" -msgstr "<variable id=\"month\"><link href=\"text/scalc/01/func_month.xhp\">MONTH</link></variable>" +msgstr "<variable id=\"imcosh_head\"><link href=\"text/scalc/01/func_imcosh.xhp\">IMCOSH</link></variable> funtzioa" #: func_imcosh.xhp msgctxt "" @@ -65156,13 +65067,12 @@ msgstr "<bookmark_value>FACT funtzioa</bookmark_value><bookmark_value>faktorialak;zenbakiak</bookmark_value>" #: func_imcot.xhp -#, fuzzy msgctxt "" "func_imcot.xhp\n" "hd_id763567635676356\n" "help.text" msgid "<variable id=\"imcot_head\"><link href=\"text/scalc/01/func_imcot.xhp\">IMCOT</link></variable> function" -msgstr "<variable id=\"month\"><link href=\"text/scalc/01/func_month.xhp\">MONTH</link></variable>" +msgstr "<variable id=\"imcot_head\"><link href=\"text/scalc/01/func_imcot.xhp\">IMCOT</link></variable> funtzioa" #: func_imcot.xhp msgctxt "" @@ -65230,13 +65140,12 @@ msgstr "<bookmark_value>MODE funtzioa</bookmark_value><bookmark_value>maiztasun handieneko balioa</bookmark_value>" #: func_imcsc.xhp -#, fuzzy msgctxt "" "func_imcsc.xhp\n" "hd_id931679316793167\n" "help.text" msgid "<variable id=\"imcsc_head\"><link href=\"text/scalc/01/func_imcsc.xhp\">IMCSC</link></variable> function" -msgstr "<variable id=\"time\"><link href=\"text/scalc/01/func_time.xhp\">TIME</link></variable>" +msgstr "<variable id=\"imcsc_head\"><link href=\"text/scalc/01/func_imcsc.xhp\">IMCSC</link></variable> funtzioa" #: func_imcsc.xhp msgctxt "" @@ -65304,13 +65213,12 @@ msgstr "<bookmark_value>ISERR funtzioa</bookmark_value><bookmark_value>errore-kodeak;kontrolatu</bookmark_value>" #: func_imcsch.xhp -#, fuzzy msgctxt "" "func_imcsch.xhp\n" "hd_id977779777797777\n" "help.text" msgid "<variable id=\"imcsch_head\"><link href=\"text/scalc/01/func_imcsch.xhp\">IMCSCH</link></variable> function" -msgstr "<variable id=\"time\"><link href=\"text/scalc/01/func_time.xhp\">TIME</link></variable>" +msgstr "<variable id=\"imcsch_head\"><link href=\"text/scalc/01/func_imcsch.xhp\">IMCSCH</link></variable> funtzioa" #: func_imcsch.xhp msgctxt "" @@ -65378,13 +65286,12 @@ msgstr "<bookmark_value>FACT funtzioa</bookmark_value><bookmark_value>faktorialak;zenbakiak</bookmark_value>" #: func_imsec.xhp -#, fuzzy msgctxt "" "func_imsec.xhp\n" "hd_id29384186273495\n" "help.text" msgid "<variable id=\"imsec_head\"><link href=\"text/scalc/01/func_imsec.xhp\">IMSEC</link></variable> function" -msgstr "<variable id=\"time\"><link href=\"text/scalc/01/func_time.xhp\">TIME</link></variable>" +msgstr "<variable id=\"imsec_head\"><link href=\"text/scalc/01/func_imsec.xhp\">IMSEC</link></variable> funtzioa" #: func_imsec.xhp msgctxt "" @@ -65452,13 +65359,12 @@ msgstr "<bookmark_value>ISERR funtzioa</bookmark_value><bookmark_value>errore-kodeak;kontrolatu</bookmark_value>" #: func_imsech.xhp -#, fuzzy msgctxt "" "func_imsech.xhp\n" "hd_id258933143113817\n" "help.text" msgid "<variable id=\"imsech_head\"><link href=\"text/scalc/01/func_imsech.xhp\">IMSECH</link></variable> function" -msgstr "<variable id=\"time\"><link href=\"text/scalc/01/func_time.xhp\">TIME</link></variable>" +msgstr "<variable id=\"imsech_head\"><link href=\"text/scalc/01/func_imsech.xhp\">IMSECH</link></variable> funtzioa" #: func_imsech.xhp msgctxt "" @@ -65526,13 +65432,12 @@ msgstr "<bookmark_value>SUMIF funtzioa</bookmark_value><bookmark_value>batu;zehaztutako zenbakiak</bookmark_value>" #: func_imsin.xhp -#, fuzzy msgctxt "" "func_imsin.xhp\n" "hd_id3192388765304\n" "help.text" msgid "<variable id=\"imsin_head\"><link href=\"text/scalc/01/func_imsin.xhp\">IMSIN</link></variable> function" -msgstr "<variable id=\"time\"><link href=\"text/scalc/01/func_time.xhp\">TIME</link></variable>" +msgstr "<variable id=\"imsin_head\"><link href=\"text/scalc/01/func_imsin.xhp\">IMSIN</link></variable> funtzioa" #: func_imsin.xhp msgctxt "" @@ -65600,13 +65505,12 @@ msgstr "<bookmark_value>DELTA funtzioa</bookmark_value><bookmark_value>ezagutu;zenbaki baliokideak</bookmark_value>" #: func_imsinh.xhp -#, fuzzy msgctxt "" "func_imsinh.xhp\n" "hd_id3192388765304\n" "help.text" msgid "<variable id=\"imsinh_head\"><link href=\"text/scalc/01/func_imsinh.xhp\">IMSINH</link></variable> function" -msgstr "<variable id=\"month\"><link href=\"text/scalc/01/func_month.xhp\">MONTH</link></variable>" +msgstr "<variable id=\"imsinh_head\"><link href=\"text/scalc/01/func_imsinh.xhp\">IMSINH</link></variable> funtzioa" #: func_imsinh.xhp msgctxt "" @@ -65683,13 +65587,12 @@ msgstr "<bookmark_value>SUMIF funtzioa</bookmark_value><bookmark_value>batu;zehaztutako zenbakiak</bookmark_value>" #: func_imtan.xhp -#, fuzzy msgctxt "" "func_imtan.xhp\n" "hd_id9522389621160\n" "help.text" msgid "<variable id=\"imtan_head\"><link href=\"text/scalc/01/func_imtan.xhp\">IMTAN</link></variable> function" -msgstr "<variable id=\"date\"><link href=\"text/scalc/01/func_date.xhp\">DATE</link></variable>" +msgstr "<variable id=\"imtan_head\"><link href=\"text/scalc/01/func_imtan.xhp\">IMTAN</link></variable> funtzioa" #: func_imtan.xhp msgctxt "" @@ -65757,33 +65660,30 @@ msgstr "<bookmark_value>WEEKNUM funtzioa</bookmark_value>" #: func_isoweeknum.xhp -#, fuzzy msgctxt "" "func_isoweeknum.xhp\n" "hd_id3159161\n" "54\n" "help.text" msgid "<variable id=\"isoweeknum\"><link href=\"text/scalc/01/func_isoweeknum.xhp\">ISOWEEKNUM</link></variable>" -msgstr "<variable id=\"weeknum\"><link href=\"text/scalc/01/func_weeknum.xhp\">WEEKNUM</link></variable>" +msgstr "<variable id=\"isoweeknum\"><link href=\"text/scalc/01/func_isoweeknum.xhp\">ISOWEEKNUM</link></variable>" #: func_isoweeknum.xhp -#, fuzzy msgctxt "" "func_isoweeknum.xhp\n" "par_id3149770\n" "55\n" "help.text" msgid "<ahelp hid=\"HID_FUNC_ISOWEEKNUM\">ISOWEEKNUM calculates the week number of the year for the internal date value.</ahelp>" -msgstr "<ahelp hid=\"HID_FUNC_KALENDERWOCHE\">WEEKNUM funtzioak urteko zenbatgarren astea den kalkulatzen du, barne-funtzionamenduko data-balio batentzat.</ahelp>" +msgstr "<ahelp hid=\"HID_FUNC_ISOWEEKNUM\">ISOWEEKNUM funtzioak urteko zenbatgarren astea den kalkulatzen du, barne-funtzionamenduko data-balio batentzat.</ahelp>" #: func_isoweeknum.xhp -#, fuzzy msgctxt "" "func_isoweeknum.xhp\n" "par_idN105E4\n" "help.text" msgid "The International Standard ISO 8601 has decreed that Monday shall be the first day of the week. A week that lies partly in one year and partly in another is assigned a number in the year in which most of its days lie. That means that week number 1 of any year is the week that contains the January 4th." -msgstr "ISO 8601 Nazioarteko Estandarrak agintzen du astelehenak izan behar duela asteko lehen eguna. Zati bat urte batekoa eta beste zatia beste urte batekoa dituen asteari zein zenbaki eman erabakitzeko, egun gehien zein urtetakoak dituen hartuko da kontuan. Hori horrela izanik, urte jakin bateko 1. astea urtarrilaren 4<emph>a</emph> daukan astea izango da." +msgstr "ISO 8601 Nazioarteko Estandarrak agintzen du astelehenak izan behar duela asteko lehen eguna. Zati bat urte batekoa eta beste zatia beste urte batekoa dituen asteari zein zenbaki eman erabakitzeko, egun gehien zein urtetakoak dituen hartuko da kontuan. Hori horrela izanik, urte jakin bateko 1. astea urtarrilaren 4a daukan astea izango da." #: func_isoweeknum.xhp #, fuzzy @@ -66059,7 +65959,7 @@ "241\n" "help.text" msgid "<ahelp hid=\"HID_AAI_FUNC_NETWORKDAYS\">Returns the number of workdays between a <emph>start date and an end date</emph>. Holidays can be deducted.</ahelp>" -msgstr "<ahelp hid=\"HID_AAI_FUNC_NETWORKDAYS\"><emph>Hasiera-data</emph> eta <emph>Amaiera-data</emph>ren arteko astegunen (lanegunen) kopurua izango da emaitza. Jaiegunak ken daitezke.</ahelp>" +msgstr "<ahelp hid=\"HID_AAI_FUNC_NETWORKDAYS\"><emph>Hasiera-data eta Amaiera-data</emph>ren arteko astegunen (lanegunen) kopurua izango da emaitza. Jaiegunak ken daitezke.</ahelp>" #: func_networkdays.xhp msgctxt "" @@ -66229,14 +66129,13 @@ msgstr "<bookmark_value>TIMEVALUE funtzioa</bookmark_value>" #: func_numbervalue.xhp -#, fuzzy msgctxt "" "func_numbervalue.xhp\n" "hd_id3145621\n" "18\n" "help.text" msgid "<variable id=\"datevalue\"> <link href=\"text/scalc/01/func_numbervalue.xhp\">NUMBERVALUE</link> </variable>" -msgstr "<variable id=\"datevalue\"><link href=\"text/scalc/01/func_datevalue.xhp\">DATEVALUE</link></variable>" +msgstr "<variable id=\"datevalue\"> <link href=\"text/scalc/01/func_numbervalue.xhp\">NUMBERVALUE</link> </variable>" #: func_numbervalue.xhp msgctxt "" @@ -66426,13 +66325,12 @@ msgstr "<bookmark_value>COMBIN funtzioa</bookmark_value><bookmark_value>errepikatu gabeko konbinazioak</bookmark_value>" #: func_sumifs.xhp -#, fuzzy msgctxt "" "func_sumifs.xhp\n" "hd_id658866588665886\n" "help.text" msgid "<variable id=\"sumifs_head\"><link href=\"text/scalc/01/func_sumifs.xhp\">SUMIFS</link></variable> function" -msgstr "<variable id=\"second\"><link href=\"text/scalc/01/func_second.xhp\">SECOND</link></variable>" +msgstr "<variable id=\"sumifs_head\"><link href=\"text/scalc/01/func_sumifs.xhp\">SUMIFS</link></variable> funtzioa" #: func_sumifs.xhp msgctxt "" @@ -66532,13 +66430,12 @@ msgstr "" #: func_sumifs.xhp -#, fuzzy msgctxt "" "func_sumifs.xhp\n" "par_id94321051525036\n" "help.text" msgid "<item type=\"input\">=SUMIFS(B2:B6;B2:B6;\">=20\")</item>" -msgstr "<item type=\"input\">=AVERAGE(A1:A50)</item>" +msgstr "<item type=\"input\">=SUMIFS(B2:B6;B2:B6;\">=20\")</item>" #: func_sumifs.xhp msgctxt "" @@ -66549,13 +66446,12 @@ msgstr "" #: func_sumifs.xhp -#, fuzzy msgctxt "" "func_sumifs.xhp\n" "par_id36952767622741\n" "help.text" msgid "<item type=\"input\">=SUMIFS(C2:C6;B2:B6;\">=20\";C2:C6;\">70\")</item>" -msgstr "<item type=\"input\">=AVERAGE(A1:A50)</item>" +msgstr "<item type=\"input\">=SUMIFS(C2:C6;B2:B6;\">=20\";C2:C6;\">70\")</item>" #: func_sumifs.xhp msgctxt "" @@ -66944,13 +66840,12 @@ 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 "" @@ -67243,7 +67138,7 @@ "171\n" "help.text" msgid "To obtain a function indicating whether a day in A1 is a business day, use the IF and WEEKDAY functions as follows: <br/>IF(WEEKDAY(A1;2)<6;\"Business day\";\"Weekend\")" -msgstr "A1 gelaxkako eguna laneguna den adierazten duen funtzio bat lortzeko, honela erabili behar dituzu IF eta WEEKDAY funtzioak: IF(WEEKDAY(A1;2)<;6;\"Laneguna\";\"Asteburua\")" +msgstr "A1 gelaxkako eguna laneguna den adierazten duen funtzio bat lortzeko, honela erabili behar dituzu IF eta WEEKDAY funtzioak: <br/> IF(WEEKDAY(A1;2)<;6;\"Laneguna\";\"Asteburua\")" #: func_weeknum.xhp msgctxt "" @@ -67503,24 +67398,22 @@ msgstr "<bookmark_value>WEEKNUM_ADD funtzioa</bookmark_value>" #: func_weeknum_ooo.xhp -#, fuzzy msgctxt "" "func_weeknum_ooo.xhp\n" "hd_id3159161\n" "54\n" "help.text" msgid "<variable id=\"weeknum_ooo\"><link href=\"text/scalc/01/func_weeknum_ooo.xhp\">WEEKNUM_OOO</link></variable>" -msgstr "<variable id=\"weeknumadd\"><link href=\"text/scalc/01/func_weeknumadd.xhp\">WEEKNUM_ADD</link></variable>" +msgstr "<variable id=\"weeknum_ooo\"><link href=\"text/scalc/01/func_weeknum_ooo.xhp\">WEEKNUM_OOO</link></variable>" #: func_weeknum_ooo.xhp -#, fuzzy msgctxt "" "func_weeknum_ooo.xhp\n" "par_id3149770\n" "55\n" "help.text" msgid "<ahelp hid=\"HID_FUNC_WEEKNUM_OOO\">WEEKNUM_OOO calculates the week number of the year for the internal date value.</ahelp>" -msgstr "<ahelp hid=\"HID_FUNC_KALENDERWOCHE\">WEEKNUM funtzioak urteko zenbatgarren astea den kalkulatzen du, barne-funtzionamenduko data-balio batentzat.</ahelp>" +msgstr "<ahelp hid=\"HID_FUNC_WEEKNUM_OOO\">WEEKNUM_OOO funtzioak urteko zenbatgarren astea den kalkulatzen du, barne-funtzionamenduko data-balio batentzat..</ahelp>" #: func_weeknum_ooo.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/eu/helpcontent2/source/text/scalc/02.po libreoffice-5.1.2~rc2/translations/source/eu/helpcontent2/source/text/scalc/02.po --- libreoffice-5.1.1~rc2/translations/source/eu/helpcontent2/source/text/scalc/02.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/eu/helpcontent2/source/text/scalc/02.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,17 +3,18 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2013-11-20 13:02+0100\n" -"PO-Revision-Date: 2011-12-23 15:29+0200\n" -"Last-Translator: Mikel <mikel@akaita.com>\n" +"POT-Creation-Date: 2015-04-22 23:39+0200\n" +"PO-Revision-Date: 2016-02-27 13:01+0000\n" +"Last-Translator: Osoitz <oelkoro@gmail.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: eu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "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: 1456578090.000000\n" #: 02130000.xhp msgctxt "" @@ -401,7 +402,7 @@ "par_id3153770\n" "help.text" msgid "<image id=\"img_id3147434\" src=\"cmd/sc_autosum.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3147434\">Icon</alt></image>" -msgstr "<image id=\"img_id3155131\" src=\"cmd/sc_zoomout.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3155131\">Ikonoa</alt></image>" +msgstr "<image id=\"img_id3147434\" src=\"cmd/sc_autosum.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3147434\">Ikonoa</alt></image>" #: 06030000.xhp msgctxt "" @@ -479,7 +480,7 @@ "par_id3153770\n" "help.text" msgid "<image id=\"img_id3145785\" src=\"sc/imglst/sc26049.png\" width=\"5.64mm\" height=\"5.64mm\"><alt id=\"alt_id3145785\">Icon</alt></image>" -msgstr "<image id=\"img_id3156422\" src=\"svx/res/nu01.png\" width=\"5.64mm\" height=\"5.64mm\"><alt id=\"alt_id3156422\">Ikonoa</alt></image>" +msgstr "<image id=\"img_id3145785\" src=\"sc/imglst/sc26049.png\" width=\"5.64mm\" height=\"5.64mm\"><alt id=\"alt_id3145785\">Ikonoa</alt></image>" #: 06040000.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/eu/helpcontent2/source/text/scalc/04.po libreoffice-5.1.2~rc2/translations/source/eu/helpcontent2/source/text/scalc/04.po --- libreoffice-5.1.1~rc2/translations/source/eu/helpcontent2/source/text/scalc/04.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/eu/helpcontent2/source/text/scalc/04.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\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:56+0000\n" -"Last-Translator: system user <>\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" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1431366982.000000\n" +"X-POOTLE-MTIME: 1457292356.000000\n" #: 01020000.xhp msgctxt "" @@ -375,14 +375,13 @@ 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 @@ 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 "" @@ -419,7 +417,7 @@ "113\n" "help.text" msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline>+Page Up" -msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Aukera</caseinline><defaultinline>Ktrl</defaultinline></switchinline>+O" +msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Aukera</caseinline><defaultinline>Alt</defaultinline></switchinline>+OrrGo" #: 01020000.xhp msgctxt "" @@ -437,7 +435,7 @@ "115\n" "help.text" msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline>+Page Down" -msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Aukera</caseinline><defaultinline>Ktrl</defaultinline></switchinline>+O" +msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Aukera</caseinline><defaultinline>Alt</defaultinline></switchinline>+OrrBeh" #: 01020000.xhp msgctxt "" @@ -1081,7 +1079,7 @@ "119\n" "help.text" msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline>+Up Arrow" -msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Aukera</caseinline><defaultinline>Ktrl</defaultinline></switchinline>+O" +msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Aukera</caseinline><defaultinline>Alt</defaultinline></switchinline>+Gora-gezia" #: 01020000.xhp msgctxt "" @@ -1313,7 +1311,7 @@ "178\n" "help.text" msgid "Using the pivot table" -msgstr "DatuPilotua erabiltzea" +msgstr "Taula dinamikoa erabiltzea" #: 01020000.xhp msgctxt "" @@ -1644,7 +1642,7 @@ "143\n" "help.text" msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline>+O" -msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Aukera</caseinline><defaultinline>Ktrl</defaultinline></switchinline>+O" +msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Aukera</caseinline><defaultinline>Alt</defaultinline></switchinline>+O" #: 01020000.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/eu/helpcontent2/source/text/scalc/05.po libreoffice-5.1.2~rc2/translations/source/eu/helpcontent2/source/text/scalc/05.po --- libreoffice-5.1.1~rc2/translations/source/eu/helpcontent2/source/text/scalc/05.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/eu/helpcontent2/source/text/scalc/05.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\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 14:53+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2016-02-26 13:49+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 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1429800802.000000\n" +"X-POOTLE-MTIME: 1456494591.000000\n" #: 02140000.xhp msgctxt "" @@ -1067,7 +1067,7 @@ "par_id8277230\n" "help.text" msgid "A1: 1 B1: <Empty> C1: =B1 (displays 0)" -msgstr "A1: 1 B1: <hutsa> C1: =B1 (0 bistaratzen du)" +msgstr "A1: 1 B1: <Empty> C1: =B1 (0 bistaratzen du)" #: empty_cells.xhp msgctxt "" @@ -1211,7 +1211,7 @@ "par_id2629474\n" "help.text" msgid "A1: <Empty>" -msgstr "A1: <hutsa>" +msgstr "A1: <Empty>" #: empty_cells.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/eu/helpcontent2/source/text/scalc/guide.po libreoffice-5.1.2~rc2/translations/source/eu/helpcontent2/source/text/scalc/guide.po --- libreoffice-5.1.1~rc2/translations/source/eu/helpcontent2/source/text/scalc/guide.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/eu/helpcontent2/source/text/scalc/guide.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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:56+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2016-03-21 14:37+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 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1431366990.000000\n" +"X-POOTLE-MTIME: 1458571043.000000\n" #: address_auto.xhp msgctxt "" @@ -171,7 +171,7 @@ "22\n" "help.text" msgid "$[officename] Calc automatically converts certain entries to dates. For example, the entry <emph>1.1</emph> may be interpreted as January 1 of the current year, according to the locale settings of your operating system, and then displayed according to the date format applied to the cell." -msgstr "$[officename] Calc-ek automatikoki bihurtzen ditu sarrera batzuk data-formatura. Adibide<, <emph>1.1</emph> sarrera aurtengo urtarrilaren 1a gisa interpreta daiteke, sistema-eragilearen ezarpen lokalen arabera, eta orduan dagokion data-formatua aplikatuko zaio gelaxkari." +msgstr "$[officename] Calc-ek automatikoki bihurtzen ditu sarrera batzuk data-formatura. Adibidez, <emph>1.1</emph> sarrera aurtengo urtarrilaren 1a gisa interpreta daiteke, sistema-eragilearen ezarpen lokalen arabera, eta orduan dagokion data-formatua aplikatuko zaio gelaxkari." #: auto_off.xhp msgctxt "" @@ -1253,7 +1253,7 @@ "16\n" "help.text" msgid "Experiment with some additional formulas: in A4 enter =A3*24 to calculate the hours, in A5 enter =A4*60 for the minutes, and in A6 enter =A5*60 for seconds. Press the <item type=\"keycode\">Enter</item> key after each formula." -msgstr "Egin proba formula hauekin: A4 gelaxkan sartu =A3*24 orduak kalkulatzeko; A5en sartu =A4*60 minutuak kalkulatzeko; eta A6n =A5*60 segundoak kalkulatzeko. Press the <item type=\"keycode\">Enter</item> key after each formula." +msgstr "Egin proba formula hauekin: A4 gelaxkan sartu =A3*24 orduak kalkulatzeko; A5en sartu =A4*60 minutuak kalkulatzeko; eta A6n =A5*60 segundoak kalkulatzeko. Sakatu <item type=\"keycode\">Sartu</item> tekla formula bakoitzaren ondoren." #: calc_date.xhp msgctxt "" @@ -1772,7 +1772,7 @@ "5\n" "help.text" msgid "<variable id=\"cell_protect\"><link href=\"text/scalc/guide/cell_protect.xhp\" name=\"Protecting Cells from Changes\">Protecting Cells from Changes</link></variable>" -msgstr "<variable id=\"cell_unprotect\"><link href=\"text/scalc/guide/cell_unprotect.xhp\" name=\"Gelaxkei babesa kentzea\">Gelaxkei babesa kentzea</link></variable>" +msgstr "<variable id=\"cell_protect\"><link href=\"text/scalc/guide/cell_protect.xhp\" name=\"Gelaxkak aldaketetatik babestea\">Gelazkak aldaketetatik babestea</link></variable>" #: cell_protect.xhp msgctxt "" @@ -3081,7 +3081,7 @@ "7\n" "help.text" msgid "Choose <item type=\"menuitem\">Data - Consolidate</item> to open the <emph>Consolidate</emph> dialog." -msgstr "<emph>Kontsolidatu</emph> elkarrizketa-koadroa irekitzeko, hautatu <item type=\"menuitem\">Datuak - Kontsolidatu</item>." +msgstr "Hautatu <item type=\"menuitem\">Datuak - Kontsolidatu</item>, <emph>Kontsolidatu</emph> elkarrizketa-koadroa irekitzeko." #: consolidate.xhp msgctxt "" @@ -3607,7 +3607,7 @@ "6\n" "help.text" msgid "Choose <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME Calc - View</emph>." -msgstr "Zerrenda atzekoz aurrera bistaratzeko, sakatu <switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ktrl</defaultinline></switchinline>+Maius+Tab." +msgstr "Hautatu <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Hobespenak</caseinline><defaultinline>Tresnak - Aukerak</defaultinline></switchinline> - %PRODUCTNAME Calc - Ikusi</emph>." #: csv_formula.xhp msgctxt "" @@ -3661,7 +3661,7 @@ "23\n" "help.text" msgid "From the <emph>Export of text files</emph> dialog that appears, select the character set and the field and text delimiters for the data to be exported, and confirm with <emph>OK</emph>." -msgstr "<emph>Testu-esportazioa</emph>ren elkarrizketa-koadroa irekitzen denean, hautatu esportatu behar diren datuen karaktere-jokoa eta eremu- eta testu-bereizleak. Ondoren, berretsi Ados botoian klik eginez." +msgstr "<emph>Testu-esportazioa</emph>ren elkarrizketa-koadroa irekitzen denean, hautatu esportatu behar diren datuen karaktere-jokoa eta eremu- eta testu-bereizleak. Ondoren, berretsi <emph>Ados</emph> botoian klik eginez." #: csv_formula.xhp msgctxt "" @@ -3785,7 +3785,7 @@ "53\n" "help.text" msgid "<link href=\"text/shared/01/05020300.xhp\" name=\"Format - Cells - Numbers\">Format - Cells - Numbers</link>" -msgstr "<link href=\"text/shared/01/05340300.xhp\" name=\"Formatua - Gelaxkak - Lerrokatzea\">Formatua - Gelaxkak - Lerrokatzea</link>" +msgstr "<link href=\"text/shared/01/05020300.xhp\" name=\"Formatua - Gelazkak - Zenbakiak\">Formatua - Gelaxkak - Zenbakiak</link>" #: database_define.xhp msgctxt "" @@ -4098,7 +4098,7 @@ "44\n" "help.text" msgid "<variable id=\"database_sort\"><link href=\"text/scalc/guide/database_sort.xhp\" name=\"Sorting Database Ranges\">Sorting Data</link></variable>" -msgstr "<variable id=\"database_define\"><link href=\"text/scalc/guide/database_define.xhp\" name=\"Datu-baseen area bat definitzea\">Datu-baseen area bat definitzea</link></variable>" +msgstr "<variable id=\"database_sort\"><link href=\"text/scalc/guide/database_sort.xhp\" name=\"Data-basearen areak ordenatzea\">Datuak ordenatzea</link></variable>" #: database_sort.xhp msgctxt "" @@ -4163,7 +4163,7 @@ "tit\n" "help.text" msgid "Pivot Table" -msgstr "Errotazio-taulak" +msgstr "Taula dinamikoa" #: datapilot.xhp msgctxt "" @@ -4171,7 +4171,7 @@ "bm_id3150448\n" "help.text" msgid "<bookmark_value>pivot table function; introduction</bookmark_value><bookmark_value>DataPilot, see pivot table function</bookmark_value>" -msgstr "<bookmark_value>DatuPilotuaren funtzioa; sarrera</bookmark_value><bookmark_value>Taula dinamikoa, ikus DatuPilotuaren funtzioa</bookmark_value>" +msgstr "<bookmark_value>taula dinamikoaren funtzioa; sarrera</bookmark_value><bookmark_value>DatuPilotua, ikus taula dinamikoaren funtzioa</bookmark_value>" #: datapilot.xhp msgctxt "" @@ -4180,7 +4180,7 @@ "7\n" "help.text" msgid "<variable id=\"datapilot\"><link href=\"text/scalc/guide/datapilot.xhp\" name=\"Pivot Table\">Pivot Table</link></variable>" -msgstr "<variable id=\"datapilot\"><link href=\"text/scalc/guide/datapilot.xhp\" name=\"DatuPilotua\">DatuPilotua</link></variable>" +msgstr "<variable id=\"datapilot\"><link href=\"text/scalc/guide/datapilot.xhp\" name=\"Taula dinamikoa\">Taula dinamikoa</link></variable>" #: datapilot.xhp msgctxt "" @@ -4189,7 +4189,7 @@ "2\n" "help.text" msgid "The <emph>pivot table</emph> (formerly known as <emph>DataPilot</emph>) allows you to combine, compare, and analyze large amounts of data. You can view different summaries of the source data, you can display the details of areas of interest, and you can create reports." -msgstr "<emph>DatuPilotua</emph> (batzuetan <emph>Taula dinamikoa</emph> esaten zaio) erabil dezakezu datu kopuru handiak konbinatzeko, konparatzeko eta aztertzeko. Iturburu-datuen laburpenak ikus ditzakezu, interesatzen zaizkizun areen xehetasunak bistaratu, eta txostenak sortu ere bai." +msgstr "<emph>Taula dinamikoa</emph> (lehen <emph>DatuPilotu</emph> esaten zitzaion) erabil dezakezu datu kopuru handiak konbinatzeko, konparatzeko eta aztertzeko. Iturburu-datuen laburpenak ikus ditzakezu, interesatzen zaizkizun areen xehetasunak bistaratu, eta txostenak sortu ere bai." #: datapilot.xhp msgctxt "" @@ -4198,7 +4198,7 @@ "9\n" "help.text" msgid "A table that has been created as a <link href=\"text/scalc/01/12090000.xhp\" name=\"pivot table\">pivot table</link> is an interactive table. Data can be arranged, rearranged or summarized according to different points of view." -msgstr "<link href=\"text/scalc/01/12090000.xhp\" name=\"DatuPilotua\">DatuPilotua</link>rekin sortutako taula interaktiboa izaten da. Datuak antolatu, berrantolatu edo laburtu daitezke, ikuspuntu desberdinen arabera." +msgstr "<link href=\"text/scalc/01/12090000.xhp\" name=\"taula dinamikoa\">Taula dinamiko</link> gisa sortutako taula bat interaktiboa da. Datuak antolatu, berrantolatu edo laburtu daitezke, ikuspuntu desberdinen arabera." #: datapilot_createtable.xhp msgctxt "" @@ -4206,7 +4206,7 @@ "tit\n" "help.text" msgid "Creating Pivot Tables" -msgstr "DatuPilotuaren taulak sortzea" +msgstr "Taula dinamikoak sortzea" #: datapilot_createtable.xhp msgctxt "" @@ -4214,7 +4214,7 @@ "bm_id3148491\n" "help.text" msgid "<bookmark_value>pivot tables</bookmark_value> <bookmark_value>pivot table function; calling up and applying</bookmark_value>" -msgstr "<bookmark_value>formula-barra; sarrerak bertan behera uztea</bookmark_value><bookmark_value>funtzioak; sarrera bertan behera uzteko ikonoa</bookmark_value>" +msgstr "<bookmark_value>taula dinamikoak</bookmark_value> <bookmark_value>taula dinamikoen funtzioa; deitu eta aplikatu</bookmark_value>" #: datapilot_createtable.xhp msgctxt "" @@ -4223,7 +4223,7 @@ "7\n" "help.text" msgid "<variable id=\"datapilot_createtable\"><link href=\"text/scalc/guide/datapilot_createtable.xhp\" name=\"Creating Pivot Tables\">Creating Pivot Tables</link></variable>" -msgstr "<variable id=\"datapilot_createtable\"><link href=\"text/scalc/guide/datapilot_createtable.xhp\" name=\"DatuPilotuaren taulak sortzea\">DatuPilotuaren taulak sortzea</link></variable>" +msgstr "<variable id=\"datapilot_createtable\"><link href=\"text/scalc/guide/datapilot_createtable.xhp\" name=\"Taula dinamikoak sortzea\">Taula dinamikoak sortzea</link></variable>" #: datapilot_createtable.xhp msgctxt "" @@ -4241,7 +4241,7 @@ "9\n" "help.text" msgid "Choose <emph>Data - Pivot Table - Create</emph>. The <emph>Select Source</emph> dialog appears. Choose <emph>Current selection</emph> and confirm with <emph>OK</emph>. The table headings are shown as buttons in the <emph>Pivot Table</emph> dialog. Drag these buttons as required and drop them into the layout areas \"Page Fields\", \"Column Fields\", \"Row Fields\" and \"Data Fields\"." -msgstr "Aukeratu <emph>Datuak - DatuPilotua - Hasi</emph>. <emph>Hautatu iturburua</emph> izeneko elkarrizketa-koadroa agertuko da. Aukeratu <emph>Uneko hautapena</emph> eta berretsi <emph>Ados</emph> sakatuz. Taula-izenburuak botoi gisa erakusten dira <emph>DatuPilotua</emph>ren elkarrizketa-koadroan. Arrastatu botoiak eskatu bezala, eta arrastatu \"Orrialde-eremuak\", \"Zutabe-eremuak\", \"Errenkada-eremuak\" eta \"Datu-eremuak\" diseinu-areetara." +msgstr "Aukeratu <emph>Datuak - Taula dinamikoa - Sortu</emph>. <emph>Hautatu iturburua</emph> izeneko elkarrizketa-koadroa agertuko da. Aukeratu <emph>Uneko hautapena</emph> eta berretsi <emph>Ados</emph> sakatuz. Taula-izenburuak botoi gisa erakusten dira <emph>Taula dinamikoa</emph>ren elkarrizketa-koadroan. Arrastatu botoiak eskatu bezala, eta arrastatu \"Orrialde-eremuak\", \"Zutabe-eremuak\", \"Errenkada-eremuak\" eta \"Datu-eremuak\" diseinu-areetara." #: datapilot_createtable.xhp msgctxt "" @@ -4258,7 +4258,7 @@ "par_id7599414\n" "help.text" msgid "Drag a button to the <emph>Page Fields</emph> area to create a button and a listbox on top of the generated pivot table. The listbox can be used to filter the pivot table by the contents of the selected item. You can use drag-and-drop within the generated pivot table to use another page field as a filter." -msgstr "Botoi bat eta zerrenda-koadro bat ipintzeko sortutako datu-pilotuaren taularen gainean, arrastatu botoi bat <emph>Orrialde-eremuak</emph> areara. Hautatutako elementuaren edukiaren arabera DatuPilotuaren taula iragazteko erabil daiteke zerrenda-koadroa. Arrastatu eta jaregin erabil dezakezu sortutako DatuPilotuaren taulan beste orrialde-eremu bat iragazki gisa erabiltzeko." +msgstr "Botoi bat eta zerrenda-koadro bat ipintzeko sortutako taula dinamikoren gainean, arrastatu botoi bat <emph>Orrialde-eremuak</emph> areara. Hautatutako elementuaren edukiaren arabera taula dinamikoa iragazteko erabil daiteke zerrenda-koadroa. Arrastatu eta jaregin erabil dezakezu sortutako taula dinamikoan beste orrialde-eremu bat iragazki gisa erabiltzeko." #: datapilot_createtable.xhp msgctxt "" @@ -4321,7 +4321,7 @@ "18\n" "help.text" msgid "Exit the Pivot Table dialog by pressing OK. A <emph>Filter</emph> button will now be inserted, or a page button for every data field that you dropped in the <emph>Page Fields</emph> area. The pivot table is inserted further down." -msgstr "Irten DatuPilotuaren elkarrizketa-koadrotik Ados botoian klik eginez. <emph>Iragazkia</emph> izeneko botoi bat txertatuko da, edo orrialde-botoi bat <emph>Orrialde-eremu</emph>en arean jaregindako datu-eremu bakoitzarentzat. DatuPilotuaren taula beherago txertatuko da." +msgstr "Irten taula dinamikoaren elkarrizketa-koadrotik Ados botoian klik eginez. <emph>Iragazkia</emph> izeneko botoi bat txertatuko da, edo orrialde-botoi bat <emph>Orrialde-eremu</emph>en arean jaregindako datu-eremu bakoitzarentzat. Taula dinamikoa beherago txertatuko da." #: datapilot_deletetable.xhp msgctxt "" @@ -4329,7 +4329,7 @@ "tit\n" "help.text" msgid "Deleting Pivot Tables" -msgstr "DatuPilotuaren taulak ezabatzea" +msgstr "Taula dinamikoak ezabatzea" #: datapilot_deletetable.xhp msgctxt "" @@ -4337,7 +4337,7 @@ "bm_id3153726\n" "help.text" msgid "<bookmark_value>pivot table function; deleting tables</bookmark_value> <bookmark_value>deleting;pivot tables</bookmark_value>" -msgstr "<bookmark_value>taulak; batzea</bookmark_value><bookmark_value>batu; taulak</bookmark_value>" +msgstr "<bookmark_value>taula dinamikoen funtzioa; taulak ezabatzea</bookmark_value> <bookmark_value>ezabatzea;taula dinamikoak</bookmark_value>" #: datapilot_deletetable.xhp msgctxt "" @@ -4346,7 +4346,7 @@ "31\n" "help.text" msgid "<variable id=\"datapilot_deletetable\"><link href=\"text/scalc/guide/datapilot_deletetable.xhp\" name=\"Deleting Pivot Tables\">Deleting Pivot Tables</link></variable>" -msgstr "<variable id=\"datapilot_deletetable\"><link href=\"text/scalc/guide/datapilot_deletetable.xhp\" name=\"DatuPilotuaren taulak ezabatzea\">DatuPilotuaren taulak ezabatzea</link></variable>" +msgstr "<variable id=\"datapilot_deletetable\"><link href=\"text/scalc/guide/datapilot_deletetable.xhp\" name=\"Taula dinamikoakk ezabatzea\">Taula dinamikoak ezabatzea</link></variable>" #: datapilot_deletetable.xhp msgctxt "" @@ -4355,7 +4355,7 @@ "32\n" "help.text" msgid "In order to delete a pivot table, click any cell in the pivot table, then choose <emph>Delete</emph> in the context menu." -msgstr "DatuPilotuaren taula bat ezabatu nahi izanez gero, hautatu taulako edozein gelaxka eta ondoren aukeratu <emph>Ezabatu</emph> laster-menuan." +msgstr "Taula dinamiko bat ezabatu nahi izanez gero, hautatu taulako edozein gelaxka eta ondoren aukeratu <emph>Ezabatu</emph> laster-menuan." #: datapilot_edittable.xhp msgctxt "" @@ -4363,7 +4363,7 @@ "tit\n" "help.text" msgid "Editing Pivot Tables" -msgstr "DatuPilotuaren taulak editatzea" +msgstr "Taula dinamikoak editatzea" #: datapilot_edittable.xhp msgctxt "" @@ -4371,7 +4371,7 @@ "bm_id3148663\n" "help.text" msgid "<bookmark_value>pivot table function; editing tables</bookmark_value><bookmark_value>editing;pivot tables</bookmark_value>" -msgstr "<bookmark_value>objektuak; editatu</bookmark_value><bookmark_value>editatu; objektuak</bookmark_value>" +msgstr "<bookmark_value>taula dinamikoaren funtzioa; taulak editatzea</bookmark_value><bookmark_value>editatzea;taula dinamikoak</bookmark_value>" #: datapilot_edittable.xhp msgctxt "" @@ -4380,7 +4380,7 @@ "25\n" "help.text" msgid "<variable id=\"datapilot_edittable\"><link href=\"text/scalc/guide/datapilot_edittable.xhp\" name=\"Editing Pivot Tables\">Editing Pivot Tables</link></variable>" -msgstr "<variable id=\"datapilot_edittable\"><link href=\"text/scalc/guide/datapilot_edittable.xhp\" name=\"DatuPilotuaren taulak editatzea\">DatuPilotuaren taulak editatzea</link></variable>" +msgstr "<variable id=\"datapilot_edittable\"><link href=\"text/scalc/guide/datapilot_edittable.xhp\" name=\"Taula dinamikoak editatzea\">Taula dinamikoak editatzea</link></variable>" #: datapilot_edittable.xhp msgctxt "" @@ -4389,7 +4389,7 @@ "26\n" "help.text" msgid "Click one of the buttons in the pivot table and hold the mouse button down. A special symbol will appear next to the mouse pointer." -msgstr "DatuPilotuak sortutako taulako botoi batean klik egin eta mantendu sakatua saguaren botoia. Ikur berezi bat agertuko da saguaren erakuslearen ondoan." +msgstr "Taula dinamikoaren botoi batean klik egin eta mantendu sakatua saguaren botoia. Ikur berezi bat agertuko da saguaren erakuslearen ondoan." #: datapilot_edittable.xhp msgctxt "" @@ -4406,7 +4406,7 @@ "par_id1648915\n" "help.text" msgid "In the Pivot Table dialog, you can drag a button to the <emph>Page Fields</emph> area to create a button and a listbox on top of the pivot table. The listbox can be used to filter the pivot table by the contents of the selected item. You can use drag-and-drop within the pivot table to use another page field as a filter." -msgstr "Botoi bat eta zerrenda-koadro bat ipintzeko sortutako DatuPilotuaren taularen gainean, arrastatu botoi bat <emph>Orrialde-eremuak</emph> areara, DatuPilotuaren elkarrizketa-koadroan. Hautatutako elementuaren edukiaren arabera DatuPilotuaren taula iragazteko erabil daiteke zerrenda-koadroa. Arrastatu eta jaregin erabil dezakezu sortutako DatuPilotuaren taulan beste orrialde-eremu bat iragazki gisa erabiltzeko." +msgstr "Botoi bat eta zerrenda-koadro bat ipintzeko sortutako taula dinamikoren gainean, arrastatu botoi bat <emph>Orrialde-eremuak</emph> areara. Hautatutako elementuaren edukiaren arabera taula dinamikoa iragazteko erabil daiteke zerrenda-koadroa. Arrastatu eta jaregin erabil dezakezu sortutako taula dinamikoan beste orrialde-eremu bat iragazki gisa erabiltzeko." #: datapilot_edittable.xhp msgctxt "" @@ -4415,7 +4415,7 @@ "29\n" "help.text" msgid "To remove a button from the table, just drag it out of the pivot table. Release the mouse button when the mouse pointer positioned within the sheet has become a 'not allowed' icon. The button is deleted." -msgstr "Taulatik botoi bat kentzeko, arrastatu DatuPilotuaren taulatik kanpora. Saguaren erakuslea 'debeku' ikono bihurtzen denean, askatu saguaren botoia. Botoia ezabatu egingo da." +msgstr "Taulatik botoi bat kentzeko, arrastatu taula dinamotik kanpora. Saguaren erakuslea 'debeku' ikono bihurtzen denean, askatu saguaren botoia. Botoia ezabatu egingo da." #: datapilot_edittable.xhp msgctxt "" @@ -4424,7 +4424,7 @@ "40\n" "help.text" msgid "To edit the pivot table, click a cell inside the pivot table and open the context menu. In the context menu you find the command <emph>Edit Layout</emph>, which displays the <emph>Pivot Table</emph> dialog for the current pivot table." -msgstr "DatuPilotuaren taula editatzeko, egin klik DatuPilotuaren taularen barruko gelaxka batean eta ireki laster-menua. Laster-menuan <emph>Hasi </emph> komandoa aurkituko duzu; uneko DatuPilotuaren taularen <emph>DatuPilotua</emph> elkarrizketa-koadroa irekitzen du." +msgstr "Taula dinamikoa editatzeko, egin klik taula dinamikoaren barruko gelaxka batean eta ireki laster-menua. Laster-menuan <emph>Editatu diseinua</emph> komandoa aurkituko duzu; uneko taula dinamikoaren <emph>Taula dinamikoa</emph> elkarrizketa-koadroa irekitzen du." #: datapilot_edittable.xhp msgctxt "" @@ -4448,7 +4448,7 @@ "tit\n" "help.text" msgid "Filtering Pivot Tables" -msgstr "DatuPilotuaren taulak iragaztea" +msgstr "Taula dinamikoak iragaztea" #: datapilot_filtertable.xhp msgctxt "" @@ -4456,7 +4456,7 @@ "bm_id3150792\n" "help.text" msgid "<bookmark_value>pivot table function; filtering tables</bookmark_value><bookmark_value>filtering;pivot tables</bookmark_value>" -msgstr "<bookmark_value>taulak; batzea</bookmark_value><bookmark_value>batu; taulak</bookmark_value>" +msgstr "<bookmark_value>taula dinamikoaren funtzioa; taulak iragaztea</bookmark_value><bookmark_value>iragaztea;taula dinamikoak</bookmark_value>" #: datapilot_filtertable.xhp msgctxt "" @@ -4464,7 +4464,7 @@ "hd_id3150792\n" "help.text" msgid "<variable id=\"datapilot_filtertable\"><link href=\"text/scalc/guide/datapilot_filtertable.xhp\" name=\"Filtering Pivot Tables\">Filtering Pivot Tables</link></variable>" -msgstr "<variable id=\"datapilot_filtertable\"><link href=\"text/scalc/guide/datapilot_filtertable.xhp\" name=\"DatuPilotuaren taulak iragaztea\">DatuPilotuaren taulak iragaztea</link></variable>" +msgstr "<variable id=\"datapilot_filtertable\"><link href=\"text/scalc/guide/datapilot_filtertable.xhp\" name=\"Taula dinamikoak iragaztea\">Taula dinamikoak iragaztea</link></variable>" #: datapilot_filtertable.xhp msgctxt "" @@ -4472,7 +4472,7 @@ "par_id3153192\n" "help.text" msgid "You can use filters to remove unwanted data from a pivot table." -msgstr "Iragazkiak erabil ditzakezu nahi ez dituzun datuak kentzeko DatuPilotuaren taulatik." +msgstr "Iragazkiak erabil ditzakezu nahi ez dituzun datuak kentzeko taula dinamikotik." #: datapilot_filtertable.xhp msgctxt "" @@ -4480,7 +4480,7 @@ "par_id3150441\n" "help.text" msgid "Click the <emph>Filter</emph> button in the sheet to call up the dialog for the filter conditions. Alternatively, call up the context menu of the pivot table and select the <emph>Filter</emph> command. The <link href=\"text/scalc/01/12090103.xhp\" name=\"Filter\"><emph>Filter</emph></link> dialog appears. Here you can filter the pivot table." -msgstr "Iragazteko baldintzen elkarrizketa-koadroa irekitzeko, egin klik orriko <emph>Iragazkia</emph> botoian. Bestela, DatuPilotuaren taularen laster-menua ireki dezakezu, eta <emph>Iragazkia</emph> komandoa hautatu. <link href=\"text/scalc/01/12090103.xhp\" name=\"Iragazkia\"><emph>Iragazkia</emph></link> elkarrizketa-koadroa irekiko da. DatuPilotuaren taula iragazi ahal izango duzu bertan." +msgstr "Iragazteko baldintzen elkarrizketa-koadroa irekitzeko, egin klik orriko <emph>Iragazkia</emph> botoian. Bestela, taula dinamikoaren laster-menua ireki dezakezu, eta <emph>Iragazkia</emph> komandoa hautatu. <link href=\"text/scalc/01/12090103.xhp\" name=\"Iragazkia\"><emph>Iragazkia</emph></link> elkarrizketa-koadroa irekiko da. Taula dinamikoa iragazi ahal izango duzu bertan." #: datapilot_filtertable.xhp msgctxt "" @@ -4544,7 +4544,7 @@ "par_id0720201001344584\n" "help.text" msgid "To edit the custom sort lists, open <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME Calc - Sort Lists." -msgstr "Zerrenda atzekoz aurrera bistaratzeko, sakatu <switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ktrl</defaultinline></switchinline>+Maius+Tab." +msgstr "Ordenatze-zerrenda pertsonalizatuak editatzeko, ireki <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Hobespenak</caseinline><defaultinline>Tresnak - Aukerak</defaultinline></switchinline> - %PRODUCTNAME Calc - Ordenatze-zerrendak." #: datapilot_filtertable.xhp msgctxt "" @@ -4568,7 +4568,7 @@ "tit\n" "help.text" msgid "Grouping Pivot Tables" -msgstr "DatuPilotuaren taulak elkartzea" +msgstr "Taula dinamikoak elkartzea" #: datapilot_grouping.xhp msgctxt "" @@ -4576,7 +4576,7 @@ "bm_id4195684\n" "help.text" msgid "<bookmark_value>grouping; pivot tables</bookmark_value><bookmark_value>pivot table function;grouping table entries</bookmark_value><bookmark_value>ungrouping entries in pivot tables</bookmark_value>" -msgstr "<bookmark_value>elkartzea; DatuPilotuaren taulak</bookmark_value><bookmark_value>DatuPilotuaren funtzioa;taula-sarrerak elkartu</bookmark_value><bookmark_value>DatuPilotuaren tauletako sarrerak banandu</bookmark_value>" +msgstr "<bookmark_value>elkartzea; taula dinamikoak</bookmark_value><bookmark_value>taula dinamikoen funtzioa;taula-sarrerak elkartu</bookmark_value><bookmark_value>taula dinamikoetako sarrerak banandu</bookmark_value>" #: datapilot_grouping.xhp msgctxt "" @@ -4584,7 +4584,7 @@ "par_idN10643\n" "help.text" msgid "<variable id=\"datapilot_grouping\"><link href=\"text/scalc/guide/datapilot_grouping.xhp\">Grouping Pivot Tables</link></variable>" -msgstr "<variable id=\"datapilot_grouping\"><link href=\"text/scalc/guide/datapilot_grouping.xhp\">DatuPilotuaren taulak elkartzea</link></variable>" +msgstr "<variable id=\"datapilot_grouping\"><link href=\"text/scalc/guide/datapilot_grouping.xhp\"> Taula dinamikoak elkartzea</link></variable>" #: datapilot_grouping.xhp msgctxt "" @@ -4592,7 +4592,7 @@ "par_idN10661\n" "help.text" msgid "The resulting pivot table can contain many different entries. By grouping the entries, you can improve the visible result." -msgstr "Sortzen den DatuPilotuaren taulak era askotako sarrera ugari izan ditzake. Sarrerak elkartuz, ikusten den emaitza hobetu ahal izango duzu." +msgstr "Sortzen den taula dinamikoak era askotako sarrera ugari izan ditzake. Sarrerak elkartuz, ikusten den emaitza hobetu ahal izango duzu." #: datapilot_grouping.xhp msgctxt "" @@ -4600,7 +4600,7 @@ "par_idN10667\n" "help.text" msgid "Select a cell or range of cells in the pivot table." -msgstr "Hautatu gelaxka bat edo gelaxka-area bat DatuPilotuaren taulan." +msgstr "Hautatu gelaxka bat edo gelaxka-area bat taula dinamikoan." #: datapilot_grouping.xhp msgctxt "" @@ -4616,7 +4616,7 @@ "par_idN1066E\n" "help.text" msgid "Depending on the format of the selected cells, either a new group field is added to the pivot table, or you see one of the two <link href=\"text/scalc/01/12090400.xhp\">Grouping</link> dialogs, either for numeric values, or for date values." -msgstr "Hautatutako gelaxken formatuaren arabera, talde-eremu bat gehitzen da DatuPilotuaren taulan, edo, bestela, <link href=\"text/scalc/01/12090400.xhp\">Elkartzeko</link> bi elkarrizketa-koadroetako bat ikusiko duzu: zenbakizko balioena edo data-balioena." +msgstr "Hautatutako gelaxken formatuaren arabera, talde-eremu bat gehitzen da taula dinamikoan, edo, bestela, <link href=\"text/scalc/01/12090400.xhp\">Elkartzeko</link> bi elkarrizketa-koadroetako bat ikusiko duzu: zenbakizko balioena edo data-balioena." #: datapilot_grouping.xhp msgctxt "" @@ -4624,7 +4624,7 @@ "par_id3328653\n" "help.text" msgid "The pivot table must be organized in a way that grouping can be applied." -msgstr "Elkartzeko funtzioa aplikatzeko moduan egon behar du antolatuta DatuPilotuaren taulak." +msgstr "Elkartzeko funtzioa aplikatzeko moduan egon behar du antolatuta taula dinamikoak." #: datapilot_grouping.xhp msgctxt "" @@ -4640,7 +4640,7 @@ "tit\n" "help.text" msgid "Selecting Pivot Table Output Ranges" -msgstr "DatuPilotuaren emaitza-areak hautatzea" +msgstr "Taula dinamikoaren emaitza-areak hautatzea" #: datapilot_tipps.xhp msgctxt "" @@ -4648,7 +4648,7 @@ "bm_id3148663\n" "help.text" msgid "<bookmark_value>pivot table function; preventing data overwriting</bookmark_value><bookmark_value>output ranges of pivot tables</bookmark_value>" -msgstr "<bookmark_value>DatuPilotuaren funtzioa; datuak aldatzea eragotzi</bookmark_value><bookmark_value>DatuPilotuaren emaitza-areak </bookmark_value>" +msgstr "<bookmark_value>taula dinamikoaren funtzioa; datuak aldatzea eragotzi</bookmark_value><bookmark_value>taula dinamikoaren emaitza-areak </bookmark_value>" #: datapilot_tipps.xhp msgctxt "" @@ -4657,7 +4657,7 @@ "19\n" "help.text" msgid "<variable id=\"datapilot_tipps\"><link href=\"text/scalc/guide/datapilot_tipps.xhp\" name=\"Selecting Pivot Table Output Ranges\">Selecting Pivot Table Output Ranges</link></variable>" -msgstr "<variable id=\"datapilot_tipps\"><link href=\"text/scalc/guide/datapilot_tipps.xhp\" name=\"DatuPilotuaren emaitza-areak hautatzea\">DatuPilotuaren emaitza-areak hautatzea</link></variable>" +msgstr "<variable id=\"datapilot_tipps\"><link href=\"text/scalc/guide/datapilot_tipps.xhp\" name=\"Taula dinamikoaren emaitza-areak hautatzea\">Taula dinamikoaren emaitza-areak hautatzea</link></variable>" #: datapilot_tipps.xhp msgctxt "" @@ -4666,7 +4666,7 @@ "20\n" "help.text" msgid "Click the button <emph>More</emph> in the <emph>Pivot Table</emph> dialog. The dialog will be extended." -msgstr "Egin klik <emph>DatuPilotua</emph>ren elkarrizketa-koadroko <emph>Gehiago</emph> botoian. Elkarrizketa-koadroa handitu egingo da." +msgstr "Egin klik <emph>Taula dinamikoa</emph>ren elkarrizketa-koadroko <emph>Gehiago</emph> botoian. Elkarrizketa-koadroa handitu egingo da." #: datapilot_tipps.xhp msgctxt "" @@ -4675,7 +4675,7 @@ "21\n" "help.text" msgid "You can select a named range in which the pivot table is to be created, from the <emph>Results to</emph> box. If the results range does not have a name, enter the coordinates of the upper left cell of the range into the field to the right of the <emph>Results to</emph> box. You can also click on the appropriate cell to have the coordinates entered accordingly." -msgstr "DatuPilotuaren taula sortzeko area izendun bat hauta dezakezu <emph>Emaitzen area</emph> zerrenda-koadroan. Erabili nahi duzun emaitzen areak izenik ez badu, sartu arearen goi-ezkerreko koordenatuak koadroko <emph>Emaitzen area</emph>ren ondoko eremuan. Dagokion gelaxkan klik eginez ere sar ditzakezu koordenatuak." +msgstr "Taula dinamikoa sortzeko area izendun bat hauta dezakezu <emph>Emaitzen area</emph> zerrenda-koadroan. Erabili nahi duzun emaitzen areak izenik ez badu, sartu arearen goi-ezkerreko koordenatuak koadroko <emph>Emaitzen area</emph>ren ondoko eremuan. Dagokion gelaxkan klik eginez ere sar ditzakezu koordenatuak." #: datapilot_tipps.xhp msgctxt "" @@ -4684,7 +4684,7 @@ "23\n" "help.text" msgid "If you mark the <emph>Ignore empty rows</emph> check box, they will not be taken into account when the pivot table is created." -msgstr "<emph>Ez ikusi egin errenkada hutsei</emph> kontrol-laukia hautatzen baduzu, DatuPilotuak taula sortzean ez dira kontuan hartuko." +msgstr "<emph>Ez ikusi egin errenkada hutsei</emph> kontrol-laukia hautatzen baduzu, taula dinamikoa sortzean ez dira kontuan hartuko." #: datapilot_tipps.xhp msgctxt "" @@ -4693,7 +4693,7 @@ "24\n" "help.text" msgid "If the <emph>Identify categories</emph> check box is marked, the categories will be identified by their headings and assigned accordingly when the pivot table is created." -msgstr "<emph>Identifikatu kategoriak</emph> kontrol-laukia hautatzen bada, izenburuen arabera identifikatuko dira kategoriak eta horren arabera ordenatuko dira DatuPilotuaren taula sortzean." +msgstr "<emph>Identifikatu kategoriak</emph> kontrol-laukia hautatzen bada, izenburuen arabera identifikatuko dira kategoriak eta horren arabera ordenatuko dira taula dinamikoa sortzean." #: datapilot_updatetable.xhp msgctxt "" @@ -4701,7 +4701,7 @@ "tit\n" "help.text" msgid "Updating Pivot Tables" -msgstr "DatuPilotuaren taulak eguneratzea" +msgstr "Taulak dinamikoak eguneratzea" #: datapilot_updatetable.xhp msgctxt "" @@ -4709,7 +4709,7 @@ "bm_id3150792\n" "help.text" msgid "<bookmark_value>pivot table import</bookmark_value><bookmark_value>pivot table function; refreshing tables</bookmark_value><bookmark_value>recalculating;pivot tables</bookmark_value><bookmark_value>updating;pivot tables</bookmark_value>" -msgstr "<bookmark_value>Taula dinamikoak inportatu</bookmark_value><bookmark_value>DatuPilotuaren funtzioa; freskatu taulak</bookmark_value><bookmark_value>birkalkulatu;DatuPilotuaren taulak</bookmark_value><bookmark_value>eguneratu;DatuPilotuaren taulak</bookmark_value>" +msgstr "<bookmark_value>taula dinamikoak inportatu</bookmark_value><bookmark_value>taula dinamikoaren funtzioa; freskatu taulak</bookmark_value><bookmark_value>birkalkulatu;taula dinamikoak</bookmark_value><bookmark_value>eguneratu;taula dinamikoak</bookmark_value>" #: datapilot_updatetable.xhp msgctxt "" @@ -4718,7 +4718,7 @@ "33\n" "help.text" msgid "<variable id=\"datapilot_updatetable\"><link href=\"text/scalc/guide/datapilot_updatetable.xhp\" name=\"Updating Pivot Tables\">Updating Pivot Tables</link></variable>" -msgstr "<variable id=\"datapilot_updatetable\"><link href=\"text/scalc/guide/datapilot_updatetable.xhp\" name=\"DatuPilotuaren taulak eguneratzea\">DatuPilotuaren taulak eguneratzea</link></variable>" +msgstr "<variable id=\"datapilot_updatetable\"><link href=\"text/scalc/guide/datapilot_updatetable.xhp\" name=\"Taula dinamikoak eguneratzea\">Taula dinamikoak eguneratzea</link></variable>" #: datapilot_updatetable.xhp msgctxt "" @@ -4727,7 +4727,7 @@ "34\n" "help.text" msgid "If the data of the source sheet has been changed, $[officename] recalculates the pivot table. To recalculate the table, choose <emph>Data - Pivot Table - Refresh</emph>. Do the same after you have imported an Excel pivot table into $[officename] Calc." -msgstr "Iturburuko orriko datuak aldatu badira, $[officename](e)k berriro kalkulatuko du DatuPilotuaren taula. Taulak berriro kalkulatzeko, aukeratu <emph>Datuak - DatuPilotua - Freskatu</emph>. Egin gauza bera Excel-eko taula dinamiko bat $[officename] Calc-era inportatutakoan." +msgstr "Iturburuko orriko datuak aldatu badira, $[officename](e)k berriro kalkulatuko du taula dinamikoa. Taulak berriro kalkulatzeko, aukeratu <emph>Datuak - Taula dinamikoa - Freskatu</emph>. Egin gauza bera Excel-eko taula dinamiko bat $[officename] Calc-era inportatutakoan." #: dbase_files.xhp msgctxt "" @@ -5455,7 +5455,7 @@ "6\n" "help.text" msgid "<variable id=\"format_table\"><link href=\"text/scalc/guide/format_table.xhp\" name=\"Designing Spreadsheets\">Formatting Spreadsheets</link></variable>" -msgstr "<variable id=\"rename_table\"><link href=\"text/scalc/guide/rename_table.xhp\" name=\"Orrien izena aldatzea\">Orrien izena aldatzea</link></variable>" +msgstr "<variable id=\"format_table\"><link href=\"text/scalc/guide/format_table.xhp\" name=\"Kalkulu-orriak disinatzea\">Kalkulu-orriei formatua ematea</link></variable>" #: format_table.xhp msgctxt "" @@ -5539,14 +5539,13 @@ 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 @@ "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 "" @@ -6195,7 +6194,7 @@ "3\n" "help.text" msgid "Choose <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME Calc - View</emph>." -msgstr "Zerrenda atzekoz aurrera bistaratzeko, sakatu <switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ktrl</defaultinline></switchinline>+Maius+Tab." +msgstr "Hautatu <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Hobespenak</caseinline><defaultinline>Tresnak - Aukerak</defaultinline></switchinline> - %PRODUCTNAME Calc - Ikusi</emph>." #: formula_value.xhp msgctxt "" @@ -6682,7 +6681,7 @@ "4\n" "help.text" msgid "Numbers are shown as written. In addition, in the <SDVAL> HTML tag, the exact internal number value is written so that after opening the HTML document with <item type=\"productname\">%PRODUCTNAME</item> you know you have the exact values." -msgstr "Zenbakiak idatzita dauden bezala bistaratzen dira. Gainera, SDVAL> HTML etiketan barneko zenbaki-balio zehatza idazten da, eta, beraz, HTML dokumentua <item type=\"productname\">%PRODUCTNAME</item>(r)ekin irekitakoan badakizu balio zehatzak dituzula." +msgstr "Zenbakiak idatzita dauden bezala bistaratzen dira. Gainera, <SDVAL> HTML etiketan barneko zenbaki-balio zehatza idazten da, eta, beraz, HTML dokumentua <item type=\"productname\">%PRODUCTNAME</item>(r)ekin irekitakoan badakizu balio zehatzak dituzula." #: html_doc.xhp msgctxt "" @@ -7170,13 +7169,12 @@ msgstr "" #: line_fix.xhp -#, fuzzy msgctxt "" "line_fix.xhp\n" "par_id3147345\n" "help.text" msgid "If you want to print a certain row on all pages of a document, choose <item type=\"menuitem\">Format - Print ranges - Edit</item>." -msgstr "Errenkada jakin bat dokumentuaren orri guztietan inprimatu nahi baduzu, hautatu <emph>Formatua - Inprimatze-areak - Editatu</emph>." +msgstr "Errenkada jakin bat dokumentuaren orri guztietan inprimatu nahi baduzu, hautatu <item type=\"menuitem\">Formatua - Inprimatze-areak - Editatu</item>." #: line_fix.xhp msgctxt "" @@ -7275,14 +7273,13 @@ 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 "" @@ -8256,7 +8253,7 @@ "9\n" "help.text" msgid "<variable id=\"multitables\"><link href=\"text/scalc/guide/multitables.xhp\" name=\"Applying Multiple Sheets\">Applying Multiple Sheets</link></variable>" -msgstr "<variable id=\"multioperation\"><link href=\"text/scalc/guide/multioperation.xhp\" name=\"Eragiketa anizkoitzak aplikatzea\">Eragiketa anizkoitzak aplikatzea</link></variable>" +msgstr "<variable id=\"multitables\"><link href=\"text/scalc/guide/multitables.xhp\" name=\"Orri anizkoitzak aplikatzea Multiple Sheets\">Orri anizkoitzak aplikatzea</link></variable>" #: multitables.xhp msgctxt "" @@ -8664,7 +8661,7 @@ "par_id0908200901265544\n" "help.text" msgid "<link href=\"text/shared/01/05020300.xhp\" name=\"Format - Cells - Numbers\">Format - Cells - Numbers</link>" -msgstr "<link href=\"text/shared/01/05340300.xhp\" name=\"Formatua - Gelaxkak - Lerrokatzea\">Formatua - Gelaxkak - Lerrokatzea</link>" +msgstr "<link href=\"text/shared/01/05020300.xhp\" name=\"Formatua - Gelazkak - Zenbakiak\">Formatua - Gelaxkak - Zenbakiak</link>" #: print_details.xhp msgctxt "" @@ -9861,7 +9858,7 @@ "9\n" "help.text" msgid "Choose <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME Calc</emph>." -msgstr "Zerrenda atzekoz aurrera bistaratzeko, sakatu <switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ktrl</defaultinline></switchinline>+Maius+Tab." +msgstr "Hautatu <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Hobespenak</caseinline><defaultinline>Tresnak - Aukerak</defaultinline></switchinline> - %PRODUCTNAME Calc</emph>." #: rounding_numbers.xhp msgctxt "" @@ -9888,7 +9885,7 @@ "12\n" "help.text" msgid "Choose <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME Calc</emph>." -msgstr "Zerrenda atzekoz aurrera bistaratzeko, sakatu <switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ktrl</defaultinline></switchinline>+Maius+Tab." +msgstr "Hautatu <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Hobespenak</caseinline><defaultinline>Tresnak - Aukerak</defaultinline></switchinline> - %PRODUCTNAME Calc</emph>." #: rounding_numbers.xhp msgctxt "" @@ -11161,7 +11158,7 @@ "47\n" "help.text" msgid "<link href=\"text/shared/01/05020300.xhp\" name=\"Format - Cells - Numbers\">Format - Cells - Numbers</link>" -msgstr "<link href=\"text/shared/01/05340300.xhp\" name=\"Formatua - Gelaxkak - Lerrokatzea\">Formatua - Gelaxkak - Lerrokatzea</link>" +msgstr "<link href=\"text/shared/01/05020300.xhp\" name=\"Formatua - Gelazkak - Zenbakiak\">Formatua - Gelaxkak - Zenbakiak</link>" #: text_rotate.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/eu/helpcontent2/source/text/scalc.po libreoffice-5.1.2~rc2/translations/source/eu/helpcontent2/source/text/scalc.po --- libreoffice-5.1.1~rc2/translations/source/eu/helpcontent2/source/text/scalc.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/eu/helpcontent2/source/text/scalc.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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:54+0000\n" -"Last-Translator: system user <>\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" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1431366895.000000\n" +"X-POOTLE-MTIME: 1457293817.000000\n" #: main0000.xhp msgctxt "" @@ -166,13 +166,12 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 "" @@ -584,7 +578,7 @@ "2\n" "help.text" msgid "<ahelp hid=\".\">Use the <emph>Data</emph> menu commands to edit the data in the current sheet. You can define ranges, sort and filter the data, calculate results, outline data, and create a pivot table.</ahelp>" -msgstr "<ahelp hid=\".\">Uneko orriko datuak editatzeko, erabili <emph>Datuak</emph>menuko komandoak. Area defini dezakezu, datuak ordenatu eta iragazi, emaitzak kalkulatu, datuak eskema gisa erakutsi eta DatuPilotua abiarazi.</ahelp>" +msgstr "<ahelp hid=\".\">Uneko orriko datuak editatzeko, erabili <emph>Datuak</emph>menuko komandoak. Area defini dezakezu, datuak ordenatu eta iragazi, emaitzak kalkulatu, datuak eskema gisa erakutsi eta taula dinamikoa sortu.</ahelp>" #: main0112.xhp msgctxt "" @@ -675,13 +669,12 @@ 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 @@ 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 @@ 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 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/eu/helpcontent2/source/text/schart/01.po libreoffice-5.1.2~rc2/translations/source/eu/helpcontent2/source/text/schart/01.po --- libreoffice-5.1.1~rc2/translations/source/eu/helpcontent2/source/text/schart/01.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/eu/helpcontent2/source/text/schart/01.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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-30 18:48+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2016-03-19 21:02+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 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1401475713.000000\n" +"X-POOTLE-MTIME: 1458421359.000000\n" #: 03010000.xhp msgctxt "" @@ -828,14 +828,13 @@ msgstr "X ardatza" #: 04040000.xhp -#, fuzzy msgctxt "" "04040000.xhp\n" "par_id3145230\n" "6\n" "help.text" msgid "<ahelp hid=\"modules/schart/ui/insertaxisdlg/primaryX\">Displays the X axis as a line with subdivisions.</ahelp>" -msgstr "<ahelp hid=\"modules/schart/ui/insertaxisdlg/primaryY\">Y ardatza erakusten du.</ahelp>" +msgstr "<ahelp hid=\"modules/schart/ui/insertaxisdlg/primaryX\">X ardatza erakusten du azpizatiketak dituen marra bat gisa.</ahelp>" #: 04040000.xhp msgctxt "" @@ -853,7 +852,7 @@ "18\n" "help.text" msgid "<ahelp hid=\"modules/schart/ui/insertaxisdlg/primaryY\">Displays the Y axis as a line with subdivisions.</ahelp>" -msgstr "<ahelp hid=\"modules/schart/ui/insertaxisdlg/primaryY\">Y ardatza erakusten du.</ahelp>" +msgstr "<ahelp hid=\"modules/schart/ui/insertaxisdlg/primaryY\">Y ardatza erakusten du azpizatiketak dituen marra bat gisa.</ahelp>" #: 04040000.xhp msgctxt "" @@ -1287,7 +1286,7 @@ "par_id7272255\n" "help.text" msgid "<variable id=\"trendlinestext\"><ahelp hid=\".\">Trend lines can be added to all 2D chart types except for Pie and Stock charts.</ahelp></variable>" -msgstr "<variable id=\"tabelletext\"><ahelp hid=\".\">Uneko diapositiba edo orrialdean taula berri abt txertatzen du.</ahelp></variable>" +msgstr "<variable id=\"trendlinestext\"><ahelp hid=\".\">Joera-marrak 2D motako edozein grafikora gehitu daitezke, tarta eta kotizazio diagrametara ezik.</ahelp></variable>" #: 04050100.xhp msgctxt "" @@ -2464,7 +2463,7 @@ "2\n" "help.text" msgid "Use this to change the properties of a selected data series. This dialog appears when one data series is selected when you choose <emph>Format - Format Selection</emph>. Some of the menu entries are only available for 2D or 3D charts." -msgstr "Hautatutako datu-seriearen propietateak aldatzeko erabiltzen da." +msgstr "Hautatutako datu-seriearen propietateak aldatzeko erabili hau. Elkarrizketa-koadro hau datu-serie bat hautatuta <emph>Formatua- Hautaketaren formatua</emph> aukeratzen duzunean agertzen da. Menuko sarrera batzuk 2D ala 3D grafikoetan besterik ez daude erabilgarri." #: 05010200.xhp msgctxt "" @@ -4218,7 +4217,7 @@ "par_id5882747\n" "help.text" msgid "<link href=\"text/schart/01/type_xy.xhp\">XY (scatter)</link>" -msgstr "<link href=\"text/schart/01/type_line.xhp\">Marra</link>" +msgstr "<link href=\"text/schart/01/type_xy.xhp\">XY (barreiadura)</link>" #: choose_chart_type.xhp msgctxt "" @@ -4234,7 +4233,7 @@ "par_id0526200904431497\n" "help.text" msgid "<link href=\"text/schart/01/type_bubble.xhp\">Bubble</link>" -msgstr "<link href=\"text/schart/01/type_line.xhp\">Marra</link>" +msgstr "<link href=\"text/schart/01/type_bubble.xhp\">Burbuila</link>" #: choose_chart_type.xhp msgctxt "" @@ -4266,7 +4265,7 @@ "par_id1680654\n" "help.text" msgid "<link href=\"text/schart/01/type_stock.xhp\">Stock</link>" -msgstr "<link href=\"text/schart/01/type_area.xhp\">Area</link>" +msgstr "<link href=\"text/schart/01/type_stock.xhp\">Kotizazioa</link>" #: choose_chart_type.xhp msgctxt "" @@ -4940,7 +4939,7 @@ "hd_id310678\n" "help.text" msgid "<variable id=\"type_area\"><link href=\"text/schart/01/type_area.xhp\">Chart Type Area</link></variable>" -msgstr "<variable id=\"type_area\"><link href=\"text/schart/01/type_area.xhp\">Diagrama motaren area</link></variable>" +msgstr "<variable id=\"type_area\"><link href=\"text/schart/01/type_area.xhp\">Area diagrama mota</link></variable>" #: type_area.xhp msgctxt "" @@ -5012,7 +5011,7 @@ "hd_id1970722\n" "help.text" msgid "<variable id=\"type_bubble\"><link href=\"text/schart/01/type_bubble.xhp\">Chart Type Bubble</link></variable>" -msgstr "<variable id=\"type_line\"><link href=\"text/schart/01/type_line.xhp\">Diagrama motaren marra</link></variable>" +msgstr "<variable id=\"type_bubble\"><link href=\"text/schart/01/type_bubble.xhp\">Burbuila diagrama mota</link></variable>" #: type_bubble.xhp msgctxt "" @@ -5068,7 +5067,7 @@ "hd_id649433\n" "help.text" msgid "<variable id=\"type_column_bar\"><link href=\"text/schart/01/type_column_bar.xhp\">Chart Type Column and Bar</link></variable>" -msgstr "<variable id=\"type_line\"><link href=\"text/schart/01/type_line.xhp\">Diagrama motaren marra</link></variable>" +msgstr "<variable id=\"type_column_bar\"><link href=\"text/schart/01/type_column_bar.xhp\">Zutabe eta barra diagrama mota</link></variable>" #: type_column_bar.xhp msgctxt "" @@ -5180,7 +5179,7 @@ "hd_id8596453\n" "help.text" msgid "<variable id=\"type_column_line\"><link href=\"text/schart/01/type_column_line.xhp\">Chart Type Column and Line</link></variable>" -msgstr "<variable id=\"type_line\"><link href=\"text/schart/01/type_line.xhp\">Diagrama motaren marra</link></variable>" +msgstr "<variable id=\"type_column_line\"><link href=\"text/schart/01/type_column_line.xhp\">Zutabe eta marra diagrama mota</link></variable>" #: type_column_line.xhp msgctxt "" @@ -5524,7 +5523,7 @@ "hd_id9422894\n" "help.text" msgid "<variable id=\"type_line\"><link href=\"text/schart/01/type_line.xhp\">Chart Type Line</link></variable>" -msgstr "<variable id=\"type_line\"><link href=\"text/schart/01/type_line.xhp\">Diagrama motaren marra</link></variable>" +msgstr "<variable id=\"type_line\"><link href=\"text/schart/01/type_line.xhp\">Marra diagrama mota</link></variable>" #: type_line.xhp msgctxt "" @@ -5620,7 +5619,7 @@ "hd_id1990722\n" "help.text" msgid "<variable id=\"type_net\"><link href=\"text/schart/01/type_net.xhp\">Chart Type Net</link></variable>" -msgstr "<variable id=\"type_area\"><link href=\"text/schart/01/type_area.xhp\">Diagrama motaren area</link></variable>" +msgstr "<variable id=\"type_net\"><link href=\"text/schart/01/type_net.xhp\">Sare diagrama mota</link></variable>" #: type_net.xhp msgctxt "" @@ -5676,7 +5675,7 @@ "hd_id3365276\n" "help.text" msgid "<variable id=\"type_pie\"><link href=\"text/schart/01/type_pie.xhp\">Chart Type Pie</link></variable>" -msgstr "<variable id=\"type_line\"><link href=\"text/schart/01/type_line.xhp\">Diagrama motaren marra</link></variable>" +msgstr "<variable id=\"type_pie\"><link href=\"text/schart/01/type_pie.xhp\">Tarta diagrama mota</link></variable>" #: type_pie.xhp msgctxt "" @@ -6564,7 +6563,7 @@ "hd_id9346598\n" "help.text" msgid "<variable id=\"type_xy\"><link href=\"text/schart/01/type_xy.xhp\">Chart Type XY (Scatter)</link></variable>" -msgstr "<variable id=\"type_area\"><link href=\"text/schart/01/type_area.xhp\">Diagrama motaren area</link></variable>" +msgstr "<variable id=\"type_xy\"><link href=\"text/schart/01/type_xy.xhp\">XY (barreiatzea) diagrama mota</link></variable>" #: type_xy.xhp msgctxt "" @@ -6916,7 +6915,7 @@ "hd_id70802\n" "help.text" msgid "<variable id=\"wiz_chart_elements\"><link href=\"text/schart/01/wiz_chart_elements.xhp\">Chart Wizard - Chart Elements</link></variable>" -msgstr "<variable id=\"choose_chart_type\"><link href=\"text/schart/01/choose_chart_type.xhp\">Diagrama mota aukeratzea</link></variable>" +msgstr "<variable id=\"wiz_chart_elements\"><link href=\"text/schart/01/wiz_chart_elements.xhp\">Diagrama morroia - Diagramaren elementuak</link></variable>" #: wiz_chart_elements.xhp msgctxt "" @@ -7252,7 +7251,7 @@ "hd_id1536606\n" "help.text" msgid "<variable id=\"wiz_chart_type\"><link href=\"text/schart/01/wiz_chart_type.xhp\">Chart Wizard - Chart Type</link></variable>" -msgstr "<variable id=\"choose_chart_type\"><link href=\"text/schart/01/choose_chart_type.xhp\">Diagrama mota aukeratzea</link></variable>" +msgstr "<variable id=\"wiz_chart_type\"><link href=\"text/schart/01/wiz_chart_type.xhp\">Diagrama morroia - Diagrama mota</link></variable>" #: wiz_chart_type.xhp msgctxt "" @@ -7468,7 +7467,7 @@ "hd_id8313852\n" "help.text" msgid "<variable id=\"wiz_data_range\"><link href=\"text/schart/01/wiz_data_range.xhp\">Chart Wizard - Data Range</link></variable>" -msgstr "<variable id=\"choose_chart_type\"><link href=\"text/schart/01/choose_chart_type.xhp\">Diagrama mota aukeratzea</link></variable>" +msgstr "<variable id=\"wiz_data_range\"><link href=\"text/schart/01/wiz_data_range.xhp\">Diagrama morroia - Datu area</link></variable>" #: wiz_data_range.xhp msgctxt "" @@ -7636,7 +7635,7 @@ "hd_id6124149\n" "help.text" msgid "<variable id=\"wiz_data_series\"><link href=\"text/schart/01/wiz_data_series.xhp\">Chart Wizard - Data Series</link></variable>" -msgstr "<variable id=\"choose_chart_type\"><link href=\"text/schart/01/choose_chart_type.xhp\">Diagrama mota aukeratzea</link></variable>" +msgstr "<variable id=\"wiz_data_series\"><link href=\"text/schart/01/wiz_data_series.xhp\">Diagrama morroia - Datu serieak</link></variable>" #: wiz_data_series.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/eu/helpcontent2/source/text/sdraw/guide.po libreoffice-5.1.2~rc2/translations/source/eu/helpcontent2/source/text/sdraw/guide.po --- libreoffice-5.1.1~rc2/translations/source/eu/helpcontent2/source/text/sdraw/guide.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/eu/helpcontent2/source/text/sdraw/guide.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\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:56+0000\n" -"Last-Translator: system user <>\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" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1431366997.000000\n" +"X-POOTLE-MTIME: 1457299787.000000\n" #: align_arrange.xhp msgctxt "" @@ -1124,7 +1124,7 @@ "27\n" "help.text" msgid "Similarly, you can use the <emph>Color Replacer</emph> to make a color on your image transparent." -msgstr "Era berean, irudiko kolore bat garden bihurtzeko ere erabil dezakezu <emph>Tanta-kontagailua</emph>." +msgstr "Era berean, <emph>Tanta-kontagailua</emph> irudiko kolore bat garden bihurtzeko ere erabil dezakezu." #: eyedropper.xhp msgctxt "" @@ -1151,7 +1151,7 @@ "30\n" "help.text" msgid "Choose <emph>Tools - Color Replacer</emph>." -msgstr "Aukeratu <emph>Tresnak - Kalkulatu</emph>" +msgstr "Aukeratu <emph>Tresnak - Tanta-kontagailua</emph>." #: eyedropper.xhp msgctxt "" @@ -1223,7 +1223,7 @@ "39\n" "help.text" msgid "<link href=\"text/shared/01/06030000.xhp\" name=\"Color Replacer\">Color Replacer</link>" -msgstr "<link href=\"text/shared/01/06030000.xhp\" name=\"Color Replacer\">Kolore-barra</link>" +msgstr "<link href=\"text/shared/01/06030000.xhp\" name=\"Color Replacer\">Tanta-kontagailua</link>" #: gradient.xhp msgctxt "" @@ -2404,7 +2404,7 @@ "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 -Nru libreoffice-5.1.1~rc2/translations/source/eu/helpcontent2/source/text/sdraw.po libreoffice-5.1.2~rc2/translations/source/eu/helpcontent2/source/text/sdraw.po --- libreoffice-5.1.1~rc2/translations/source/eu/helpcontent2/source/text/sdraw.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/eu/helpcontent2/source/text/sdraw.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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 @@ "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 @@ msgstr "Ikusi" #: main0103.xhp -#, fuzzy msgctxt "" "main0103.xhp\n" "hd_id3152576\n" @@ -327,7 +326,6 @@ 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 @@ msgstr "Orrialdearen ikuspegi maisura joaten da." #: main0103.xhp -#, fuzzy msgctxt "" "main0103.xhp\n" "hd_id3149666\n" diff -Nru libreoffice-5.1.1~rc2/translations/source/eu/helpcontent2/source/text/shared/00.po libreoffice-5.1.2~rc2/translations/source/eu/helpcontent2/source/text/shared/00.po --- libreoffice-5.1.1~rc2/translations/source/eu/helpcontent2/source/text/shared/00.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/eu/helpcontent2/source/text/shared/00.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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-06 19: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 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1441130532.000000\n" +"X-POOTLE-MTIME: 1457293890.000000\n" #: 00000001.xhp msgctxt "" @@ -1625,7 +1625,7 @@ "par_id3149412\n" "help.text" msgid "<image id=\"img_id3153279\" src=\"fpicker/res/fp014.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153279\">Icon</alt></image>" -msgstr "<image id=\"img_id3147257\" src=\"fpicker/res/fp011.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3147257\">Ikonoa</alt></image>" +msgstr "<image id=\"img_id3153279\" src=\"fpicker/res/fp014.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153279\">Icon</alt></image>" #: 00000004.xhp msgctxt "" @@ -1659,7 +1659,7 @@ "par_id3151320\n" "help.text" msgid "<image id=\"img_id3148833\" src=\"fpicker/res/fp014.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3148833\">Icon</alt></image>" -msgstr "<image id=\"img_id3147257\" src=\"fpicker/res/fp011.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3147257\">Ikonoa</alt></image>" +msgstr "<image id=\"img_id3148833\" src=\"fpicker/res/fp014.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3148833\">Icon</alt></image>" #: 00000004.xhp msgctxt "" @@ -1981,7 +1981,7 @@ "35\n" "help.text" msgid "You can remove direct formatting from your document by selecting the entire text with the shortcut keys <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+A and then choosing <emph>Format - Clear Direct Formatting</emph>." -msgstr "Talde batean objektu indibidual bat hautatzeko, sakatu <switchinline select=\"sys\"> <caseinline select=\"MAC\">Komandoa</caseinline> <defaultinline>Ktrl</defaultinline> </switchinline>, eta ondoren egin klik objektuan." +msgstr "Formatu zuzena ezabatu dezakezu zure dokumentutik testu osoa <switchinline select=\"sys\"><caseinline select=\"MAC\">Komandoa</caseinline><defaultinline>Ktrl</defaultinline></switchinline>+A laster-teklekin aukeratuz, eta gero <emph>Formatua - Garbitu formatu zuzena</emph> hautatuz." #: 00000005.xhp msgctxt "" @@ -3484,7 +3484,7 @@ "109\n" "help.text" msgid "Some $[officename] Draw and $[officename] Impress options can be accessed through <emph>File - Export</emph>. See <link href=\"text/shared/00/00000200.xhp\" name=\"Graphics Export Options\">Graphics Export Options</link> for more information." -msgstr "<emph>Fitxategia - Esportatu</emph> bidetik jo daiteke $[officename] Draw eta $[officename]Impress aukera batzuetara." +msgstr "$[officename] Draw eta $[officename] Impress aukera batzuk.<emph>Fitxategia - Esportatu</emph> menutik atzitu daitezke. Ikusi <link href=\"text/shared/00/00000200.xhp\" name=\"Grafikoak esportatzeko aukerak\">Grafikoak esportatzeko aukerak</link> informazio gehiagorako." #: 00000020.xhp msgctxt "" @@ -4408,7 +4408,7 @@ "par_id35674840\n" "help.text" msgid "<ahelp hid=\".\" visibility=\"hidden\">Specifies whether the graphic is to be saved in interlaced mode.</ahelp>" -msgstr "<ahelp hid=\"VCL:CHECKBOX:DLG_EXPORT_EPNG:CBX_INTERLACED\">GIF irudia gordetzeko gurutzelarkatu modua erabili behar den zehazten du.</ahelp>" +msgstr "<ahelp hid=\".\" visibility=\"hidden\">Irudia gordetzeko gurutzelarkatu modua erabili behar den zehazten du.</ahelp>" #: 00000200.xhp msgctxt "" @@ -4424,7 +4424,7 @@ "par_id31456456938\n" "help.text" msgid "<ahelp hid=\".\" visibility=\"hidden\">Specifies whether to save the background of the picture as transparent. Only objects will be visible in the GIF image. Use the Color Replacer to set the transparent color in the picture.</ahelp>" -msgstr "<ahelp hid=\"VCL:CHECKBOX:DLG_EXPORT_GIF:CBX_TRANSLUCENT\">Irudiaren atzeko planoa garden gisa gorde behar den zehazten du. Objektuak soilik egongo dira ikusgai GIF irudian. Marrazkian kolore gardena ezartzeko, erabili Tanta-kontagailua.</ahelp>" +msgstr "<ahelp hid=\".\" visibility=\"hidden\">Irudiaren atzeko planoa garden gisa gorde behar den zehazten du. Objektuak soilik egongo dira ikusgai GIF irudian. Marrazkian kolore gardena ezartzeko, erabili Tanta-kontagailua.</ahelp>" #: 00000200.xhp msgctxt "" @@ -4842,7 +4842,7 @@ "par_id314949588\n" "help.text" msgid "<ahelp hid=\".\">Determines how the number strings are imported.</ahelp>" -msgstr "<ahelp hid=\"\">Kalkulu-orriaren inprimatzeko ezarpenak zehazten ditu</ahelp>" +msgstr "<ahelp hid=\".\">Zenbaki kateak nola inportatuko diren zehazten du.</ahelp>" #: 00000208.xhp msgctxt "" @@ -5763,7 +5763,7 @@ "179\n" "help.text" msgid "Key <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+N" -msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Lerrokatu horizontalki zentratuta</caseinline><defaultinline>Erdian</defaultinline></switchinline>" +msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Komando</caseinline> tekla<defaultinline>Ktrl</defaultinline></switchinline>+N" #: 00000401.xhp msgctxt "" @@ -5781,7 +5781,7 @@ "187\n" "help.text" msgid "Key Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+N" -msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Lerrokatu horizontalki zentratuta</caseinline><defaultinline>Erdian</defaultinline></switchinline>" +msgstr "Mauis.+<switchinline select=\"sys\"><caseinline select=\"MAC\">Komando</caseinline> tekla<defaultinline>Ktrl</defaultinline></switchinline>+N" #: 00000401.xhp msgctxt "" @@ -5799,7 +5799,7 @@ "161\n" "help.text" msgid "<variable id=\"etikettenein\">Choose <emph>File - New - Labels - Labels</emph> tab</variable>" -msgstr "<variable id=\"etiketten\">Aukeratu <emph>Fitxategia - Berria - Etiketak</emph></variable>" +msgstr "<variable id=\"etikettenein\">Aukeratu <emph>Fitxategia - Berria - Etiketak - Etiketak</emph> tab</variable>" #: 00000401.xhp msgctxt "" @@ -5853,7 +5853,7 @@ "167\n" "help.text" msgid "<variable id=\"visikartform\">Choose <emph>File - New - Business Cards - Medium</emph> tab</variable>" -msgstr "<variable id=\"visikart\">Aukeratu <emph>Fitxategia - Berria - Enpresa-txartelak</emph></variable>" +msgstr "<variable id=\"visikartform\">Aukeratu <emph>Fitxategia - Berria - Enpresa-txartelak - Ertaina</emph> fitxa</variable>" #: 00000401.xhp msgctxt "" @@ -5862,7 +5862,7 @@ "168\n" "help.text" msgid "<variable id=\"viskartinhalt\">Choose <emph>File - New - Business Cards - Business cards</emph> tab</variable>" -msgstr "<variable id=\"visikart\">Aukeratu <emph>Fitxategia - Berria - Enpresa-txartelak</emph></variable>" +msgstr "<variable id=\"viskartinhalt\">Aukeratu <emph>Fitxategia - Berria - Enpresa-txartelak</emph> fitxa</variable>" #: 00000401.xhp msgctxt "" @@ -5871,7 +5871,7 @@ "169\n" "help.text" msgid "<variable id=\"viskartpriv\">Choose <emph>File - New - Business Cards - Private</emph> tab</variable>" -msgstr "<variable id=\"visikart\">Aukeratu <emph>Fitxategia - Berria - Enpresa-txartelak</emph></variable>" +msgstr "<variable id=\"viskartpriv\">Aukeratu <emph>Fitxategia - Berria - Enpresa-txartelak - Pribatua</emph> fitxa</variable>" #: 00000401.xhp msgctxt "" @@ -5880,7 +5880,7 @@ "170\n" "help.text" msgid "<variable id=\"viskartgesch\">Choose <emph>File - New - Business Cards - Business</emph> tab</variable>" -msgstr "<variable id=\"visikart\">Aukeratu <emph>Fitxategia - Berria - Enpresa-txartelak</emph></variable>" +msgstr "<variable id=\"viskartgesch\">Aukeratu <emph>Fitxategia - Berria - Enpresa-txartelak</emph> fitxa</variable>" #: 00000401.xhp msgctxt "" @@ -5898,7 +5898,7 @@ "83\n" "help.text" msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+O" -msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Lerrokatu horizontalki zentratuta</caseinline><defaultinline>Erdian</defaultinline></switchinline>" +msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Komandoa</caseinline><defaultinline>Ktrl</defaultinline></switchinline>+O" #: 00000401.xhp msgctxt "" @@ -5915,7 +5915,7 @@ "par_id3155419\n" "help.text" msgid "<image id=\"img_id3149415\" src=\"cmd/sc_open.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3149415\">Icon</alt></image>" -msgstr "<image id=\"img_id3149716\" src=\"cmd/sc_color.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3149716\">Ikonoa</alt></image>" +msgstr "<image id=\"img_id3149415\" src=\"cmd/sc_open.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3149415\">Ikonoa</alt></image>" #: 00000401.xhp msgctxt "" @@ -6014,7 +6014,7 @@ "116\n" "help.text" msgid "<variable id=\"autopilotbrief6\">Choose <emph>File - Wizards - Letter - </emph><emph>Name and Location</emph></variable>" -msgstr "<variable id=\"autopilotbrief2\">Aukeratu <emph>Fitxategia - Morroiak - Gutuna - Gutun-buruaren diseinua</emph></variable>" +msgstr "<variable id=\"autopilotbrief6\">Aukeratu <emph>Fitxategia - Morroiak - Gutuna - </emph><emph>Izena eta kokalekua</emph></variable>" #: 00000401.xhp msgctxt "" @@ -6371,7 +6371,7 @@ "84\n" "help.text" msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+S" -msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Lerrokatu horizontalki zentratuta</caseinline><defaultinline>Erdian</defaultinline></switchinline>" +msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Komandoa</caseinline><defaultinline>Ktrl</defaultinline></switchinline>+S" #: 00000401.xhp msgctxt "" @@ -6484,7 +6484,7 @@ "par_id3149735\n" "help.text" msgid "<variable id=\"exportgraphic\">Choose <emph>File - Export</emph>, select a graphics file type, dialog opens automatically</variable>" -msgstr "<variable id=\"export\">Aukeratu <emph>Fitxategia - Esportatu</emph></variable>" +msgstr "<variable id=\"exportgraphic\">Aukeratu <emph>Fitxategia - Esportatu</emph>, aukeratu grafiko fitxategi mota bat, elkarrizketa-koadroa automatikoki irekitzen da</variable>" #: 00000401.xhp msgctxt "" @@ -6529,7 +6529,7 @@ "62\n" "help.text" msgid "<variable id=\"info2\">Choose <emph>File - Properties - General</emph> tab</variable>" -msgstr "<variable id=\"info1\">Aukeratu <emph>Fitxategia - Propietateak</emph></variable>" +msgstr "<variable id=\"info2\">Aukeratu <emph>Fitxategia - Propietateak - Orokorra</emph> fitxa</variable>" #: 00000401.xhp msgctxt "" @@ -6578,7 +6578,7 @@ "63\n" "help.text" msgid "<variable id=\"info3\">Choose <emph>File - Properties - Description</emph> tab</variable>" -msgstr "<variable id=\"info1\">Aukeratu <emph>Fitxategia - Propietateak</emph></variable>" +msgstr "<variable id=\"info3\">Aukeratu <emph>Fitxategia - Propietateak - Deskripzioa</emph> fitxa</variable>" #: 00000401.xhp msgctxt "" @@ -6587,7 +6587,7 @@ "64\n" "help.text" msgid "<variable id=\"info4\">Choose <emph>File - Properties - Custom Properties</emph> tab</variable>" -msgstr "<variable id=\"info1\">Aukeratu <emph>Fitxategia - Propietateak</emph></variable>" +msgstr "<variable id=\"info4\">Aukeratu <emph>Fitxategia - Propietateak - Propietate pertsonalizatuak</emph> fitxa</variable>" #: 00000401.xhp msgctxt "" @@ -6596,7 +6596,7 @@ "65\n" "help.text" msgid "<variable id=\"info5\">Choose <emph>File - Properties - Statistics</emph> tab</variable>" -msgstr "<variable id=\"info1\">Aukeratu <emph>Fitxategia - Propietateak</emph></variable>" +msgstr "<variable id=\"info5\">Aukeratu <emph>Fitxategia - Propietateak - Estatistikak</emph> fitxa</variable>" #: 00000401.xhp msgctxt "" @@ -6604,7 +6604,7 @@ "par_id315370199\n" "help.text" msgid "<variable id=\"infosec\">Choose <emph>File - Properties - Security</emph> tab</variable>" -msgstr "<variable id=\"info1\">Aukeratu <emph>Fitxategia - Propietateak</emph></variable>" +msgstr "<variable id=\"infosec\">Aukeratu <emph>Fitxategia - Propietateak - Segurtasuna</emph> fitxa</variable>" #: 00000401.xhp msgctxt "" @@ -6613,17 +6613,16 @@ "66\n" "help.text" msgid "<variable id=\"info6\">Choose <emph>File - Properties - Internet</emph> tab</variable>" -msgstr "<variable id=\"info1\">Aukeratu <emph>Fitxategia - Propietateak</emph></variable>" +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 @@ "par_idN11384\n" "help.text" msgid "Print Preview" -msgstr "" +msgstr "Inprimatzeko aurrebista" #: 00000401.xhp msgctxt "" @@ -6660,14 +6659,13 @@ msgstr "<variable id=\"senden\">Menua<emph> Fitxategia - Bidali</emph></variable>" #: 00000401.xhp -#, fuzzy msgctxt "" "00000401.xhp\n" "par_id3145386\n" "18\n" "help.text" msgid "Choose <emph>File - Send - E-mail Document</emph>" -msgstr "Aukeratu <emph>Fitxategia - Bidali - Mezu elektronikoa PDF gisa</emph>" +msgstr "Aukeratu <emph>Fitxategia - Bidali - Mezu elektronikoa</emph>." #: 00000401.xhp msgctxt "" @@ -6754,7 +6752,7 @@ "85\n" "help.text" msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+P" -msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Lerrokatu horizontalki zentratuta</caseinline><defaultinline>Erdian</defaultinline></switchinline>" +msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Komandoa</caseinline><defaultinline>Ktrl</defaultinline></switchinline>+P" #: 00000401.xhp msgctxt "" @@ -6783,14 +6781,13 @@ 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 "" @@ -6825,7 +6822,7 @@ "86\n" "help.text" msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Q" -msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Lerrokatu horizontalki zentratuta</caseinline><defaultinline>Erdian</defaultinline></switchinline>" +msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Komandoa</caseinline><defaultinline>Ktrl</defaultinline></switchinline>+Q" #: 00000401.xhp msgctxt "" @@ -6860,7 +6857,7 @@ "81\n" "help.text" msgid "<variable id=\"epsexport\">Choose <emph>File - Export</emph>, if EPS is selected as file type, this dialog opens automatically</variable>" -msgstr "<variable id=\"export\">Aukeratu <emph>Fitxategia - Esportatu</emph></variable>" +msgstr "<variable id=\"epsexport\">Aukeratu <emph>Fitxategia - Esportatu</emph>, EPS aukeratuz gero fitxategi mota gisa, elkarrizketa koadro hau automatikoki irekitzen da</variable>" #: 00000401.xhp msgctxt "" @@ -6869,7 +6866,7 @@ "87\n" "help.text" msgid "<variable id=\"pbmppmpgm\">Choose <emph>File - Export</emph>, if PBM, PPM or PGM is selected as file type, the dialog opens automatically</variable>" -msgstr "<variable id=\"export\">Aukeratu <emph>Fitxategia - Esportatu</emph></variable>" +msgstr "<variable id=\"pbmppmpgm\">Aukeratu <emph>Fitxategia - Esportatu</emph>, PBM, PPM edo PGM aukeratuz gero fitxategi mota gisa, elkarrizketa-koadroa automatikoki irekitzen da</variable>" #: 00000401.xhp msgctxt "" @@ -6913,7 +6910,7 @@ "564\n" "help.text" msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Z" -msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Lerrokatu horizontalki zentratuta</caseinline><defaultinline>Erdian</defaultinline></switchinline>" +msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Komandoa</caseinline><defaultinline>Ktrl</defaultinline></switchinline>+Z" #: 00000402.xhp msgctxt "" @@ -7001,7 +6998,7 @@ "565\n" "help.text" msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+X" -msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Lerrokatu horizontalki zentratuta</caseinline><defaultinline>Erdian</defaultinline></switchinline>" +msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Komandoa</caseinline><defaultinline>Ktrl</defaultinline></switchinline>+X" #: 00000402.xhp msgctxt "" @@ -7046,7 +7043,7 @@ "566\n" "help.text" msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+C" -msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Lerrokatu horizontalki zentratuta</caseinline><defaultinline>Erdian</defaultinline></switchinline>" +msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Komandoa</caseinline><defaultinline>Ktrl</defaultinline></switchinline>+C" #: 00000402.xhp msgctxt "" @@ -7090,7 +7087,7 @@ "567\n" "help.text" msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+V" -msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Lerrokatu horizontalki zentratuta</caseinline><defaultinline>Erdian</defaultinline></switchinline>" +msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Komandoa</caseinline><defaultinline>Ktrl</defaultinline></switchinline>+V" #: 00000402.xhp msgctxt "" @@ -7107,7 +7104,7 @@ "par_id3156106\n" "help.text" msgid "<image id=\"img_id3159196\" src=\"cmd/sc_paste.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3159196\">Icon</alt></image>" -msgstr "<image id=\"img_id3149716\" src=\"cmd/sc_color.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3149716\">Ikonoa</alt></image>" +msgstr "<image id=\"img_id3159196\" src=\"cmd/sc_paste.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3159196\">Ikonoa</alt></image>" #: 00000402.xhp msgctxt "" @@ -7143,7 +7140,7 @@ "568\n" "help.text" msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+A" -msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Lerrokatu horizontalki zentratuta</caseinline><defaultinline>Erdian</defaultinline></switchinline>" +msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Komandoa</caseinline><defaultinline>Ktrl</defaultinline></switchinline>+A" #: 00000402.xhp msgctxt "" @@ -7278,13 +7275,12 @@ msgstr "Aukeratu <emph>Editatu - Desegin</emph>" #: 00000402.xhp -#, fuzzy msgctxt "" "00000402.xhp\n" "par_id31545031\n" "help.text" msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F" -msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Lerrokatu horizontalki zentratuta</caseinline><defaultinline>Erdian</defaultinline></switchinline>" +msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Komandoa</caseinline><defaultinline>Ktrl</defaultinline></switchinline>+F" #: 00000402.xhp msgctxt "" @@ -7302,7 +7298,7 @@ "569\n" "help.text" msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+H" -msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Lerrokatu horizontalki zentratuta</caseinline><defaultinline>Erdian</defaultinline></switchinline>" +msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Komandoa</caseinline><defaultinline>Ktrl</defaultinline></switchinline>+H" #: 00000402.xhp msgctxt "" @@ -7668,7 +7664,7 @@ "25\n" "help.text" msgid "Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+J" -msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Lerrokatu horizontalki zentratuta</caseinline><defaultinline>Erdian</defaultinline></switchinline>" +msgstr "Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Komandoa</caseinline><defaultinline>Ktrl</defaultinline></switchinline>+J" #: 00000403.xhp msgctxt "" @@ -7679,14 +7675,13 @@ 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 "" @@ -7807,7 +7802,7 @@ "28\n" "help.text" msgid "<variable id=\"notiz\">Choose <emph>Insert - Comment</emph></variable>" -msgstr "<variable id=\"eispa\">Aukeratu <emph>Txertatu - Zutabeak</emph></variable>" +msgstr "<variable id=\"notiz\">Aukeratu <emph>Txertatu - Iruzkina</emph></variable>" #: 00000404.xhp #, fuzzy @@ -7989,14 +7984,13 @@ msgstr "Plugina" #: 00000404.xhp -#, fuzzy msgctxt "" "00000404.xhp\n" "par_id3153880\n" "53\n" "help.text" msgid "Choose <emph>Insert - Object - Audio</emph>" -msgstr "Aukeratu <emph>Txertatu - Objektua - Bideoa</emph>" +msgstr "Aukeratu <emph>Txertatu - Objektua - Audioa</emph>" #: 00000404.xhp msgctxt "" @@ -8478,7 +8472,7 @@ "70\n" "help.text" msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F7" -msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Lerrokatu horizontalki zentratuta</caseinline><defaultinline>Erdian</defaultinline></switchinline>" +msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Komandoa</caseinline><defaultinline>Ktrl</defaultinline></switchinline>+F7" #: 00000406.xhp msgctxt "" @@ -8487,7 +8481,7 @@ "10\n" "help.text" msgid "Choose <emph>Tools - Color Replacer</emph> ($[officename] Draw and $[officename] Impress)" -msgstr "Aukeratu <emph>Tresnak - Tantagailua</emph> ($[officename] Draw eta $[officename] Impress)" +msgstr "Aukeratu <emph>Tresnak - Tanta-kontagailua</emph> ($[officename] Draw eta $[officename] Impress)" #: 00000406.xhp msgctxt "" @@ -8583,7 +8577,7 @@ "16\n" "help.text" msgid "<variable id=\"menue\">Choose <emph>Tools - Customize - Menu</emph> tab</variable>" -msgstr "<variable id=\"anpassen\">Aukeratu <emph>Tresnak - Pertsonalizatu</emph></variable>" +msgstr "<variable id=\"menue\">Aukeratu <emph>Tresnak - Pertsonalizatu - Menua</emph> fitxa</variable>" #: 00000406.xhp msgctxt "" @@ -8617,7 +8611,7 @@ "19\n" "help.text" msgid "<variable id=\"symbole\">Choose <emph>Tools - Customize - Toolbars</emph> tab</variable>" -msgstr "<variable id=\"anpassen\">Aukeratu <emph>Tresnak - Pertsonalizatu</emph></variable>" +msgstr "<variable id=\"symbole\">Aukeratu <emph>Tresnak - Pertsonalizatu - Tresna-barrak</emph> fitxa</variable>" #: 00000406.xhp msgctxt "" @@ -8626,7 +8620,7 @@ "22\n" "help.text" msgid "<variable id=\"events\">Choose <emph>Tools - Customize - Events</emph> tab</variable>" -msgstr "<variable id=\"anpassen\">Aukeratu <emph>Tresnak - Pertsonalizatu</emph></variable>" +msgstr "<variable id=\"events\">Aukeratu <emph>Tresnak - Pertsonalizatu - Gertaerak</emph> fitxa</variable>" #: 00000406.xhp msgctxt "" @@ -9505,7 +9499,7 @@ "14\n" "help.text" msgid "<variable id=\"infoanwendung\">Choose <emph>Help - About </emph><emph>%PRODUCTNAME</emph></variable>" -msgstr "<variable id=\"infoanwendung\">Aukeratu <emph>Laguntza - <item type=\"productname\">%PRODUCTNAME</item></emph> </variable>(r)i buruz" +msgstr "<variable id=\"infoanwendung\">Aukeratu <emph>Laguntza - </emph><emph>%PRODUCTNAME</emph>(r)i buruz</variable>" #: 00000408.xhp msgctxt "" @@ -10289,13 +10283,12 @@ msgstr "Aukeratu <emph>Formatua - Paragrafoa - Ertzak</emph> fitxa" #: 00040500.xhp -#, fuzzy msgctxt "" "00040500.xhp\n" "par_id3154149\n" "help.text" msgid "Choose <emph>Format - Image - Borders</emph> tab" -msgstr "Aukeratu <emph>Formatua - Orrialdea - Ertzak</emph> fitxa" +msgstr "Aukeratu <emph>Formatua - Irudia - Ertzak</emph> fitxa" #: 00040500.xhp #, fuzzy @@ -10316,13 +10309,12 @@ msgstr "Aukeratu <emph>Formatua - Orrialdea - Ertzak</emph> fitxa" #: 00040500.xhp -#, fuzzy msgctxt "" "00040500.xhp\n" "par_id3151148\n" "help.text" msgid "Choose <emph>Format - Character - Borders</emph> tab" -msgstr "Aukeratu <emph>Formatua - Karakterea - Letra-tipoa</emph> fitxa" +msgstr "Aukeratu <emph>Formatua - Karakterea - Ertzak</emph> fitxa" #: 00040500.xhp #, fuzzy @@ -10550,13 +10542,12 @@ msgstr "Aukeratu <emph>Formatua - Estiloak eta Formatua</emph>" #: 00040500.xhp -#, fuzzy msgctxt "" "00040500.xhp\n" "par_id3166447\n" "help.text" msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command+T</caseinline><defaultinline>F11</defaultinline></switchinline>" -msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Lerrokatu horizontalki zentratuta</caseinline><defaultinline>Erdian</defaultinline></switchinline>" +msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Komandoa+T</caseinline><defaultinline>F11</defaultinline></switchinline>" #: 00040500.xhp #, fuzzy @@ -12621,7 +12612,7 @@ "46\n" "help.text" msgid "<variable id=\"legende\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Callout</emph> tab (only for textbox callouts, not for custom shapes callouts) </variable>" -msgstr "<variable id=\"ecke\">Aukeratu <emph>Formatua - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Objektua - </emph></caseinline><caseinline select=\"CALC\"><emph>Grafikoa - </emph></caseinline></switchinline><emph>Kokalekua eta tamaina - Inklinazioa eta Izkinako erradioa</emph> fitxa </variable>" +msgstr "<variable id=\"legende\">Aukeratu <emph>Formatua - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Objektua - </emph></caseinline><caseinline select=\"CALC\"><emph>Grafikoa - </emph></caseinline></switchinline><emph>Kokalekua eta tamaina - Legenda</emph> fitxa (testu-kutxako legendentzat besterik ez, ez forma pertsonalizatuak dituzten legendentzat)</variable>" #: 00040502.xhp msgctxt "" @@ -13359,14 +13350,13 @@ 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 "" @@ -13387,14 +13377,13 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/eu/helpcontent2/source/text/shared/01.po libreoffice-5.1.2~rc2/translations/source/eu/helpcontent2/source/text/shared/01.po --- libreoffice-5.1.1~rc2/translations/source/eu/helpcontent2/source/text/shared/01.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/eu/helpcontent2/source/text/shared/01.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\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" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2016-03-19 18:21+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 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1452604064.000000\n" +"X-POOTLE-MTIME: 1458411682.000000\n" #: 01010000.xhp msgctxt "" @@ -561,14 +561,13 @@ msgstr "" #: 01010100.xhp -#, fuzzy msgctxt "" "01010100.xhp\n" "par_id3156414\n" "125\n" "help.text" msgid "Choose <emph>File - New - Templates</emph>" -msgstr "Aukeratu <emph>Fitxategia - Berria - Txantiloiak eta dokumentuak</emph>" +msgstr "Aukeratu <emph>Fitxategia - Berria - Txantiloiak</emph>" #: 01010100.xhp msgctxt "" @@ -3393,7 +3392,7 @@ "1\n" "help.text" msgid "<link href=\"text/shared/01/01100200.xhp\" name=\"General\">General</link>" -msgstr "<link href=\"text/shared/01/01100200.xhp\" name=\"General\">Orokorra</link>" +msgstr "<link href=\"text/shared/01/01100200.xhp\" name=\"Orokorra\">Orokorra</link>" #: 01100200.xhp msgctxt "" @@ -3667,7 +3666,7 @@ "1\n" "help.text" msgid "<link href=\"text/shared/01/01100300.xhp\" name=\"Custom Properties\">Custom Properties</link>" -msgstr "<link href=\"text/shared/01/01100000.xhp\" name=\"File properties\">Fitxategi-propietateak</link>" +msgstr "<link href=\"text/shared/01/01100300.xhp\" name=\"Propietate pertsonalizatuak\">Propietate pertsonalizatuak</link>" #: 01100300.xhp msgctxt "" @@ -3775,14 +3774,13 @@ msgstr "Fitxategiko orrialde kopurua." #: 01100400.xhp -#, fuzzy msgctxt "" "01100400.xhp\n" "hd_id3156027\n" "5\n" "help.text" msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Tables: </caseinline><caseinline select=\"CALC\">Number of Sheets: </caseinline></switchinline>" -msgstr "<switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Kolorea </caseinline><caseinline select=\"DRAW\">Kolorea </caseinline></switchinline>" +msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Taulak: </caseinline><caseinline select=\"CALC\">Orri-kopurua: </caseinline></switchinline>" #: 01100400.xhp msgctxt "" @@ -3965,7 +3963,7 @@ "hd_id3149969\n" "help.text" msgid "<link href=\"text/shared/01/01100600.xhp\" name=\"Security\">Security</link>" -msgstr "<link href=\"text/shared/01/01100200.xhp\" name=\"General\">Orokorra</link>" +msgstr "<link href=\"text/shared/01/01100600.xhp\" name=\"Segurtasuna\">Segurtasuna</link>" #: 01100600.xhp msgctxt "" @@ -4393,14 +4391,13 @@ 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 "" @@ -4570,7 +4567,7 @@ "par_id10\n" "help.text" msgid "<ahelp hid=\".\" visibility=\"hidden\">Specifies whether the form control fields of the text document are printed.</ahelp>" -msgstr "<ahelp hid=\"SW:CHECKBOX:TP_OPTPRINT_PAGE:CB_CTRLFLD\">Testu-dokumentuko inprimaki-kontrolen eremuak inprimatu behar diren zehazten du.</ahelp>" +msgstr "<ahelp hid=\".\" visibility=\"hidden\">Testu-dokumentuko inprimaki-kontrolen eremuak inprimatu behar diren zehazten du.</ahelp>" #: 01130000.xhp msgctxt "" @@ -4610,7 +4607,7 @@ "par_id20\n" "help.text" msgid "<ahelp hid=\".\" visibility=\"hidden\">Specifies whether you want the name of the document to be included in the printout.</ahelp>" -msgstr "<ahelp hid=\"STARMATH_CHECKBOX_RID_PRINTOPTIONPAGE_CB_TITLEROW\">Inprimaketan dokumentuaren izena gehitu nahi duzun zehazten du.</ahelp>" +msgstr "<ahelp hid=\".\" visibility=\"hidden\">Inprimaketan dokumentuaren izena gehitu nahi duzun zehazten du.</ahelp>" #: 01130000.xhp msgctxt "" @@ -4710,7 +4707,7 @@ "28\n" "help.text" msgid "<ahelp hid=\".\" visibility=\"hidden\">To print a range of pages, use a format like 3-6. To print single pages, use a format like 7;9;11. You can print a combination of page ranges and single pages, by using a format like 3-6;8;10;12.</ahelp>" -msgstr "Orrialde-bitarte bat esportatzeko, erabili 3-6 formatua. Banakako orrialdeak esportatzeko, erabili 7;9;11 formatua. Nahi izanez gero, orrialde-bitarteak eta banakako orrialdeak konbinatuz esporta daitezke, 3-6;8;10;12 formatua erabiliz." +msgstr "<ahelp hid=\".\" visibility=\"hidden\">Orrialde-bitarte bat esportatzeko, erabili 3-6 formatua. Banakako orrialdeak esportatzeko, erabili 7;9;11 formatua. Nahi izanez gero, orrialde-bitarteak eta banakako orrialdeak konbinatuz esporta daitezke, 3-6;8;10;12 formatua erabiliz.</ahelp>" #: 01130000.xhp msgctxt "" @@ -5051,7 +5048,7 @@ "par_id0818200912285146\n" "help.text" msgid "On the Options tab page you can set some additional options for the current print job. Here you can specify to print to a file instead of printing on a printer." -msgstr "Aukerak fitxan uneko inprimatze-lanaren aukera gehigarri batzuk ezar ditzakezu. Hemen, fitxategi batean inprimatzea zehaz dezakezu, inprimagailu batean inprimatu ordez." +msgstr "Aukerak fitxan uneko inprimatze-lanaren aukera gehigarri batzuk ezar ditzakezu. Hemen, fitxategi batean inprimatzea zehaztu dezakezu, inprimagailu batean inprimatu ordez." #: 01130000.xhp msgctxt "" @@ -5059,7 +5056,7 @@ "hd_id0819200910481678\n" "help.text" msgid "<switchinline select=\"sys\"><caseinline select=\"UNIX\">Unix hints</caseinline></switchinline>" -msgstr "<switchinline select=\"sys\"><caseinline select=\"WIN\">Iruzkinak </caseinline></switchinline>" +msgstr "<switchinline select=\"sys\"><caseinline select=\"UNIX\">Unix aholkuak</caseinline></switchinline>" #: 01130000.xhp msgctxt "" @@ -5087,14 +5084,13 @@ 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 "" @@ -5588,7 +5584,7 @@ "2\n" "help.text" msgid "<ahelp hid=\".\">Closes all $[officename] programs and prompts you to save your changes.</ahelp> <switchinline select=\"sys\"><caseinline select=\"MAC\">This command does not exist on Mac OS X systems.</caseinline><defaultinline/></switchinline>" -msgstr "<ahelp hid=\".uno:BasicStop\">Uneko makroaren exekuzioa geldiarazten du.</ahelp><switchinline select=\"sys\"><caseinline select=\"MAC\"></caseinline><defaultinline> Horren ordez, Ktrl+Alt+Q teklak sakatu ditzakezu.</defaultinline></switchinline>" +msgstr "<ahelp hid=\".\">$[officename] programa guztiak ixten ditu eta aldaketak gorde nahi dituzun galdetzen dizu.</ahelp> <switchinline select=\"sys\"><caseinline select=\"MAC\">Komando hau ez dago Mac OS X sistematan.</caseinline><defaultinline/></switchinline>" #: 01170000.xhp msgctxt "" @@ -6019,7 +6015,7 @@ "2\n" "help.text" msgid "<ahelp hid=\"svx/ui/imapdialog/TBI_REDO\">Reverses the action of the last <emph>Undo</emph> command. To select the <emph>Undo</emph> step that you want to reverse, click the arrow next to the <emph>Redo</emph> icon on the Standard bar.</ahelp>" -msgstr "<ahelp hid=\"HID_IMAPDLG_UNDO\">Azken komandoa edo idatzitako azken sarrera alderantzikatzen du. Alderantzikatu nahi duzun komandoa hautatzeko, egin klik Barra estandarreko <emph>Desegin </emph>ikonoaren ondoan dagoen gezian.</ahelp>" +msgstr "<ahelp hid=\"svx/ui/imapdialog/TBI_REDO\">Azken <emph>desegin</emph> komandoaren emaitza alderantzikatzen du. Alderantzikatu nahi duzun <emph>desegin</emph> komandoa hautatzeko, egin klik Barra estandarreko <emph>Berregin</emph> ikonoaren ondoan dagoen gezian.</ahelp>" #: 02030000.xhp msgctxt "" @@ -6193,14 +6189,13 @@ 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 "" @@ -7105,7 +7100,7 @@ "67\n" "help.text" msgid "Finds and selects all instances of the text or the format that you are searching for in the document (only in Writer and Calc documents)." -msgstr "<ahelp hid=\"SVX:PUSHBUTTON:RID_SVXDLG_SEARCH:BTN_SEARCH_ALL\">Testuaren edo dokumentuan bilatzen ari zaren formatuaren kasu guztiak bilatzen eta hautatzen ditu (Writer-eko edo Calc-eko dokumentuetan soilik).</ahelp>" +msgstr "Bilatzen ari zaren testu edo formatuaren agerraldi guztiak bilatzen eta hautatzen ditu dokumentuan (Writer-eko edo Calc-eko dokumentuetan soilik)." #: 02100000.xhp msgctxt "" @@ -7113,7 +7108,7 @@ "par_id31454242785\n" "help.text" msgid "<ahelp hid=\".\" visibility=\"hidden\">Finds and selects all instances of the text or the format that you are searching for in the document (only in Writer and Calc documents).</ahelp>" -msgstr "<ahelp hid=\"SVX:PUSHBUTTON:RID_SVXDLG_SEARCH:BTN_SEARCH_ALL\">Testuaren edo dokumentuan bilatzen ari zaren formatuaren kasu guztiak bilatzen eta hautatzen ditu (Writer-eko edo Calc-eko dokumentuetan soilik).</ahelp>" +msgstr "<ahelp hid=\".\" visibility=\"hidden\">Bilatzen ari zaren testu edo formatuaren agerraldi guztiak bilatzen eta hautatzen ditu dokumentuan (Writer-eko edo Calc-eko dokumentuetan soilik).</ahelp>" #: 02100000.xhp msgctxt "" @@ -7490,13 +7485,14 @@ 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 "" @@ -7508,13 +7504,14 @@ 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 "" @@ -7526,13 +7523,14 @@ 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 "" @@ -7552,13 +7550,14 @@ msgstr "" #: 02100001.xhp +#, fuzzy msgctxt "" "02100001.xhp\n" "par_id3156414\n" "25\n" "help.text" msgid "*" -msgstr "" +msgstr "*" #: 02100001.xhp msgctxt "" @@ -7597,13 +7596,14 @@ 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 "" @@ -7615,13 +7615,14 @@ 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 "" @@ -11196,13 +11197,12 @@ msgstr "" #: 02230000.xhp -#, fuzzy msgctxt "" "02230000.xhp\n" "hd_id3152952\n" "help.text" msgid "<link href=\"text/shared/01/02230000.xhp\" name=\"Changes\">Track Changes</link>" -msgstr "<link href=\"text/shared/01/02230000.xhp\" name=\"Changes\">Aldaketak</link>" +msgstr "<link href=\"text/shared/01/02230000.xhp\" name=\"Aldaketak\">Jarraitu aldaketak</link>" #: 02230000.xhp #, fuzzy @@ -11223,13 +11223,12 @@ msgstr "Erakutsi" #: 02230000.xhp -#, fuzzy msgctxt "" "02230000.xhp\n" "hd_id3153527\n" "help.text" msgid "<link href=\"text/shared/01/02230400.xhp\" name=\"Manage Changes\">Manage Changes</link>" -msgstr "<link href=\"text/shared/01/02230000.xhp\" name=\"Changes\">Aldaketak</link>" +msgstr "<link href=\"text/shared/01/02230400.xhp\" name=\"Kudeatu Aldaketak\">Kudeatu Aldaketak</link>" #: 02230000.xhp #, fuzzy @@ -11437,14 +11436,13 @@ 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 "" @@ -11963,14 +11961,13 @@ 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 "" @@ -12830,13 +12827,12 @@ msgstr "Onena" #: 03010000.xhp -#, fuzzy msgctxt "" "03010000.xhp\n" "par_id3144760\n" "help.text" msgid "<ahelp hid=\"HID_MNU_ZOOM_OPTIMAL\"><switchinline select=\"appl\"><caseinline select=\"CALC\">Resizes the display to fit the width of the selected cell area at the moment the command is started.</caseinline><defaultinline>Resizes the display to fit the width of the text in the document at the moment the command is started.</defaultinline></switchinline></ahelp>" -msgstr "<ahelp hid=\".\" visibility=\"hidden\"><switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Diapositiba berrian diapositiba maisuko objektuak sartzen ditu. </caseinline><defaultinline>Orrialde berrian orrialde maisuko objektuak sartzen ditu.</defaultinline></switchinline></ahelp>" +msgstr "<ahelp hid=\"HID_MNU_ZOOM_OPTIMAL\"><switchinline select=\"appl\"><caseinline select=\"CALC\">Bistaratzea tamainaz aldatzen du hautatutako gelaxka barrutiak komandoa abiatzean duen zabalerara.</caseinline><defaultinline>Bisataratzea tamainaz aldatzen du dagoen dokumentuko testuaren zabalerara.</defaultinline></switchinline></ahelp>" #: 03010000.xhp #, fuzzy @@ -12848,13 +12844,12 @@ msgstr "Doitu zabalera eta altuera" #: 03010000.xhp -#, fuzzy msgctxt "" "03010000.xhp\n" "par_id3150543\n" "help.text" msgid "<ahelp hid=\"HID_MNU_ZOOM_WHOLE_PAGE\"><switchinline select=\"appl\"><caseinline select=\"CALC\">Resizes the display to fit the width and height of the selected cell area at the moment the command is started.</caseinline><defaultinline>Displays the entire page on your screen.</defaultinline></switchinline></ahelp>" -msgstr "<ahelp hid=\".\" visibility=\"hidden\"><switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Diapositiba berrian diapositiba maisuaren atzeko planoa aplikatzen du. </caseinline><defaultinline>Orrialde berrian orrialde maisuaren atzeko planoa aplikatzen du.</defaultinline></switchinline></ahelp>" +msgstr "<ahelp hid=\"HID_MNU_ZOOM_WHOLE_PAGE\"><switchinline select=\"appl\"><caseinline select=\"CALC\">Bistaratzea tamainaz aldatzen du hautatutako gelaxka barrutiak komandoa abiatzean duen zabalerara eta altuerara.</caseinline><defaultinline>Orri osoa bistaratzen du zure pantailan.</defaultinline></switchinline></ahelp>" #: 03010000.xhp #, fuzzy @@ -13455,7 +13450,7 @@ "par_id1830500\n" "help.text" msgid "In Writer, the command <item type=\"menuitem\">Insert - Comment</item> or the <switchinline select=\"sys\"><caseinline select=\"MAC\">Command+Option</caseinline><defaultinline>Ctrl+Alt</defaultinline></switchinline>+C key combination inserts a comment anchor at the current cursor position. A comment box is shown at the page margin, where you can enter the text of your comment. A line connects anchor and comment box. If a text range is selected, the comment is attached to the text range." -msgstr "Hitz-zatiketa automatikoa onartzeko hitzaren barruan bereizle bat sartuta, erabili <switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ktrl</defaultinline></switchinline>+minus teklak. Hitza kokaleku horretan bereiziko da lerro bukaeran, nahiz eta paragrafo horretako hitz-zatiketa automatikoa desaktibatuta egon." +msgstr "Writer aplikazioan <item type=\"menuitem\">Txertatu - Iruzkina</item>k edo <switchinline select=\"sys\"><caseinline select=\"MAC\">Komandoa+Aukera</caseinline><defaultinline>Ktrl+Alt</defaultinline></switchinline>+C tekla konbinazioak kurtsorearen uneko posizioan iruzkin aingura bat txertatzen du. Iruzkin kutxa bat bistaratzen da orriaren marjinan, bertan zure iruzkinaren testua sartu dezakezu. Marra batek aingura eta iruzkinaren kutxa lotzen ditu. Testu area bat hautatzen bada iruzkina testu areara lotzen da." #: 04050000.xhp msgctxt "" @@ -13992,7 +13987,7 @@ "1\n" "help.text" msgid "<link href=\"text/shared/01/04150000.xhp\" name=\"Drawing Object\">Drawing Object</link>" -msgstr "<link href=\"text/shared/01/04150100.xhp\" name=\"OLE Object\">OLE objektua</link>" +msgstr "<link href=\"text/shared/01/04150000.xhp\" name=\"Marrazki objektua\">Marrazki objektua</link>" #: 04150000.xhp msgctxt "" @@ -14013,14 +14008,13 @@ msgstr "<link href=\"text/shared/01/04150100.xhp\" name=\"OLE Object\">OLE objektua</link>" #: 04150000.xhp -#, fuzzy msgctxt "" "04150000.xhp\n" "hd_id3159201\n" "6\n" "help.text" msgid "<link href=\"text/shared/01/04150400.xhp\" name=\"Audio\">Audio</link>" -msgstr "<link href=\"text/shared/01/04150500.xhp\" name=\"Video\">Bideoa</link>" +msgstr "<link href=\"text/shared/01/04150400.xhp\" name=\"Audioa\">Audioa</link>" #: 04150000.xhp msgctxt "" @@ -14029,7 +14023,7 @@ "7\n" "help.text" msgid "<link href=\"text/shared/01/04150500.xhp\" name=\"Video\">Video</link>" -msgstr "<link href=\"text/shared/01/04150500.xhp\" name=\"Video\">Bideoa</link>" +msgstr "<link href=\"text/shared/01/04150500.xhp\" name=\"Bideoa\">Bideoa</link>" #: 04150000.xhp msgctxt "" @@ -14206,7 +14200,7 @@ "10\n" "help.text" msgid "<ahelp hid=\"cui/ui/insertoleobject/urled\">Enter the name of the file that you want to link or embed, or click <emph>Search</emph>, to locate the file.</ahelp>" -msgstr "<ahelp hid=\"SO3:EDIT:MD_INSERT_OLEOBJECT:ED_FILEPATH\">Idatzi estekatu edo txertatu nahi duzun fitxategiaren izena, edo egin klik <emph>Bilatu</emph> eremuan fitxategia aurkitzeko.</ahelp>" +msgstr "<ahelp hid=\"cui/ui/insertoleobject/urled\">Idatzi estekatu edo txertatu nahi duzun fitxategiaren izena, edo egin klik <emph>Bilatu</emph> eremuan fitxategia aurkitzeko.</ahelp>" #: 04150100.xhp msgctxt "" @@ -14785,14 +14779,13 @@ 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 "" @@ -15193,7 +15186,7 @@ "par_id0123200902243343\n" "help.text" msgid "<ahelp hid=\"cui/ui/effectspage/overlinelb\">Select the overlining style that you want to apply. To apply the overlining to words only, select the <emph>Individual Words</emph> box.</ahelp>" -msgstr "<ahelp hid=\".\">Hautatu aplikatu nahi duzun gaineko marraren estiloa. Gaineko marra hitzei bakarrik aplikatzeko, hautatu <emph>Hitzez hitz</emph> koadroa.</ahelp>" +msgstr "<ahelp hid=\"cui/ui/effectspage/overlinelb\">Hautatu aplikatu nahi duzun gaineko marraren estiloa. Gaineko marra hitzei bakarrik aplikatzeko, hautatu <emph>Hitzez hitz</emph> koadroa.</ahelp>" #: 05020200.xhp msgctxt "" @@ -15204,13 +15197,12 @@ 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 "" @@ -15255,7 +15247,7 @@ "42\n" "help.text" msgid "<ahelp hid=\"cui/ui/effectspage/underlinelb\">Select the underlining style that you want to apply. To apply the underlining to words only, select the <emph>Individual Words</emph> box.</ahelp>" -msgstr "<ahelp hid=\".\">Hautatu aplikatu nahi duzun gaineko marraren estiloa. Gaineko marra hitzei bakarrik aplikatzeko, hautatu <emph>Hitzez hitz</emph> koadroa.</ahelp>" +msgstr "<ahelp hid=\"cui/ui/effectspage/underlinelb\">Hautatu aplikatu nahi duzun azpimarraren estiloa. Azpimarra hitzei bakarrik aplikatzeko, hautatu <emph>Hitzez hitz</emph> koadroa.</ahelp>" #: 05020200.xhp msgctxt "" @@ -15276,14 +15268,13 @@ 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 "" @@ -15828,13 +15819,14 @@ msgstr "Azalpena" #: 05020301.xhp +#, fuzzy msgctxt "" "05020301.xhp\n" "par_id3152801\n" "5\n" "help.text" msgid "#" -msgstr "" +msgstr "#" #: 05020301.xhp msgctxt "" @@ -18544,7 +18536,7 @@ "27\n" "help.text" msgid "<ahelp hid=\"modules/swriter/ui/charurlpage/unvisitedlb\">Select a formatting style to use for unvisited links from the list. To add or modify a style in this list, close this dialog, and click the <emph>Styles and Formatting</emph> icon on the <emph>Formatting</emph> toolbar.</ahelp>" -msgstr "<ahelp hid=\"SW:LISTBOX:TP_CHAR_URL:LB_NOT_VISITED\">Hautatu formatu-estilo bat zerrendako bisitatu gabeko esteketan erabiltzeko. Zerrendako estilo bat gehitzeko edo aldatzeko, itxi elkarrizketa-koadro hau eta ondoren klik egin <emph>Formatua</emph> tresna-barrako<emph>Estiloak eta formatua</emph> ikonoan.</ahelp>" +msgstr "<ahelp hid=\"modules/swriter/ui/charurlpage/unvisitedlb\">Hautatu formatu-estilo bat zerrendako bisitatu gabeko esteketan erabiltzeko. Zerrendako estilo bat gehitzeko edo aldatzeko, itxi elkarrizketa-koadro hau eta ondoren klik egin <emph>Formatua</emph> tresna-barrako<emph>Estiloak eta formatua</emph> ikonoan.</ahelp>" #: 05020400.xhp msgctxt "" @@ -18864,7 +18856,7 @@ "20\n" "help.text" msgid "<ahelp hid=\"cui/ui/positionpage/kerninglb\">Specifies the spacing between the characters of the selected text. For expanded or condensed spacing, enter the amount that you want to expand or condense the text in the <emph>by </emph>box.</ahelp>" -msgstr "<ahelp hid=\"SVX_LISTBOX_RID_SVXPAGE_CHAR_POSITION_LB_KERNING2\">Hautatutako testuaren karaktereen arteko tartea zehazten du. Zabaldutako edo konprimitutako tarteetan, sartu <emph>-(r)en bidez </emph>koadroan testua zenbat tiratu edo konprimitu nahi duzun.</ahelp>" +msgstr "<ahelp hid=\"cui/ui/positionpage/kerninglb\">Hautatutako testuaren karaktereen arteko tartea zehazten du. Sartu <emph>kopurua</emph> koadroan testua zenbat zabaldu edo konprimitu nahi duzun.</ahelp>" #: 05020500.xhp msgctxt "" @@ -22604,7 +22596,7 @@ "1\n" "help.text" msgid "<link href=\"text/shared/01/05050000.xhp\" name=\"Change Case\">Change Case</link>" -msgstr "<link href=\"text/shared/01/02230000.xhp\" name=\"Changes\">Aldaketak</link>" +msgstr "<link href=\"text/shared/01/05050000.xhp\" name=\"Aldatu Maiuskula/minuskula\">Aldatu Maiuskula/minuskula</link>" #: 05050000.xhp msgctxt "" @@ -22649,7 +22641,7 @@ "6\n" "help.text" msgid "<ahelp hid=\".uno:ChangeCaseToLower\">Changes the selected western characters to lowercase characters.</ahelp>" -msgstr "<ahelp hid=\".uno:ChangeCaseToHiragana\">Hautatutako karaktere asiarrak Hiragana karaktere bihurtzen ditu.</ahelp>" +msgstr "<ahelp hid=\".uno:ChangeCaseToLower\">Hautatutako mendebaldeko karaktereak minuskulara aldatzen ditu.</ahelp>" #: 05050000.xhp msgctxt "" @@ -22667,7 +22659,7 @@ "4\n" "help.text" msgid "<ahelp hid=\".uno:ChangeCaseToUpper\">Changes the selected western characters to uppercase characters.</ahelp>" -msgstr "<ahelp hid=\".uno:ChangeCaseToHiragana\">Hautatutako karaktere asiarrak Hiragana karaktere bihurtzen ditu.</ahelp>" +msgstr "<ahelp hid=\".uno:ChangeCaseToUpper\">Hautatutako mendebaldeko karaktereak Maiuskulara aldatzen ditu.</ahelp>" #: 05050000.xhp msgctxt "" @@ -23100,7 +23092,7 @@ "2\n" "help.text" msgid "<ahelp hid=\".uno:AlignRight\">Aligns the right edges of the selected objects. If only one object is selected in Impress or Draw, the right edge of the object is aligned to the right page margin.</ahelp>" -msgstr "<ahelp hid=\".uno:AlignLeft\">Hautatutako objektuen ezkerreko ertzak lerrokatzen ditu. Draw-en edo Impress-en objektu bat hautatzen bada soilik, objektuaren ezkerreko ertza ezkerreko orrialde-marjinan lerrokatzen da.</ahelp>" +msgstr "<ahelp hid=\".uno:AlignRight\">Hautatutako objektuen eskumako ertzak lerrokatzen ditu. Draw-en edo Impress-en objektu bat hautatzen bada soilik, objektuaren eskumako ertza eskumako orrialde-marjinan lerrokatzen da.</ahelp>" #: 05070300.xhp msgctxt "" @@ -23135,7 +23127,7 @@ "2\n" "help.text" msgid "<ahelp hid=\".uno:AlignTop\">Vertically aligns the top edges of the selected objects. If only one object is selected in Draw or Impress, the top edge of the object is aligned to the upper page margin.</ahelp>" -msgstr "<ahelp hid=\".uno:AlignLeft\">Hautatutako objektuen ezkerreko ertzak lerrokatzen ditu. Draw-en edo Impress-en objektu bat hautatzen bada soilik, objektuaren ezkerreko ertza ezkerreko orrialde-marjinan lerrokatzen da.</ahelp>" +msgstr "<ahelp hid=\".uno:AlignTop\">Hautatutako objektuen goiko ertzak lerrokatzen ditu. Draw-en edo Impress-en objektu bat hautatzen bada soilik, objektuaren goiko ertza goiko orrialde-marjinan lerrokatzen da.</ahelp>" #: 05070400.xhp msgctxt "" @@ -23196,7 +23188,7 @@ "2\n" "help.text" msgid "<ahelp hid=\".\">Vertically aligns the bottom edges of the selected objects. If only one object is selected in Draw or Impress, the bottom edge of the object is aligned to the lower page margin.</ahelp>" -msgstr "<ahelp hid=\".uno:AlignLeft\">Hautatutako objektuen ezkerreko ertzak lerrokatzen ditu. Draw-en edo Impress-en objektu bat hautatzen bada soilik, objektuaren ezkerreko ertza ezkerreko orrialde-marjinan lerrokatzen da.</ahelp>" +msgstr "<ahelp hid=\".\">Hautatutako objektuen beheko ertzak bertikalki lerrokatzen ditu. Draw-en edo Impress-en objektu bat hautatzen bada soilik, objektuaren beheko ertza beheko orrialde-marjinan lerrokatzen da.</ahelp>" #: 05070600.xhp msgctxt "" @@ -23428,7 +23420,7 @@ "1\n" "help.text" msgid "<link href=\"text/shared/01/05100100.xhp\" name=\"Merge\">Merge</link>" -msgstr "<link href=\"text/shared/01/06140100.xhp\" name=\"Menu\">Menua</link>" +msgstr "<link href=\"text/shared/01/05100100.xhp\" name=\"Batu\">Batu</link>" #: 05100100.xhp msgctxt "" @@ -23498,7 +23490,7 @@ "1\n" "help.text" msgid "<link href=\"text/shared/01/05100200.xhp\" name=\"Split Cells\">Split Cells</link>" -msgstr "<link href=\"text/shared/01/05260400.xhp\" name=\"To Cell\">Gelaxkara</link>" +msgstr "<link href=\"text/shared/01/05100200.xhp\" name=\"Split Cells\">Gelaxkak banatu</link>" #: 05100200.xhp msgctxt "" @@ -23640,7 +23632,7 @@ "1\n" "help.text" msgid "<link href=\"text/shared/01/05100500.xhp\" name=\"Top\">Top</link>" -msgstr "<link href=\"text/shared/01/05030800.xhp\" name=\"Crop\">Moztu</link>" +msgstr "<link href=\"text/shared/01/05100500.xhp\" name=\"Top\">Goia</link>" #: 05100500.xhp msgctxt "" @@ -23675,7 +23667,7 @@ "1\n" "help.text" msgid "<link href=\"text/shared/01/05100600.xhp\" name=\"Center (vertical)\">Center (vertical)</link>" -msgstr "<link href=\"text/shared/01/05070200.xhp\" name=\"Center Horizontal\">Zentratu horizontalki</link>" +msgstr "<link href=\"text/shared/01/05100600.xhp\" name=\"Center (vertical)\">Zentratu (bertikalki)</link>" #: 05100600.xhp msgctxt "" @@ -23710,7 +23702,7 @@ "1\n" "help.text" msgid "<link href=\"text/shared/01/05100700.xhp\" name=\"Bottom\">Bottom</link>" -msgstr "<link href=\"text/shared/01/05110100.xhp\" name=\"Bold\">Lodia</link>" +msgstr "<link href=\"text/shared/01/05100700.xhp\" name=\"Bottom\">Behea</link>" #: 05100700.xhp msgctxt "" @@ -25019,14 +25011,13 @@ msgstr "Izena" #: 05200200.xhp -#, fuzzy msgctxt "" "05200200.xhp\n" "par_id3153681\n" "20\n" "help.text" msgid "<ahelp hid=\".\">Enter a name.</ahelp>" -msgstr "<ahelp hid=\".\">Sartu baldintza bat.</ahelp>" +msgstr "<ahelp hid=\".\">Sartu izen bat.</ahelp>" #: 05200200.xhp msgctxt "" @@ -25867,14 +25858,13 @@ 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 "" @@ -28086,7 +28076,7 @@ "1\n" "help.text" msgid "<link href=\"text/shared/01/05240100.xhp\" name=\"Vertically\">Vertically</link>" -msgstr "<link href=\"text/shared/01/01190000.xhp\" name=\"Versions\">Bertsioak</link>" +msgstr "<link href=\"text/shared/01/05240100.xhp\" name=\"Vertically\">Bertikalki</link>" #: 05240100.xhp msgctxt "" @@ -28112,7 +28102,7 @@ "1\n" "help.text" msgid "<link href=\"text/shared/01/05240200.xhp\" name=\"Horizontally\">Horizontally</link>" -msgstr "<link href=\"text/shared/01/05070200.xhp\" name=\"Center Horizontal\">Zentratu horizontalki</link>" +msgstr "<link href=\"text/shared/01/05240200.xhp\" name=\"Horizontally\">Horizontalki</link>" #: 05240200.xhp msgctxt "" @@ -29495,7 +29485,7 @@ "3\n" "help.text" msgid "To select an individual object in a group, hold down <switchinline select=\"sys\"> <caseinline select=\"MAC\">Command</caseinline> <defaultinline>Ctrl</defaultinline> </switchinline>, and then click the object." -msgstr "Talde batean objektu indibidual bat hautatzeko, sakatu <switchinline select=\"sys\"> <caseinline select=\"MAC\">Komandoa</caseinline> <defaultinline>Ktrl</defaultinline> </switchinline>, eta ondoren egin klik objektuan." +msgstr "Talde batean objektu indibidual bat hautatzeko, mantendu <switchinline select=\"sys\"> <caseinline select=\"MAC\">Komandoa</caseinline> <defaultinline>Ktrl</defaultinline> </switchinline>, eta ondoren egin klik objektuan." #: 05290300.xhp msgctxt "" @@ -30932,7 +30922,7 @@ "36\n" "help.text" msgid "<ahelp hid=\".\">Go to the first record in the table.</ahelp>" -msgstr "<ahelp hid=\".\" visibility=\"hidden\">Joan taularen aurreko erregistrora.</ahelp>" +msgstr "<ahelp hid=\".\">Joan taularen lehen erregistrora.</ahelp>" #: 05340400.xhp msgctxt "" @@ -30958,7 +30948,7 @@ "38\n" "help.text" msgid "<ahelp hid=\".\">Go to the previous record in the table.</ahelp>" -msgstr "<ahelp hid=\".\" visibility=\"hidden\">Joan taularen aurreko erregistrora.</ahelp>" +msgstr "<ahelp hid=\".\">Joan taularen aurreko erregistrora.</ahelp>" #: 05340400.xhp msgctxt "" @@ -31002,7 +30992,7 @@ "42\n" "help.text" msgid "<ahelp hid=\".\">Go to the next record in the table.</ahelp>" -msgstr "<ahelp hid=\".\" visibility=\"hidden\">Joan taularen aurreko erregistrora.</ahelp>" +msgstr "<ahelp hid=\".\">Joan taularen hurrengo erregistrora.</ahelp>" #: 05340400.xhp msgctxt "" @@ -31028,7 +31018,7 @@ "44\n" "help.text" msgid "<ahelp hid=\".\">Go to the last record in the table.</ahelp>" -msgstr "<ahelp hid=\".\" visibility=\"hidden\">Joan taularen aurreko erregistrora.</ahelp>" +msgstr "<ahelp hid=\".\">Joan taularen azken erregistrora.</ahelp>" #: 05340400.xhp msgctxt "" @@ -33053,7 +33043,7 @@ "1\n" "help.text" msgid "<link href=\"text/shared/01/06010000.xhp\" name=\"Spellcheck\">Spelling and Grammar</link>" -msgstr "<link href=\"text/shared/01/06990000.xhp\" name=\"Spellcheck\">Ortografia-egiaztatzea</link>" +msgstr "<link href=\"text/shared/01/06010000.xhp\" name=\"Spellcheck\">Ortografia eta gramatika</link>" #: 06010000.xhp msgctxt "" @@ -33923,7 +33913,7 @@ "tit\n" "help.text" msgid "Color Replacer" -msgstr "Kolore-barra" +msgstr "Tanta-kontagailua" #: 06030000.xhp msgctxt "" @@ -33932,7 +33922,7 @@ "1\n" "help.text" msgid "<link href=\"text/shared/01/06030000.xhp\" name=\"Color Replacer\">Color Replacer</link>" -msgstr "<link href=\"text/shared/01/03170000.xhp\" name=\"Color Bar\">Kolore-barra</link>" +msgstr "<link href=\"text/shared/01/06030000.xhp\" name=\"Color Replacer\">Tanta-kontagailua</link>" #: 06030000.xhp msgctxt "" @@ -33967,7 +33957,7 @@ "3\n" "help.text" msgid "Color Replacer" -msgstr "Kolore-barra" +msgstr "Tanta-kontagailua" #: 06030000.xhp msgctxt "" @@ -33985,7 +33975,7 @@ "5\n" "help.text" msgid "Color Replacer color" -msgstr "Kolore-hautapena" +msgstr "Tanta-kontagailua kolorea" #: 06030000.xhp msgctxt "" @@ -33994,7 +33984,7 @@ "6\n" "help.text" msgid "<ahelp hid=\".\">Displays the color in the selected image that directly underlies the current mouse pointer position. This features only works if the Color Replacer tool is selected.</ahelp>" -msgstr "<ahelp hid=\"HID_BMPMASK_CTL_PIPETTE\">Uneko saguaren kokalekuaren azpian kokatuta dagoen hautatutako irudian bistaratzen du kolorea. Eginbide honek funtzionatzeko ezinbestekoa da tanta-kontagailuaren tresna hautatuta egotea.</ahelp>" +msgstr "<ahelp hid=\".\">Uneko saguaren azpian kokatuta dagoen hautatutako irudiko kolorea bistaratzen du. Eginbide hau funtzionatzeko ezinbestekoa da tanta-kontagailuaren tresna hautatuta egotea.</ahelp>" #: 06030000.xhp msgctxt "" @@ -34066,7 +34056,7 @@ "14\n" "help.text" msgid "<ahelp hid=\".\">Displays the color in the selected image that you want to replace. To set the source color, click here, click the Color Replacer, and then click a color in the selected image.</ahelp>" -msgstr "<ahelp hid=\"HID_BMPMASK_CTL_QCOL_1\">Ordeztu nahi duzun hautatutako irudiko kolorea bistaratzen du. Jatorrizko kolorea ezartzeko, egin klik hemen, egin klik tanta-kontagailuan eta ondoren egin klik hautatutako irudiko kolore batean.</ahelp>" +msgstr "<ahelp hid=\".\">Ordeztu nahi duzun hautatutako irudiko kolorea bistaratzen du. Jatorrizko kolorea ezartzeko, egin klik hemen, egin klik tanta-kontagailuan eta ondoren egin klik hautatutako irudiko kolore batean.</ahelp>" #: 06030000.xhp msgctxt "" @@ -35200,7 +35190,7 @@ "15\n" "help.text" msgid "<link href=\"text/shared/01/06040400.xhp\" name=\"Localized Options\">Localized Options</link>" -msgstr "<link href=\"text/shared/01/06040300.xhp\" name=\"Exceptions\">Salbuespenak</link>" +msgstr "<link href=\"text/shared/01/06040400.xhp\" name=\"Localized Options\">Lokalizatutako Aukerak</link>" #: 06040400.xhp msgctxt "" @@ -35485,7 +35475,7 @@ "15\n" "help.text" msgid "Word is <name of language>" -msgstr "Hitza da <hizkuntza>" +msgstr "Hitza da <name of language>" #: 06040500.xhp msgctxt "" @@ -35503,7 +35493,7 @@ "17\n" "help.text" msgid "Paragraph is <name of language>" -msgstr "Paragrafoa da <hizkuntza>" +msgstr "Paragrafoa da <name of language>" #: 06040500.xhp msgctxt "" @@ -36081,7 +36071,7 @@ "hd_id0611200904373284\n" "help.text" msgid "<link href=\"text/shared/01/06050400.xhp\" name=\"Graphics\">Graphics</link>" -msgstr "<link href=\"text/shared/01/06050500.xhp\" name=\"Options\">Aukerak</link>" +msgstr "<link href=\"text/shared/01/06050400.xhp\" name=\"Graphics\">Grafikoak</link>" #: 06050400.xhp msgctxt "" @@ -36939,14 +36929,13 @@ msgstr "<ahelp hid=\"modules/swriter/ui/outlinepositionpage/indentatmf\">Idatzi zenbat leku utzi nahi duzun numerazio-ikurraren ezkerreko ertzaren eta testuaren ezkerreko ertzaren artean.</ahelp>" #: 06050600.xhp -#, fuzzy msgctxt "" "06050600.xhp\n" "hd_id3156194\n" "8\n" "help.text" msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Minimum space between numbering and text</caseinline></switchinline>" -msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Ondoz ondoko numerazioa </caseinline></switchinline>" +msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Gutxieneko espazioa numerazio eta testuaren artean</caseinline></switchinline>" #: 06050600.xhp msgctxt "" @@ -41405,7 +41394,7 @@ "par_id0821200910573716\n" "help.text" msgid "See also <link href=\"text/shared/guide/digital_signatures.xhp\">Digital Signatures</link>." -msgstr "<link href=\"text/shared/01/digitalsignatures.xhp\">Sinadura digitalak</link>" +msgstr "Ikus hau ere: <link href=\"text/shared/guide/digital_signatures.xhp\">Sinadura digitalak</link>." #: digitalsignatures.xhp msgctxt "" @@ -41902,7 +41891,6 @@ msgstr "<emph>(Gaiaren) propietateak</emph> elkarrizketa-koadroan ondorengo fitxak daude:" #: gallery.xhp -#, fuzzy msgctxt "" "gallery.xhp\n" "hd_id3151384\n" @@ -42125,7 +42113,7 @@ "par_idN10589\n" "help.text" msgid "Automatically aligns objects to vertical and horizontal grid lines. To override this feature, hold down the <switchinline select=\"sys\"><caseinline select=\"MAC\">Option key</caseinline><defaultinline>Alt key</defaultinline></switchinline> when you drag an object." -msgstr "Zerrendako eremu bat azkar txertatzeko, sakatu <switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ktrl</defaultinline></switchinline> eta egin klik bikoitza eremuan." +msgstr "Objektuak automatikoki lerrokatzen dira sareta-marra bertikal eta horizontaletan. Ezaugarri honi ez ikusi egiteko, mantendu <switchinline select=\"sys\"><caseinline select=\"MAC\">Aukera tekla</caseinline><defaultinline>Alt tekla</defaultinline></switchinline> objektua arrastatzean." #: grid.xhp msgctxt "" @@ -42214,7 +42202,7 @@ "par_idN10586\n" "help.text" msgid "Automatically aligns objects to vertical and horizontal snap lines. To override this feature, hold down the <switchinline select=\"sys\"><caseinline select=\"MAC\">Option key</caseinline><defaultinline>Alt key </defaultinline></switchinline>when you drag an object." -msgstr "Zerrendako eremu bat azkar txertatzeko, sakatu <switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ktrl</defaultinline></switchinline> eta egin klik bikoitza eremuan." +msgstr "Objektuak automatikoki lerrokatzen dira gida-marra bertikal eta horizontaletan. Ezaugarri honi ez ikusi egiteko, mantendu <switchinline select=\"sys\"><caseinline select=\"MAC\">Aukera tekla</caseinline><defaultinline>Alt tekla </defaultinline></switchinline>objektua arrastatzean." #: guides.xhp msgctxt "" @@ -42442,13 +42430,12 @@ msgstr "Bilatu" #: menu_edit_find.xhp -#, fuzzy msgctxt "" "menu_edit_find.xhp\n" "hd_id102920151222294818\n" "help.text" msgid "<link href=\"text/shared/01/menu_edit_find.xhp\" name=\"Find\">Find</link>" -msgstr "<link href=\"text/shared/01/gallery_files.xhp\" name=\"Files\">Fitxategiak</link>" +msgstr "<link href=\"text/shared/01/menu_edit_find.xhp\" name=\"Find\">Bilatu</link>" #: menu_edit_find.xhp msgctxt "" @@ -44884,7 +44871,7 @@ "hd_id14661702\n" "help.text" msgid "Time Stamp Authority" -msgstr "" +msgstr "Denbora-zigilu Autoritatea" #: ref_pdf_export.xhp msgctxt "" @@ -44892,7 +44879,7 @@ "par_id17868892\n" "help.text" msgid "<ahelp hid=\".\">Allows you to optionally select a Time Stamping Authority (TSA) URL. </ahelp>" -msgstr "" +msgstr "<ahelp hid=\".\">Aukeran Denbora-zigilu Autoritate (TSA) URL helbide bat hautatzea baimentzen dizu</ahelp>" #: ref_pdf_export.xhp msgctxt "" @@ -44900,7 +44887,7 @@ "par_id29089022\n" "help.text" msgid "During the PDF signing process, the TSA will be used to obtain a digitally signed timestamp that is then embedded in the signature. This (RFC 3161) timestamp will allow anyone viewing the PDF to verify when the document was signed." -msgstr "" +msgstr "PDFa sinatzeko prozesuan, denbora-zigilu autoritatea zure sinaduran txertatuko den digitalki sinatutako denbora-zigilu bat lortzeko erabiliko da. (RFC 3161) denbora-zigilu honek PDFa ikusten duen edonork dokumentua noiz sinatu den egiaztatzea baimenduko du. " #: ref_pdf_export.xhp msgctxt "" @@ -44916,7 +44903,7 @@ "par_id49089022\n" "help.text" msgid "If no TSA URL is selected (the default), the signature will not be timestamped, but will use the current time from your local computer." -msgstr "" +msgstr "TSA URLrik aukeratzen ez bada (lehenetsia), sinadurak ez du denbora-zigilurik izango, ordez ordenagailuaren uneko ordua erabiliko da." #: ref_pdf_export.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/eu/helpcontent2/source/text/shared/02.po libreoffice-5.1.2~rc2/translations/source/eu/helpcontent2/source/text/shared/02.po --- libreoffice-5.1.1~rc2/translations/source/eu/helpcontent2/source/text/shared/02.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/eu/helpcontent2/source/text/shared/02.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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:58+0000\n" -"Last-Translator: system user <>\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" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1431367118.000000\n" +"X-POOTLE-MTIME: 1457293922.000000\n" #: 01110000.xhp msgctxt "" @@ -48,7 +48,7 @@ "2\n" "help.text" msgid "<ahelp hid=\".uno:PrintDefault\">Click the <emph>Print File Directly</emph> icon to print the active document with the current default print settings.</ahelp> These can be found in the <emph>Printer Setup</emph> dialog, which you can call with the <link href=\"text/shared/01/01140000.xhp\" name=\"Printer Settings\"><emph>Printer Settings</emph></link> menu command." -msgstr "<ahelp hid=\".uno:PrintDefault\">Dokumentu aktiboa uneko inprimatze-ezarpen lehenetsiekin inprimatzeko, egin klik <emph>Inprimagailu-ezarpenak</emph> elkarrizketa-koadroko <emph>Inprimatu fitxategia zuzenean</emph> ikonoan. Elkarrizketa-koadroa </ahelp> <link href=\"text/shared/01/01140000.xhp\" name=\"Printer Settings\"><emph>Inprimagailu-ezarpenak</emph></link> menu-komandoaren bidez ireki dezakezu." +msgstr "<ahelp hid=\".uno:PrintDefault\">Egin klik <emph>Inprimatu fitxategia zuzenean</emph> ikonoan dokumentu aktiboa uneko inprimatze-ezarpen lehenetsiekin inprimatzeko.</ahelp> Hauek <emph>Inprimagailuaren konfigurazioa</emph> elkarrizketa-koadroan aurkituko dituzu, <link href=\"text/shared/01/01140000.xhp\" name=\"Printer Settings\"><emph>Inprimagailu-ezarpenak</emph></link> menu-komandoren bidez ireki dezakezu." #: 01110000.xhp msgctxt "" @@ -157,7 +157,7 @@ "par_id3147573\n" "help.text" msgid "<image id=\"img_id3153824\" src=\"cmd/sc_drawselect.png\" width=\"0.222in\" height=\"0.222in\"><alt id=\"alt_id3153824\">Icon</alt></image>" -msgstr "<image id=\"img_id3159194\" src=\"cmd/sc_drawselect.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3159194\">Ikonoa</alt></image>" +msgstr "<image id=\"img_id3153824\" src=\"cmd/sc_drawselect.png\" width=\"0.222in\" height=\"0.222in\"><alt id=\"alt_id3153824\">Ikonoa</alt></image>" #: 01140000.xhp msgctxt "" @@ -803,7 +803,7 @@ "par_id3156106\n" "help.text" msgid "<image id=\"img_id3153516\" src=\"cmd/sc_drawselect.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3153516\">Icon</alt></image>" -msgstr "<image id=\"img_id3159194\" src=\"cmd/sc_drawselect.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3159194\">Ikonoa</alt></image>" +msgstr "<image id=\"img_id3153516\" src=\"cmd/sc_drawselect.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3153516\">Ikonoa</alt></image>" #: 01170000.xhp msgctxt "" @@ -1429,7 +1429,7 @@ "par_id3149423\n" "help.text" msgid "<image id=\"img_id3150096\" src=\"cmd/sc_adddatefield.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3150096\">Icon</alt></image>" -msgstr "<image id=\"img_id3159194\" src=\"cmd/sc_drawselect.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3159194\">Ikonoa</alt></image>" +msgstr "<image id=\"img_id3150096\" src=\"cmd/sc_adddatefield.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3150096\">Ikonoa</alt></image>" #: 01170000.xhp msgctxt "" @@ -9418,7 +9418,7 @@ "tit\n" "help.text" msgid "Table Element / List Box / Combo Box Wizard: Data" -msgstr "Autopilotua: Taula-elementua /Zerrenda-koadroa / Konbinazio-koadroaren morroia: Datuak" +msgstr "Taula-elementua / Zerrenda-koadroa / Konbinazio-koadroaren morroia: Datuak" #: 01170801.xhp msgctxt "" @@ -9720,7 +9720,7 @@ "10\n" "help.text" msgid "The table given here appears in the <link href=\"text/shared/02/01170102.xhp\" name=\"Control properties\">Control properties</link> as an element of an SQL statement in the <emph>List Contents</emph> field." -msgstr "Hemen zehaztutako taula <emph>Zerrendaren edukia</emph> eremuko SQL instrukzioko elementu gisa agertzen da <link href=\"text/shared/02/01170102.xhp\" name=\"Control properties\">Kontrolaren propietate</link>etan." +msgstr "Hemengo taula hau <link href=\"text/shared/02/01170102.xhp\" name=\"Control properties\">Kontrolaren propietate</link>etan agertzen da, <emph>Zerrendaren edukia</emph> eremuko SQL instrukzioko elementu gisa." #: 01170902.xhp msgctxt "" @@ -11354,7 +11354,7 @@ "1\n" "help.text" msgid "<link href=\"text/shared/02/04210000.xhp\" name=\"Optimize\">Optimize</link>" -msgstr "<link href=\"text/shared/02/20090000.xhp\" name=\"Time\">Ordua</link>" +msgstr "<link href=\"text/shared/02/04210000.xhp\" name=\"Optimizatu\">Optimizatu</link>" #: 04210000.xhp msgctxt "" @@ -12825,7 +12825,7 @@ "2\n" "help.text" msgid "Hyperlinks to any document or targets in documents can be edited using the <emph>Document</emph> tab from the <link href=\"text/shared/02/09070000.xhp\" name=\"Hyperlink dialog\">Hyperlink dialog</link>." -msgstr "Edozein dokumenturen edo dokumentu barneko helbururen hiperestekak edita ditzakezu <link href=\"text/shared/02/09070000.xhp\" name=\"Hyperlink dialog\">Hiperestekaren elkarrizketa-koadroko</link><emph>Dokumentua</emph> fitxa erabiliz." +msgstr "Edozein dokumentura edo dokumentu barneko helburura doazen hiperestekak edita ditzakezu <emph>Dokumentua</emph> fitxa erabiliz <link href=\"text/shared/02/09070000.xhp\" name=\"Hyperlink dialog\">Hiperestekaren elkarrizketa-koadroan</link>." #: 09070300.xhp msgctxt "" @@ -13085,14 +13085,13 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/eu/helpcontent2/source/text/shared/04.po libreoffice-5.1.2~rc2/translations/source/eu/helpcontent2/source/text/shared/04.po --- libreoffice-5.1.1~rc2/translations/source/eu/helpcontent2/source/text/shared/04.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/eu/helpcontent2/source/text/shared/04.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,17 +3,18 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2013-11-20 13:02+0100\n" -"PO-Revision-Date: 2012-01-07 03:16+0200\n" -"Last-Translator: Mikel <mikel@akaita.com>\n" +"POT-Creation-Date: 2015-04-22 23:39+0200\n" +"PO-Revision-Date: 2016-02-28 12:18+0000\n" +"Last-Translator: Osoitz <oelkoro@gmail.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: eu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "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: 1456661902.000000\n" #: 01010000.xhp msgctxt "" @@ -424,7 +425,7 @@ "153\n" "help.text" msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline>+Down Arrow" -msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\"></caseinline><defaultinline>F1</defaultinline></switchinline>" +msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Aukera</caseinline><defaultinline>Alt</defaultinline></switchinline>+Behera-gezia" #: 01010000.xhp msgctxt "" @@ -466,7 +467,7 @@ "28\n" "help.text" msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+O" -msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\"></caseinline><defaultinline>F1</defaultinline></switchinline>" +msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Komandoa</caseinline><defaultinline>Ktrl</defaultinline></switchinline>+O" #: 01010000.xhp msgctxt "" @@ -484,7 +485,7 @@ "30\n" "help.text" msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+S" -msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\"></caseinline><defaultinline>F1</defaultinline></switchinline>" +msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Komandoa</caseinline><defaultinline>Ktrl</defaultinline></switchinline>+S" #: 01010000.xhp msgctxt "" @@ -502,7 +503,7 @@ "32\n" "help.text" msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+N" -msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\"></caseinline><defaultinline>F1</defaultinline></switchinline>" +msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Komandoa</caseinline> <defaultinline>Ktrl</defaultinline></switchinline>+N" #: 01010000.xhp msgctxt "" @@ -520,7 +521,7 @@ "178\n" "help.text" msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+N" -msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\"></caseinline><defaultinline>F1</defaultinline></switchinline>" +msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Komandoa</caseinline><defaultinline>Ktrl</defaultinline></switchinline>+Maius+N" #: 01010000.xhp msgctxt "" @@ -538,7 +539,7 @@ "34\n" "help.text" msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+P" -msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\"></caseinline><defaultinline>F1</defaultinline></switchinline>" +msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Komandoa</caseinline><defaultinline>Ktrl</defaultinline></switchinline>+P" #: 01010000.xhp msgctxt "" @@ -555,7 +556,7 @@ "hd_id3158474\n" "help.text" msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F" -msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\"></caseinline><defaultinline>F1</defaultinline></switchinline>" +msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Komandoa</caseinline><defaultinline>Ktrl</defaultinline></switchinline>+F" #: 01010000.xhp msgctxt "" @@ -572,7 +573,7 @@ "165\n" "help.text" msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+H" -msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\"></caseinline><defaultinline>F1</defaultinline></switchinline>" +msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Komandoa</caseinline><defaultinline>Ktrl</defaultinline></switchinline>+H" #: 01010000.xhp msgctxt "" @@ -590,7 +591,7 @@ "167\n" "help.text" msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+F" -msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\"></caseinline><defaultinline>F1</defaultinline></switchinline>" +msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Komandoa</caseinline><defaultinline>Ktrl</defaultinline></switchinline>+Maius+F" #: 01010000.xhp msgctxt "" @@ -608,7 +609,7 @@ "48\n" "help.text" msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\"/><defaultinline>Ctrl+Shift+J</defaultinline></switchinline>" -msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\"></caseinline><defaultinline>F1</defaultinline></switchinline>" +msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\"/><defaultinline>Ktrl+Maius+J</defaultinline></switchinline>" #: 01010000.xhp msgctxt "" @@ -626,7 +627,7 @@ "50\n" "help.text" msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+R" -msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\"></caseinline><defaultinline>F1</defaultinline></switchinline>" +msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Komandoa</caseinline><defaultinline>Ktrl</defaultinline></switchinline>+Maius+R" #: 01010000.xhp msgctxt "" @@ -644,7 +645,7 @@ "349\n" "help.text" msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+I" -msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\"></caseinline><defaultinline>F1</defaultinline></switchinline>" +msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Komandoa</caseinline><defaultinline>Ktrl</defaultinline></switchinline>+Maius+I" #: 01010000.xhp msgctxt "" @@ -662,7 +663,7 @@ "61\n" "help.text" msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\"/><defaultinline>F1</defaultinline></switchinline>" -msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\"></caseinline><defaultinline>F1</defaultinline></switchinline>" +msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\"/><defaultinline>F1</defaultinline></switchinline>" #: 01010000.xhp msgctxt "" @@ -689,7 +690,7 @@ "63\n" "help.text" msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\"/><defaultinline>Shift+F1</defaultinline></switchinline>" -msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\"></caseinline><defaultinline>F1</defaultinline></switchinline>" +msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\"/><defaultinline>Maius+F1</defaultinline></switchinline>" #: 01010000.xhp msgctxt "" @@ -698,7 +699,7 @@ "64\n" "help.text" msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\"/><defaultinline>Context Help</defaultinline></switchinline>" -msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\"></caseinline><defaultinline>F1</defaultinline></switchinline>" +msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\"/><defaultinline>Testuinguruko laguntza</defaultinline></switchinline>" #: 01010000.xhp msgctxt "" @@ -815,7 +816,7 @@ "113\n" "help.text" msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Q" -msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\"></caseinline><defaultinline>F1</defaultinline></switchinline>" +msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Komandoa</caseinline><defaultinline>Ktrl</defaultinline></switchinline>+Q" #: 01010000.xhp msgctxt "" @@ -857,7 +858,7 @@ "141\n" "help.text" msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Tab" -msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\"></caseinline><defaultinline>F1</defaultinline></switchinline>" +msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Komandoa</caseinline><defaultinline>Ktrl</defaultinline></switchinline>+Tab" #: 01010000.xhp msgctxt "" @@ -911,7 +912,7 @@ "36\n" "help.text" msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+X" -msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\"></caseinline><defaultinline>F1</defaultinline></switchinline>" +msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Komandoa</caseinline><defaultinline>Ktrl</defaultinline></switchinline>+X" #: 01010000.xhp msgctxt "" @@ -929,7 +930,7 @@ "38\n" "help.text" msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+C" -msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\"></caseinline><defaultinline>F1</defaultinline></switchinline>" +msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Komandoa</caseinline><defaultinline>Ktrl</defaultinline></switchinline>+C" #: 01010000.xhp msgctxt "" @@ -947,7 +948,7 @@ "40\n" "help.text" msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+V" -msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\"></caseinline><defaultinline>F1</defaultinline></switchinline>" +msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Komandoa</caseinline><defaultinline>Ktrl</defaultinline></switchinline>+V" #: 01010000.xhp msgctxt "" @@ -964,7 +965,7 @@ "par_id071620091225295\n" "help.text" msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command+Option</caseinline><defaultinline>Ctrl+Alt</defaultinline></switchinline>+Shift+V" -msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\"></caseinline><defaultinline>F1</defaultinline></switchinline>" +msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Komandoa+Aukera</caseinline><defaultinline>Ktrl+Alt</defaultinline></switchinline>+Maius+V" #: 01010000.xhp msgctxt "" @@ -980,7 +981,7 @@ "par_idN10F47\n" "help.text" msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+V" -msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\"></caseinline><defaultinline>F1</defaultinline></switchinline>" +msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Komandoa</caseinline><defaultinline>Ktrl</defaultinline></switchinline>+Maius+V" #: 01010000.xhp msgctxt "" @@ -997,7 +998,7 @@ "42\n" "help.text" msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+A" -msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\"></caseinline><defaultinline>F1</defaultinline></switchinline>" +msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Komandoa</caseinline><defaultinline>Ktrl</defaultinline></switchinline>+A" #: 01010000.xhp msgctxt "" @@ -1015,7 +1016,7 @@ "44\n" "help.text" msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Z" -msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\"></caseinline><defaultinline>F1</defaultinline></switchinline>" +msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Komandoa</caseinline><defaultinline>Ktrl</defaultinline></switchinline>+Z" #: 01010000.xhp msgctxt "" @@ -1033,7 +1034,7 @@ "351\n" "help.text" msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command+Shift+Z</caseinline><defaultinline>Ctrl+Y</defaultinline></switchinline>" -msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\"></caseinline><defaultinline>F1</defaultinline></switchinline>" +msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Komandoa+Maius+Z</caseinline><defaultinline>Ktrl+Y</defaultinline></switchinline>" #: 01010000.xhp msgctxt "" @@ -1050,7 +1051,7 @@ "par_id7297280\n" "help.text" msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+Y" -msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\"></caseinline><defaultinline>F1</defaultinline></switchinline>" +msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Komandoa</caseinline><defaultinline>Ktrl</defaultinline></switchinline>+Maius+Y" #: 01010000.xhp msgctxt "" @@ -1067,7 +1068,7 @@ "90\n" "help.text" msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+I" -msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\"></caseinline><defaultinline>F1</defaultinline></switchinline>" +msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Komandoa</caseinline><defaultinline>Ktrl</defaultinline></switchinline>+I" #: 01010000.xhp msgctxt "" @@ -1085,7 +1086,7 @@ "92\n" "help.text" msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+B" -msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\"></caseinline><defaultinline>F1</defaultinline></switchinline>" +msgstr "Sakatu <switchinline select=\"sys\"><caseinline select=\"MAC\">Komandoa</caseinline><defaultinline>Ktrl</defaultinline></switchinline>+B." #: 01010000.xhp msgctxt "" @@ -1103,7 +1104,7 @@ "94\n" "help.text" msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+U" -msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\"></caseinline><defaultinline>F1</defaultinline></switchinline>" +msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Komandoa</caseinline><defaultinline>Ktrl</defaultinline></switchinline>+U" #: 01010000.xhp msgctxt "" @@ -1120,7 +1121,7 @@ "par_idN10BC0\n" "help.text" msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Control</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+M" -msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\"></caseinline><defaultinline>F1</defaultinline></switchinline>" +msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Kontrol</caseinline><defaultinline>Ktrl</defaultinline></switchinline>+M" #: 01010000.xhp msgctxt "" @@ -1261,7 +1262,7 @@ "275\n" "help.text" msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Enter" -msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\"></caseinline><defaultinline>F1</defaultinline></switchinline>" +msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Komandoa</caseinline><defaultinline>Ktrl</defaultinline></switchinline>+Sartu" #: 01010000.xhp msgctxt "" @@ -1297,7 +1298,7 @@ "271\n" "help.text" msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+U" -msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\"></caseinline><defaultinline>F1</defaultinline></switchinline>" +msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Komandoa</caseinline><defaultinline>Ktrl</defaultinline></switchinline>+U" #: 01010000.xhp msgctxt "" @@ -1315,7 +1316,7 @@ "269\n" "help.text" msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+R" -msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\"></caseinline><defaultinline>F1</defaultinline></switchinline>" +msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Komandoa</caseinline><defaultinline>Ktrl</defaultinline></switchinline>+R" #: 01010000.xhp msgctxt "" @@ -1333,7 +1334,7 @@ "267\n" "help.text" msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+D" -msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\"></caseinline><defaultinline>F1</defaultinline></switchinline>" +msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Komandoa</caseinline><defaultinline>Ktrl</defaultinline></switchinline>+D" #: 01010000.xhp msgctxt "" @@ -1538,7 +1539,7 @@ "246\n" "help.text" msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+Insert" -msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\"></caseinline><defaultinline>F1</defaultinline></switchinline>" +msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Komandoa</caseinline><defaultinline>Ktrl</defaultinline></switchinline>+Maius+Txertatu" #: 01010000.xhp msgctxt "" @@ -1556,7 +1557,7 @@ "244\n" "help.text" msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+I" -msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\"></caseinline><defaultinline>F1</defaultinline></switchinline>" +msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Komandoa</caseinline><defaultinline>Ktrl</defaultinline></switchinline>+I" #: 01010000.xhp msgctxt "" @@ -1574,7 +1575,7 @@ "242\n" "help.text" msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+T" -msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\"></caseinline><defaultinline>F1</defaultinline></switchinline>" +msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Komandoa</caseinline><defaultinline>Ktrl</defaultinline></switchinline>+T" #: 01010000.xhp msgctxt "" @@ -1592,7 +1593,7 @@ "240\n" "help.text" msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+P" -msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\"></caseinline><defaultinline>F1</defaultinline></switchinline>" +msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Komandoa</caseinline><defaultinline>Ktrl</defaultinline></switchinline>+P" #: 01010000.xhp msgctxt "" @@ -1707,7 +1708,7 @@ "333\n" "help.text" msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Spacebar" -msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\"></caseinline><defaultinline>F1</defaultinline></switchinline>" +msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Komandoa</caseinline><defaultinline>Ktrl</defaultinline></switchinline>+espazo-barra" #: 01010000.xhp msgctxt "" @@ -1742,7 +1743,7 @@ "par_id1418805\n" "help.text" msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Page Up" -msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\"></caseinline><defaultinline>F1</defaultinline></switchinline>" +msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Komandoa</caseinline><defaultinline>Ktrl</defaultinline></switchinline>+OrrGor" #: 01010000.xhp msgctxt "" @@ -1758,7 +1759,7 @@ "par_id5994140\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\"></caseinline><defaultinline>F1</defaultinline></switchinline>" +msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Komandoa</caseinline><defaultinline>Ktrl</defaultinline></switchinline>+OrrBeh" #: 01010000.xhp msgctxt "" @@ -1818,7 +1819,7 @@ "227\n" "help.text" msgid "Select the document with <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F6 and press Tab" -msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\"></caseinline><defaultinline>F1</defaultinline></switchinline>" +msgstr "Aukeratu dokumentua honekin: <switchinline select=\"sys\"><caseinline select=\"MAC\">Komandoa</caseinline><defaultinline>Ktrl</defaultinline></switchinline>+F6 eta sakatu Tab" #: 01010000.xhp msgctxt "" @@ -1872,7 +1873,7 @@ "221\n" "help.text" msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Home" -msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\"></caseinline><defaultinline>F1</defaultinline></switchinline>" +msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Komandoa</caseinline><defaultinline>Ktrl</defaultinline></switchinline>+Hasi" #: 01010000.xhp msgctxt "" @@ -1890,7 +1891,7 @@ "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\"></caseinline><defaultinline>F1</defaultinline></switchinline>" +msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Komandoa</caseinline><defaultinline>Ktrl</defaultinline></switchinline>+Buka" #: 01010000.xhp msgctxt "" @@ -1962,7 +1963,7 @@ "213\n" "help.text" msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline>+Up/Down/Left/Right Arrow" -msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\"></caseinline><defaultinline>F1</defaultinline></switchinline>" +msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Aukera</caseinline><defaultinline>Alt</defaultinline></switchinline>+Gezi-tekla" #: 01010000.xhp msgctxt "" @@ -2061,7 +2062,7 @@ "202\n" "help.text" msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Tab" -msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\"></caseinline><defaultinline>F1</defaultinline></switchinline>" +msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Komandoa</caseinline><defaultinline>Ktrl</defaultinline></switchinline>+Tab" #: 01010000.xhp msgctxt "" @@ -2088,7 +2089,7 @@ "199\n" "help.text" msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+Tab" -msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\"></caseinline><defaultinline>F1</defaultinline></switchinline>" +msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Komandoa</caseinline><defaultinline>Ktrl</defaultinline></switchinline>+Maius+Tab" #: 01010000.xhp msgctxt "" @@ -2106,7 +2107,7 @@ "340\n" "help.text" msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Enter" -msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\"></caseinline><defaultinline>F1</defaultinline></switchinline>" +msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Komandoa</caseinline><defaultinline>Ktrl</defaultinline></switchinline>+Sartu" #: 01010000.xhp msgctxt "" @@ -2124,7 +2125,7 @@ "342\n" "help.text" msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Enter at the Selection icon" -msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\"></caseinline><defaultinline>F1</defaultinline></switchinline>" +msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Komandoa</caseinline><defaultinline>Ktrl</defaultinline></switchinline>+Sartu hautaketa ikonoan" #: 01010000.xhp msgctxt "" @@ -2186,7 +2187,7 @@ "par_id2693563\n" "help.text" msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline> key while creating or scaling a graphic object" -msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\"></caseinline><defaultinline>F1</defaultinline></switchinline>" +msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Aukera</caseinline><defaultinline>Alt</defaultinline></switchinline> tekla objektu grafiko bat tamainaz aldatzean" #: 01010000.xhp msgctxt "" @@ -2445,7 +2446,7 @@ "20\n" "help.text" msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline>+Down Arrow" -msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\"></caseinline><defaultinline>F1</defaultinline></switchinline>" +msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Aukera</caseinline><defaultinline>Alt</defaultinline></switchinline>+Behera-gezia" #: 01020000.xhp msgctxt "" @@ -2463,7 +2464,7 @@ "22\n" "help.text" msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline>+Up Arrow" -msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\"></caseinline><defaultinline>F1</defaultinline></switchinline>" +msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Aukera</caseinline><defaultinline>Alt</defaultinline></switchinline>+Gora-gezia" #: 01020000.xhp msgctxt "" @@ -2553,7 +2554,7 @@ "57\n" "help.text" msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F6" -msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\"></caseinline><defaultinline>F1</defaultinline></switchinline>" +msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Komandoa</caseinline><defaultinline>Ktrl</defaultinline></switchinline>+F6" #: 01020000.xhp msgctxt "" @@ -2596,7 +2597,7 @@ "33\n" "help.text" msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+PgUp" -msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\"></caseinline><defaultinline>F1</defaultinline></switchinline>" +msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Komandoa</caseinline><defaultinline>Ktrl</defaultinline></switchinline>+OrrGora" #: 01020000.xhp msgctxt "" @@ -2614,7 +2615,7 @@ "35\n" "help.text" msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+PgDn" -msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\"></caseinline><defaultinline>F1</defaultinline></switchinline>" +msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Komandoa</caseinline><defaultinline>Ktrl</defaultinline></switchinline>+OrrBehera" #: 01020000.xhp msgctxt "" @@ -2686,7 +2687,7 @@ "43\n" "help.text" msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Enter" -msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\"></caseinline><defaultinline>F1</defaultinline></switchinline>" +msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Komandoa</caseinline><defaultinline>Ktrl</defaultinline></switchinline>+Sartu" #: 01020000.xhp msgctxt "" @@ -2712,7 +2713,7 @@ "par_idN109BA\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\"></caseinline><defaultinline>F1</defaultinline></switchinline>" +msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Komandoa</caseinline><defaultinline>Ktrl</defaultinline></switchinline>+gezi-tekla" #: 01020000.xhp msgctxt "" @@ -2730,7 +2731,7 @@ "49\n" "help.text" msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Tab" -msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\"></caseinline><defaultinline>F1</defaultinline></switchinline>" +msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Komandoa</caseinline><defaultinline>Ktrl</defaultinline></switchinline>+Tab" #: 01020000.xhp msgctxt "" @@ -2748,7 +2749,7 @@ "51\n" "help.text" msgid "Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Tab" -msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\"></caseinline><defaultinline>F1</defaultinline></switchinline>" +msgstr "Maius+<switchinline select=\"sys\"><caseinline select=\"MAC\">Komandoa</caseinline><defaultinline>Ktrl</defaultinline></switchinline>+Tab" #: 01020000.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/eu/helpcontent2/source/text/shared/autopi.po libreoffice-5.1.2~rc2/translations/source/eu/helpcontent2/source/text/shared/autopi.po --- libreoffice-5.1.1~rc2/translations/source/eu/helpcontent2/source/text/shared/autopi.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/eu/helpcontent2/source/text/shared/autopi.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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:59+0000\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" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1431367161.000000\n" +"X-POOTLE-MTIME: 1457042909.000000\n" #: 01000000.xhp msgctxt "" @@ -3422,13 +3422,14 @@ msgstr "" #: 01090100.xhp +#, fuzzy msgctxt "" "01090100.xhp\n" "hd_id3150443\n" "10\n" "help.text" msgid ">" -msgstr "" +msgstr ">" #: 01090100.xhp msgctxt "" @@ -3437,7 +3438,7 @@ "11\n" "help.text" msgid "<ahelp hid=\"HID_DLGFORM_CMDMOVESELECTED\">Click to move the selected field(s) to the box that the arrow is pointing to.</ahelp>" -msgstr "<ahelp hid=\"HID_DLGFORM_CMDMOVESELECTED\">Egin klik hemen hautatutako eremua(k) eskuineko koadroari gehitzeko.</ahelp>" +msgstr "<ahelp hid=\"HID_DLGFORM_CMDMOVESELECTED\">Egin klik hautatutako eremua(k) geziak seinalatutako kutxara mugitzeko.</ahelp>" #: 01090100.xhp msgctxt "" @@ -3455,16 +3456,17 @@ "13\n" "help.text" msgid "<ahelp hid=\"HID_DLGFORM_CMDMOVEALL\">Click to move all fields to the box that the arrow is pointing to.</ahelp>" -msgstr "<ahelp hid=\"HID_DLGFORM_CMDMOVESELECTED\">Egin klik hemen hautatutako eremua(k) eskuineko koadroari gehitzeko.</ahelp>" +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 "" @@ -3473,7 +3475,7 @@ "15\n" "help.text" msgid "<ahelp hid=\"HID_DLGFORM_CMDREMOVESELECTED\">Click to move the selected field(s) to the box that the arrow is pointing to.</ahelp>" -msgstr "<ahelp hid=\"HID_DLGFORM_CMDMOVESELECTED\">Egin klik hemen hautatutako eremua(k) eskuineko koadroari gehitzeko.</ahelp>" +msgstr "<ahelp hid=\"HID_DLGFORM_CMDREMOVESELECTED\">Egin klik hautatutako eremua(k) geziak seinalatutako kutxara mugitzeko.</ahelp>" #: 01090100.xhp msgctxt "" @@ -3491,15 +3493,16 @@ "17\n" "help.text" msgid "<ahelp hid=\"HID_DLGFORM_CMDREMOVEALL\">Click to move all fields to the box that the arrow is pointing to.</ahelp>" -msgstr "<ahelp hid=\"HID_DLGFORM_CMDMOVESELECTED\">Egin klik hemen hautatutako eremua(k) eskuineko koadroari gehitzeko.</ahelp>" +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 @@ 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 "" @@ -4539,7 +4543,7 @@ "11\n" "help.text" msgid "<ahelp hid=\"HID_DLGREPORT_1_CMDMOVESELECTED\">Click to move the selected field(s) to the box that the arrow is pointing to.</ahelp>" -msgstr "<ahelp hid=\"HID_DLGFORM_CMDMOVESELECTED\">Egin klik hemen hautatutako eremua(k) eskuineko koadroari gehitzeko.</ahelp>" +msgstr "<ahelp hid=\"HID_DLGREPORT_1_CMDMOVESELECTED\">Egin klik hautatutako eremua(k) geziak seinalatutako kutxara mugitzeko.</ahelp>" #: 01100100.xhp msgctxt "" @@ -4557,16 +4561,17 @@ "13\n" "help.text" msgid "<ahelp hid=\"HID_DLGREPORT_1_CMDMOVEALL\">Click to move all fields to the box that the arrow is pointing to.</ahelp>" -msgstr "<ahelp hid=\"HID_DLGFORM_CMDMOVESELECTED\">Egin klik hemen hautatutako eremua(k) eskuineko koadroari gehitzeko.</ahelp>" +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 "" @@ -4575,7 +4580,7 @@ "15\n" "help.text" msgid "<ahelp hid=\"HID_DLGREPORT_1_CMDREMOVESELECTED\">Click to move the selected field(s) to the box that the arrow is pointing to.</ahelp>" -msgstr "<ahelp hid=\"HID_DLGFORM_CMDMOVESELECTED\">Egin klik hemen hautatutako eremua(k) eskuineko koadroari gehitzeko.</ahelp>" +msgstr "<ahelp hid=\"HID_DLGREPORT_1_CMDREMOVESELECTED\">Egin klik hautatutako eremua(k) geziak seinalatutako kutxara mugitzeko.</ahelp>" #: 01100100.xhp msgctxt "" @@ -4593,7 +4598,7 @@ "17\n" "help.text" msgid "<ahelp hid=\"HID_DLGREPORT_1_CMDREMOVEALL\">Click to move all fields to the box that the arrow is pointing to.</ahelp>" -msgstr "<ahelp hid=\"HID_DLGFORM_CMDMOVESELECTED\">Egin klik hemen hautatutako eremua(k) eskuineko koadroari gehitzeko.</ahelp>" +msgstr "<ahelp hid=\"HID_DLGREPORT_1_CMDREMOVEALL\">Egin klik hautatutako eremua(k) geziak seinalatutako kutxara mugitzeko.</ahelp>" #: 01100100.xhp msgctxt "" @@ -4720,13 +4725,14 @@ 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 "" @@ -4735,16 +4741,17 @@ "10\n" "help.text" msgid "<ahelp hid=\"HID_DLGREPORT_2_CMDGROUP\">Click to move the selected field to the box that the arrow is pointing to.</ahelp>" -msgstr "<ahelp hid=\"HID_DLGFORM_CMDMOVESELECTED\">Egin klik hemen hautatutako eremua(k) eskuineko koadroari gehitzeko.</ahelp>" +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 "" @@ -4753,7 +4760,7 @@ "11\n" "help.text" msgid "<ahelp hid=\"HID_DLGREPORT_2_CMDUNGROUP\">Click to move the selected field to the box that the arrow is pointing to.</ahelp>" -msgstr "<ahelp hid=\"HID_DLGFORM_CMDMOVESELECTED\">Egin klik hemen hautatutako eremua(k) eskuineko koadroari gehitzeko.</ahelp>" +msgstr "<ahelp hid=\"HID_DLGREPORT_2_CMDUNGROUP\">Egin klik hautatutako eremua geziak seinalatutako kutxara mugitzeko.</ahelp>" #: 01100200.xhp msgctxt "" @@ -9079,13 +9086,12 @@ msgstr "<ahelp hid=\"34246\">1024x768 pixeleko pantaila-bereizmenerako optimizatzen du web gunea.</ahelp>" #: webwizard04.xhp -#, fuzzy msgctxt "" "webwizard04.xhp\n" "par_idN105AF\n" "help.text" msgid "<link href=\"text/shared/autopi/webwizard05.xhp\">Web Wizard - Style</link>" -msgstr "<link href=\"text/shared/autopi/webwizard00.xhp\">Web morroia</link>" +msgstr "<link href=\"text/shared/autopi/webwizard05.xhp\">Web morroia - Estiloa</link>" #: webwizard05.xhp msgctxt "" @@ -9096,13 +9102,12 @@ msgstr "" #: webwizard05.xhp -#, fuzzy msgctxt "" "webwizard05.xhp\n" "par_idN10544\n" "help.text" msgid "<link href=\"text/shared/autopi/webwizard05.xhp\">Web Wizard - Style</link>" -msgstr "<link href=\"text/shared/autopi/webwizard00.xhp\">Web morroia</link>" +msgstr "<link href=\"text/shared/autopi/webwizard05.xhp\">Web morroia - Estiloa</link>" #: webwizard05.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/eu/helpcontent2/source/text/shared/explorer/database.po libreoffice-5.1.2~rc2/translations/source/eu/helpcontent2/source/text/shared/explorer/database.po --- libreoffice-5.1.1~rc2/translations/source/eu/helpcontent2/source/text/shared/explorer/database.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/eu/helpcontent2/source/text/shared/explorer/database.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\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" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2016-03-19 20:43+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 @@ "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: 1458420192.000000\n" #: 02000000.xhp msgctxt "" @@ -1760,13 +1760,14 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 "" @@ -14088,7 +14094,7 @@ "hd_id3486434\n" "help.text" msgid "<variable id=\"rep_sort\"><link href=\"text/shared/explorer/database/rep_sort.xhp\">Sorting and Grouping</link></variable>" -msgstr "<variable id=\"rep_prop\"><link href=\"text/shared/explorer/database/rep_prop.xhp\">Propietateak</link></variable>" +msgstr "<variable id=\"rep_sort\"><link href=\"text/shared/explorer/database/rep_sort.xhp\">Ordenatzea eta taldekatzea</link></variable>" #: rep_sort.xhp msgctxt "" @@ -14443,12 +14449,13 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/eu/helpcontent2/source/text/shared/guide.po libreoffice-5.1.2~rc2/translations/source/eu/helpcontent2/source/text/shared/guide.po --- libreoffice-5.1.1~rc2/translations/source/eu/helpcontent2/source/text/shared/guide.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/eu/helpcontent2/source/text/shared/guide.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\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:00+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2016-03-21 14:27+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 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1431367221.000000\n" +"X-POOTLE-MTIME: 1458570427.000000\n" #: aaa_start.xhp msgctxt "" @@ -1559,7 +1559,7 @@ "1\n" "help.text" msgid "<variable id=\"chart_barformat\"><link href=\"text/shared/guide/chart_barformat.xhp\" name=\"Adding Texture to Chart Bars\">Adding Texture to Chart Bars</link></variable>" -msgstr "<variable id=\"chart_axis\"><link href=\"text/shared/guide/chart_axis.xhp\" name=\"Editing Chart Axes\">Diagrama-ardatzak editatzea</link></variable>" +msgstr "<variable id=\"chart_barformat\"><link href=\"text/shared/guide/chart_barformat.xhp\" name=\"Adding Texture to Chart Bars\">Barra-diagramei testura gehitzea</link></variable>" #: chart_barformat.xhp msgctxt "" @@ -6839,7 +6839,7 @@ "49\n" "help.text" msgid "<variable id=\"dragdrop_gallery\"><link href=\"text/shared/guide/dragdrop_gallery.xhp\" name=\"Adding Graphics to the Gallery\">Adding Graphics to the Gallery</link> </variable>" -msgstr "<variable id=\"dragdrop_fromgallery\"><link href=\"text/shared/guide/dragdrop_fromgallery.xhp\" name=\"Copying Graphics From the Gallery\">Grafikoak galeriatik kopiatzea</link></variable>" +msgstr "<variable id=\"dragdrop_gallery\"><link href=\"text/shared/guide/dragdrop_gallery.xhp\" name=\"Adding Graphics to the Gallery\">Grafikoak galeriara gehitzea</link> </variable>" #: dragdrop_gallery.xhp msgctxt "" @@ -7247,14 +7247,13 @@ msgstr "$[officename] aplikazioarekin lan egitean, uneko dokumentua mezu elektronikoaren eranskin gisa bidal dezakezu." #: email.xhp -#, fuzzy msgctxt "" "email.xhp\n" "par_id3147335\n" "3\n" "help.text" msgid "Choose <emph>File - Send - E-mail Document</emph>." -msgstr "Aukeratu <emph>Fitxategia - Berria - XML inprimaki-dokumentua</emph>." +msgstr "Aukeratu <emph>Fitxategia - Bidali - Mezu elektronikoa</emph>." #: email.xhp msgctxt "" @@ -8712,7 +8711,7 @@ "hd_id2454298\n" "help.text" msgid "<variable id=\"groups\"><link href=\"text/shared/guide/groups.xhp\">Working with Groups</link> </variable>" -msgstr "<variable id=\"data_forms\"><link href=\"text/shared/guide/data_forms.xhp\">Inprimakiekin lan egitea</link></variable>" +msgstr "<variable id=\"groups\"><link href=\"text/shared/guide/groups.xhp\">Taldeekin lan egitea</link></variable>" #: groups.xhp msgctxt "" @@ -9921,7 +9920,7 @@ "4\n" "help.text" msgid "If you want to open up draw objects from the center instead of dragging from one corner to the other, hold down the <switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline> key while dragging. <switchinline select=\"sys\"><caseinline select=\"UNIX\">With some window managers, you may need to hold down also the meta key.</caseinline></switchinline>" -msgstr "Ez baduzu nahi balioak eta testuak automatikoki egokitzea, arrastatzean mantendu sakatuta <switchinline select=\"sys\"><caseinline select=\"MAC\">Komandoa</caseinline><defaultinline>Ktrl</defaultinline></switchinline>. Formulak, hala ere, beti egokitzen dira." +msgstr "" #: insert_graphic_drawit.xhp msgctxt "" @@ -9946,7 +9945,7 @@ "par_id224616\n" "help.text" msgid "To scale a draw object using the keyboard, first select the object, then press <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Tab repeatedly to highlight one of the handles. Then press an arrow key. To scale in smaller steps, hold down the <switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline> key while pressing an arrow key. Press Esc to leave the point edit mode." -msgstr "Beste aukera bat hau da: <switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ktrl</defaultinline></switchinline>+B sakatu eta formatu lodia eman nahi diozun testua idatzi. Amaitutakoan, sakatu <switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ktrl</defaultinline></switchinline>+B." +msgstr "Teklatua erabiliz marrazki-objektu tamainaz aldatzeko lehenbizi hautatu objektua, gero sakatu <switchinline select=\"sys\"><caseinline select=\"MAC\">Komandoa</caseinline><defaultinline>Ktrl</defaultinline></switchinline>+Tab hainbat aldiz nahi duzun heldulekoa nabarmendu arte. Orduan sakatu gezi-tekla bat. Urrats txikiagoetan tamainaz aldatzeko, mantendu <switchinline select=\"sys\"><caseinline select=\"MAC\">Aukera</caseinline><defaultinline>Alt</defaultinline></switchinline> tekla gezi-tekla sakatzean. Sakatu Ihes puntu-edizio modutik ateratzeko." #: insert_graphic_drawit.xhp msgctxt "" @@ -9963,7 +9962,7 @@ "par_id7199316\n" "help.text" msgid "To move a draw object using the keyboard, first select the object, then press an arrow key. To move in smaller steps, hold down the <switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline> key while pressing an arrow key." -msgstr "Talde batean objektu indibidual bat hautatzeko, sakatu <switchinline select=\"sys\"> <caseinline select=\"MAC\">Komandoa</caseinline> <defaultinline>Ktrl</defaultinline> </switchinline>, eta ondoren egin klik objektuan." +msgstr "Teklatua erabiliz marrazki objektu bat mugitzeko, lehenbizi hautatu objektua, gero sakatu gezi-tekla bat. Urrats txikiagoetan mugitzeko, mantendu <switchinline select=\"sys\"><caseinline select=\"MAC\">Aukera</caseinline><defaultinline>Alt</defaultinline></switchinline> tekla gezi-tekla sakatzean." #: insert_graphic_drawit.xhp msgctxt "" @@ -13949,7 +13948,7 @@ "20\n" "help.text" msgid "Pivot tables" -msgstr "Errotazio-taulak" +msgstr "Taula dinamikoak" #: ms_import_export_limitations.xhp msgctxt "" @@ -15166,7 +15165,7 @@ "hd_id3144547360\n" "help.text" msgid "In Writer text documents, you can press <switchinline select=\"sys\"><caseinline select=\"MAC\">Command+Option</caseinline><defaultinline>Ctrl+Alt</defaultinline></switchinline>+Shift+V to paste the contents of the clipboard as unformatted text." -msgstr "Zerrenda atzekoz aurrera bistaratzeko, sakatu <switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ktrl</defaultinline></switchinline>+Maius+Tab." +msgstr "Writer testu-dokumentuetan, <switchinline select=\"sys\"><caseinline select=\"MAC\">Komandoa+Aukera</caseinline><defaultinline>Ktrl+Alt</defaultinline></switchinline>+Maius+V sakatu dezakezu arbeleko edukiak formatu gabeko testu gisa itsasteko." #: pasting.xhp msgctxt "" @@ -16293,7 +16292,7 @@ "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 "" @@ -16431,13 +16430,12 @@ 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 "" @@ -17268,14 +17266,13 @@ msgstr "" #: space_hyphen.xhp -#, fuzzy msgctxt "" "space_hyphen.xhp\n" "par_id3154306\n" "60\n" "help.text" msgid "To support automatic hyphenation by entering a soft hyphen inside a word yourself, use the keys <switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+minus sign. The word is separated at this position when it is at the end of the line, even if automatic hyphenation for this paragraph is switched off." -msgstr "Hitz-zatiketa automatikoa onartzeko hitzaren barruan bereizle bat sartuta, erabili <switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ktrl</defaultinline></switchinline>+minus teklak. Hitza kokaleku horretan bereiziko da lerro bukaeran, nahiz eta paragrafo horretako hitz-zatiketa automatikoa desaktibatuta egon." +msgstr "Hitz-zatiketa automatikoa onartzeko hitzaren barruan bereizle bat sartuta, erabili <switchinline select=\"sys\"><caseinline select=\"MAC\">Komandoa </caseinline><defaultinline>Ktrl</defaultinline></switchinline>+minus teklak. Hitza kokaleku horretan bereiziko da lerro bukaeran, nahiz eta paragrafo horretako hitz-zatiketa automatikoa desaktibatuta egon." #: space_hyphen.xhp msgctxt "" @@ -17489,14 +17486,13 @@ msgstr "" #: standard_template.xhp -#, fuzzy msgctxt "" "standard_template.xhp\n" "par_id3154011\n" "9\n" "help.text" msgid "Choose <emph>File - New - Templates</emph>." -msgstr "Aukeratu <emph>Fitxategia - Berria - Datu-basea</emph>." +msgstr "Aukeratu <emph>Fitxategia - Berria - Txantiloiak</emph>" #: standard_template.xhp msgctxt "" @@ -18350,7 +18346,7 @@ "hd_id0820200802524447\n" "help.text" msgid "<variable id=\"startcenter\"><link href=\"text/shared/guide/startcenter.xhp\">Start Center</link></variable>" -msgstr "<variable id=\"xsltfilter\"><link href=\"text/shared/guide/xsltfilter.xhp\">XML iragazkiak</link></variable>" +msgstr "<variable id=\"startcenter\"><link href=\"text/shared/guide/startcenter.xhp\">Hasiera zentroa</link></variable>" #: startcenter.xhp msgctxt "" @@ -18816,7 +18812,7 @@ "par_id3156410\n" "help.text" msgid "<image id=\"img_id3159233\" src=\"cmd/sc_color.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3159233\">Icon</alt></image>" -msgstr "<image id=\"img_id3143270\" src=\"cmd/sc_paste.png\" width=\"5.64mm\" height=\"5.64mm\"><alt id=\"alt_id3143270\">Ikonoa</alt></image>" +msgstr "<image id=\"img_id3159233\" src=\"cmd/sc_color.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3159233\">Icon</alt></image>" #: text_color.xhp msgctxt "" @@ -18833,7 +18829,7 @@ "par_id3154897\n" "help.text" msgid "<image id=\"img_id3150503\" src=\"cmd/sc_fillstyle.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3150503\">Icon</alt></image>" -msgstr "<image id=\"img_id3143270\" src=\"cmd/sc_paste.png\" width=\"5.64mm\" height=\"5.64mm\"><alt id=\"alt_id3143270\">Ikonoa</alt></image>" +msgstr "<image id=\"img_id3150503\" src=\"cmd/sc_fillstyle.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3150503\">Icon</alt></image>" #: text_color.xhp msgctxt "" @@ -19521,7 +19517,7 @@ "par_idN10923\n" "help.text" msgid "<variable id=\"xsltfilter\"><link href=\"text/shared/guide/xsltfilter.xhp\">About XML Filters</link> </variable>" -msgstr "<variable id=\"xsltfilter\"><link href=\"text/shared/guide/xsltfilter.xhp\">XML iragazkiak</link></variable>" +msgstr "<variable id=\"xsltfilter\"><link href=\"text/shared/guide/xsltfilter.xhp\">XML iragazkiei buruz</link> </variable>" #: xsltfilter.xhp msgctxt "" @@ -19593,7 +19589,7 @@ "par_id5569017\n" "help.text" msgid "<link href=\"text/shared/guide/xsltfilter_distribute.xhp\">Distributing XML filters</link>" -msgstr "<link href=\"text/shared/guide/xsltfilter_distribute.xhp\">XML iragazkia banatzea</link>" +msgstr "<link href=\"text/shared/guide/xsltfilter_distribute.xhp\">XML iragazkiak banatzea</link>" #: xsltfilter.xhp msgctxt "" @@ -19601,7 +19597,7 @@ "par_id6426892\n" "help.text" msgid "<link href=\"text/shared/guide/xsltfilter_create.xhp\">Creating and Testing XML filters</link>" -msgstr "<link href=\"text/shared/guide/xsltfilter_distribute.xhp\">XML iragazkia banatzea</link>" +msgstr "<link href=\"text/shared/guide/xsltfilter_create.xhp\">XML iragazkiak sortzea eta probatzea</link>" #: xsltfilter_create.xhp msgctxt "" @@ -19921,7 +19917,7 @@ "par_id5569017\n" "help.text" msgid "<link href=\"text/shared/guide/xsltfilter_distribute.xhp\">Distributing XML filters</link>" -msgstr "<link href=\"text/shared/guide/xsltfilter_distribute.xhp\">XML iragazkia banatzea</link>" +msgstr "<link href=\"text/shared/guide/xsltfilter_distribute.xhp\">XML iragazkiak banatzea</link>" #: xsltfilter_distribute.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/eu/helpcontent2/source/text/shared/optionen.po libreoffice-5.1.2~rc2/translations/source/eu/helpcontent2/source/text/shared/optionen.po --- libreoffice-5.1.1~rc2/translations/source/eu/helpcontent2/source/text/shared/optionen.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/eu/helpcontent2/source/text/shared/optionen.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "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:00+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2016-03-20 22:02+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 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1431367242.000000\n" +"X-POOTLE-MTIME: 1458511378.000000\n" #: 01000000.xhp msgctxt "" @@ -785,7 +785,7 @@ "hd_id3154909\n" "help.text" msgid "Automatically save the document too" -msgstr "" +msgstr "Dokumentua ere automatikoki gorde" #: 01010200.xhp msgctxt "" @@ -2376,14 +2376,13 @@ msgstr "" #: 01010500.xhp -#, fuzzy msgctxt "" "01010500.xhp\n" "par_id3153726\n" "18\n" "help.text" msgid "<ahelp hid=\"cui/ui/colorpage/B\">Blue</ahelp>" -msgstr "<ahelp hid=\"cui/ui/colorpage/K\">Beltza</ahelp>" +msgstr "<ahelp hid=\"cui/ui/colorpage/B\">Urdina</ahelp>" #: 01010500.xhp msgctxt "" @@ -2404,14 +2403,13 @@ msgstr "" #: 01010500.xhp -#, fuzzy msgctxt "" "01010500.xhp\n" "par_id3145800\n" "43\n" "help.text" msgid "<ahelp hid=\"cui/ui/colorpage/C\">Cyan</ahelp>" -msgstr "<ahelp hid=\"cui/ui/colorpage/G\">Berdea</ahelp>" +msgstr "<ahelp hid=\"cui/ui/colorpage/C\">Cyan</ahelp>" #: 01010500.xhp msgctxt "" @@ -2423,14 +2421,13 @@ msgstr "" #: 01010500.xhp -#, fuzzy msgctxt "" "01010500.xhp\n" "par_id3150093\n" "45\n" "help.text" msgid "<ahelp hid=\"cui/ui/colorpage/M\">Magenta</ahelp>" -msgstr "<ahelp hid=\"cui/ui/colorpage/G\">Berdea</ahelp>" +msgstr "<ahelp hid=\"cui/ui/colorpage/M\">Magenta</ahelp>" #: 01010500.xhp msgctxt "" @@ -2442,14 +2439,13 @@ msgstr "" #: 01010500.xhp -#, fuzzy msgctxt "" "01010500.xhp\n" "par_id3154098\n" "47\n" "help.text" msgid "<ahelp hid=\"cui/ui/colorpage/Y\">Yellow</ahelp>" -msgstr "<ahelp hid=\"cui/ui/colorpage/R\">Gorria</ahelp>" +msgstr "<ahelp hid=\"cui/ui/colorpage/Y\">Horia</ahelp>" #: 01010500.xhp msgctxt "" @@ -3602,13 +3598,12 @@ msgstr "" #: 01010800.xhp -#, fuzzy msgctxt "" "01010800.xhp\n" "par_id4743797\n" "help.text" msgid "<ahelp hid=\"cui/ui/optviewpage/aanf\">Enter the smallest font size to apply antialiasing.</ahelp>" -msgstr "<ahelp hid=\".\">Sartu letra-tamaina txikiena antialiasing-a aplikatzeko.</ahelp>" +msgstr "<ahelp hid=\"cui/ui/optviewpage/aanf\">Sartu letra-tamaina txikiena antialiasing-a aplikatzeko.</ahelp>" #: 01010800.xhp msgctxt "" @@ -3705,13 +3700,12 @@ msgstr "Erabili hardware-azelerazioa" #: 01010800.xhp -#, fuzzy msgctxt "" "01010800.xhp\n" "par_idN10AD8\n" "help.text" msgid "<ahelp hid=\"cui/ui/optviewpage/useaccel\">Directly accesses hardware features of the graphical display adapter to improve the screen display.</ahelp> The support for hardware acceleration is not available for all operating systems and platform distributions of %PRODUCTNAME." -msgstr "<ahelp hid=\".\">Zuzenean sartzen da bistaratze-grafikoaren moldagailuaren hardware-eginbideetara.</ahelp> Hardware-azelerazioaren laguntza ez dago erabilgarri %PRODUCTNAME(r)en sistema eragile eta plataforma-banaketa guztietan." +msgstr "<ahelp hid=\"cui/ui/optviewpage/useaccel\">Zuzenean sartzen da bistaratze-grafikoaren moldagailuaren hardware-eginbideetara.</ahelp> Hardware-azelerazioaren laguntza ez dago erabilgarri %PRODUCTNAME(r)en sistema eragile eta plataforma-banaketa guztietan." #: 01010800.xhp msgctxt "" @@ -5046,14 +5040,13 @@ msgstr "Kargatzeko/gordetzeko aukerak" #: 01020000.xhp -#, fuzzy msgctxt "" "01020000.xhp\n" "par_id3146957\n" "2\n" "help.text" msgid "<variable id=\"laden\"><ahelp hid=\".\" visibility=\"visible\">Specifies general Load/Save settings. </ahelp></variable>" -msgstr "<variable id=\"laden\"><ahelp hid=\"\" visibility=\"visible\">Kargatzeko/Gordetzeko ezarpen orokorrak zehazten ditu. </ahelp></variable>" +msgstr "<variable id=\"laden\"><ahelp hid=\".\" visibility=\"visible\">Kargatzeko/Gordetzeko ezarpen orokorrak zehazten ditu. </ahelp></variable>" #: 01020100.xhp msgctxt "" @@ -5724,7 +5717,7 @@ "par_idN1068B1\n" "help.text" msgid "Allows you to maintain a list of Time Stamping Authority (TSA) URLs. TSAs issue digitally signed timestamps (RFC 3161) that are optionally used during signed PDF export." -msgstr "" +msgstr "Denbora-zigilu Autoritate (TSA) URL zerrenda bat mantentzea baimentzen dizu. TSAk digitalki sinatutako denbora-zigiluak sortzen dituzte (RFC 3161) eta aukeran sinatutako PDF baten esportazioan erabili daitezke." #: 01030300.xhp msgctxt "" @@ -5740,7 +5733,7 @@ "par_idN106921\n" "help.text" msgid "Opens the <emph>Time Stamping Authority URLs</emph> dialog." -msgstr "" +msgstr "<emph>Denbora-zigilu Autoritate URLak</emph> elkarrizketa-koadroa irekitzen du." #: 01030500.xhp msgctxt "" @@ -6338,14 +6331,13 @@ msgstr "<variable id=\"grafikenaus\"><ahelp hid=\"modules/swriter/ui/viewoptionspage/graphics\">Irudiak eta objektuak pantailan bistaratu behar diren edo ez zehazten du.</ahelp></variable> Elementu hauek ezkutatuta badaude, marko hutsak ikusiko dituzu leku-marka gisa." #: 01040200.xhp -#, fuzzy msgctxt "" "01040200.xhp\n" "par_id3154944\n" "38\n" "help.text" msgid "You can also control the display of graphics through the <link href=\"text/swriter/02/18120000.xhp\" name=\"Graphics\"><emph>Images and Charts</emph></link> icon. If a text document is open, this icon is displayed on the <emph>Tools</emph> bar." -msgstr "Irudien bistaratzea ere kontrola dezakezu <link href=\"text/swriter/02/18120000.xhp\" name=\"Graphics\"><emph>Irudiak jarri/kendu</emph></link> ikonoaren bidez. Testu-dokumentu bat irekita badago, <emph>Tresna-</emph> barran bistaratuko da ikonoa." +msgstr "Irudien bistaratzea ere kontrola dezakezu <link href=\"text/swriter/02/18120000.xhp\" name=\"Graphics\"><emph>Irudiak eta grafikoak</emph></link> ikonoaren bidez. Testu-dokumentu bat irekita badago, <emph>Tresna</emph>-barran bistaratuko da ikonoa." #: 01040200.xhp msgctxt "" @@ -11095,7 +11087,7 @@ "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 "" @@ -11199,7 +11191,7 @@ "par_id3154918\n" "help.text" msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+D" -msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\"></caseinline><defaultinline>F1</defaultinline></switchinline>" +msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Komandoa</caseinline><defaultinline>Ktrl</defaultinline></switchinline>+D" #: 01060800.xhp msgctxt "" @@ -11303,7 +11295,7 @@ "hd_id3145071\n" "help.text" msgid "<link href=\"text/shared/optionen/01060900.xhp\" name=\"Formula\">Formula</link>" -msgstr "<link href=\"text/shared/optionen/01010700.xhp\" name=\"Fonts\">Letra-tipoak</link>" +msgstr "<link href=\"text/shared/optionen/01060900.xhp\" name=\"Formula\">Formula</link>" #: 01060900.xhp msgctxt "" @@ -11567,7 +11559,7 @@ "hd_id3145071\n" "help.text" msgid "<link href=\"text/shared/optionen/01061000.xhp\" name=\"Defaults\">Defaults</link>" -msgstr "<link href=\"text/shared/optionen/01110100.xhp\" name=\"Default colors\">Kolore lehenetsiak</link>" +msgstr "<link href=\"text/shared/optionen/01061000.xhp\" name=\"Defaults\">Lehenespenak</link>" #: 01061000.xhp msgctxt "" @@ -11937,7 +11929,7 @@ "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 "" @@ -13335,14 +13327,13 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/eu/helpcontent2/source/text/simpress/00.po libreoffice-5.1.2~rc2/translations/source/eu/helpcontent2/source/text/simpress/00.po --- libreoffice-5.1.1~rc2/translations/source/eu/helpcontent2/source/text/simpress/00.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/eu/helpcontent2/source/text/simpress/00.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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-09-02 19:27+0000\n" -"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n" +"PO-Revision-Date: 2016-03-19 21:13+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 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1378150071.000000\n" +"X-POOTLE-MTIME: 1458422001.000000\n" #: 00000004.xhp msgctxt "" @@ -733,7 +733,7 @@ "21\n" "help.text" msgid "<variable id=\"feldbf5\">Choose <emph>Insert - Fields - Page Number</emph></variable>" -msgstr "<variable id=\"feldbf7\">Aukeratu <emph>Txertatu - Eremuak - Fitxategi-izena</emph></variable>" +msgstr "<variable id=\"feldbf5\">Aukeratu <emph>Txertatu - Eremuak - Orri-zenbakia</emph></variable>" #: 00000404.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/eu/helpcontent2/source/text/simpress/01.po libreoffice-5.1.2~rc2/translations/source/eu/helpcontent2/source/text/simpress/01.po --- libreoffice-5.1.1~rc2/translations/source/eu/helpcontent2/source/text/simpress/01.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/eu/helpcontent2/source/text/simpress/01.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "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:01+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2016-03-19 21:20+0000\n" +"Last-Translator: Osoitz <oelkoro@gmail.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: eu\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1431367260.000000\n" +"X-POOTLE-MTIME: 1458422416.000000\n" #: 01170000.xhp msgctxt "" @@ -33,14 +33,13 @@ msgstr "<bookmark_value>Macromedia Flash esportazioa</bookmark_value><bookmark_value>esportatu; Macromedia Flash formatura</bookmark_value>" #: 01170000.xhp -#, fuzzy msgctxt "" "01170000.xhp\n" "hd_id3153728\n" "1\n" "help.text" msgid "<link href=\"text/simpress/01/01170000.xhp\" name=\"Export\">Export</link>" -msgstr "<link href=\"text/simpress/01/13150000.xhp\" name=\"Split\">Zatitu</link>" +msgstr "<link href=\"text/simpress/01/01170000.xhp\" name=\"Export\">Esportatu</link>" #: 01170000.xhp msgctxt "" @@ -1476,13 +1475,12 @@ msgstr "<link href=\"text/simpress/01/03060000.xhp\" name=\"Rulers\">Erregela</link>" #: 03060000.xhp -#, fuzzy msgctxt "" "03060000.xhp\n" "par_id3149378\n" "help.text" msgid "<ahelp hid=\".\">Displays or hides rulers at the top and left or right edges of the workspace.</ahelp>" -msgstr "<ahelp hid=\".uno:ShowRuler\">Laneko arearen goiko eta ezkerreko ertzeko erregelak bistaratu edo ezkutatzen ditu.</ahelp>" +msgstr "<ahelp hid=\".\">Laneko arearen goiko eta ezkerreko ertzeko erregelak bistaratu edo ezkutatzen ditu.</ahelp>" #: 03060000.xhp #, fuzzy @@ -2000,13 +1998,12 @@ msgstr "<bookmark_value>goiburukoak eta orri-oinak;diseinu maisuak</bookmark_value><bookmark_value>diseinu maisuak goiburuko eta orri-oinekin</bookmark_value>" #: 03151000.xhp -#, fuzzy msgctxt "" "03151000.xhp\n" "par_idN1056D\n" "help.text" msgid "<link href=\"text/simpress/01/03151000.xhp\" name=\"Master Elements\">Master Elements</link>" -msgstr "<link href=\"text/simpress/01/03150000.xhp\" name=\"Master\">Maisua</link>" +msgstr "<link href=\"text/simpress/01/03151000.xhp\" name=\"Master Elements\">Elementu maisuak</link>" #: 03151000.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/eu/helpcontent2/source/text/simpress/02.po libreoffice-5.1.2~rc2/translations/source/eu/helpcontent2/source/text/simpress/02.po --- libreoffice-5.1.1~rc2/translations/source/eu/helpcontent2/source/text/simpress/02.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/eu/helpcontent2/source/text/simpress/02.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\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-11 18:01+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2016-02-27 19:23+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 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1431367262.000000\n" +"X-POOTLE-MTIME: 1456600992.000000\n" #: 04010000.xhp msgctxt "" @@ -411,7 +411,7 @@ "13\n" "help.text" msgid "<ahelp hid=\".\">Displays the slide at half its current size.</ahelp>" -msgstr "<ahelp hid=\".uno:ZoomIn\">Diapositiba bere uneko tamainaren erdian bistaratzen du.</ahelp>" +msgstr "<ahelp hid=\".\">Diapositiba bere uneko tamainaren erdian bistaratzen du.</ahelp>" #: 10020000.xhp msgctxt "" @@ -1399,7 +1399,7 @@ "26\n" "help.text" msgid "<ahelp hid=\".uno:GlueHorzAlignCenter\">When the object is resized, the current gluepoint remains fixed to the center of the object.</ahelp>" -msgstr "<ahelp hid=\".uno:GlueHorzAlignLeft\">Objektuari tamaina aldatutakoan, uneko kolatze-puntua objektuaren ezkerreko ertzean finkatuta gelditzen da.</ahelp>" +msgstr "<ahelp hid=\".uno:GlueHorzAlignCenter\">Objektuari tamaina aldatutakoan, uneko kolatze-puntua objektuaren erdian finkatuta gelditzen da.</ahelp>" #: 10030200.xhp msgctxt "" @@ -1434,7 +1434,7 @@ "29\n" "help.text" msgid "<ahelp hid=\".uno:GlueHorzAlignRight\">When the object is resized, the current gluepoint remains fixed to the right edge of the object.</ahelp>" -msgstr "<ahelp hid=\".uno:GlueHorzAlignLeft\">Objektuari tamaina aldatutakoan, uneko kolatze-puntua objektuaren ezkerreko ertzean finkatuta gelditzen da.</ahelp>" +msgstr "<ahelp hid=\".uno:GlueHorzAlignRight\">Objektuari tamaina aldatutakoan, uneko kolatze-puntua objektuaren eskumako ertzean finkatuta gelditzen da.</ahelp>" #: 10030200.xhp msgctxt "" @@ -1469,7 +1469,7 @@ "32\n" "help.text" msgid "<ahelp hid=\".uno:GlueVertAlignTop\">When the object is resized, the current gluepoint remains fixed to the top edge of the object.</ahelp>" -msgstr "<ahelp hid=\".uno:GlueHorzAlignLeft\">Objektuari tamaina aldatutakoan, uneko kolatze-puntua objektuaren ezkerreko ertzean finkatuta gelditzen da.</ahelp>" +msgstr "<ahelp hid=\".uno:GlueVertAlignTop\">Objektuari tamaina aldatutakoan, uneko kolatze-puntua objektuaren goiko ertzean finkatuta gelditzen da.</ahelp>" #: 10030200.xhp msgctxt "" @@ -1504,7 +1504,7 @@ "35\n" "help.text" msgid "<ahelp hid=\".uno:GlueVertAlignCenter\">When the object is resized, the current gluepoint remains fixed to the vertical center of the object.</ahelp>" -msgstr "<ahelp hid=\".uno:GlueHorzAlignLeft\">Objektuari tamaina aldatutakoan, uneko kolatze-puntua objektuaren ezkerreko ertzean finkatuta gelditzen da.</ahelp>" +msgstr "<ahelp hid=\".uno:GlueVertAlignCenter\">Objektuari tamaina aldatutakoan, uneko kolatze-puntua objektuaren bertikalaren erdian finkatuta gelditzen da.</ahelp>" #: 10030200.xhp msgctxt "" @@ -1539,7 +1539,7 @@ "38\n" "help.text" msgid "<ahelp hid=\".uno:GlueVertAlignBottom\">When the object is resized, the current gluepoint remains fixed to the bottom edge of the object.</ahelp>" -msgstr "<ahelp hid=\".uno:GlueHorzAlignLeft\">Objektuari tamaina aldatutakoan, uneko kolatze-puntua objektuaren ezkerreko ertzean finkatuta gelditzen da.</ahelp>" +msgstr "<ahelp hid=\".uno:GlueVertAlignBottom\">Objektuari tamaina aldatutakoan, uneko kolatze-puntua objektuaren beheko ertzean finkatuta gelditzen da.</ahelp>" #: 10030200.xhp msgctxt "" @@ -3388,7 +3388,7 @@ "par_id3155930\n" "help.text" msgid "<image id=\"img_id3150021\" src=\"cmd/sc_connectorarrowstart.png\" width=\"0.423cm\" height=\"0.423cm\"><alt id=\"alt_id3150021\">Icon</alt></image>" -msgstr "<image id=\"img_id3151178\" src=\"cmd/sc_linearrowstart.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3151178\">Ikonoa</alt></image>" +msgstr "<image id=\"img_id3150021\" src=\"cmd/sc_connectorarrowstart.png\" width=\"0.423cm\" height=\"0.423cm\"><alt id=\"alt_id3150021\">Ikonoa</alt></image>" #: 10100000.xhp msgctxt "" @@ -3563,7 +3563,7 @@ "par_id3158400\n" "help.text" msgid "<image id=\"img_id3154203\" src=\"cmd/sc_connectortoolbox.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3154203\">Icon</alt></image>" -msgstr "<image id=\"img_id3154933\" src=\"cmd/sc_shear.png\" width=\"5.64mm\" height=\"5.64mm\"><alt id=\"alt_id3154933\">Ikonoa</alt></image>" +msgstr "<image id=\"img_id3154203\" src=\"cmd/sc_connectortoolbox.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3154203\">Ikonoa</alt></image>" #: 10100000.xhp msgctxt "" @@ -3633,7 +3633,7 @@ "par_id3154610\n" "help.text" msgid "<image id=\"img_id3150629\" src=\"cmd/sc_connectorlinesarrowstart.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3150629\">Icon</alt></image>" -msgstr "<image id=\"img_id3151178\" src=\"cmd/sc_linearrowstart.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3151178\">Ikonoa</alt></image>" +msgstr "<image id=\"img_id3150629\" src=\"cmd/sc_connectorlinesarrowstart.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3150629\">Ikonoa</alt></image>" #: 10100000.xhp msgctxt "" @@ -3843,7 +3843,7 @@ "par_id3148981\n" "help.text" msgid "<image id=\"img_id3154223\" src=\"cmd/sc_connectorline.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3154223\">Icon</alt></image>" -msgstr "<image id=\"img_id3154933\" src=\"cmd/sc_shear.png\" width=\"5.64mm\" height=\"5.64mm\"><alt id=\"alt_id3154933\">Ikonoa</alt></image>" +msgstr "<image id=\"img_id3154223\" src=\"cmd/sc_connectorline.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3154223\">Ikonoa</alt></image>" #: 10100000.xhp msgctxt "" @@ -3878,7 +3878,7 @@ "par_id3152775\n" "help.text" msgid "<image id=\"img_id3156188\" src=\"cmd/sc_connectorlinearrowstart.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3156188\">Icon</alt></image>" -msgstr "<image id=\"img_id3151178\" src=\"cmd/sc_linearrowstart.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3151178\">Ikonoa</alt></image>" +msgstr "<image id=\"img_id3156188\" src=\"cmd/sc_connectorlinearrowstart.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3156188\">Ikonoa</alt></image>" #: 10100000.xhp msgctxt "" @@ -4398,14 +4398,13 @@ msgstr "<link href=\"text/shared/01/04140000.xhp\" name=\"From File\">Fitxategitik</link>" #: 10110000.xhp -#, fuzzy msgctxt "" "10110000.xhp\n" "hd_id3155408\n" "17\n" "help.text" msgid "<link href=\"text/shared/01/04150400.xhp\" name=\"Audio\">Audio</link>" -msgstr "<link href=\"text/shared/01/04150500.xhp\" name=\"Video\">Bideoa</link>" +msgstr "<link href=\"text/shared/01/04150400.xhp\" name=\"Audioa\">Audioa</link>" #: 10110000.xhp msgctxt "" @@ -4414,7 +4413,7 @@ "18\n" "help.text" msgid "<link href=\"text/shared/01/04150500.xhp\" name=\"Video\">Video</link>" -msgstr "<link href=\"text/shared/01/04150500.xhp\" name=\"Video\">Bideoa</link>" +msgstr "<link href=\"text/shared/01/04150500.xhp\" name=\"Bideoa\">Bideoa</link>" #: 10110000.xhp msgctxt "" @@ -4808,7 +4807,7 @@ "53\n" "help.text" msgid "In %PRODUCTNAME Draw, a dimension line is always inserted on the <link href=\"text/simpress/guide/layer_tipps.xhp\" name=\"layer\">layer</link> called <emph>Dimension Lines</emph>. If you set that layer to invisible, you will not see any dimension line in your drawing." -msgstr "%PRODUCTNAME Draw-en, kota-lerroa <emph>Kota-lerroak</emph> izeneko <link href=\"text/simpress/guide/layer_tipps.xhp\" name=\"geruza\">geruzan</link> txertatzen dira beti. Geruza ikusezin gisa konfiguratzen baduzu, ez duzu kota-lerrorik ikusiko marrazkian." +msgstr "%PRODUCTNAME Draw-en, kota-lerroak <link href=\"text/simpress/guide/layer_tipps.xhp\" name=\"geruza\">geruza</link> batean txertatzen dira beti, <emph>Kota-lerroak</emph> izenekoa. Geruza ikusezin gisa konfiguratzen baduzu, ez duzu kota-lerrorik ikusiko marrazkian." #: 10120000.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/eu/helpcontent2/source/text/simpress/04.po libreoffice-5.1.2~rc2/translations/source/eu/helpcontent2/source/text/simpress/04.po --- libreoffice-5.1.1~rc2/translations/source/eu/helpcontent2/source/text/simpress/04.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/eu/helpcontent2/source/text/simpress/04.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-01-08 13:42+0100\n" -"PO-Revision-Date: 2015-05-11 18:01+0000\n" -"Last-Translator: system user <>\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" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1431367264.000000\n" +"X-POOTLE-MTIME: 1457295483.000000\n" #: 01020000.xhp msgctxt "" @@ -129,7 +129,7 @@ "13\n" "help.text" msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F3" -msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ktrl</defaultinline></switchinline>+F3" +msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Komandoa </caseinline><defaultinline>Ktrl </defaultinline></switchinline>+F3" #: 01020000.xhp #, fuzzy @@ -201,7 +201,7 @@ "par_idN10769\n" "help.text" msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+F5" -msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ktrl</defaultinline></switchinline>+Maius+F5" +msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Komandoa </caseinline><defaultinline>Ktrl</defaultinline></switchinline>+Maius+F5" #: 01020000.xhp msgctxt "" @@ -290,7 +290,7 @@ "29\n" "help.text" msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command+T</caseinline><defaultinline>F11</defaultinline></switchinline>" -msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ktrl</defaultinline></switchinline>+F3" +msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Komandoa+T</caseinline><defaultinline>F11</defaultinline></switchinline>" #: 01020000.xhp msgctxt "" @@ -371,7 +371,7 @@ "42\n" "help.text" msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline>+Page Down" -msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ktrl</defaultinline></switchinline>+Orrialdea behera" +msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Aukera</caseinline><defaultinline>Alt</defaultinline></switchinline>+OrrBeh" #: 01020000.xhp msgctxt "" @@ -423,7 +423,7 @@ "46\n" "help.text" msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline>+Page Up" -msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ktrl</defaultinline></switchinline>+Orrialdea gora" +msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Aukera</caseinline><defaultinline>Alt</defaultinline></switchinline>+OrrGo" #: 01020000.xhp msgctxt "" @@ -477,7 +477,7 @@ "54\n" "help.text" msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+ Page Up" -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>+OrrGor" #: 01020000.xhp msgctxt "" @@ -495,7 +495,7 @@ "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 "" @@ -648,7 +648,7 @@ "71\n" "help.text" msgid "Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+G" -msgstr "Maius+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ktrl</defaultinline></switchinline>+G" +msgstr "Maius+<switchinline select=\"sys\"><caseinline select=\"MAC\">Komandoa </caseinline><defaultinline>Ktrl</defaultinline></switchinline>+G" #: 01020000.xhp msgctxt "" @@ -666,7 +666,7 @@ "73\n" "help.text" msgid "Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command+Option</caseinline><defaultinline>Ctrl+Alt</defaultinline></switchinline>+A" -msgstr "Maius+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ktrl</defaultinline></switchinline>+G" +msgstr "Maius+<switchinline select=\"sys\"><caseinline select=\"MAC\">Komandoa+Aukera</caseinline><defaultinline>Ktrl+Alt</defaultinline></switchinline>+A" #: 01020000.xhp msgctxt "" @@ -684,7 +684,7 @@ "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 "" @@ -702,7 +702,7 @@ "75\n" "help.text" msgid "Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+ K" -msgstr "Maius+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ktrl</defaultinline></switchinline>+G" +msgstr "Maius+<switchinline select=\"sys\"><caseinline select=\"MAC\">Komandoa </caseinline><defaultinline>Ktrl</defaultinline></switchinline>+ K" #: 01020000.xhp msgctxt "" @@ -720,7 +720,7 @@ "77\n" "help.text" msgid "Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+ K" -msgstr "Maius+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ktrl</defaultinline></switchinline>+G" +msgstr "Maius+<switchinline select=\"sys\"><caseinline select=\"MAC\">Komandoa </caseinline><defaultinline>Ktrl</defaultinline></switchinline>+ K" #: 01020000.xhp msgctxt "" @@ -738,7 +738,7 @@ "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 @@ "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 @@ "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 @@ "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 "" @@ -837,7 +837,7 @@ "102\n" "help.text" msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Ctrl</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Hyphen(-)" -msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ktrl</defaultinline></switchinline>+Sartu" +msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Ktrl</caseinline><defaultinline>Ktrl</defaultinline></switchinline>+marratxoa(-)" #: 01020000.xhp #, fuzzy @@ -856,7 +856,7 @@ "303\n" "help.text" msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+minus sign (-)" -msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ktrl</defaultinline></switchinline>+Maius+F5" +msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Komandoa </caseinline><defaultinline>Ktrl</defaultinline></switchinline>+Maius+minus ikurra (-)" #: 01020000.xhp #, fuzzy @@ -875,7 +875,7 @@ "108\n" "help.text" msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+Space" -msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ktrl</defaultinline></switchinline>+Maius+F5" +msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Komandoa</caseinline><defaultinline>Ktrl</defaultinline></switchinline>+Maius+Espazioa" #: 01020000.xhp msgctxt "" @@ -947,7 +947,7 @@ "125\n" "help.text" msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Arrow Left" -msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ktrl</defaultinline></switchinline>+F3" +msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Aukera</caseinline><defaultinline>Ktrl</defaultinline></switchinline>+Ezker-gezia" #: 01020000.xhp msgctxt "" @@ -965,7 +965,7 @@ "128\n" "help.text" msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+Arrow Left" -msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ktrl</defaultinline></switchinline>+Maius+F5" +msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Aukera</caseinline><defaultinline>Ktrl</defaultinline></switchinline>+Maius+Ezker-gezia" #: 01020000.xhp msgctxt "" @@ -1019,7 +1019,7 @@ "136\n" "help.text" msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Arrow Right" -msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ktrl</defaultinline></switchinline>+Orrialdea gora" +msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Aukera</caseinline><defaultinline>Ktrl</defaultinline></switchinline>+Eskuin-gezia" #: 01020000.xhp msgctxt "" @@ -1037,7 +1037,7 @@ "139\n" "help.text" msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+Arrow Right" -msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ktrl</defaultinline></switchinline>+Maius+F5" +msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Aukera</caseinline><defaultinline>Ktrl</defaultinline></switchinline>+Maius+Eskuin-gezia" #: 01020000.xhp msgctxt "" @@ -1090,7 +1090,7 @@ "par_ii6452528\n" "help.text" msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Arrow Up" -msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ktrl</defaultinline></switchinline>+Orrialdea gora" +msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Aukera</caseinline><defaultinline>Ktrl</defaultinline></switchinline>+Gora-gezia" #: 01020000.xhp msgctxt "" @@ -1106,7 +1106,7 @@ "par_ii778527\n" "help.text" msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+Arrow Up" -msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ktrl</defaultinline></switchinline>+Maius+F5" +msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Aukera</caseinline><defaultinline>Ktrl</defaultinline></switchinline>+Maius+Gora-gezia" #: 01020000.xhp msgctxt "" @@ -1158,7 +1158,7 @@ "par_ii578936\n" "help.text" msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Arrow Down" -msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ktrl</defaultinline></switchinline>+Orrialdea behera" +msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Aukera</caseinline><defaultinline>Ktrl</defaultinline></switchinline>+Behera-gezia" #: 01020000.xhp msgctxt "" @@ -1169,13 +1169,12 @@ msgstr "" #: 01020000.xhp -#, fuzzy msgctxt "" "01020000.xhp\n" "par_ii7405011\n" "help.text" msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+Arrow Down" -msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ktrl</defaultinline></switchinline>+Orrialdea behera" +msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Aukera</caseinline><defaultinline>Ktrl</defaultinline></switchinline>Maius+Behera-gezia" #: 01020000.xhp msgctxt "" @@ -1192,7 +1191,7 @@ "152\n" "help.text" msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command+Arrow Left</caseinline><defaultinline>Home</defaultinline></switchinline>" -msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ktrl</defaultinline></switchinline>+F3" +msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Komandoa+Ezker-gezia</caseinline><defaultinline>Hasi</defaultinline></switchinline>" #: 01020000.xhp msgctxt "" @@ -1210,7 +1209,7 @@ "154\n" "help.text" msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command+Shift+Arrow Left</caseinline><defaultinline>Shift+Home</defaultinline></switchinline>" -msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ktrl</defaultinline></switchinline>+F3" +msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Komandoa+Maius+Ezker-gezia</caseinline><defaultinline>Maius+Hasi</defaultinline></switchinline>" #: 01020000.xhp msgctxt "" @@ -1228,7 +1227,7 @@ "157\n" "help.text" msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command+Arrow Right</caseinline><defaultinline>End</defaultinline></switchinline>" -msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ktrl</defaultinline></switchinline>+F3" +msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Komandoa+Eskuin-gezia</caseinline><defaultinline>Buka</defaultinline></switchinline>" #: 01020000.xhp msgctxt "" @@ -1246,7 +1245,7 @@ "159\n" "help.text" msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command+Shift+Arrow Right</caseinline><defaultinline>Shift+End</defaultinline></switchinline>" -msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ktrl</defaultinline></switchinline>+F3" +msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Komandoa+Maius+Eskuin-gezia</caseinline><defaultinline>Maius+Buka</defaultinline></switchinline>" #: 01020000.xhp msgctxt "" @@ -1264,7 +1263,7 @@ "162\n" "help.text" msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command+Arrow Up</caseinline><defaultinline>Ctrl+Home</defaultinline></switchinline>" -msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ktrl</defaultinline></switchinline>+F3" +msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Komandoa+Gora-gezia</caseinline><defaultinline>Ktrl+Hasi</defaultinline></switchinline>" #: 01020000.xhp msgctxt "" @@ -1282,7 +1281,7 @@ "165\n" "help.text" msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command+Shift+Arrow Up</caseinline><defaultinline>Ctrl+Shift+Home</defaultinline></switchinline>" -msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ktrl</defaultinline></switchinline>+F3" +msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Komandoa+Maius+Gora-gezia</caseinline><defaultinline>Ktrl+Maius+Hasi</defaultinline></switchinline>" #: 01020000.xhp msgctxt "" @@ -1300,7 +1299,7 @@ "168\n" "help.text" msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command+Arrow Down</caseinline><defaultinline>Ctrl+End</defaultinline></switchinline>" -msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ktrl</defaultinline></switchinline>+F3" +msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Komandoa+Behera-gezia</caseinline><defaultinline>Ktrl+Buka</defaultinline></switchinline>" #: 01020000.xhp msgctxt "" @@ -1318,7 +1317,7 @@ "171\n" "help.text" msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command+Shift+Arrow Down</caseinline><defaultinline>Ctrl+Shift+End</defaultinline></switchinline>" -msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ktrl</defaultinline></switchinline>+F3" +msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Komandoa+Maius+Behera-gezia</caseinline><defaultinline>Ktrl+Maius+Buka</defaultinline></switchinline>" #: 01020000.xhp msgctxt "" @@ -1336,7 +1335,7 @@ "192\n" "help.text" msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Option+Fn+Backspace</caseinline><defaultinline>Ctrl+Del</defaultinline></switchinline>" -msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ktrl</defaultinline></switchinline>+F3" +msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Aukera+Fn+Atzera</caseinline><defaultinline>Ktrl+Ezab</defaultinline></switchinline>" #: 01020000.xhp msgctxt "" @@ -1354,7 +1353,7 @@ "195\n" "help.text" msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Backspace" -msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ktrl</defaultinline></switchinline>+Orrialdea gora" +msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Aukera</caseinline><defaultinline>Ktrl</defaultinline></switchinline>+Atzera" #: 01020000.xhp msgctxt "" @@ -1380,7 +1379,7 @@ "198\n" "help.text" msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command+Fn</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+Del" -msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ktrl</defaultinline></switchinline>+Maius+F5" +msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Komandoa+Fn</caseinline><defaultinline>Ktrl</defaultinline></switchinline>+Maius+Ezab" #: 01020000.xhp msgctxt "" @@ -1461,7 +1460,7 @@ "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 "" @@ -1515,7 +1514,7 @@ "100\n" "help.text" msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline> Key" -msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ktrl</defaultinline></switchinline>+F3" +msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Aukera</caseinline><defaultinline>Alt</defaultinline></switchinline> tekla" #: 01020000.xhp msgctxt "" @@ -1677,7 +1676,7 @@ "131\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>+Sartu" +msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Komandoa</caseinline><defaultinline>Ktrl</defaultinline></switchinline>+Sartu" #: 01020000.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/eu/helpcontent2/source/text/simpress.po libreoffice-5.1.2~rc2/translations/source/eu/helpcontent2/source/text/simpress.po --- libreoffice-5.1.1~rc2/translations/source/eu/helpcontent2/source/text/simpress.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/eu/helpcontent2/source/text/simpress.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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 @@ "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 @@ 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 @@ 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 @@ 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 @@ "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 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/eu/helpcontent2/source/text/smath/00.po libreoffice-5.1.2~rc2/translations/source/eu/helpcontent2/source/text/smath/00.po --- libreoffice-5.1.1~rc2/translations/source/eu/helpcontent2/source/text/smath/00.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/eu/helpcontent2/source/text/smath/00.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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:59+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2016-03-19 18:08+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 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1369385973.000000\n" +"X-POOTLE-MTIME: 1458410936.000000\n" #: 00000004.xhp msgctxt "" @@ -689,13 +689,12 @@ msgstr "<variable id=\"etsfim\">Aukeratu <emph>Tresnak - Inportatu formula</emph></variable>" #: 00000004.xhp -#, fuzzy msgctxt "" "00000004.xhp\n" "par_id3153803\n" "help.text" msgid "<variable id=\"etsmim\">Choose <emph>Tools - Import MathML from Clipboard</emph></variable>" -msgstr "<variable id=\"etsfim\">Aukeratu <emph>Tresnak - Inportatu formula</emph></variable>" +msgstr "<variable id=\"etsmim\">Aukeratu <emph>Tresnak - Inportatu MathML arbeletik</emph></variable>" #: 00000004.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/eu/helpcontent2/source/text/smath/01.po libreoffice-5.1.2~rc2/translations/source/eu/helpcontent2/source/text/smath/01.po --- libreoffice-5.1.1~rc2/translations/source/eu/helpcontent2/source/text/smath/01.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/eu/helpcontent2/source/text/smath/01.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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-20 19:12+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 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1429800873.000000\n" +"X-POOTLE-MTIME: 1458501169.000000\n" #: 02080000.xhp msgctxt "" @@ -1593,7 +1593,7 @@ "90\n" "help.text" msgid "precedes" -msgstr "" +msgstr "honen aurretik dago" #: 03090200.xhp msgctxt "" @@ -1602,7 +1602,7 @@ "89\n" "help.text" msgid "<ahelp hid=\"HID_SMA_PRECEDES\">Inserts the logical operator <emph>precedes</emph> with two placeholders.</ahelp> You can also type <emph>prec</emph> in the <emph>Commands</emph> window." -msgstr "<ahelp hid=\"HID_SMA_DRARROW\"><emph>gezia barra bikoitzarekin eskuinerantz</emph> erlazio logikoa txertatzen du bi leku-markekin.</ahelp> <emph>drarrow</emph> ere idatz dezakezu <emph>Komandoak</emph> leihoan." +msgstr "" #: 03090200.xhp msgctxt "" @@ -1619,7 +1619,7 @@ "92\n" "help.text" msgid "succeeds" -msgstr "" +msgstr "honen ondoren dago" #: 03090200.xhp msgctxt "" @@ -1628,7 +1628,7 @@ "91\n" "help.text" msgid "<ahelp hid=\"HID_SMA_SUCCEEDS\">Inserts the logical operator <emph>succeeds</emph> with two placeholders.</ahelp> You can also type <emph>succ</emph> in the <emph>Commands</emph> window." -msgstr "<ahelp hid=\"HID_SMA_XCIRCY\"><emph>Kateaketa-ikurra</emph> txertatzen du bi leku-markekin. </ahelp> <emph>circ</emph> ere idatz dezakezu <emph>Komandoak</emph> leihoan." +msgstr "" #: 03090200.xhp msgctxt "" @@ -1645,7 +1645,7 @@ "94\n" "help.text" msgid "not precedes" -msgstr "" +msgstr "ez dago honen aurretik" #: 03090200.xhp msgctxt "" @@ -1654,7 +1654,7 @@ "93\n" "help.text" msgid "<ahelp hid=\"HID_SMA_NOTPRECEDES\">Inserts the logical operator <emph>not precedes</emph> with two placeholders.</ahelp> You can also type <emph>nprec</emph> in the <emph>Commands</emph> window." -msgstr "<ahelp hid=\"HID_SMA_DRARROW\"><emph>gezia barra bikoitzarekin eskuinerantz</emph> erlazio logikoa txertatzen du bi leku-markekin.</ahelp> <emph>drarrow</emph> ere idatz dezakezu <emph>Komandoak</emph> leihoan." +msgstr "" #: 03090200.xhp msgctxt "" @@ -1671,7 +1671,7 @@ "96\n" "help.text" msgid "not succeeds" -msgstr "" +msgstr "ez dago honen ondoren" #: 03090200.xhp msgctxt "" @@ -1680,7 +1680,7 @@ "95\n" "help.text" msgid "<ahelp hid=\"HID_SMA_NOTSUCCEEDS\">Inserts the logical operator <emph>not succeeds</emph> with two placeholders.</ahelp> You can also type <emph>nsucc</emph> in the <emph>Commands</emph> window." -msgstr "<ahelp hid=\"HID_SMA_DRARROW\"><emph>gezia barra bikoitzarekin eskuinerantz</emph> erlazio logikoa txertatzen du bi leku-markekin.</ahelp> <emph>drarrow</emph> ere idatz dezakezu <emph>Komandoak</emph> leihoan." +msgstr "" #: 03090200.xhp msgctxt "" @@ -1697,7 +1697,7 @@ "98\n" "help.text" msgid "precedes or equal" -msgstr "Azpimultzoa edo honen berdina da" +msgstr "honen aurretik dago edo honen berdina da" #: 03090200.xhp msgctxt "" @@ -1706,7 +1706,7 @@ "97\n" "help.text" msgid "<ahelp hid=\"HID_SMA_PRECEDESEQUAL\">Inserts the logical operator <emph>precedes or equal</emph> with two placeholders.</ahelp> You can also type <emph>preccurlyeq</emph> in the <emph>Commands</emph> window." -msgstr "<ahelp hid=\"HID_SMA_DRARROW\"><emph>gezia barra bikoitzarekin eskuinerantz</emph> erlazio logikoa txertatzen du bi leku-markekin.</ahelp> <emph>drarrow</emph> ere idatz dezakezu <emph>Komandoak</emph> leihoan." +msgstr "" #: 03090200.xhp msgctxt "" @@ -1723,7 +1723,7 @@ "100\n" "help.text" msgid "succeeds or equal" -msgstr "Azpimultzoa edo honen berdina da" +msgstr "honen ondoren dago edo honen berdina da" #: 03090200.xhp msgctxt "" @@ -1732,7 +1732,7 @@ "99\n" "help.text" msgid "<ahelp hid=\"HID_SMA_SUCCEEDSEQUAL\">Inserts the logical operator <emph>succeeds or equal</emph> with two placeholders.</ahelp> You can also type <emph>succcurlyeq</emph> in the <emph>Commands</emph> window." -msgstr "<ahelp hid=\"HID_SMA_DRARROW\"><emph>gezia barra bikoitzarekin eskuinerantz</emph> erlazio logikoa txertatzen du bi leku-markekin.</ahelp> <emph>drarrow</emph> ere idatz dezakezu <emph>Komandoak</emph> leihoan." +msgstr "" #: 03090200.xhp msgctxt "" @@ -1749,7 +1749,7 @@ "102\n" "help.text" msgid "precedes or equivalent" -msgstr "Azpimultzoa edo honen berdina da" +msgstr "honen aurretik dago edo honen baliokidea da" #: 03090200.xhp msgctxt "" @@ -1758,7 +1758,7 @@ "101\n" "help.text" msgid "<ahelp hid=\"HID_SMA_PRECEDESEQUIV\">Inserts the logical operator <emph>precedes or equivalent</emph> with two placeholders.</ahelp> You can also type <emph>precsim</emph> in the <emph>Commands</emph> window." -msgstr "<ahelp hid=\"HID_SMA_DRARROW\"><emph>gezia barra bikoitzarekin eskuinerantz</emph> erlazio logikoa txertatzen du bi leku-markekin.</ahelp> <emph>drarrow</emph> ere idatz dezakezu <emph>Komandoak</emph> leihoan." +msgstr "" #: 03090200.xhp msgctxt "" @@ -1775,7 +1775,7 @@ "104\n" "help.text" msgid "succeeds or equivalent" -msgstr "Azpimultzoa edo honen berdina da" +msgstr "honen ondoren dago edo honen baliokidea da" #: 03090200.xhp msgctxt "" @@ -1784,7 +1784,7 @@ "103\n" "help.text" msgid "<ahelp hid=\"HID_SMA_SUCCEEDSEQUIV\">Inserts the logical operator <emph>succeeds or equivalent</emph> with two placeholders.</ahelp> You can also type <emph>succsim</emph> in the <emph>Commands</emph> window." -msgstr "<ahelp hid=\"HID_SMA_DRARROW\"><emph>gezia barra bikoitzarekin eskuinerantz</emph> erlazio logikoa txertatzen du bi leku-markekin.</ahelp> <emph>drarrow</emph> ere idatz dezakezu <emph>Komandoak</emph> leihoan." +msgstr "" #: 03090200.xhp msgctxt "" @@ -4292,7 +4292,7 @@ "37\n" "help.text" msgid "<ahelp hid=\"HID_SMA_ITALX\">Inserts a placeholder with italic formatting.</ahelp> You can also type <emph>ital <?></emph> or <emph>italic <?></emph> in the <emph>Commands</emph> window." -msgstr "<ahelp hid=\"HID_SMA_ITALX\">Leku-marka formatu etzanarekin txertatzen du.</ahelp> <emph>ital <?></emph> ere idatz dezakezu <emph>Komandoak</emph> leihoan." +msgstr "<ahelp hid=\"HID_SMA_ITALX\">Leku-marka formatu etzanarekin txertatzen du.</ahelp> <emph>ital <?></emph> edo <emph>italic <?></emph> ere idatz dezakezu <emph>Komandoak</emph> leihoan." #: 03090600.xhp msgctxt "" @@ -7946,7 +7946,7 @@ "135\n" "help.text" msgid "Precedes" -msgstr "" +msgstr "Honen aurretik dago" #: 03091502.xhp msgctxt "" @@ -7963,7 +7963,7 @@ "136\n" "help.text" msgid "Not precedes" -msgstr "" +msgstr "Ez dago honen aurretik" #: 03091502.xhp msgctxt "" @@ -7980,7 +7980,7 @@ "137\n" "help.text" msgid "Succeeds" -msgstr "" +msgstr "Honen ondoren dago" #: 03091502.xhp msgctxt "" @@ -7997,7 +7997,7 @@ "138\n" "help.text" msgid "Not succeeds" -msgstr "" +msgstr "Ez dago honen ondoren" #: 03091502.xhp msgctxt "" @@ -8014,7 +8014,7 @@ "139\n" "help.text" msgid "Precedes or equal to" -msgstr "Azpimultzoa edo honen berdina da" +msgstr "Honen aurretik dago edo honen berdina da" #: 03091502.xhp msgctxt "" @@ -8031,7 +8031,7 @@ "140\n" "help.text" msgid "Succeeds or equal to" -msgstr "Azpimultzoa edo honen berdina da" +msgstr "Honen ondoren dago edo honen berdina da" #: 03091502.xhp msgctxt "" @@ -8048,7 +8048,7 @@ "141\n" "help.text" msgid "Precedes or equivalent to" -msgstr "Azpimultzoa edo honen berdina da" +msgstr "Honen aurretik dago edo honen baliokidea da" #: 03091502.xhp msgctxt "" @@ -8065,7 +8065,7 @@ "142\n" "help.text" msgid "Succeeds or equivalent to" -msgstr "Azpimultzoa edo honen berdina da" +msgstr "Honen ondoren dago edo honen baliokidea da" #: 03091502.xhp msgctxt "" @@ -11160,7 +11160,7 @@ "41\n" "help.text" msgid "<ahelp hid=\"HID_SMA_NOTEXISTS\">Inserts the symbol for an Existence quantor.</ahelp> Command for the <emph>Commands</emph> window: <emph>notexists</emph>" -msgstr "<ahelp hid=\"HID_SMA_EXISTS\">Zenbatzaile existentzialaren ikurra txertatzen du.</ahelp><emph>Komandoak</emph> leihoan sartu beharreko komandoa: <emph>exists</emph>" +msgstr "<ahelp hid=\"HID_SMA_NOTEXISTS\">Zenbatzaile existentzialaren ikurra txertatzen du.</ahelp><emph>Komandoak</emph> leihoan sartu beharreko komandoa: <emph>notexists</emph>" #: 03091600.xhp msgctxt "" @@ -13027,13 +13027,12 @@ msgstr "<bookmark_value>ikurrak; %PRODUCTNAME Math-en sartzea</bookmark_value><bookmark_value>%PRODUCTNAME Math; ikurrak sartzea</bookmark_value><bookmark_value>ikur matematikoen katagoloa</bookmark_value><bookmark_value>ikur matematikoak;katalogoa</bookmark_value><bookmark_value>ikur grekoak formuletan</bookmark_value><bookmark_value>formulak; ikurrak sartzea</bookmark_value>" #: 06010000.xhp -#, fuzzy msgctxt "" "06010000.xhp\n" "hd_id3153715\n" "help.text" msgid "<link href=\"text/smath/01/06010000.xhp\" name=\"Symbols\">Symbols</link>" -msgstr "<link href=\"text/smath/01/03091600.xhp\" name=\"Other Symbols\">Beste ikur batzuk</link>" +msgstr "<link href=\"text/smath/01/06010000.xhp\" name=\"Symbols\">Ikurrak</link>" #: 06010000.xhp #, fuzzy @@ -13435,13 +13434,12 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/eu/helpcontent2/source/text/swriter/00.po libreoffice-5.1.2~rc2/translations/source/eu/helpcontent2/source/text/swriter/00.po --- libreoffice-5.1.1~rc2/translations/source/eu/helpcontent2/source/text/swriter/00.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/eu/helpcontent2/source/text/swriter/00.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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-12-16 07:54+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2016-02-27 22:15+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 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1418716452.000000\n" +"X-POOTLE-MTIME: 1456611350.000000\n" #: 00000004.xhp msgctxt "" @@ -248,7 +248,7 @@ "15\n" "help.text" msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F3" -msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ktrl</defaultinline></switchinline>+F3" +msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Komandoa </caseinline><defaultinline>Ktrl </defaultinline></switchinline>+F3" #: 00000402.xhp msgctxt "" @@ -2572,7 +2572,7 @@ "38\n" "help.text" msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline> + plus sign" -msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ktrl</defaultinline></switchinline>+F3" +msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Komandoa </caseinline><defaultinline>Ktrl</defaultinline></switchinline> + plus ikurra" #: 00000406.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/eu/helpcontent2/source/text/swriter/01.po libreoffice-5.1.2~rc2/translations/source/eu/helpcontent2/source/text/swriter/01.po --- libreoffice-5.1.1~rc2/translations/source/eu/helpcontent2/source/text/swriter/01.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/eu/helpcontent2/source/text/swriter/01.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\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:01+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2016-03-19 19:23+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 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1431367318.000000\n" +"X-POOTLE-MTIME: 1458415393.000000\n" #: 01120000.xhp msgctxt "" @@ -22,16 +22,15 @@ "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 @@ 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 @@ 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 "" @@ -1832,7 +1828,7 @@ "53\n" "help.text" msgid "To display the list in reverse order, press <switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+Tab." -msgstr "Zerrenda atzekoz aurrera bistaratzeko, sakatu <switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ktrl</defaultinline></switchinline>+Maius+Tab." +msgstr "Zerrenda atzekoz aurrera bistaratzeko, sakatu <switchinline select=\"sys\"><caseinline select=\"MAC\">Komandoa </caseinline><defaultinline>Ktrl</defaultinline></switchinline>+Maius+Tab." #: 02120000.xhp msgctxt "" @@ -3191,13 +3187,12 @@ 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 "" @@ -3261,13 +3256,12 @@ msgstr "Indizea" #: 02160000.xhp -#, fuzzy msgctxt "" "02160000.xhp\n" "par_id3151251\n" "help.text" msgid "<ahelp hid=\"modules/swriter/ui/indexentry/typecb\">Displays the type of index that the selected entry belongs to.</ahelp> You cannot change the index type of an index entry in this dialog. Instead, you must delete the index entry from the document, and then insert it again in a different index type." -msgstr "<ahelp hid=\"SW:LISTBOX:DLG_MULTMRK:LB_TOX\">Hautatutako sarrera zein indize motakoa den bistaratzen du.</ahelp> Elkarrizketa-koadro honetan ezin duzu aldatu indize-sarreraren indize mota. Horretarako, indize-sarrera dokumentutik ezabatu behar duzu, eta ondoren, txertatu berriro beste mota batean." +msgstr "<ahelp hid=\"modules/swriter/ui/indexentry/typecb\">Hautatutako sarrera zein indize motakoa den bistaratzen du.</ahelp> Elkarrizketa-koadro honetan ezin duzu aldatu indize-sarreraren indize mota. Horretarako, indize-sarrera dokumentutik ezabatu behar duzu, eta ondoren, txertatu berriro beste mota batean." #: 02160000.xhp #, fuzzy @@ -6318,7 +6312,7 @@ "53\n" "help.text" msgid "To quickly insert a field from the list, hold down <switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline> and double-click the field." -msgstr "Zerrendako eremu bat azkar txertatzeko, sakatu <switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ktrl</defaultinline></switchinline> eta egin klik bikoitza eremuan." +msgstr "Zerrendako eremu bat azkar txertatzeko, sakatu <switchinline select=\"sys\"><caseinline select=\"MAC\">Komandoa </caseinline><defaultinline>Ktrl</defaultinline></switchinline> eta egin klik bikoitza eremuan." #: 04090001.xhp msgctxt "" @@ -6861,7 +6855,7 @@ "par_id7729728\n" "help.text" msgid "To quickly insert a field from the list, hold down <switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline> and double-click the field." -msgstr "Zerrendako eremu bat azkar txertatzeko, sakatu <switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ktrl</defaultinline></switchinline> eta egin klik bikoitza eremuan." +msgstr "Zerrendako eremu bat azkar txertatzeko, sakatu <switchinline select=\"sys\"><caseinline select=\"MAC\">Komandoa </caseinline><defaultinline>Ktrl</defaultinline></switchinline> eta egin klik bikoitza eremuan." #: 04090002.xhp msgctxt "" @@ -8398,7 +8392,7 @@ "par_id3326822\n" "help.text" msgid "To quickly insert a field from the list, hold down <switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline> and double-click the field." -msgstr "Zerrendako eremu bat azkar txertatzeko, sakatu <switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ktrl</defaultinline></switchinline> eta egin klik bikoitza eremuan." +msgstr "Zerrendako eremu bat azkar txertatzeko, sakatu <switchinline select=\"sys\"><caseinline select=\"MAC\">Komandoa </caseinline><defaultinline>Ktrl</defaultinline></switchinline> eta egin klik bikoitza eremuan." #: 04090005.xhp msgctxt "" @@ -11030,13 +11024,14 @@ 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 "" @@ -12743,14 +12738,13 @@ 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 "" @@ -13959,14 +13953,13 @@ msgstr "Izena" #: 04150000.xhp -#, fuzzy msgctxt "" "04150000.xhp\n" "par_id3154099\n" "5\n" "help.text" msgid "<ahelp hid=\"modules/swriter/ui/inserttable/nameedit\">Enter a name for the table.</ahelp>" -msgstr "<ahelp hid=\"modules/swriter/ui/frmurlpage/name\">Idatzi hiperestekaren izena.</ahelp>" +msgstr "<ahelp hid=\"modules/swriter/ui/inserttable/nameedit\">Idatzi taularen izena.</ahelp>" #: 04150000.xhp msgctxt "" @@ -14050,14 +14043,13 @@ msgstr "Izenburua" #: 04150000.xhp -#, fuzzy msgctxt "" "04150000.xhp\n" "par_id3155188\n" "43\n" "help.text" msgid "<ahelp hid=\"modules/swriter/ui/inserttable/headercb\">Includes a heading row in the table.</ahelp>" -msgstr "<ahelp hid=\"modules/swriter/ui/frmurlpage/name\">Idatzi hiperestekaren izena.</ahelp>" +msgstr "<ahelp hid=\"modules/swriter/ui/inserttable/headercb\">Goiburu errenkada bat txertatzen du taulan.</ahelp>" #: 04150000.xhp msgctxt "" @@ -14201,13 +14193,12 @@ msgstr "<bookmark_value>datu-baseak; trukatzea</bookmark_value><bookmark_value>helbide-liburuak; trukatzea</bookmark_value><bookmark_value>trukatu datu-baseak</bookmark_value><bookmark_value>ordeztu;datu-baseak</bookmark_value>" #: 04180400.xhp -#, fuzzy msgctxt "" "04180400.xhp\n" "hd_id3145799\n" "help.text" msgid "<link href=\"text/swriter/01/04180400.xhp\" name=\"Exchange Database\">Exchange Database</link>" -msgstr "<link href=\"text/swriter/01/04090006.xhp\" name=\"Database\">Datu-basea</link>" +msgstr "<link href=\"text/swriter/01/04180400.xhp\" name=\"Trukatu datu-basea\">Trukatu datu-basea</link>" #: 04180400.xhp #, fuzzy @@ -18130,7 +18121,7 @@ "42\n" "help.text" msgid "Color Replacer" -msgstr "Kolore-barra" +msgstr "Tanta-kontagailua" #: 05060201.xhp msgctxt "" @@ -18156,7 +18147,7 @@ "44\n" "help.text" msgid "Color Replacer" -msgstr "Kolore-barra" +msgstr "Tanta-kontagailua" #: 05060201.xhp msgctxt "" @@ -18185,14 +18176,13 @@ msgstr "" #: 05060300.xhp -#, fuzzy msgctxt "" "05060300.xhp\n" "hd_id3154473\n" "1\n" "help.text" msgid "<link href=\"text/swriter/01/05060300.xhp\" name=\"Graphics\">Image</link>" -msgstr "<link href=\"text/swriter/01/05060200.xhp\" name=\"Wrap\">Egokitu</link>" +msgstr "<link href=\"text/swriter/01/05060300.xhp\" name=\"Graphics\">Irudia</link>" #: 05060300.xhp #, fuzzy @@ -21023,14 +21013,13 @@ msgstr "Zabalera" #: 05120100.xhp -#, fuzzy msgctxt "" "05120100.xhp\n" "par_id3149880\n" "7\n" "help.text" msgid "<ahelp hid=\"modules/swriter/ui/columnwidth/width\">Enter the width that you want for the selected column(s).</ahelp>" -msgstr "<ahelp hid=\"modules/swriter/ui/frmtypepage/width\">Sartu hautatutako objektuaren zabalera.</ahelp>" +msgstr "<ahelp hid=\"modules/swriter/ui/columnwidth/width\">Sartu hautatutako zutabearen zabalera.</ahelp>" #: 05120200.xhp msgctxt "" @@ -22338,7 +22327,7 @@ "1\n" "help.text" msgid "<link href=\"text/swriter/01/05150000.xhp\" name=\"AutoFormat\">AutoCorrect</link>" -msgstr "<link href=\"text/swriter/01/05150000.xhp\" name=\"AutoFormat\">Autoformatua</link>" +msgstr "<link href=\"text/swriter/01/05150000.xhp\" name=\"AutoFormat\">Autozuzenketa</link>" #: 05150000.xhp msgctxt "" @@ -22425,7 +22414,7 @@ "25\n" "help.text" msgid "<link href=\"text/swriter/01/05150200.xhp\" name=\"Other AutoFormat rules\">Other AutoCorrect rules</link>" -msgstr "<link href=\"text/swriter/01/05150000.xhp\" name=\"AutoFormat\">Autoformatua</link>" +msgstr "<link href=\"text/swriter/01/05150200.xhp\" name=\"Other AutoFormat rules\">Beste autozuzenketa arauak</link>" #: 05150101.xhp msgctxt "" @@ -25898,14 +25887,13 @@ msgstr "Tartea" #: 06180000.xhp -#, fuzzy msgctxt "" "06180000.xhp\n" "par_id3153719\n" "16\n" "help.text" msgid "<ahelp hid=\"modules/swriter/ui/linenumbering/spacingspin\">Enter the amount of space that you want to leave between the line numbers and the text.</ahelp>" -msgstr "<ahelp hid=\"modules/swriter/ui/columnpage/spacing2mf\">Sartu zutabeen artean utzi nahi duzun tartea.</ahelp>" +msgstr "<ahelp hid=\"modules/swriter/ui/linenumbering/spacingspin\">Sartu lerro-zenbaki eta testuaren artean utzi nahi duzun tartea.</ahelp>" #: 06180000.xhp msgctxt "" @@ -27007,13 +26995,12 @@ 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 "" @@ -27768,12 +27755,13 @@ 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 "" @@ -27784,12 +27772,13 @@ 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 "" @@ -27976,12 +27965,13 @@ 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 "" @@ -27992,12 +27982,13 @@ 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 "" @@ -28432,12 +28423,13 @@ 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 "" @@ -28448,12 +28440,13 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/eu/helpcontent2/source/text/swriter/02.po libreoffice-5.1.2~rc2/translations/source/eu/helpcontent2/source/text/swriter/02.po --- libreoffice-5.1.1~rc2/translations/source/eu/helpcontent2/source/text/swriter/02.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/eu/helpcontent2/source/text/swriter/02.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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 @@ "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 @@ 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 @@ 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 @@ 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 @@ msgstr "Kenketa" #: 14020000.xhp +#, fuzzy msgctxt "" "14020000.xhp\n" "par_id3150087\n" "12\n" "help.text" msgid "-" -msgstr "" +msgstr "-" #: 14020000.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/eu/helpcontent2/source/text/swriter/04.po libreoffice-5.1.2~rc2/translations/source/eu/helpcontent2/source/text/swriter/04.po --- libreoffice-5.1.1~rc2/translations/source/eu/helpcontent2/source/text/swriter/04.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/eu/helpcontent2/source/text/swriter/04.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-01-08 13:42+0100\n" -"PO-Revision-Date: 2015-05-11 18:02+0000\n" -"Last-Translator: system user <>\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" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1431367330.000000\n" +"X-POOTLE-MTIME: 1457295748.000000\n" #: 01020000.xhp msgctxt "" @@ -990,7 +990,7 @@ "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 "" @@ -1488,7 +1488,7 @@ "174\n" "help.text" msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+PageUp" -msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ktrl</defaultinline></switchinline>+OrrialdeaGora" +msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Komandoa</caseinline><defaultinline>Ktrl</defaultinline></switchinline>+OrrGora" #: 01020000.xhp msgctxt "" @@ -1506,7 +1506,7 @@ "177\n" "help.text" msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+PageDown" -msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ktrl</defaultinline></switchinline>+OrrialdeaBehera" +msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Komandoa</caseinline><defaultinline>Ktrl</defaultinline></switchinline>+OrrBeh" #: 01020000.xhp msgctxt "" @@ -1886,7 +1886,7 @@ "266\n" "help.text" msgid "At the start of a heading: Inserts a tab stop. Depending on the Window Manager in use, <switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline>+Tab may be used instead." -msgstr "Zerrendako eremu bat azkar txertatzeko, sakatu <switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ktrl</defaultinline></switchinline> eta egin klik bikoitza eremuan." +msgstr "Izenburuaren hasieran: Tabulazio geldiune bat txertatzen du. Darabilzun leiho-kudeatzailearen arabera, <switchinline select=\"sys\"><caseinline select=\"MAC\">Aukera</caseinline><defaultinline>Alt</defaultinline></switchinline>+Tab erabili zenezake ordez." #: 01020000.xhp msgctxt "" @@ -1967,7 +1967,7 @@ "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 "" @@ -1994,7 +1994,7 @@ "224\n" "help.text" msgid "Inserts a tab stop (only in tables). Depending on the Window Manager in use, <switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline>+Tab may be used instead." -msgstr "Zerrendako eremu bat azkar txertatzeko, sakatu <switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ktrl</defaultinline></switchinline> eta egin klik bikoitza eremuan." +msgstr "Tabulazio geldiune bat txertatzen du (tauletan besterik ez). Darabilzun leiho-kudeatzailearen arabera, <switchinline select=\"sys\"><caseinline select=\"MAC\">Aukera</caseinline><defaultinline>Alt</defaultinline></switchinline>+Tab erabili zenezake ordez." #: 01020000.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/eu/helpcontent2/source/text/swriter/guide.po libreoffice-5.1.2~rc2/translations/source/eu/helpcontent2/source/text/swriter/guide.po --- libreoffice-5.1.1~rc2/translations/source/eu/helpcontent2/source/text/swriter/guide.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/eu/helpcontent2/source/text/swriter/guide.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\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:02+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2016-03-20 19:32+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 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1431367343.000000\n" +"X-POOTLE-MTIME: 1458502376.000000\n" #: anchor_object.xhp msgctxt "" @@ -1353,31 +1353,28 @@ 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 @@ 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 @@ 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 @@ "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 @@ "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 "" @@ -2416,7 +2411,7 @@ "3\n" "help.text" msgid "<variable id=\"calculate_intable\"><link href=\"text/swriter/guide/calculate_intable.xhp\" name=\"Calculating Cell Totals in Tables\">Calculating the Sum of a Series of Table Cells</link></variable>" -msgstr "<variable id=\"calculate_multitable\"><link href=\"text/swriter/guide/calculate_multitable.xhp\" name=\"Calculating Across Tables\">Taula anitzekin kalkulatzea</link></variable>" +msgstr "<variable id=\"calculate_intable\"><link href=\"text/swriter/guide/calculate_intable.xhp\" name=\"Calculating Cell Totals in Tables\">Taula bateko gelaxka multzo baten batura kalkulatzea</link></variable>" #: calculate_intable.xhp msgctxt "" @@ -4297,7 +4292,7 @@ "1\n" "help.text" msgid "<variable id=\"fields_enter\"><link href=\"text/swriter/guide/fields_enter.xhp\" name=\"Adding Input Fields\">Adding Input Fields</link> </variable>" -msgstr "<variable id=\"fields\"><link href=\"text/swriter/guide/fields.xhp\" name=\"About Fields\">Eremuei buruz</link></variable>" +msgstr "<variable id=\"fields_enter\"><link href=\"text/swriter/guide/fields_enter.xhp\" name=\"Sarrera eremuak gehitzea\">Sarrera eremuak gehitzea</link> </variable>" #: fields_enter.xhp msgctxt "" @@ -11806,24 +11801,22 @@ 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 @@ 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 @@ 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 "" @@ -13331,7 +13321,7 @@ "bm_id3149816\n" "help.text" msgid "<bookmark_value>sections; editing</bookmark_value><bookmark_value>sections;deleting</bookmark_value><bookmark_value>deleting;sections</bookmark_value> <bookmark_value>editing;sections</bookmark_value> <bookmark_value>read-only sections</bookmark_value> <bookmark_value>protecting;sections</bookmark_value> <bookmark_value>converting;sections, into normal text</bookmark_value> <bookmark_value>hiding;sections</bookmark_value>" -msgstr "<bookmark_value>kurbak; editatzea</bookmark_value><bookmark_value>editatu; kurbak</bookmark_value><bookmark_value>zatitu;kurbak</bookmark_value><bookmark_value>formak ixtea</bookmark_value><bookmark_value>ezabatu;puntuak</bookmark_value><bookmark_value>bihurtu;puntuak</bookmark_value><bookmark_value>puntuak;gehitu/bihurtu;ezabatu</bookmark_value>" +msgstr "" #: section_edit.xhp msgctxt "" @@ -13367,7 +13357,7 @@ "16\n" "help.text" msgid "In the <item type=\"menuitem\">Section</item> list, click the section you want to modify. You can press <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+A to select all sections in the list, and you can Shift+click or <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+click to select some sections." -msgstr "Beste aukera bat hau da: <switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ktrl</defaultinline></switchinline>+B sakatu eta formatu lodia eman nahi diozun testua idatzi. Amaitutakoan, sakatu <switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ktrl</defaultinline></switchinline>+B." +msgstr "Egin klik aldatu nahi duzun sekzioan <item type=\"menuitem\">Sekzio</item> zerrendan. <switchinline select=\"sys\"><caseinline select=\"MAC\">Komandoa</caseinline><defaultinline>Ktrl</defaultinline></switchinline>+A sakatu dezakezu zerrendako sekzio guztiak aukeratzeko, eta Maius+klik edo <switchinline select=\"sys\"><caseinline select=\"MAC\">Komandoa</caseinline><defaultinline>Ktrl</defaultinline></switchinline>+klik erabili dezakezu hainbat aukeratzeko." #: section_edit.xhp msgctxt "" @@ -13887,7 +13877,7 @@ "6\n" "help.text" msgid "You can also press <switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+B, type the text that you want to format in bold, and then press <switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+B when you are finished." -msgstr "Beste aukera bat hau da: <switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ktrl</defaultinline></switchinline>+B sakatu eta formatu lodia eman nahi diozun testua idatzi. Amaitutakoan, sakatu <switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ktrl</defaultinline></switchinline>+B." +msgstr "Beste aukera bat hau da: <switchinline select=\"sys\"><caseinline select=\"MAC\">Komandoa </caseinline><defaultinline>Ktrl</defaultinline></switchinline>+B sakatu eta formatu lodia eman nahi diozun testua idatzi, gero sakatu <switchinline select=\"sys\"><caseinline select=\"MAC\">Komandoa </caseinline><defaultinline>Ktrl</defaultinline></switchinline>+B amaitutakoan." #: shortcut_writing.xhp msgctxt "" @@ -13923,7 +13913,7 @@ "6\n" "help.text" msgid "You can also press <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+I, type the text that you want to format in italic, and then press <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+I when you are finished." -msgstr "Beste aukera bat hau da: <switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ktrl</defaultinline></switchinline>+B sakatu eta formatu lodia eman nahi diozun testua idatzi. Amaitutakoan, sakatu <switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ktrl</defaultinline></switchinline>+B." +msgstr "Beste aukera bat hau da: <switchinline select=\"sys\"><caseinline select=\"MAC\">Komandoa </caseinline><defaultinline>Ktrl</defaultinline></switchinline>+I sakatu eta formatu etzana eman nahi diozun testua idatzi, gero sakatu <switchinline select=\"sys\"><caseinline select=\"MAC\">Komandoa </caseinline><defaultinline>Ktrl</defaultinline></switchinline>+I amaitutakoan." #: shortcut_writing.xhp msgctxt "" @@ -13959,7 +13949,7 @@ "6\n" "help.text" msgid "You can also press <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+U, type the text that you want underlined, and then press <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+U when you are finished." -msgstr "Beste aukera bat hau da: <switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ktrl</defaultinline></switchinline>+B sakatu eta formatu lodia eman nahi diozun testua idatzi. Amaitutakoan, sakatu <switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ktrl</defaultinline></switchinline>+B." +msgstr "Beste aukera bat hau da: <switchinline select=\"sys\"><caseinline select=\"MAC\">Komandoa </caseinline><defaultinline>Ktrl</defaultinline></switchinline>+U sakatu eta azpimarratu nahi duzun testua idatzi, gero sakatu <switchinline select=\"sys\"><caseinline select=\"MAC\">Komandoa </caseinline><defaultinline>Ktrl</defaultinline></switchinline>+U amaitutakoan." #: shortcut_writing.xhp msgctxt "" @@ -14001,7 +13991,7 @@ "hd_id3563951\n" "help.text" msgid "<variable id=\"smarttags\"><link href=\"text/swriter/guide/smarttags.xhp\">Using Smart Tags</link></variable>" -msgstr "<variable id=\"ruler\"><link href=\"text/swriter/guide/ruler.xhp\">Erregelak erabiltzea</link></variable>" +msgstr "" #: smarttags.xhp msgctxt "" @@ -14780,7 +14770,7 @@ "25\n" "help.text" msgid "To insert a new column, place the cursor in a table cell, press <switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline>+Insert, and then press the left or right arrow key." -msgstr "Talde batean objektu indibidual bat hautatzeko, sakatu <switchinline select=\"sys\"> <caseinline select=\"MAC\">Komandoa</caseinline> <defaultinline>Ktrl</defaultinline> </switchinline>, eta ondoren egin klik objektuan." +msgstr "Zutabe berri bat txertatzeko, kokatu kurtsorea taularen gelaxkan, sakatu <switchinline select=\"sys\"><caseinline select=\"MAC\">Aukera</caseinline><defaultinline>Alt</defaultinline></switchinline>+Txertatu, eta ondoren sakatu ezker edo eskuin gezi-tekla." #: table_cells.xhp msgctxt "" @@ -14798,7 +14788,7 @@ "26\n" "help.text" msgid "To delete a row, place the cursor in a table cell, press <switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline>+Delete, and then press the up or down arrow key." -msgstr "Talde batean objektu indibidual bat hautatzeko, sakatu <switchinline select=\"sys\"> <caseinline select=\"MAC\">Komandoa</caseinline> <defaultinline>Ktrl</defaultinline> </switchinline>, eta ondoren egin klik objektuan." +msgstr "Errenkada bat ezabatzeko, kokatu kurtsorea taulako gelaxka batean, sakatu <switchinline select=\"sys\"><caseinline select=\"MAC\">Aukera</caseinline><defaultinline>Alt</defaultinline></switchinline>+Ezabatu, eta ondoren sakatu gora edo behera gezi-tekla." #: table_cells.xhp msgctxt "" @@ -14807,7 +14797,7 @@ "30\n" "help.text" msgid "To delete a column, place the cursor in a table cell, press <switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline>+Delete, and then press the left or the right arrow key." -msgstr "Talde batean objektu indibidual bat hautatzeko, sakatu <switchinline select=\"sys\"> <caseinline select=\"MAC\">Komandoa</caseinline> <defaultinline>Ktrl</defaultinline> </switchinline>, eta ondoren egin klik objektuan." +msgstr "Zutabe bat ezabatzeko, kokatu kurtsorea taularen gelaxka batean, sakatu <switchinline select=\"sys\"><caseinline select=\"MAC\">Aukera</caseinline><defaultinline>Alt</defaultinline></switchinline>+Ezabatu, eta ondoren sakatu ezker edo eskuin gezi-tekla." #: table_cells.xhp msgctxt "" @@ -15474,7 +15464,7 @@ "par_id3145411\n" "help.text" msgid "Place the cursor in a cell in the column, hold down the <switchinline select=\"sys\"><caseinline select=\"MAC\">Option </caseinline><defaultinline>Alt</defaultinline></switchinline> key, and then press the left or the right arrow key." -msgstr "Talde batean objektu indibidual bat hautatzeko, sakatu <switchinline select=\"sys\"> <caseinline select=\"MAC\">Komandoa</caseinline> <defaultinline>Ktrl</defaultinline> </switchinline>, eta ondoren egin klik objektuan." +msgstr "Kokatu kurtsorea zutabeko gelaxka batean, mantendu <switchinline select=\"sys\"><caseinline select=\"MAC\">Aukera </caseinline><defaultinline>Alt</defaultinline></switchinline> tekla, eta sakatu ezker edo eskuin gezi-tekla." #: table_sizing.xhp msgctxt "" @@ -15482,7 +15472,7 @@ "par_id3153364\n" "help.text" msgid "To increase the distance from the left edge of the page to the edge of the table, hold down <switchinline select=\"sys\"><caseinline select=\"MAC\">Option </caseinline><defaultinline>Alt</defaultinline></switchinline>+Shift, and then press the right arrow key." -msgstr "Zerrendako eremu bat azkar txertatzeko, sakatu <switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ktrl</defaultinline></switchinline> eta egin klik bikoitza eremuan." +msgstr "Orriaren ezkerreko ertza eta taularen ertzaren arteko tartea handitzeko, mantendu <switchinline select=\"sys\"><caseinline select=\"MAC\">Aukera </caseinline><defaultinline>Alt</defaultinline></switchinline>+Maius, eta sakatu eskumako gezi-tekla." #: table_sizing.xhp msgctxt "" @@ -15522,7 +15512,7 @@ "par_id3153035\n" "help.text" msgid "To change the height of a row, place the cursor in a cell in the row, hold down the <switchinline select=\"sys\"><caseinline select=\"MAC\">Option </caseinline><defaultinline>Alt</defaultinline></switchinline> key, and then press the up or the down arrow key." -msgstr "Talde batean objektu indibidual bat hautatzeko, sakatu <switchinline select=\"sys\"> <caseinline select=\"MAC\">Komandoa</caseinline> <defaultinline>Ktrl</defaultinline> </switchinline>, eta ondoren egin klik objektuan." +msgstr "Errenkada baten altuera aldatzeko, kokatu kurtsorea errenkadako gelaxka batean, mantendu <switchinline select=\"sys\"><caseinline select=\"MAC\">Aukera </caseinline><defaultinline>Alt</defaultinline></switchinline> tekla, eta sakatu gora edo behera gezi-tekla." #: table_sizing.xhp msgctxt "" @@ -15832,7 +15822,7 @@ "107\n" "help.text" msgid "Choose <emph>File - New - Templates</emph>." -msgstr "" +msgstr "Aukeratu <emph>Fitxategia - Berria - Txantiloiak</emph>" #: template_default.xhp msgctxt "" @@ -17848,6 +17838,7 @@ msgstr "Egin klik bilatzea edo ordeztea nahi duzun hitzaren gainean." #: using_thesaurus.xhp +#, fuzzy msgctxt "" "using_thesaurus.xhp\n" "par_id3155867\n" @@ -18038,7 +18029,7 @@ "hd_id4745017\n" "help.text" msgid "<variable id=\"word_completion_adjust\"><link href=\"text/swriter/guide/word_completion_adjust.xhp\">Fine-Tuning the Word Completion for Text Documents</link></variable>" -msgstr "<variable id=\"word_completion\"><link href=\"text/swriter/guide/word_completion.xhp\">Testu-dokumentuetako hitz-osatzea</link></variable>" +msgstr "<variable id=\"word_completion_adjust\"><link href=\"text/swriter/guide/word_completion_adjust.xhp\">Testu-dokumentuetako hitz-osatzea doitzea</link></variable>" #: word_completion_adjust.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/eu/helpcontent2/source/text/swriter.po libreoffice-5.1.2~rc2/translations/source/eu/helpcontent2/source/text/swriter.po --- libreoffice-5.1.1~rc2/translations/source/eu/helpcontent2/source/text/swriter.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/eu/helpcontent2/source/text/swriter.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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-19 20:59+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 @@ "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: 1458421197.000000\n" #: main0000.xhp msgctxt "" @@ -180,13 +180,12 @@ 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 @@ 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 @@ 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 @@ "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 "" @@ -1183,13 +1179,12 @@ msgstr "" #: main0115.xhp -#, fuzzy msgctxt "" "main0115.xhp\n" "par_idN10553\n" "help.text" msgid "<link href=\"text/swriter/main0115.xhp\">Styles</link>" -msgstr "<link href=\"text/swriter/main0110.xhp\">Taula</link>" +msgstr "<link href=\"text/swriter/main0115.xhp\">Estiloak</link>" #: main0115.xhp msgctxt "" @@ -1387,13 +1382,12 @@ msgstr "" #: main0203.xhp -#, fuzzy msgctxt "" "main0203.xhp\n" "hd_id3154263\n" "help.text" msgid "<link href=\"text/swriter/main0203.xhp\" name=\"Image Bar\">Image Bar</link>" -msgstr "<link href=\"text/swriter/main0215.xhp\" name=\"Frame Bar\">Markoa barra</link>" +msgstr "<link href=\"text/swriter/main0203.xhp\" name=\"Image Bar\">Irudi-barra</link>" #: main0203.xhp #, fuzzy @@ -1689,27 +1683,25 @@ "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 -Nru libreoffice-5.1.1~rc2/translations/source/eu/nlpsolver/src/locale.po libreoffice-5.1.2~rc2/translations/source/eu/nlpsolver/src/locale.po --- libreoffice-5.1.1~rc2/translations/source/eu/nlpsolver/src/locale.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/eu/nlpsolver/src/locale.po 2016-03-29 15:38:48.000000000 +0000 @@ -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 @@ "NLPSolverStatusDialog.Controls.lblIteration\n" "property.text" msgid "Iteration:" -msgstr "~Iterazioak" +msgstr "Iterazioa:" #: NLPSolverStatusDialog_en_US.properties msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/eu/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-5.1.2~rc2/translations/source/eu/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-5.1.1~rc2/translations/source/eu/officecfg/registry/data/org/openoffice/Office/UI.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/eu/officecfg/registry/data/org/openoffice/Office/UI.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\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-06-26 00:06+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2016-03-20 17:57+0000\n" +"Last-Translator: Osoitz <oelkoro@gmail.com>\n" "Language-Team: Librezale <librezale@librezale.org>\n" "Language: eu\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1435277173.000000\n" +"X-POOTLE-MTIME: 1458496653.000000\n" #: BaseWindowState.xcu msgctxt "" @@ -68,7 +68,7 @@ "Label\n" "value.text" msgid "Go to Line..." -msgstr "" +msgstr "Saltatu lerrora..." #: BasicIDECommands.xcu msgctxt "" @@ -392,7 +392,7 @@ "Label\n" "value.text" msgid "Freeze ~Rows and Columns" -msgstr "" +msgstr "Finkatu ~errenkada eta zutabeak" #: CalcCommands.xcu msgctxt "" @@ -545,7 +545,7 @@ "Label\n" "value.text" msgid "~Go to Sheet..." -msgstr "" +msgstr "~Joan orrira..." #: CalcCommands.xcu msgctxt "" @@ -563,7 +563,7 @@ "Label\n" "value.text" msgid "Pivot Table Filter" -msgstr "Pibote-taularen iragazkia" +msgstr "Taula dinamikoen iragazkia" #: CalcCommands.xcu msgctxt "" @@ -800,14 +800,13 @@ msgstr "Hautatu beheko bloke-marjinaraino" #: CalcCommands.xcu -#, fuzzy msgctxt "" "CalcCommands.xcu\n" "..CalcCommands.UserInterface.Commands..uno:DataDataPilotRun\n" "Label\n" "value.text" msgid "Insert Pivot Table..." -msgstr "~Sortu Pibote-taula..." +msgstr "Txertatu taula dinamikoa..." #: CalcCommands.xcu msgctxt "" @@ -816,7 +815,7 @@ "ContextLabel\n" "value.text" msgid "Pi~vot Table..." -msgstr "" +msgstr "Taula ~dinamikoa..." #: CalcCommands.xcu msgctxt "" @@ -900,14 +899,13 @@ msgstr "~Diagrama..." #: CalcCommands.xcu -#, fuzzy msgctxt "" "CalcCommands.xcu\n" "..CalcCommands.UserInterface.Commands..uno:InsertObjectChartFromFile\n" "Label\n" "value.text" msgid "Chart From File..." -msgstr "Diagrama fitxategitik" +msgstr "Diagrama fitxategitik..." #: CalcCommands.xcu msgctxt "" @@ -1069,7 +1067,7 @@ "Label\n" "value.text" msgid "Manage..." -msgstr "~Kudeatu" +msgstr "Kudeatu..." #: CalcCommands.xcu msgctxt "" @@ -1270,14 +1268,13 @@ msgstr "Errepikatu bilaketa" #: CalcCommands.xcu -#, fuzzy msgctxt "" "CalcCommands.xcu\n" "..CalcCommands.UserInterface.Commands..uno:Remove\n" "Label\n" "value.text" msgid "~Delete Sheet..." -msgstr "~Hautatu orriak..." +msgstr "~Ezabatu orria..." #: CalcCommands.xcu msgctxt "" @@ -1502,7 +1499,7 @@ "Label\n" "value.text" msgid "~Regression..." -msgstr "" +msgstr "E~rregresioa..." #: CalcCommands.xcu msgctxt "" @@ -1538,10 +1535,9 @@ "Label\n" "value.text" msgid "~Chi-square Test..." -msgstr "~Ji-karratuaren testa..." +msgstr "~Khi-karratuaren proba..." #: CalcCommands.xcu -#, fuzzy msgctxt "" "CalcCommands.xcu\n" "..CalcCommands.UserInterface.Commands..uno:EditHeaderAndFooter\n" @@ -1731,7 +1727,6 @@ msgstr "~Normala" #: CalcCommands.xcu -#, fuzzy msgctxt "" "CalcCommands.xcu\n" "..CalcCommands.UserInterface.Commands..uno:PagebreakMode\n" @@ -1837,7 +1832,7 @@ "Label\n" "value.text" msgid "Cle~ar Cells..." -msgstr "" +msgstr "G~arbitu gelaxkak..." #: CalcCommands.xcu msgctxt "" @@ -1975,7 +1970,6 @@ msgstr "Txertatu ~gelaxkak..." #: CalcCommands.xcu -#, fuzzy msgctxt "" "CalcCommands.xcu\n" "..CalcCommands.UserInterface.Commands..uno:InsertRowsMenu\n" @@ -1985,7 +1979,6 @@ msgstr "Txertatu ~errenkadak" #: CalcCommands.xcu -#, fuzzy msgctxt "" "CalcCommands.xcu\n" "..CalcCommands.UserInterface.Commands..uno:InsertColumnsMenu\n" @@ -2001,7 +1994,7 @@ "Label\n" "value.text" msgid "Insert ~Rows Above" -msgstr "" +msgstr "Txertatu e~rrenkadak gainean" #: CalcCommands.xcu msgctxt "" @@ -2010,7 +2003,7 @@ "ContextLabel\n" "value.text" msgid "Rows ~Above" -msgstr "" +msgstr "Errenkadak g~ainean" #: CalcCommands.xcu msgctxt "" @@ -2019,7 +2012,7 @@ "Label\n" "value.text" msgid "Insert ~Rows Above" -msgstr "" +msgstr "Txertatu e~rrenkadak gainean" #: CalcCommands.xcu msgctxt "" @@ -2028,17 +2021,16 @@ "ContextLabel\n" "value.text" msgid "Rows ~Above" -msgstr "" +msgstr "Errenkadak g~ainean" #: CalcCommands.xcu -#, fuzzy msgctxt "" "CalcCommands.xcu\n" "..CalcCommands.UserInterface.Commands..uno:InsertColumns\n" "Label\n" "value.text" msgid "Insert Co~lumns Left" -msgstr "Txertatu zu~tabeak" +msgstr "Txertatu zutabeak e~zkerrean" #: CalcCommands.xcu msgctxt "" @@ -2047,17 +2039,16 @@ "ContextLabel\n" "value.text" msgid "Columns ~Left" -msgstr "" +msgstr "Zutabeak e~zkerrean" #: CalcCommands.xcu -#, fuzzy msgctxt "" "CalcCommands.xcu\n" "..CalcCommands.UserInterface.Commands..uno:InsertColumnsBefore\n" "Label\n" "value.text" msgid "Insert Co~lumns Left" -msgstr "Txertatu zu~tabeak" +msgstr "Txertatu zutabeak e~zkerrean" #: CalcCommands.xcu msgctxt "" @@ -2066,7 +2057,7 @@ "ContextLabel\n" "value.text" msgid "Columns ~Left" -msgstr "" +msgstr "Zutabeak e~zkerrean" #: CalcCommands.xcu msgctxt "" @@ -2075,7 +2066,7 @@ "Label\n" "value.text" msgid "Insert ~Rows Below" -msgstr "" +msgstr "Txertatu errenkadak ~azpian" #: CalcCommands.xcu msgctxt "" @@ -2084,17 +2075,16 @@ "ContextLabel\n" "value.text" msgid "Rows ~Below" -msgstr "" +msgstr "Errenkadak ~azpian" #: CalcCommands.xcu -#, fuzzy msgctxt "" "CalcCommands.xcu\n" "..CalcCommands.UserInterface.Commands..uno:InsertColumnsAfter\n" "Label\n" "value.text" msgid "Insert Co~lumns Right" -msgstr "Txertatu gelaxkak eskuinerantz" +msgstr "Txertatu zutabeak e~skuinean" #: CalcCommands.xcu msgctxt "" @@ -2103,7 +2093,7 @@ "ContextLabel\n" "value.text" msgid "Columns ~Right" -msgstr "" +msgstr "Zutabeak e~skuman" #: CalcCommands.xcu msgctxt "" @@ -2394,14 +2384,13 @@ msgstr "~Ezkutatu orriak" #: CalcCommands.xcu -#, fuzzy msgctxt "" "CalcCommands.xcu\n" "..CalcCommands.UserInterface.Commands..uno:Show\n" "Label\n" "value.text" msgid "~Show Sheet..." -msgstr "E~rakutsi orriak..." +msgstr "E~rakutsi orria..." #: CalcCommands.xcu msgctxt "" @@ -2458,7 +2447,6 @@ msgstr "Testu-atributu estandarrak" #: CalcCommands.xcu -#, fuzzy msgctxt "" "CalcCommands.xcu\n" "..CalcCommands.UserInterface.Commands..uno:TextAttributes\n" @@ -2510,7 +2498,7 @@ "Label\n" "value.text" msgid "Protect ~Spreadsheet..." -msgstr "" +msgstr "Babestu ~Kalkulu-orria..." #: CalcCommands.xcu msgctxt "" @@ -2537,7 +2525,7 @@ "Label\n" "value.text" msgid "~Refresh Pivot Table" -msgstr "~Freskatu pibote-taula" +msgstr "~Freskatu taula dinamikoa" #: CalcCommands.xcu msgctxt "" @@ -2555,7 +2543,7 @@ "Label\n" "value.text" msgid "~Delete Pivot Table" -msgstr "~Ezabatu pibote-taula" +msgstr "~Ezabatu taula dinamikoa" #: CalcCommands.xcu msgctxt "" @@ -2798,7 +2786,7 @@ "Label\n" "value.text" msgid "Sheet ~Tab Color..." -msgstr "" +msgstr "Orriaren ~fitxa-kolorea..." #: CalcCommands.xcu msgctxt "" @@ -2810,7 +2798,6 @@ msgstr "Fitxaren kolorea" #: CalcCommands.xcu -#, fuzzy msgctxt "" "CalcCommands.xcu\n" "..CalcCommands.UserInterface.Commands..uno:Move\n" @@ -3195,7 +3182,7 @@ "Label\n" "value.text" msgid "S~hare Spreadsheet..." -msgstr "" +msgstr "~Partekatu kalkulu-orria..." #: CalcCommands.xcu msgctxt "" @@ -3213,7 +3200,7 @@ "ContextLabel\n" "value.text" msgid "Grid Lines for Sheet" -msgstr "" +msgstr "Orriaren sareta-marrak" #: CalcCommands.xcu msgctxt "" @@ -3270,14 +3257,13 @@ msgstr "De~tektibea" #: CalcCommands.xcu -#, fuzzy msgctxt "" "CalcCommands.xcu\n" "..CalcCommands.UserInterface.Popups..uno:InsertBreakMenu\n" "Label\n" "value.text" msgid "Insert Page ~Break" -msgstr "Txertatu orrialde-jauzia" +msgstr "Txertatu orrialde-~jauzia" #: CalcCommands.xcu msgctxt "" @@ -3304,10 +3290,9 @@ "Label\n" "value.text" msgid "F~ill Cells" -msgstr "" +msgstr "B~ete gelaxkak" #: CalcCommands.xcu -#, fuzzy msgctxt "" "CalcCommands.xcu\n" "..CalcCommands.UserInterface.Popups..uno:CellContentsMenu\n" @@ -3323,17 +3308,16 @@ "Label\n" "value.text" msgid "~Named Expressions" -msgstr "" +msgstr "~Izendun espresioak" #: CalcCommands.xcu -#, fuzzy msgctxt "" "CalcCommands.xcu\n" "..CalcCommands.UserInterface.Popups..uno:EditAnnotation\n" "Label\n" "value.text" msgid "Edit Comment" -msgstr "Hurrengo iruzkina" +msgstr "Editatu iruzkina" #: CalcCommands.xcu msgctxt "" @@ -3342,7 +3326,7 @@ "Label\n" "value.text" msgid "~Pivot Table" -msgstr "~Pibote-taula" +msgstr "~Taula dinamikoa" #: CalcCommands.xcu msgctxt "" @@ -3360,7 +3344,7 @@ "Label\n" "value.text" msgid "More ~Filters" -msgstr "" +msgstr "~Iragazki gehiago" #: CalcCommands.xcu msgctxt "" @@ -3432,7 +3416,7 @@ "Label\n" "value.text" msgid "Cell ~Comment" -msgstr "" +msgstr "Gelaxkaren ~iruzkinak" #: CalcCommands.xcu msgctxt "" @@ -3513,7 +3497,7 @@ "Label\n" "value.text" msgid "Export as image" -msgstr "" +msgstr "Esportatu irudi gisa" #: CalcCommands.xcu msgctxt "" @@ -3984,14 +3968,13 @@ msgstr "Formateatu hautapena..." #: ChartCommands.xcu -#, fuzzy msgctxt "" "ChartCommands.xcu\n" "..ChartCommands.UserInterface.Commands..uno:Legend\n" "Label\n" "value.text" msgid "Format Legend" -msgstr "Formateatu legenda..." +msgstr "Formateatu legenda" #: ChartCommands.xcu msgctxt "" @@ -4048,14 +4031,13 @@ msgstr "Datu-~areak..." #: ChartCommands.xcu -#, fuzzy msgctxt "" "ChartCommands.xcu\n" "..ChartCommands.UserInterface.Commands..uno:DiagramData\n" "Label\n" "value.text" msgid "~Data Table..." -msgstr "~Datu-etiketak..." +msgstr "~Datu-taula..." #: ChartCommands.xcu msgctxt "" @@ -4724,14 +4706,13 @@ msgstr "Hautatu diagramako elementua" #: ChartCommands.xcu -#, fuzzy msgctxt "" "ChartCommands.xcu\n" "..ChartCommands.UserInterface.Commands..uno:ToggleGridHorizontal\n" "Label\n" "value.text" msgid "Horizontal Grids" -msgstr "Horizontalki barrurantz" +msgstr "Marra horizontalak" #: ChartCommands.xcu msgctxt "" @@ -4794,7 +4775,7 @@ "Label\n" "value.text" msgid "Vertical Grids" -msgstr "" +msgstr "Sareta-marra bertikalak" #: ChartCommands.xcu msgctxt "" @@ -5919,10 +5900,9 @@ "Label\n" "value.text" msgid "S~lide" -msgstr "" +msgstr "D~iapositiba" #: DrawImpressCommands.xcu -#, fuzzy msgctxt "" "DrawImpressCommands.xcu\n" "..DrawImpressCommands.UserInterface.Commands..uno:SlideNavigateMenu\n" @@ -5932,14 +5912,13 @@ msgstr "Nabigatu" #: DrawImpressCommands.xcu -#, fuzzy msgctxt "" "DrawImpressCommands.xcu\n" "..DrawImpressCommands.UserInterface.Commands..uno:SlideMoveMenu\n" "Label\n" "value.text" msgid "Move" -msgstr "Modua" +msgstr "Mugitu" #: DrawImpressCommands.xcu msgctxt "" @@ -5948,7 +5927,7 @@ "Label\n" "value.text" msgid "Rename Page/Slide" -msgstr "" +msgstr "Izena aldatu orria/diapositibari" #: DrawImpressCommands.xcu msgctxt "" @@ -5984,7 +5963,7 @@ "Label\n" "value.text" msgid "Jump to last edited Slide" -msgstr "" +msgstr "Joan editatutako azken diapositibara" #: DrawImpressCommands.xcu msgctxt "" @@ -6356,7 +6335,6 @@ msgstr "Aurre~bista" #: DrawImpressCommands.xcu -#, fuzzy msgctxt "" "DrawImpressCommands.xcu\n" "..DrawImpressCommands.UserInterface.Commands..uno:CustomAnimation\n" @@ -6375,7 +6353,6 @@ msgstr "Animazio-eskemak..." #: DrawImpressCommands.xcu -#, fuzzy msgctxt "" "DrawImpressCommands.xcu\n" "..DrawImpressCommands.UserInterface.Commands..uno:SlideChangeWindow\n" @@ -6421,14 +6398,13 @@ msgstr "Berrezarri banabidea" #: DrawImpressCommands.xcu -#, fuzzy msgctxt "" "DrawImpressCommands.xcu\n" "..DrawImpressCommands.UserInterface.Commands..uno:DuplicatePage\n" "Label\n" "value.text" msgid "Duplicate Page/~Slide" -msgstr "~Bikoiztu diapositiba" +msgstr "Bikoiztu Orria/~diapositiba" #: DrawImpressCommands.xcu msgctxt "" @@ -6734,7 +6710,7 @@ "Label\n" "value.text" msgid "Format Page/Slide" -msgstr "" +msgstr "Formatua eman orria/diapositibari" #: DrawImpressCommands.xcu msgctxt "" @@ -6743,7 +6719,7 @@ "ContextLabel\n" "value.text" msgid "~Page/Slide Properties..." -msgstr "" +msgstr "~Orri/Diapositiba propietateak..." #: DrawImpressCommands.xcu msgctxt "" @@ -6833,7 +6809,7 @@ "Label\n" "value.text" msgid "New Page/Slid~e" -msgstr "" +msgstr "Orri/diapositiba ~berria" #: DrawImpressCommands.xcu msgctxt "" @@ -6971,14 +6947,13 @@ msgstr "~Txertatu doitze-puntua/lerroa..." #: DrawImpressCommands.xcu -#, fuzzy msgctxt "" "DrawImpressCommands.xcu\n" "..DrawImpressCommands.UserInterface.Commands..uno:ShowRuler\n" "Label\n" "value.text" msgid "~Rulers" -msgstr "E~rregela" +msgstr "E~rregelak" #: DrawImpressCommands.xcu msgctxt "" @@ -6990,14 +6965,13 @@ msgstr "~Geruza..." #: DrawImpressCommands.xcu -#, fuzzy msgctxt "" "DrawImpressCommands.xcu\n" "..DrawImpressCommands.UserInterface.Commands..uno:ModifyPage\n" "Label\n" "value.text" msgid "Slide ~Layout" -msgstr "Diapositiba-maketazioa" +msgstr "Diapositiba-~maketazioa" #: DrawImpressCommands.xcu msgctxt "" @@ -7141,7 +7115,7 @@ "Label\n" "value.text" msgid "Notes" -msgstr "" +msgstr "Oharrak" #: DrawImpressCommands.xcu msgctxt "" @@ -7150,7 +7124,7 @@ "Label\n" "value.text" msgid "Display Mode" -msgstr "" +msgstr "Bistaratze modua" #: DrawImpressCommands.xcu msgctxt "" @@ -7159,7 +7133,7 @@ "Label\n" "value.text" msgid "Toggle Tab Bar Visibility" -msgstr "" +msgstr "Txandakatu fitxa-barraren ikusgarritasuna" #: DrawImpressCommands.xcu msgctxt "" @@ -7168,10 +7142,9 @@ "ContextLabel\n" "value.text" msgid "Modes Tab Bar" -msgstr "" +msgstr "Moduen fitxa-barra" #: DrawImpressCommands.xcu -#, fuzzy msgctxt "" "DrawImpressCommands.xcu\n" "..DrawImpressCommands.UserInterface.Commands..uno:HandoutMode\n" @@ -7187,7 +7160,7 @@ "Label\n" "value.text" msgid "D~elete Page/Slide" -msgstr "" +msgstr "~Ezabatu orria/diapositiba" #: DrawImpressCommands.xcu msgctxt "" @@ -7775,14 +7748,13 @@ msgstr "Egin klik bikoitza testua editatzeko" #: DrawImpressCommands.xcu -#, fuzzy msgctxt "" "DrawImpressCommands.xcu\n" "..DrawImpressCommands.UserInterface.Commands..uno:SaveGraphic\n" "Label\n" "value.text" msgid "~Save..." -msgstr "O~rrialdea..." +msgstr "~Gorde..." #: DrawImpressCommands.xcu msgctxt "" @@ -7791,7 +7763,7 @@ "Label\n" "value.text" msgid "~Original Size" -msgstr "" +msgstr "~Jatorrizko tamaina" #: DrawImpressCommands.xcu msgctxt "" @@ -7800,7 +7772,7 @@ "Label\n" "value.text" msgid "~Replace..." -msgstr "" +msgstr "O~rdeztu..." #: DrawImpressCommands.xcu msgctxt "" @@ -7809,7 +7781,7 @@ "Label\n" "value.text" msgid "Co~mpress..." -msgstr "" +msgstr "Konpri~mitu..." #: DrawImpressCommands.xcu msgctxt "" @@ -7818,7 +7790,7 @@ "Label\n" "value.text" msgid "Set Background Image..." -msgstr "" +msgstr "Ezarri atzeko planoko irudia..." #: DrawImpressCommands.xcu msgctxt "" @@ -7827,7 +7799,7 @@ "Label\n" "value.text" msgid "Save Background Image..." -msgstr "" +msgstr "Gorde atzeko planoko irudia..." #: DrawImpressCommands.xcu msgctxt "" @@ -7836,7 +7808,7 @@ "Label\n" "value.text" msgid "Display Master Background" -msgstr "" +msgstr "Bistaratu atzeko plano maisua" #: DrawImpressCommands.xcu msgctxt "" @@ -7845,7 +7817,7 @@ "Label\n" "value.text" msgid "Display Master Objects" -msgstr "" +msgstr "Bistaratu objektu maisuak" #: DrawImpressCommands.xcu msgctxt "" @@ -7854,7 +7826,7 @@ "Label\n" "value.text" msgid "E~dit Style..." -msgstr "" +msgstr "E~ditatu estiloa..." #: DrawImpressCommands.xcu msgctxt "" @@ -8547,7 +8519,7 @@ "Label\n" "value.text" msgid "Go to First Page/Slide" -msgstr "" +msgstr "Joan lehen Orri/diapositibara" #: DrawImpressCommands.xcu msgctxt "" @@ -8556,7 +8528,7 @@ "ContextLabel\n" "value.text" msgid "To First Page/Slide" -msgstr "" +msgstr "Lehen orri/diapositibara" #: DrawImpressCommands.xcu msgctxt "" @@ -8565,7 +8537,7 @@ "Label\n" "value.text" msgid "Go to Previous Page/Slide" -msgstr "" +msgstr "Joan aurreko orri/diapositibara" #: DrawImpressCommands.xcu msgctxt "" @@ -8574,7 +8546,7 @@ "ContextLabel\n" "value.text" msgid "To Previous Page/Slide" -msgstr "" +msgstr "Aurreko orri/diapositibara" #: DrawImpressCommands.xcu msgctxt "" @@ -8583,7 +8555,7 @@ "Label\n" "value.text" msgid "Go to Next Page/Slide" -msgstr "" +msgstr "Joan hurrengo orri/diapositibara" #: DrawImpressCommands.xcu msgctxt "" @@ -8592,7 +8564,7 @@ "ContextLabel\n" "value.text" msgid "To Next Page/Slide" -msgstr "" +msgstr "Hurrengo orri/diapositibara" #: DrawImpressCommands.xcu msgctxt "" @@ -8601,7 +8573,7 @@ "Label\n" "value.text" msgid "Go to Last Page" -msgstr "" +msgstr "Joan azken orrira" #: DrawImpressCommands.xcu msgctxt "" @@ -8610,7 +8582,7 @@ "ContextLabel\n" "value.text" msgid "To Last Page/Slide" -msgstr "" +msgstr "Azken orri/diapositibara" #: DrawImpressCommands.xcu msgctxt "" @@ -8619,7 +8591,7 @@ "Label\n" "value.text" msgid "Move Page/Slide to Start" -msgstr "" +msgstr "Mugitu orria/diapositiba hasierara" #: DrawImpressCommands.xcu msgctxt "" @@ -8628,7 +8600,7 @@ "ContextLabel\n" "value.text" msgid "Page/Slide to Start" -msgstr "" +msgstr "Orria/diapositiba hasierara" #: DrawImpressCommands.xcu msgctxt "" @@ -8637,7 +8609,7 @@ "Label\n" "value.text" msgid "Move Page/Slide Up" -msgstr "" +msgstr "Mugitu orria/diapositiba gora" #: DrawImpressCommands.xcu msgctxt "" @@ -8646,7 +8618,7 @@ "ContextLabel\n" "value.text" msgid "Page/Slide Up" -msgstr "" +msgstr "Oria/diapositiba gora" #: DrawImpressCommands.xcu msgctxt "" @@ -8655,7 +8627,7 @@ "Label\n" "value.text" msgid "Move Page/Slide Down" -msgstr "" +msgstr "Mugitu orria/diapositiba behera" #: DrawImpressCommands.xcu msgctxt "" @@ -8664,7 +8636,7 @@ "ContextLabel\n" "value.text" msgid "Page/Slide Down" -msgstr "" +msgstr "Orria/diapositiba behera" #: DrawImpressCommands.xcu msgctxt "" @@ -8673,7 +8645,7 @@ "Label\n" "value.text" msgid "Move Page/Slide to End" -msgstr "" +msgstr "Mugitu orria/diapositiba bukaerara" #: DrawImpressCommands.xcu msgctxt "" @@ -8682,7 +8654,7 @@ "ContextLabel\n" "value.text" msgid "Page/Slide to End" -msgstr "" +msgstr "Orria/diapositiba bukaerara" #: DrawWindowState.xcu msgctxt "" @@ -8808,7 +8780,7 @@ "UIName\n" "value.text" msgid "Legacy Circles and Ovals" -msgstr "" +msgstr "Lehengo zirkuluak eta obaloak" #: DrawWindowState.xcu msgctxt "" @@ -8883,14 +8855,13 @@ msgstr "Inprimaki-diseinua" #: DrawWindowState.xcu -#, fuzzy msgctxt "" "DrawWindowState.xcu\n" "..DrawWindowState.UIElements.States.private:resource/toolbar/gluepointsobjectbar\n" "UIName\n" "value.text" msgid "Glue Points" -msgstr "~Kolatze-puntuak" +msgstr "Kolatze-puntuak" #: DrawWindowState.xcu msgctxt "" @@ -8935,7 +8906,7 @@ "UIName\n" "value.text" msgid "Legacy Rectangles" -msgstr "" +msgstr "Lehengo laukizuzenak" #: DrawWindowState.xcu msgctxt "" @@ -11413,7 +11384,6 @@ msgstr "Eskuinetik gora" #: Effects.xcu -#, fuzzy msgctxt "" "Effects.xcu\n" "..Effects.UserInterface.TransitionGroups.subtle\n" @@ -11423,7 +11393,6 @@ msgstr "Leuna" #: Effects.xcu -#, fuzzy msgctxt "" "Effects.xcu\n" "..Effects.UserInterface.TransitionGroups.exciting\n" @@ -11439,7 +11408,7 @@ "Label\n" "value.text" msgid "Venetian" -msgstr "" +msgstr "Pertsiana" #: Effects.xcu msgctxt "" @@ -11448,10 +11417,9 @@ "Label\n" "value.text" msgid "3D Venetian" -msgstr "" +msgstr "3D pertsiana" #: Effects.xcu -#, fuzzy msgctxt "" "Effects.xcu\n" "..Effects.UserInterface.TransitionSets.box\n" @@ -11467,7 +11435,7 @@ "Label\n" "value.text" msgid "Checkers" -msgstr "" +msgstr "Xakea" #: Effects.xcu msgctxt "" @@ -11476,17 +11444,16 @@ "Label\n" "value.text" msgid "Comb" -msgstr "" +msgstr "Orraztu" #: Effects.xcu -#, fuzzy msgctxt "" "Effects.xcu\n" "..Effects.UserInterface.TransitionSets.cover\n" "Label\n" "value.text" msgid "Cover" -msgstr "Hirusta" +msgstr "Eztali" #: Effects.xcu msgctxt "" @@ -11495,10 +11462,9 @@ "Label\n" "value.text" msgid "Uncover" -msgstr "" +msgstr "Agerrarazi" #: Effects.xcu -#, fuzzy msgctxt "" "Effects.xcu\n" "..Effects.UserInterface.TransitionSets.wipe\n" @@ -11508,7 +11474,6 @@ msgstr "Ezabatu" #: Effects.xcu -#, fuzzy msgctxt "" "Effects.xcu\n" "..Effects.UserInterface.TransitionSets.wedge\n" @@ -11518,7 +11483,6 @@ msgstr "Ziria" #: Effects.xcu -#, fuzzy msgctxt "" "Effects.xcu\n" "..Effects.UserInterface.TransitionSets.wheel\n" @@ -11534,10 +11498,9 @@ "Label\n" "value.text" msgid "Push" -msgstr "" +msgstr "Bultza" #: Effects.xcu -#, fuzzy msgctxt "" "Effects.xcu\n" "..Effects.UserInterface.TransitionSets.cut\n" @@ -11553,10 +11516,9 @@ "Label\n" "value.text" msgid "Fade" -msgstr "" +msgstr "Iraungi" #: Effects.xcu -#, fuzzy msgctxt "" "Effects.xcu\n" "..Effects.UserInterface.TransitionSets.random-bars\n" @@ -11566,17 +11528,15 @@ msgstr "Ausazko barrak" #: Effects.xcu -#, fuzzy msgctxt "" "Effects.xcu\n" "..Effects.UserInterface.TransitionSets.shape\n" "Label\n" "value.text" msgid "Shape" -msgstr "~Formak" +msgstr "Forma" #: Effects.xcu -#, fuzzy msgctxt "" "Effects.xcu\n" "..Effects.UserInterface.TransitionSets.split\n" @@ -11592,7 +11552,7 @@ "Label\n" "value.text" msgid "Diagonal" -msgstr "" +msgstr "Diagonala" #: Effects.xcu msgctxt "" @@ -11601,10 +11561,9 @@ "Label\n" "value.text" msgid "Random" -msgstr "" +msgstr "Ausazkoa" #: Effects.xcu -#, fuzzy msgctxt "" "Effects.xcu\n" "..Effects.UserInterface.TransitionSets.dissolve\n" @@ -11614,17 +11573,15 @@ msgstr "Disolbatu" #: Effects.xcu -#, fuzzy msgctxt "" "Effects.xcu\n" "..Effects.UserInterface.TransitionSets.finedissolve\n" "Label\n" "value.text" msgid "Fine Dissolve" -msgstr "Urtze arina" +msgstr "Disolbatze fina" #: Effects.xcu -#, fuzzy msgctxt "" "Effects.xcu\n" "..Effects.UserInterface.TransitionSets.newsflash\n" @@ -11640,10 +11597,9 @@ "Label\n" "value.text" msgid "Tiles" -msgstr "" +msgstr "Lauzak" #: Effects.xcu -#, fuzzy msgctxt "" "Effects.xcu\n" "..Effects.UserInterface.TransitionSets.cube-turning\n" @@ -11653,14 +11609,13 @@ msgstr "Kuboa" #: Effects.xcu -#, fuzzy msgctxt "" "Effects.xcu\n" "..Effects.UserInterface.TransitionSets.revolving-circles\n" "Label\n" "value.text" msgid "Circles" -msgstr "Zirkulua" +msgstr "Zirkuluak" #: Effects.xcu msgctxt "" @@ -11669,10 +11624,9 @@ "Label\n" "value.text" msgid "Helix" -msgstr "" +msgstr "Helizea" #: Effects.xcu -#, fuzzy msgctxt "" "Effects.xcu\n" "..Effects.UserInterface.TransitionSets.fall\n" @@ -11682,17 +11636,15 @@ msgstr "Erorketa" #: Effects.xcu -#, fuzzy msgctxt "" "Effects.xcu\n" "..Effects.UserInterface.TransitionSets.turn-around\n" "Label\n" "value.text" msgid "Turn Around" -msgstr "Biratu" +msgstr "Itzulbiratu" #: Effects.xcu -#, fuzzy msgctxt "" "Effects.xcu\n" "..Effects.UserInterface.TransitionSets.turn-down\n" @@ -11702,7 +11654,6 @@ msgstr "Biratu beherantz" #: Effects.xcu -#, fuzzy msgctxt "" "Effects.xcu\n" "..Effects.UserInterface.TransitionSets.iris\n" @@ -11712,7 +11663,6 @@ msgstr "Diafragma" #: Effects.xcu -#, fuzzy msgctxt "" "Effects.xcu\n" "..Effects.UserInterface.TransitionSets.rochade\n" @@ -11722,7 +11672,6 @@ msgstr "Errokea" #: Effects.xcu -#, fuzzy msgctxt "" "Effects.xcu\n" "..Effects.UserInterface.TransitionSets.static\n" @@ -11738,7 +11687,7 @@ "Label\n" "value.text" msgid "Vortex" -msgstr "" +msgstr "Zurrunbiloa" #: Effects.xcu msgctxt "" @@ -11747,7 +11696,7 @@ "Label\n" "value.text" msgid "Ripple" -msgstr "" +msgstr "Uhina" #: Effects.xcu msgctxt "" @@ -11756,7 +11705,7 @@ "Label\n" "value.text" msgid "Glitter" -msgstr "" +msgstr "Dirdira" #: Effects.xcu msgctxt "" @@ -11765,7 +11714,7 @@ "Label\n" "value.text" msgid "Honeycomb" -msgstr "" +msgstr "Abaraska" #: Effects.xcu msgctxt "" @@ -11774,10 +11723,9 @@ "Label\n" "value.text" msgid "Plain" -msgstr "" +msgstr "Soila" #: Effects.xcu -#, fuzzy msgctxt "" "Effects.xcu\n" "..Effects.UserInterface.TransitionVariants.smoothly\n" @@ -11787,7 +11735,6 @@ msgstr "Leuna" #: Effects.xcu -#, fuzzy msgctxt "" "Effects.xcu\n" "..Effects.UserInterface.TransitionVariants.through-black\n" @@ -11797,7 +11744,6 @@ msgstr "Ebaki beltzean" #: Effects.xcu -#, fuzzy msgctxt "" "Effects.xcu\n" "..Effects.UserInterface.TransitionVariants.left-right\n" @@ -11813,7 +11759,7 @@ "Label\n" "value.text" msgid "Top Left to Bottom Right" -msgstr "" +msgstr "Goi ezkerretik behe eskumara" #: Effects.xcu msgctxt "" @@ -11822,7 +11768,7 @@ "Label\n" "value.text" msgid "Top to Bottom" -msgstr "" +msgstr "Goitik behera" #: Effects.xcu msgctxt "" @@ -11831,10 +11777,9 @@ "Label\n" "value.text" msgid "Top Right to Bottom Left" -msgstr "" +msgstr "Goi eskumatik behe ezkerrera" #: Effects.xcu -#, fuzzy msgctxt "" "Effects.xcu\n" "..Effects.UserInterface.TransitionVariants.right-left\n" @@ -11850,7 +11795,7 @@ "Label\n" "value.text" msgid "Bottom Right to Top Left" -msgstr "" +msgstr "Behe eskumarik goi ezkerrera" #: Effects.xcu msgctxt "" @@ -11859,7 +11804,7 @@ "Label\n" "value.text" msgid "Bottom to Top" -msgstr "" +msgstr "Behetik gora" #: Effects.xcu msgctxt "" @@ -11868,10 +11813,9 @@ "Label\n" "value.text" msgid "Bottom Left to Top Right" -msgstr "" +msgstr "Behe ezkerretik goi eskumara" #: Effects.xcu -#, fuzzy msgctxt "" "Effects.xcu\n" "..Effects.UserInterface.TransitionVariants.vertical\n" @@ -11881,7 +11825,6 @@ msgstr "Bertikala" #: Effects.xcu -#, fuzzy msgctxt "" "Effects.xcu\n" "..Effects.UserInterface.TransitionVariants.horizontal\n" @@ -11891,7 +11834,6 @@ msgstr "Horizontala" #: Effects.xcu -#, fuzzy msgctxt "" "Effects.xcu\n" "..Effects.UserInterface.TransitionVariants.in\n" @@ -11901,7 +11843,6 @@ msgstr "Barrura" #: Effects.xcu -#, fuzzy msgctxt "" "Effects.xcu\n" "..Effects.UserInterface.TransitionVariants.out\n" @@ -11911,7 +11852,6 @@ msgstr "Kanpora" #: Effects.xcu -#, fuzzy msgctxt "" "Effects.xcu\n" "..Effects.UserInterface.TransitionVariants.across\n" @@ -11921,7 +11861,6 @@ msgstr "Luzetara" #: Effects.xcu -#, fuzzy msgctxt "" "Effects.xcu\n" "..Effects.UserInterface.TransitionVariants.down\n" @@ -11931,7 +11870,6 @@ msgstr "Behera" #: Effects.xcu -#, fuzzy msgctxt "" "Effects.xcu\n" "..Effects.UserInterface.TransitionVariants.up\n" @@ -11941,7 +11879,6 @@ msgstr "Gora" #: Effects.xcu -#, fuzzy msgctxt "" "Effects.xcu\n" "..Effects.UserInterface.TransitionVariants.right\n" @@ -11951,7 +11888,6 @@ msgstr "Eskuinean" #: Effects.xcu -#, fuzzy msgctxt "" "Effects.xcu\n" "..Effects.UserInterface.TransitionVariants.left\n" @@ -11961,7 +11897,6 @@ msgstr "Ezkerrean" #: Effects.xcu -#, fuzzy msgctxt "" "Effects.xcu\n" "..Effects.UserInterface.TransitionVariants.circle\n" @@ -11971,7 +11906,6 @@ msgstr "Zirkulua" #: Effects.xcu -#, fuzzy msgctxt "" "Effects.xcu\n" "..Effects.UserInterface.TransitionVariants.diamond\n" @@ -11981,7 +11915,6 @@ msgstr "Diamantea" #: Effects.xcu -#, fuzzy msgctxt "" "Effects.xcu\n" "..Effects.UserInterface.TransitionVariants.plus\n" @@ -11991,7 +11924,6 @@ msgstr "Plus" #: Effects.xcu -#, fuzzy msgctxt "" "Effects.xcu\n" "..Effects.UserInterface.TransitionVariants.horizontal-in\n" @@ -12001,7 +11933,6 @@ msgstr "Horizontalki barrurantz" #: Effects.xcu -#, fuzzy msgctxt "" "Effects.xcu\n" "..Effects.UserInterface.TransitionVariants.horizontal-out\n" @@ -12011,7 +11942,6 @@ msgstr "Horizontalki kanporantz" #: Effects.xcu -#, fuzzy msgctxt "" "Effects.xcu\n" "..Effects.UserInterface.TransitionVariants.vertical-in\n" @@ -12021,7 +11951,6 @@ msgstr "Bertikalki barrurantz" #: Effects.xcu -#, fuzzy msgctxt "" "Effects.xcu\n" "..Effects.UserInterface.TransitionVariants.vertical-out\n" @@ -12037,7 +11966,7 @@ "Label\n" "value.text" msgid "Clockwise 1 Spoke" -msgstr "" +msgstr "Erlojuaren noranzkoan erradio 1" #: Effects.xcu msgctxt "" @@ -12046,7 +11975,7 @@ "Label\n" "value.text" msgid "Clockwise 2 Spokes" -msgstr "" +msgstr "Erlojuaren noranzkoan 2 erradio" #: Effects.xcu msgctxt "" @@ -12055,7 +11984,7 @@ "Label\n" "value.text" msgid "Clockwise 3 Spokes" -msgstr "" +msgstr "Erlojuaren noranzkoan 3 erradio" #: Effects.xcu msgctxt "" @@ -12064,7 +11993,7 @@ "Label\n" "value.text" msgid "Clockwise 4 Spokes" -msgstr "" +msgstr "Erlojuaren noranzkoan 4 erradio" #: Effects.xcu msgctxt "" @@ -12073,7 +12002,7 @@ "Label\n" "value.text" msgid "Clockwise 8 Spokes" -msgstr "" +msgstr "Erlojuaren noranzkoan 8 erradio" #: Effects.xcu msgctxt "" @@ -12082,7 +12011,7 @@ "Label\n" "value.text" msgid "Counterclockwise 1 Spoke" -msgstr "" +msgstr "Erlojuaren kontrako noranzkoan erradio 1" #: Effects.xcu msgctxt "" @@ -12091,7 +12020,7 @@ "Label\n" "value.text" msgid "Counterclockwise 2 Spokes" -msgstr "" +msgstr "Erlojuaren kontrako noranzkoan 2 erradio" #: Effects.xcu msgctxt "" @@ -12100,7 +12029,7 @@ "Label\n" "value.text" msgid "Counterclockwise 3 Spokes" -msgstr "" +msgstr "Erlojuaren kontrako noranzkoan 3 erradio" #: Effects.xcu msgctxt "" @@ -12109,7 +12038,7 @@ "Label\n" "value.text" msgid "Counterclockwise 4 Spokes" -msgstr "" +msgstr "Erlojuaren kontrako noranzkoan 4 erradio" #: Effects.xcu msgctxt "" @@ -12118,7 +12047,7 @@ "Label\n" "value.text" msgid "Counterclockwise 8 Spokes" -msgstr "" +msgstr "Erlojuaren kontrako noranzkoan 8 erradio" #: Effects.xcu msgctxt "" @@ -12127,7 +12056,7 @@ "Label\n" "value.text" msgid "Inside" -msgstr "" +msgstr "Barruan" #: Effects.xcu msgctxt "" @@ -12136,7 +12065,7 @@ "Label\n" "value.text" msgid "Outside" -msgstr "" +msgstr "Kanpoan" #: Effects.xcu msgctxt "" @@ -12517,14 +12446,13 @@ msgstr "Kontrolak" #: GenericCommands.xcu -#, fuzzy msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Commands..uno:InsertFormMenu\n" "Label\n" "value.text" msgid "Fo~rm Control" -msgstr "Inprimakiko kontrolak" +msgstr "Inp~rimakiko kontrolak" #: GenericCommands.xcu msgctxt "" @@ -12551,7 +12479,7 @@ "Label\n" "value.text" msgid "Toggle Unicode Notation" -msgstr "" +msgstr "Txandakatu Unicode notazioa" #: GenericCommands.xcu msgctxt "" @@ -12623,7 +12551,7 @@ "Label\n" "value.text" msgid "Increase Paragraph Spacing" -msgstr "" +msgstr "Handitu paragrafo-tartea" #: GenericCommands.xcu msgctxt "" @@ -12632,7 +12560,7 @@ "Label\n" "value.text" msgid "Decrease Paragraph Spacing" -msgstr "" +msgstr "Txikitu paragrafo-tartea" #: GenericCommands.xcu msgctxt "" @@ -14126,7 +14054,7 @@ "Label\n" "value.text" msgid "Increase Font Size" -msgstr "" +msgstr "Handitu letra-tamaina" #: GenericCommands.xcu msgctxt "" @@ -14135,7 +14063,7 @@ "ContextLabel\n" "value.text" msgid "Increase Size" -msgstr "" +msgstr "Handitu tamaina" #: GenericCommands.xcu msgctxt "" @@ -14144,7 +14072,7 @@ "Label\n" "value.text" msgid "Decrease Font Size" -msgstr "" +msgstr "Txikitu letra-tamaina" #: GenericCommands.xcu msgctxt "" @@ -14153,7 +14081,7 @@ "ContextLabel\n" "value.text" msgid "Decrease Size" -msgstr "" +msgstr "Txikitu tamaina" #: GenericCommands.xcu msgctxt "" @@ -14288,7 +14216,7 @@ "Label\n" "value.text" msgid "Search Formatted Display String" -msgstr "" +msgstr "Bilatu formatudun bistaratze-katea" #: GenericCommands.xcu msgctxt "" @@ -14315,7 +14243,7 @@ "Label\n" "value.text" msgid "[placeholder for message]" -msgstr "" +msgstr "[mezuaren leku-marka]" #: GenericCommands.xcu msgctxt "" @@ -14621,7 +14549,7 @@ "Label\n" "value.text" msgid "150%" -msgstr "% 50" +msgstr "%150" #: GenericCommands.xcu msgctxt "" @@ -14810,7 +14738,7 @@ "ContextLabel\n" "value.text" msgid "Crop" -msgstr "" +msgstr "Moztu" #: GenericCommands.xcu msgctxt "" @@ -14819,7 +14747,7 @@ "Label\n" "value.text" msgid "Replace Image" -msgstr "" +msgstr "Ordeztu irudia" #: GenericCommands.xcu msgctxt "" @@ -14828,7 +14756,7 @@ "ContextLabel\n" "value.text" msgid "~Replace..." -msgstr "" +msgstr "~Ordeztu..." #: GenericCommands.xcu msgctxt "" @@ -14837,7 +14765,7 @@ "Label\n" "value.text" msgid "Compress Image" -msgstr "" +msgstr "Konprimatu irudia" #: GenericCommands.xcu msgctxt "" @@ -14846,17 +14774,16 @@ "ContextLabel\n" "value.text" msgid "Co~mpress..." -msgstr "" +msgstr "Konpri~mitu..." #: GenericCommands.xcu -#, fuzzy msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Commands..uno:SaveGraphic\n" "Label\n" "value.text" msgid "Save Image" -msgstr "Gorde irudiak..." +msgstr "Gorde irudia" #: GenericCommands.xcu msgctxt "" @@ -14865,7 +14792,7 @@ "ContextLabel\n" "value.text" msgid "Save..." -msgstr "" +msgstr "Gorde..." #: GenericCommands.xcu msgctxt "" @@ -14874,17 +14801,16 @@ "Label\n" "value.text" msgid "Gr~id and Helplines" -msgstr "" +msgstr "Sa~reta eta marra lagungarriak" #: GenericCommands.xcu -#, fuzzy msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Commands..uno:ToolsFormsMenu\n" "Label\n" "value.text" msgid "~Forms" -msgstr "Inprimakiak" +msgstr "In~primakiak" #: GenericCommands.xcu msgctxt "" @@ -14893,7 +14819,7 @@ "Label\n" "value.text" msgid "Manage Templates" -msgstr "" +msgstr "Kudeatu txantiloiak" #: GenericCommands.xcu msgctxt "" @@ -14929,7 +14855,7 @@ "Label\n" "value.text" msgid "Open Remote ~File..." -msgstr "" +msgstr "Ireki urruneko ~fitxategia..." #: GenericCommands.xcu msgctxt "" @@ -14938,7 +14864,7 @@ "Label\n" "value.text" msgid "Save to Remote Ser~ver" -msgstr "" +msgstr "Gorde urruneko zer~bitzarian" #: GenericCommands.xcu msgctxt "" @@ -14947,7 +14873,7 @@ "PopupLabel\n" "value.text" msgid "Save Remote File..." -msgstr "" +msgstr "Gorde urruneko fitxategia..." #: GenericCommands.xcu msgctxt "" @@ -15069,14 +14995,13 @@ msgstr "Lekuz aldatu puntuak" #: GenericCommands.xcu -#, fuzzy msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Commands..uno:Reload\n" "Label\n" "value.text" msgid "Re~load" -msgstr "Birkargatu" +msgstr "Bir~kargatu" #: GenericCommands.xcu msgctxt "" @@ -15094,7 +15019,7 @@ "Label\n" "value.text" msgid "Print Directly" -msgstr "" +msgstr "Inprimatu zuzenean" #: GenericCommands.xcu msgctxt "" @@ -15106,7 +15031,6 @@ msgstr "Trantsizio leuna" #: GenericCommands.xcu -#, fuzzy msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Commands..uno:ToggleObjectBezierMode\n" @@ -15116,7 +15040,6 @@ msgstr "Editatu puntuak" #: GenericCommands.xcu -#, fuzzy msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Commands..uno:ToggleObjectBezierMode\n" @@ -15420,7 +15343,7 @@ "Label\n" "value.text" msgid "Outline Presets" -msgstr "" +msgstr "Eskema lehenetsiak" #: GenericCommands.xcu msgctxt "" @@ -15567,14 +15490,13 @@ msgstr "Maila jaitsi" #: GenericCommands.xcu -#, fuzzy msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Commands..uno:OutlineFormat\n" "Label\n" "value.text" msgid "Show Formatting" -msgstr "Orrialde-formateatzea" +msgstr "Erakutsi formatua" #: GenericCommands.xcu msgctxt "" @@ -15583,7 +15505,7 @@ "Label\n" "value.text" msgid "Show Only First Level" -msgstr "" +msgstr "Erakutsi lehen maila besterik ez" #: GenericCommands.xcu msgctxt "" @@ -15595,7 +15517,6 @@ msgstr "~Buletak eta numerazioa..." #: GenericCommands.xcu -#, fuzzy msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Commands..uno:EditDoc\n" @@ -15620,7 +15541,7 @@ "Label\n" "value.text" msgid "~Web View" -msgstr "" +msgstr "~Web ikuspegia" #: GenericCommands.xcu msgctxt "" @@ -15629,7 +15550,7 @@ "ContextLabel\n" "value.text" msgid "~Web" -msgstr "" +msgstr "~Web" #: GenericCommands.xcu msgctxt "" @@ -15755,7 +15676,7 @@ "Label\n" "value.text" msgid "~Edit Style..." -msgstr "" +msgstr "~Editatu estiloa..." #: GenericCommands.xcu msgctxt "" @@ -15764,7 +15685,7 @@ "Label\n" "value.text" msgid "~New Style..." -msgstr "" +msgstr "~Estilo Berria..." #: GenericCommands.xcu msgctxt "" @@ -15785,14 +15706,13 @@ msgstr "Zenbakizko eremua" #: GenericCommands.xcu -#, fuzzy msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Commands..uno:StyleUpdateByExample\n" "Label\n" "value.text" msgid "~Update Style" -msgstr "Eguneratu estiloa" +msgstr "~Eguneratu estiloa" #: GenericCommands.xcu msgctxt "" @@ -16011,7 +15931,6 @@ msgstr "Atzeko planoaren kolorea" #: GenericCommands.xcu -#, fuzzy msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Commands..uno:CharBackColor\n" @@ -16063,7 +15982,7 @@ "Label\n" "value.text" msgid "Borders (Shift to overwrite)" -msgstr "" +msgstr "Ertzak (Maius. gainidazteko)" #: GenericCommands.xcu msgctxt "" @@ -16252,7 +16171,7 @@ "Label\n" "value.text" msgid "Border Style" -msgstr "" +msgstr "Ertz-estiloa" #: GenericCommands.xcu msgctxt "" @@ -16261,7 +16180,7 @@ "Label\n" "value.text" msgid "Border Color" -msgstr "" +msgstr "Ertz-kolorea" #: GenericCommands.xcu msgctxt "" @@ -16342,7 +16261,7 @@ "Label\n" "value.text" msgid "Show All Levels" -msgstr "" +msgstr "Erakutsi maila guztiak" #: GenericCommands.xcu msgctxt "" @@ -16369,7 +16288,7 @@ "Label\n" "value.text" msgid "~Remove Outline" -msgstr "" +msgstr "~Kendu eskema" #: GenericCommands.xcu msgctxt "" @@ -16417,24 +16336,22 @@ msgstr "P~antaila osoa" #: GenericCommands.xcu -#, fuzzy msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Commands..uno:InsertFrameMenu\n" "Label\n" "value.text" msgid "~Frame" -msgstr "Markoa" +msgstr "~Markoa" #: GenericCommands.xcu -#, fuzzy msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Commands..uno:InsertFootnotesMenu\n" "Label\n" "value.text" msgid "Footnote and En~dnote" -msgstr "Oin-o~harrak/Amaiera-oharrak..." +msgstr "Oin-oharrak/A~maiera-oharrak..." #: GenericCommands.xcu msgctxt "" @@ -16452,10 +16369,9 @@ "Label\n" "value.text" msgid "~Object and Shape" -msgstr "" +msgstr "~Objektua eta forma" #: GenericCommands.xcu -#, fuzzy msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Commands..uno:FormatImageFiltersMenu\n" @@ -16465,24 +16381,22 @@ msgstr "~Iragazkia" #: GenericCommands.xcu -#, fuzzy msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Commands..uno:FormatImageModeMenu\n" "Label\n" "value.text" msgid "Mo~de" -msgstr "Modua" +msgstr "Mo~dua" #: GenericCommands.xcu -#, fuzzy msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Commands..uno:FormatTextMenu\n" "Label\n" "value.text" msgid "~Text" -msgstr "Testua" +msgstr "~Testua" #: GenericCommands.xcu msgctxt "" @@ -16491,7 +16405,7 @@ "Label\n" "value.text" msgid "~Spacing" -msgstr "" +msgstr "~Tartea" #: GenericCommands.xcu msgctxt "" @@ -16500,10 +16414,9 @@ "Label\n" "value.text" msgid "Lis~ts" -msgstr "" +msgstr "Zerren~dak" #: GenericCommands.xcu -#, fuzzy msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Commands..uno:FormatStylesMenu\n" @@ -16519,17 +16432,16 @@ "Label\n" "value.text" msgid "Frame and Ob~ject" -msgstr "" +msgstr "Markoa eta ob~jektua" #: GenericCommands.xcu -#, fuzzy msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Commands..uno:FormatFormMenu\n" "Label\n" "value.text" msgid "~Form" -msgstr "Inprimakia" +msgstr "~Inprimakia" #: GenericCommands.xcu msgctxt "" @@ -16547,7 +16459,7 @@ "Label\n" "value.text" msgid "AutoFormat Table Styles" -msgstr "" +msgstr "Automatikoki formateatu taula-estiloak" #: GenericCommands.xcu msgctxt "" @@ -16556,7 +16468,7 @@ "ContextLabel\n" "value.text" msgid "Auto~Format Styles..." -msgstr "" +msgstr "Automatikoki ~formateatu estiloak..." #: GenericCommands.xcu msgctxt "" @@ -16622,74 +16534,67 @@ msgstr "Erakutsi marrazteko funtzioak" #: GenericCommands.xcu -#, fuzzy msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Commands..uno:ShapesMenu\n" "Label\n" "value.text" msgid "~Shape" -msgstr "~Formak" +msgstr "~Forma" #: GenericCommands.xcu -#, fuzzy msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Commands..uno:ShapesLineMenu\n" "Label\n" "value.text" msgid "~Line" -msgstr "Marra" +msgstr "~Marra" #: GenericCommands.xcu -#, fuzzy msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Commands..uno:ShapesBasicMenu\n" "Label\n" "value.text" msgid "~Basic" -msgstr "Oinarrizkoa" +msgstr "~Oinarrizkoa" #: GenericCommands.xcu -#, fuzzy msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Commands..uno:ShapesSymbolMenu\n" "Label\n" "value.text" msgid "~Symbol" -msgstr "Ikurrak" +msgstr "~Ikurra" #: GenericCommands.xcu -#, fuzzy msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Commands..uno:RulerMenu\n" "Label\n" "value.text" msgid "~Rulers" -msgstr "E~rregela" +msgstr "E~rregelak" #: GenericCommands.xcu -#, fuzzy msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Commands..uno:ScrollBarMenu\n" "Label\n" "value.text" msgid "~Scrollbars" -msgstr "Korritze-barra" +msgstr "~Korritze-barrak" #: GenericCommands.xcu -#, fuzzy msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Commands..uno:SidebarMenu\n" "Label\n" "value.text" msgid "~Sidebar" -msgstr "Alboko barra" +msgstr "~Alboko-barra" #: GenericCommands.xcu msgctxt "" @@ -16917,7 +16822,6 @@ msgstr "~Bideoa..." #: GenericCommands.xcu -#, fuzzy msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Commands..uno:HyperlinkDialog\n" @@ -16951,7 +16855,7 @@ "Label\n" "value.text" msgid "Equalize ~Width" -msgstr "" +msgstr "Berdindu ~Zabalera" #: GenericCommands.xcu msgctxt "" @@ -16960,7 +16864,7 @@ "Label\n" "value.text" msgid "Equalize ~Height" -msgstr "" +msgstr "Berdindu ~Altuera" #: GenericCommands.xcu msgctxt "" @@ -17044,17 +16948,15 @@ msgstr "Desegin" #: GenericCommands.xcu -#, fuzzy msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Commands..uno:FormatPaintbrush\n" "Label\n" "value.text" msgid "Clone Formatting" -msgstr "Orrialde-formateatzea" +msgstr "Klonatu formatua" #: GenericCommands.xcu -#, fuzzy msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Commands..uno:FormatPaintbrush\n" @@ -17250,7 +17152,7 @@ "Label\n" "value.text" msgid "Color ~Replacer" -msgstr "Kolore ~ordezkatzailea" +msgstr "Tanta-~kontagailua" #: GenericCommands.xcu msgctxt "" @@ -18207,17 +18109,15 @@ msgstr "~Pertsonalizatu..." #: GenericCommands.xcu -#, fuzzy msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Commands..uno:ExportDirectToPDF\n" "Label\n" "value.text" msgid "Export as PDF" -msgstr "Esportatu P~DF gisa..." +msgstr "Esportatu PDF gisa" #: GenericCommands.xcu -#, fuzzy msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Commands..uno:ExportDirectToPDF\n" @@ -18638,7 +18538,7 @@ "Label\n" "value.text" msgid "Con~trol Properties..." -msgstr "" +msgstr "Kon~trol-propietateak..." #: GenericCommands.xcu msgctxt "" @@ -18647,7 +18547,7 @@ "ContextLabel\n" "value.text" msgid "For~m Properties..." -msgstr "" +msgstr "Inpri~maki-propietateak..." #: GenericCommands.xcu msgctxt "" @@ -18773,7 +18673,7 @@ "Label\n" "value.text" msgid "Toggle Design Mode" -msgstr "" +msgstr "Txandakatu diseinu modua" #: GenericCommands.xcu msgctxt "" @@ -18782,7 +18682,7 @@ "ContextLabel\n" "value.text" msgid "Design Mode" -msgstr "" +msgstr "Diseinu modua" #: GenericCommands.xcu msgctxt "" @@ -19745,7 +19645,7 @@ "Label\n" "value.text" msgid "Synony~ms" -msgstr "" +msgstr "Sinoni~moak" #: GenericCommands.xcu msgctxt "" @@ -19766,24 +19666,22 @@ msgstr "~Fitxategia" #: GenericCommands.xcu -#, fuzzy msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Popups..uno:ObjectAlign\n" "Label\n" "value.text" msgid "Alig~n" -msgstr "Lerrokatu" +msgstr "Lerro~katu" #: GenericCommands.xcu -#, fuzzy msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Popups..uno:TextAlign\n" "Label\n" "value.text" msgid "Alig~n" -msgstr "Lerrokatu" +msgstr "Lerro~katu" #: GenericCommands.xcu msgctxt "" @@ -19909,10 +19807,9 @@ "Label\n" "value.text" msgid "R~eference" -msgstr "" +msgstr "~Erreferentzia" #: GenericCommands.xcu -#, fuzzy msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Popups..uno:EditCommentsMenu\n" @@ -19922,7 +19819,6 @@ msgstr "~Iruzkina" #: GenericCommands.xcu -#, fuzzy msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Popups..uno:FormatImageFilterMenu\n" @@ -19977,7 +19873,6 @@ msgstr "~Tresna-barrak" #: GenericCommands.xcu -#, fuzzy msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Popups..uno:FieldMenu\n" @@ -20050,14 +19945,13 @@ msgstr "Ain~gura" #: GenericCommands.xcu -#, fuzzy msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Popups..uno:AVMediaPlayer\n" "Label\n" "value.text" msgid "Me~dia Player" -msgstr "~Multimedia erreproduzitzailea" +msgstr "~Multimedia erreproduzigailua" #: GenericCommands.xcu msgctxt "" @@ -20363,7 +20257,7 @@ "UIName\n" "value.text" msgid "Legacy Circles and Ovals" -msgstr "" +msgstr "Lehengo zirkuluak eta obaloak" #: ImpressWindowState.xcu msgctxt "" @@ -20552,7 +20446,7 @@ "UIName\n" "value.text" msgid "Legacy Rectangles" -msgstr "" +msgstr "Lehengo laukizuzenak" #: ImpressWindowState.xcu msgctxt "" @@ -20795,7 +20689,7 @@ "Label\n" "value.text" msgid "Import MathML from Clipboard" -msgstr "" +msgstr "Inportatu MathML arbeletik" #: MathCommands.xcu msgctxt "" @@ -20879,14 +20773,13 @@ msgstr "Aurreko ~markatzailea" #: MathCommands.xcu -#, fuzzy msgctxt "" "MathCommands.xcu\n" "..MathCommands.UserInterface.Commands..uno:SymbolCatalogue\n" "Label\n" "value.text" msgid "~Symbols…" -msgstr "Ikurrak" +msgstr "~Ikurrak…" #: MathCommands.xcu msgctxt "" @@ -20961,7 +20854,6 @@ msgstr "~Erakutsi dena" #: MathCommands.xcu -#, fuzzy msgctxt "" "MathCommands.xcu\n" "..MathCommands.UserInterface.Commands..uno:ElementsDockingWindow\n" @@ -21547,7 +21439,6 @@ msgstr "Galeria" #: Sidebar.xcu -#, fuzzy msgctxt "" "Sidebar.xcu\n" "..Sidebar.Content.DeckList.SdMasterPagesDeck\n" @@ -21557,7 +21448,6 @@ msgstr "Orrialde maisuak" #: Sidebar.xcu -#, fuzzy msgctxt "" "Sidebar.xcu\n" "..Sidebar.Content.DeckList.SdCustomAnimationDeck\n" @@ -21567,7 +21457,6 @@ msgstr "Animazio pertsonalizatua" #: Sidebar.xcu -#, fuzzy msgctxt "" "Sidebar.xcu\n" "..Sidebar.Content.DeckList.SdSlideTransitionDeck\n" @@ -21595,7 +21484,6 @@ msgstr "Estiloak eta formatua" #: Sidebar.xcu -#, fuzzy msgctxt "" "Sidebar.xcu\n" "..Sidebar.Content.DeckList.ScFunctionsDeck\n" @@ -21605,17 +21493,15 @@ msgstr "Funtzioak" #: Sidebar.xcu -#, fuzzy msgctxt "" "Sidebar.xcu\n" "..Sidebar.Content.DeckList.SwManageChangesDeck\n" "Title\n" "value.text" msgid "Manage Changes" -msgstr "~Kudeatu aldaketak..." +msgstr "Kudeatu aldaketak" #: Sidebar.xcu -#, fuzzy msgctxt "" "Sidebar.xcu\n" "..Sidebar.Content.DeckList.SwDesignDeck\n" @@ -21625,7 +21511,6 @@ msgstr "Diseinua" #: Sidebar.xcu -#, fuzzy msgctxt "" "Sidebar.xcu\n" "..Sidebar.Content.DeckList.ChartDeck\n" @@ -21635,14 +21520,13 @@ msgstr "Propietateak" #: Sidebar.xcu -#, fuzzy msgctxt "" "Sidebar.xcu\n" "..Sidebar.Content.PanelList.StylesPropertyPanel\n" "Title\n" "value.text" msgid "Styles" -msgstr "Esti~loak" +msgstr "Estiloak" #: Sidebar.xcu msgctxt "" @@ -21672,7 +21556,6 @@ msgstr "Area" #: Sidebar.xcu -#, fuzzy msgctxt "" "Sidebar.xcu\n" "..Sidebar.Content.PanelList.ShadowPropertyPanel\n" @@ -21718,7 +21601,6 @@ msgstr "Grafikoa" #: Sidebar.xcu -#, fuzzy msgctxt "" "Sidebar.xcu\n" "..Sidebar.Content.PanelList.SdLayoutsPanel\n" @@ -21728,7 +21610,6 @@ msgstr "Diseinuak" #: Sidebar.xcu -#, fuzzy msgctxt "" "Sidebar.xcu\n" "..Sidebar.Content.PanelList.SdUsedMasterPagesPanel\n" @@ -21738,17 +21619,15 @@ msgstr "Aurkezpen honetan erabilia" #: Sidebar.xcu -#, fuzzy msgctxt "" "Sidebar.xcu\n" "..Sidebar.Content.PanelList.SdRecentMasterPagesPanel\n" "Title\n" "value.text" msgid "Recently Used" -msgstr "Azkena erabilia" +msgstr "Oraintsu erabilia" #: Sidebar.xcu -#, fuzzy msgctxt "" "Sidebar.xcu\n" "..Sidebar.Content.PanelList.SdAllMasterPagesPanel\n" @@ -21758,7 +21637,6 @@ msgstr "Erabiltzeko prest" #: Sidebar.xcu -#, fuzzy msgctxt "" "Sidebar.xcu\n" "..Sidebar.Content.PanelList.SdCustomAnimationPanel\n" @@ -21768,7 +21646,6 @@ msgstr "Animazio pertsonalizatua" #: Sidebar.xcu -#, fuzzy msgctxt "" "Sidebar.xcu\n" "..Sidebar.Content.PanelList.SdSlideTransitionPanel\n" @@ -21778,7 +21655,6 @@ msgstr "Diapositiba-trantsizioa" #: Sidebar.xcu -#, fuzzy msgctxt "" "Sidebar.xcu\n" "..Sidebar.Content.PanelList.SdTableDesignPanel\n" @@ -21797,7 +21673,6 @@ msgstr "Hutsik" #: Sidebar.xcu -#, fuzzy msgctxt "" "Sidebar.xcu\n" "..Sidebar.Content.PanelList.ScAlignmentPropertyPanel\n" @@ -21807,7 +21682,6 @@ msgstr "Lerrokatzea" #: Sidebar.xcu -#, fuzzy msgctxt "" "Sidebar.xcu\n" "..Sidebar.Content.PanelList.ScCellAppearancePropertyPanel\n" @@ -21817,7 +21691,6 @@ msgstr "Gelaxken itxura" #: Sidebar.xcu -#, fuzzy msgctxt "" "Sidebar.xcu\n" "..Sidebar.Content.PanelList.ScNumberFormatPropertyPanel\n" @@ -21836,7 +21709,6 @@ msgstr "Paragrafoa" #: Sidebar.xcu -#, fuzzy msgctxt "" "Sidebar.xcu\n" "..Sidebar.Content.PanelList.SwWrapPropertyPanel\n" @@ -21873,14 +21745,13 @@ msgstr "Nabigatzailea" #: Sidebar.xcu -#, fuzzy msgctxt "" "Sidebar.xcu\n" "..Sidebar.Content.PanelList.SwManageChangesPanel\n" "Title\n" "value.text" msgid "Manage Changes" -msgstr "~Kudeatu aldaketak..." +msgstr "Kudeatu aldaketak" #: Sidebar.xcu msgctxt "" @@ -21892,7 +21763,6 @@ msgstr "Estiloak eta formatua" #: Sidebar.xcu -#, fuzzy msgctxt "" "Sidebar.xcu\n" "..Sidebar.Content.PanelList.ScFunctionsPanel\n" @@ -21908,7 +21778,7 @@ "Title\n" "value.text" msgid "Style Presets" -msgstr "" +msgstr "Estilo lehenetsiak" #: Sidebar.xcu msgctxt "" @@ -21917,10 +21787,9 @@ "Title\n" "value.text" msgid "Themes" -msgstr "" +msgstr "Gaiak" #: Sidebar.xcu -#, fuzzy msgctxt "" "Sidebar.xcu\n" "..Sidebar.Content.PanelList.ChartElementsPanel\n" @@ -21936,7 +21805,7 @@ "Title\n" "value.text" msgid "Data Series" -msgstr "" +msgstr "Datu-serieak" #: Sidebar.xcu msgctxt "" @@ -21945,7 +21814,7 @@ "Title\n" "value.text" msgid "Trendline" -msgstr "" +msgstr "Joera-marra" #: Sidebar.xcu msgctxt "" @@ -21954,20 +21823,18 @@ "Title\n" "value.text" msgid "Error Bar" -msgstr "" +msgstr "Errore-barra" #: Sidebar.xcu -#, fuzzy msgctxt "" "Sidebar.xcu\n" "..Sidebar.Content.PanelList.ChartAxisPanel\n" "Title\n" "value.text" msgid "Axis" -msgstr "~Ardatza" +msgstr "Ardatza" #: Sidebar.xcu -#, fuzzy msgctxt "" "Sidebar.xcu\n" "..Sidebar.Content.PanelList.ChartAreaPanel\n" @@ -21977,7 +21844,6 @@ msgstr "Area" #: Sidebar.xcu -#, fuzzy msgctxt "" "Sidebar.xcu\n" "..Sidebar.Content.PanelList.ChartLinePanel\n" @@ -21987,7 +21853,6 @@ msgstr "Marra" #: Sidebar.xcu -#, fuzzy msgctxt "" "Sidebar.xcu\n" "..Sidebar.Content.PanelList.ChartCharacterPanel\n" @@ -22249,7 +22114,6 @@ msgstr "Autote~stua..." #: WriterCommands.xcu -#, fuzzy msgctxt "" "WriterCommands.xcu\n" "..WriterCommands.UserInterface.Commands..uno:PrintLayout\n" @@ -22259,7 +22123,6 @@ msgstr "~Ikuspegi normala" #: WriterCommands.xcu -#, fuzzy msgctxt "" "WriterCommands.xcu\n" "..WriterCommands.UserInterface.Commands..uno:PrintLayout\n" @@ -22350,14 +22213,13 @@ msgstr "Orrialde-zenbakia" #: WriterCommands.xcu -#, fuzzy msgctxt "" "WriterCommands.xcu\n" "..WriterCommands.UserInterface.Commands..uno:InsertHeaderFooterMenu\n" "Label\n" "value.text" msgid "He~ader and Footer" -msgstr "G~oiburukoak eta orri-oinak..." +msgstr "G~oiburukoa eta orri-oina" #: WriterCommands.xcu msgctxt "" @@ -22402,7 +22264,7 @@ "ContextLabel\n" "value.text" msgid "~Endnote" -msgstr "" +msgstr "Amai~era-oharra" #: WriterCommands.xcu msgctxt "" @@ -22429,7 +22291,7 @@ "Label\n" "value.text" msgid "Insert Table of Contents, Index or Bibliography" -msgstr "" +msgstr "Txertatu aurkibidea, indizea edo bibliografia" #: WriterCommands.xcu msgctxt "" @@ -22438,7 +22300,7 @@ "ContextLabel\n" "value.text" msgid "Table of Contents, ~Index or Bibliography..." -msgstr "" +msgstr "Aurkibidea, ~indizea edo bibliografia..." #: WriterCommands.xcu msgctxt "" @@ -22456,7 +22318,7 @@ "Label\n" "value.text" msgid "Toggle Direct Cursor Mode" -msgstr "" +msgstr "Txandakatu zuzeneko kurtsorea modua" #: WriterCommands.xcu msgctxt "" @@ -22465,7 +22327,7 @@ "ContextLabel\n" "value.text" msgid "Direct Cursor Mode" -msgstr "" +msgstr "Zuzeneko kurtsorea modua" #: WriterCommands.xcu msgctxt "" @@ -22486,7 +22348,6 @@ msgstr "Letra-kolorea" #: WriterCommands.xcu -#, fuzzy msgctxt "" "WriterCommands.xcu\n" "..WriterCommands.UserInterface.Commands..uno:UpdateAllIndexes\n" @@ -22556,7 +22417,7 @@ "Label\n" "value.text" msgid "Pr~evious Change" -msgstr "Aurreko orrialdea" +msgstr "Aurr~eko orrialdea" #: WriterCommands.xcu msgctxt "" @@ -22592,7 +22453,7 @@ "Label\n" "value.text" msgid "Go t~o Page" -msgstr "" +msgstr "J~oan orrira" #: WriterCommands.xcu msgctxt "" @@ -22655,7 +22516,7 @@ "Label\n" "value.text" msgid "~Charts" -msgstr "" +msgstr "~Diagramak" #: WriterCommands.xcu msgctxt "" @@ -22748,14 +22609,13 @@ msgstr "Epigrafea..." #: WriterCommands.xcu -#, fuzzy msgctxt "" "WriterCommands.xcu\n" "..WriterCommands.UserInterface.Commands..uno:InsertFootnoteDialog\n" "Label\n" "value.text" msgid "F~ootnote or Endnote..." -msgstr "Oin-o~harrak/Amaiera-oharrak..." +msgstr "Oin-o~harrak edo Amaiera-oharrak..." #: WriterCommands.xcu msgctxt "" @@ -22803,7 +22663,6 @@ msgstr "Txertatu orrialde-jauzia" #: WriterCommands.xcu -#, fuzzy msgctxt "" "WriterCommands.xcu\n" "..WriterCommands.UserInterface.Commands..uno:InsertPagebreak\n" @@ -22822,7 +22681,6 @@ msgstr "~Iruzkina" #: WriterCommands.xcu -#, fuzzy msgctxt "" "WriterCommands.xcu\n" "..WriterCommands.UserInterface.Commands..uno:InsertTable\n" @@ -22838,7 +22696,7 @@ "Label\n" "value.text" msgid "Insert Frame Interactively" -msgstr "" +msgstr "Txertatu markoa interaktiboki" #: WriterCommands.xcu msgctxt "" @@ -22847,7 +22705,7 @@ "ContextLabel\n" "value.text" msgid "~Frame Interactively" -msgstr "" +msgstr "~Markoa interaktiboki" #: WriterCommands.xcu msgctxt "" @@ -22856,10 +22714,9 @@ "Label\n" "value.text" msgid "Insert Frame" -msgstr "" +msgstr "Txertatu markoa" #: WriterCommands.xcu -#, fuzzy msgctxt "" "WriterCommands.xcu\n" "..WriterCommands.UserInterface.Commands..uno:InsertFrame\n" @@ -23037,7 +22894,7 @@ "Label\n" "value.text" msgid "~Text Box and Shape" -msgstr "" +msgstr "~Testu kutxa eta forma" #: WriterCommands.xcu msgctxt "" @@ -23136,7 +22993,7 @@ "ContextLabel\n" "value.text" msgid "~Footnote" -msgstr "" +msgstr "~Oin-oharra" #: WriterCommands.xcu msgctxt "" @@ -23499,14 +23356,13 @@ msgstr "Zenbaki-formatua..." #: WriterCommands.xcu -#, fuzzy msgctxt "" "WriterCommands.xcu\n" "..WriterCommands.UserInterface.Commands..uno:LoadStyles\n" "Label\n" "value.text" msgid "~Load Styles..." -msgstr "Kargatu estiloak..." +msgstr "~Kargatu estiloak..." #: WriterCommands.xcu msgctxt "" @@ -23626,44 +23482,40 @@ msgstr "Letra kapitalak" #: WriterCommands.xcu -#, fuzzy msgctxt "" "WriterCommands.xcu\n" "..WriterCommands.UserInterface.Commands..uno:FrameDialog\n" "Label\n" "value.text" msgid "Frame or Object Properties" -msgstr "Marrazki-objektuaren propietateak" +msgstr "Marko edo objektuaren propietateak" #: WriterCommands.xcu -#, fuzzy msgctxt "" "WriterCommands.xcu\n" "..WriterCommands.UserInterface.Commands..uno:FrameDialog\n" "ContextLabel\n" "value.text" msgid "~Properties..." -msgstr "Propietateak..." +msgstr "~Propietateak..." #: WriterCommands.xcu -#, fuzzy msgctxt "" "WriterCommands.xcu\n" "..WriterCommands.UserInterface.Commands..uno:GraphicDialog\n" "Label\n" "value.text" msgid "Image Properties" -msgstr "Irudiaren propietateak..." +msgstr "Irudiaren propietateak" #: WriterCommands.xcu -#, fuzzy msgctxt "" "WriterCommands.xcu\n" "..WriterCommands.UserInterface.Commands..uno:GraphicDialog\n" "ContextLabel\n" "value.text" msgid "~Properties..." -msgstr "Propietateak..." +msgstr "~Propietateak..." #: WriterCommands.xcu msgctxt "" @@ -23675,24 +23527,22 @@ msgstr "Ta~ularen propietateak..." #: WriterCommands.xcu -#, fuzzy msgctxt "" "WriterCommands.xcu\n" "..WriterCommands.UserInterface.Commands..uno:TableDialog\n" "ContextLabel\n" "value.text" msgid "~Properties..." -msgstr "Propietateak..." +msgstr "~Propietateak..." #: WriterCommands.xcu -#, fuzzy msgctxt "" "WriterCommands.xcu\n" "..WriterCommands.UserInterface.Commands..uno:FootnoteDialog\n" "Label\n" "value.text" msgid "~Footnotes and Endnotes..." -msgstr "Oin-o~harrak/Amaiera-oharrak..." +msgstr "~Oin-oharrak eta Amaiera-oharrak..." #: WriterCommands.xcu msgctxt "" @@ -23809,7 +23659,7 @@ "Label\n" "value.text" msgid "Align Top to Anchor" -msgstr "" +msgstr "Lerrokatu goia ainguran" #: WriterCommands.xcu msgctxt "" @@ -23818,7 +23668,7 @@ "Label\n" "value.text" msgid "Align Bottom to Anchor" -msgstr "" +msgstr "Lerrokatu behea ainguran" #: WriterCommands.xcu msgctxt "" @@ -23827,7 +23677,7 @@ "Label\n" "value.text" msgid "Align Middle to Anchor" -msgstr "" +msgstr "Lerrokatu erdia ainguran" #: WriterCommands.xcu msgctxt "" @@ -23890,7 +23740,7 @@ "Label\n" "value.text" msgid "Repeat Heading Rows" -msgstr "" +msgstr "Errepikatu izenburu-errenkadak" #: WriterCommands.xcu msgctxt "" @@ -23917,7 +23767,7 @@ "Label\n" "value.text" msgid "Insert Rows Above" -msgstr "" +msgstr "Txertatu errenkadak gainean" #: WriterCommands.xcu msgctxt "" @@ -23926,7 +23776,7 @@ "ContextLabel\n" "value.text" msgid "Rows ~Above" -msgstr "" +msgstr "Errenkadak g~ainean" #: WriterCommands.xcu msgctxt "" @@ -23944,7 +23794,7 @@ "Label\n" "value.text" msgid "Insert Rows Below" -msgstr "" +msgstr "Txertatu errenkadak azpian" #: WriterCommands.xcu msgctxt "" @@ -23953,7 +23803,7 @@ "ContextLabel\n" "value.text" msgid "Rows ~Below" -msgstr "" +msgstr "Errenkadak a~zpian" #: WriterCommands.xcu msgctxt "" @@ -23965,14 +23815,13 @@ msgstr "~Zutabeak..." #: WriterCommands.xcu -#, fuzzy msgctxt "" "WriterCommands.xcu\n" "..WriterCommands.UserInterface.Commands..uno:InsertColumnsBefore\n" "Label\n" "value.text" msgid "Insert Columns Left" -msgstr "Txertatu zu~tabeak" +msgstr "Txertatu zutabeak ezkerrean" #: WriterCommands.xcu msgctxt "" @@ -23981,7 +23830,7 @@ "ContextLabel\n" "value.text" msgid "Columns ~Left" -msgstr "" +msgstr "Zutabeak e~zkerrean" #: WriterCommands.xcu msgctxt "" @@ -23993,14 +23842,13 @@ msgstr "Txertatu zutabea" #: WriterCommands.xcu -#, fuzzy msgctxt "" "WriterCommands.xcu\n" "..WriterCommands.UserInterface.Commands..uno:InsertColumnsAfter\n" "Label\n" "value.text" msgid "Insert Columns Right" -msgstr "Txertatu gelaxkak eskuinerantz" +msgstr "Txertatu zutabeak eskuinean" #: WriterCommands.xcu msgctxt "" @@ -24009,7 +23857,7 @@ "ContextLabel\n" "value.text" msgid "Columns R~ight" -msgstr "" +msgstr "Zutabeak e~skuman" #: WriterCommands.xcu msgctxt "" @@ -24117,7 +23965,7 @@ "Label\n" "value.text" msgid "Optimize Size" -msgstr "" +msgstr "Optimizatu tamaina" #: WriterCommands.xcu msgctxt "" @@ -24138,14 +23986,13 @@ msgstr "Ezkerreko karakterera" #: WriterCommands.xcu -#, fuzzy msgctxt "" "WriterCommands.xcu\n" "..WriterCommands.UserInterface.Commands..uno:IndexEntryDialog\n" "Label\n" "value.text" msgid "~Index Entry..." -msgstr "Indize-sarre~ra..." +msgstr "Indi~ze-sarrera..." #: WriterCommands.xcu msgctxt "" @@ -24175,17 +24022,15 @@ msgstr "E~rrenkada" #: WriterCommands.xcu -#, fuzzy msgctxt "" "WriterCommands.xcu\n" "..WriterCommands.UserInterface.Commands..uno:EntireCell\n" "Label\n" "value.text" msgid "Select Cell" -msgstr "Hautatu dena" +msgstr "Hautatu gelaxka" #: WriterCommands.xcu -#, fuzzy msgctxt "" "WriterCommands.xcu\n" "..WriterCommands.UserInterface.Commands..uno:EntireCell\n" @@ -24321,7 +24166,6 @@ msgstr "Kalkulatu taula" #: WriterCommands.xcu -#, fuzzy msgctxt "" "WriterCommands.xcu\n" "..WriterCommands.UserInterface.Commands..uno:UnsetCellsReadOnly\n" @@ -24742,7 +24586,7 @@ "Label\n" "value.text" msgid "Jump To Specific Page" -msgstr "" +msgstr "Saltatu orri zehatz batetara" #: WriterCommands.xcu msgctxt "" @@ -24781,14 +24625,13 @@ msgstr "Hautapen hedatua" #: WriterCommands.xcu -#, fuzzy msgctxt "" "WriterCommands.xcu\n" "..WriterCommands.UserInterface.Commands..uno:EditFootnote\n" "Label\n" "value.text" msgid "~Footnote or Endnote..." -msgstr "Oin-o~harrak/Amaiera-oharrak..." +msgstr "Oin-o~harrak edo Amaiera-oharrak..." #: WriterCommands.xcu msgctxt "" @@ -24890,7 +24733,6 @@ msgstr "Hurrengo laster-markara" #: WriterCommands.xcu -#, fuzzy msgctxt "" "WriterCommands.xcu\n" "..WriterCommands.UserInterface.Commands..uno:NumberFormatDate\n" @@ -25278,7 +25120,6 @@ msgstr "Handitu koskaren balioa" #: WriterCommands.xcu -#, fuzzy msgctxt "" "WriterCommands.xcu\n" "..WriterCommands.UserInterface.Commands..uno:DistributeRows\n" @@ -25339,7 +25180,7 @@ "Label\n" "value.text" msgid "~Break Across Pages" -msgstr "" +msgstr "~Zatitu orrialdeen artean" #: WriterCommands.xcu msgctxt "" @@ -25522,14 +25363,13 @@ msgstr "Hautatu testua" #: WriterCommands.xcu -#, fuzzy msgctxt "" "WriterCommands.xcu\n" "..WriterCommands.UserInterface.Commands..uno:Ruler\n" "Label\n" "value.text" msgid "~Rulers" -msgstr "E~rregela" +msgstr "E~rregelak" #: WriterCommands.xcu msgctxt "" @@ -25547,7 +25387,7 @@ "Label\n" "value.text" msgid "View Images and Charts" -msgstr "" +msgstr "Ikusi irudiak eta diagramak" #: WriterCommands.xcu msgctxt "" @@ -25556,7 +25396,7 @@ "ContextLabel\n" "value.text" msgid "~Images and Charts" -msgstr "" +msgstr "~Irudiak eta diagramak" #: WriterCommands.xcu msgctxt "" @@ -25586,7 +25426,6 @@ msgstr "~Sinonimoak..." #: WriterCommands.xcu -#, fuzzy msgctxt "" "WriterCommands.xcu\n" "..WriterCommands.UserInterface.Commands..uno:BackColor\n" @@ -25650,7 +25489,6 @@ msgstr "Gehitu hitz ezezagunak" #: WriterCommands.xcu -#, fuzzy msgctxt "" "WriterCommands.xcu\n" "..WriterCommands.UserInterface.Commands..uno:HScroll\n" @@ -25684,7 +25522,7 @@ "Label\n" "value.text" msgid "Hide Whitespac~e" -msgstr "" +msgstr "~Ezkutatu zuriuneak" #: WriterCommands.xcu msgctxt "" @@ -25831,14 +25669,13 @@ msgstr "~Hautatu" #: WriterCommands.xcu -#, fuzzy msgctxt "" "WriterCommands.xcu\n" "..WriterCommands.UserInterface.Popups..uno:TableAutoFitMenu\n" "Label\n" "value.text" msgid "Si~ze" -msgstr "Tamaina" +msgstr "~Tamaina" #: WriterCommands.xcu msgctxt "" @@ -25865,17 +25702,16 @@ "Label\n" "value.text" msgid "Table of Contents and Inde~x" -msgstr "" +msgstr "Aurkibidea eta indi~zea" #: WriterCommands.xcu -#, fuzzy msgctxt "" "WriterCommands.xcu\n" "..WriterCommands.UserInterface.Popups..uno:FormatAllNotes\n" "Label\n" "value.text" msgid "Comments..." -msgstr "~Iruzkinak..." +msgstr "Iruzkinak..." #: WriterCommands.xcu msgctxt "" @@ -26004,14 +25840,13 @@ msgstr "Aurrera" #: WriterCommands.xcu -#, fuzzy msgctxt "" "WriterCommands.xcu\n" "..WriterCommands.UserInterface.Popups..uno:StyleApply?Style:string=Horizontal Line&FamilyName:string=ParagraphStyles\n" "Label\n" "value.text" msgid "Horizontal ~Line" -msgstr "Marra horizontala" +msgstr "~Marra horizontala" #: WriterCommands.xcu msgctxt "" @@ -26020,10 +25855,9 @@ "Label\n" "value.text" msgid "Default ~Paragraph" -msgstr "" +msgstr "Lehenetsitako ~Paragrafoa" #: WriterCommands.xcu -#, fuzzy msgctxt "" "WriterCommands.xcu\n" "..WriterCommands.UserInterface.Popups..uno:StyleApply?Style:string=Title&FamilyName:string=ParagraphStyles\n" @@ -26033,14 +25867,13 @@ msgstr "~Titulua" #: WriterCommands.xcu -#, fuzzy msgctxt "" "WriterCommands.xcu\n" "..WriterCommands.UserInterface.Popups..uno:StyleApply?Style:string=Subtitle&FamilyName:string=ParagraphStyles\n" "Label\n" "value.text" msgid "Su~btitle" -msgstr "~Azpititulua..." +msgstr "~Azpititulua" #: WriterCommands.xcu msgctxt "" @@ -26049,7 +25882,7 @@ "Label\n" "value.text" msgid "Heading ~1" -msgstr "" +msgstr "~1. izenburua" #: WriterCommands.xcu msgctxt "" @@ -26058,7 +25891,7 @@ "Label\n" "value.text" msgid "Heading ~2" -msgstr "" +msgstr "~2. izeburua" #: WriterCommands.xcu msgctxt "" @@ -26067,7 +25900,7 @@ "Label\n" "value.text" msgid "Heading ~3" -msgstr "" +msgstr "~3. izenburua" #: WriterCommands.xcu msgctxt "" @@ -26076,7 +25909,7 @@ "Label\n" "value.text" msgid "Heading ~4" -msgstr "" +msgstr "~4. izenburua" #: WriterCommands.xcu msgctxt "" @@ -26085,7 +25918,7 @@ "Label\n" "value.text" msgid "Heading ~5" -msgstr "" +msgstr "~5. izenburua" #: WriterCommands.xcu msgctxt "" @@ -26094,7 +25927,7 @@ "Label\n" "value.text" msgid "Heading ~6" -msgstr "" +msgstr "~6. izenburua" #: WriterCommands.xcu msgctxt "" @@ -26103,7 +25936,7 @@ "Label\n" "value.text" msgid "~Quotations" -msgstr "" +msgstr "~Aipamenak" #: WriterCommands.xcu msgctxt "" @@ -26112,17 +25945,16 @@ "Label\n" "value.text" msgid "Pre~formatted Text" -msgstr "" +msgstr "Aurre~formatua emandako testua" #: WriterCommands.xcu -#, fuzzy msgctxt "" "WriterCommands.xcu\n" "..WriterCommands.UserInterface.Popups..uno:StyleApply?Style:string=Text body&FamilyName:string=ParagraphStyles\n" "Label\n" "value.text" msgid "Text Body" -msgstr "Testu-koadroa" +msgstr "Testu-gorputza" #: WriterCommands.xcu msgctxt "" @@ -26131,7 +25963,7 @@ "Label\n" "value.text" msgid "Default ~Character" -msgstr "" +msgstr "Lehenetsitako ~karakterea" #: WriterCommands.xcu msgctxt "" @@ -26140,7 +25972,7 @@ "Label\n" "value.text" msgid "E~mphasis" -msgstr "" +msgstr "E~nfasia" #: WriterCommands.xcu msgctxt "" @@ -26149,7 +25981,7 @@ "Label\n" "value.text" msgid "~Strong Emphasis" -msgstr "" +msgstr "Enfasi bi~zia" #: WriterCommands.xcu msgctxt "" @@ -26158,7 +25990,7 @@ "Label\n" "value.text" msgid "Qu~otation" -msgstr "" +msgstr "~Aipamena" #: WriterCommands.xcu msgctxt "" @@ -26167,7 +25999,7 @@ "Label\n" "value.text" msgid "Sou~rce Text" -msgstr "" +msgstr "Jato~rrizko testua" #: WriterCommands.xcu msgctxt "" @@ -26176,7 +26008,7 @@ "Label\n" "value.text" msgid "Apply Paragraph Style" -msgstr "" +msgstr "Aplikatu paragrafo estiloa" #: WriterFormWindowState.xcu msgctxt "" @@ -27835,14 +27667,13 @@ msgstr "Logotipoa" #: WriterWindowState.xcu -#, fuzzy msgctxt "" "WriterWindowState.xcu\n" "..WriterWindowState.UIElements.States.private:resource/toolbar/changes\n" "UIName\n" "value.text" msgid "Track Changes" -msgstr "Aldaketen ~segimendua" +msgstr "Aldaketen segimendua" #: XFormsWindowState.xcu msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/eu/officecfg/registry/data/org/openoffice/Office.po libreoffice-5.1.2~rc2/translations/source/eu/officecfg/registry/data/org/openoffice/Office.po --- libreoffice-5.1.1~rc2/translations/source/eu/officecfg/registry/data/org/openoffice/Office.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/eu/officecfg/registry/data/org/openoffice/Office.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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:46+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2016-02-28 16:44+0000\n" +"Last-Translator: Osoitz <oelkoro@gmail.com>\n" "Language-Team: Librezale <librezale@librezale.org>\n" "Language: eu\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1438901187.000000\n" +"X-POOTLE-MTIME: 1456677842.000000\n" #: Addons.xcu msgctxt "" @@ -23,7 +23,7 @@ "Title\n" "value.text" msgid "FORWARD 10" -msgstr "" +msgstr "AURRERA 10" #: Addons.xcu msgctxt "" @@ -32,7 +32,7 @@ "Title\n" "value.text" msgid "BACK 10" -msgstr "" +msgstr "ATZERA 10" #: Addons.xcu msgctxt "" @@ -41,7 +41,7 @@ "Title\n" "value.text" msgid "LEFT 15°" -msgstr "" +msgstr "EZKERRERA 15°" #: Addons.xcu msgctxt "" @@ -50,7 +50,7 @@ "Title\n" "value.text" msgid "RIGHT 15°" -msgstr "" +msgstr "ESKUMARA 15°" #: Addons.xcu msgctxt "" @@ -68,7 +68,7 @@ "Title\n" "value.text" msgid "STOP" -msgstr "" +msgstr "GELDI" #: Addons.xcu msgctxt "" @@ -77,7 +77,7 @@ "Title\n" "value.text" msgid "HOME" -msgstr "" +msgstr "HASIERA" #: Addons.xcu msgctxt "" @@ -86,10 +86,9 @@ "Title\n" "value.text" msgid "CLEARSCREEN" -msgstr "" +msgstr "GARBITU" #: Addons.xcu -#, fuzzy msgctxt "" "Addons.xcu\n" ".Addons.AddonUI.OfficeToolBar.LibreLogo.OfficeToolBar.m10\n" @@ -99,14 +98,13 @@ msgstr "Logo komando-lerroa (sakatu Sartu komandoa exekutatzeko edo F1 laguntza jasotzeko)" #: Addons.xcu -#, fuzzy msgctxt "" "Addons.xcu\n" ".Addons.AddonUI.OfficeToolBar.LibreLogo.OfficeToolBar.m09\n" "Title\n" "value.text" msgid "Set editing layout, format program or translate it into the language of the document" -msgstr "Ezarri diseinuaren edizioa, eman formatua aplikazioari edo itzuli dokumentuaren hizkuntzara" +msgstr "Ezarri edizio-diseinua, eman formatua aplikazioari edo itzuli dokumentuaren hizkuntzara" #: Common.xcu msgctxt "" @@ -1519,10 +1517,9 @@ "Text\n" "value.text" msgid "Restart" -msgstr "" +msgstr "Berrabiarazi" #: PresenterScreen.xcu -#, fuzzy msgctxt "" "PresenterScreen.xcu\n" "..PresenterScreen.PresenterScreenSettings.ToolBars.ToolBar.Entries.m.Normal\n" @@ -1532,7 +1529,6 @@ msgstr "Trukatu" #: PresenterScreen.xcu -#, fuzzy msgctxt "" "PresenterScreen.xcu\n" "..PresenterScreen.PresenterScreenSettings.ToolBars.ToolBar.Entries.o.Normal\n" @@ -1866,14 +1862,13 @@ msgstr "Diapositiben ikuspegi orokorra erakusten du" #: PresenterScreen.xcu -#, fuzzy msgctxt "" "PresenterScreen.xcu\n" "..PresenterScreen.PresenterScreenSettings.HelpView.HelpStrings.x\n" "Left\n" "value.text" msgid "Ctrl-'4'" -msgstr "Ktrl-'1'" +msgstr "Ktrl-'4'" #: PresenterScreen.xcu msgctxt "" @@ -1882,7 +1877,7 @@ "Right\n" "value.text" msgid "Switches monitors" -msgstr "" +msgstr "Monitoreak txandakatzen ditu" #: PresenterScreen.xcu msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/eu/readlicense_oo/docs.po libreoffice-5.1.2~rc2/translations/source/eu/readlicense_oo/docs.po --- libreoffice-5.1.1~rc2/translations/source/eu/readlicense_oo/docs.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/eu/readlicense_oo/docs.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\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-15 18:56+0000\n" -"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n" +"PO-Revision-Date: 2016-02-25 14:21+0000\n" +"Last-Translator: Osoitz <oelkoro@gmail.com>\n" "Language-Team: Librezale <librezale@librezale.org>\n" "Language: eu\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1439664963.000000\n" +"X-POOTLE-MTIME: 1456410105.000000\n" #: readme.xrm msgctxt "" @@ -585,7 +585,6 @@ msgstr "Laster-teklak" #: readme.xrm -#, fuzzy msgctxt "" "readme.xrm\n" "w32e1\n" diff -Nru libreoffice-5.1.1~rc2/translations/source/eu/sc/source/ui/cctrl.po libreoffice-5.1.2~rc2/translations/source/eu/sc/source/ui/cctrl.po --- libreoffice-5.1.1~rc2/translations/source/eu/sc/source/ui/cctrl.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/eu/sc/source/ui/cctrl.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,16 +4,17 @@ "Project-Id-Version: PACKAGE VERSION\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 14:09+0200\n" -"Last-Translator: Andras <timar74@gmail.com>\n" +"PO-Revision-Date: 2016-02-26 23:22+0000\n" +"Last-Translator: Osoitz <oelkoro@gmail.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: eu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "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: 1456528973.000000\n" #: checklistmenu.src msgctxt "" @@ -76,4 +77,4 @@ "STR_EDIT_SEARCH_ITEMS\n" "string.text" msgid "Search items..." -msgstr "" +msgstr "Bilatu elementuak..." diff -Nru libreoffice-5.1.1~rc2/translations/source/eu/sc/source/ui/drawfunc.po libreoffice-5.1.2~rc2/translations/source/eu/sc/source/ui/drawfunc.po --- libreoffice-5.1.1~rc2/translations/source/eu/sc/source/ui/drawfunc.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/eu/sc/source/ui/drawfunc.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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:05+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2016-02-26 23:22+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 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1431428752.000000\n" +"X-POOTLE-MTIME: 1456528978.000000\n" #: drformsh.src msgctxt "" @@ -282,10 +282,9 @@ "RID_IMAGE_SUBMENU\n" "menuitem.text" msgid "Image" -msgstr "" +msgstr "Irudia" #: objdraw.src -#, fuzzy msgctxt "" "objdraw.src\n" "RID_POPUP_GRAPHIC.RID_POPUP_CHART\n" diff -Nru libreoffice-5.1.1~rc2/translations/source/eu/sc/source/ui/sidebar.po libreoffice-5.1.2~rc2/translations/source/eu/sc/source/ui/sidebar.po --- libreoffice-5.1.1~rc2/translations/source/eu/sc/source/ui/sidebar.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/eu/sc/source/ui/sidebar.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,17 +4,17 @@ "Project-Id-Version: PACKAGE VERSION\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-09-26 06:59+0000\n" -"Last-Translator: Asier <asiersar@yahoo.com>\n" +"PO-Revision-Date: 2016-02-26 23:23+0000\n" +"Last-Translator: Osoitz <oelkoro@gmail.com>\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: 1380178786.0\n" +"X-POOTLE-MTIME: 1456528993.000000\n" #: CellAppearancePropertyPanel.src msgctxt "" @@ -211,7 +211,7 @@ "RID_SFX_STR_THOUSAND_SEP\n" "string.text" msgid "Thousands separator" -msgstr "" +msgstr "Milakoen bereizlea" #: NumberFormatPropertyPanel.src msgctxt "" @@ -219,4 +219,4 @@ "RID_SFX_STR_ENGINEERING\n" "string.text" msgid "Engineering notation" -msgstr "" +msgstr "Ingeniaritza idazkera" diff -Nru libreoffice-5.1.1~rc2/translations/source/eu/sc/source/ui/src.po libreoffice-5.1.2~rc2/translations/source/eu/sc/source/ui/src.po --- libreoffice-5.1.1~rc2/translations/source/eu/sc/source/ui/src.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/eu/sc/source/ui/src.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\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-09-13 09:26+0000\n" -"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n" +"PO-Revision-Date: 2016-03-20 18:15+0000\n" +"Last-Translator: Osoitz <oelkoro@gmail.com>\n" "Language-Team: Librezale <librezale@librezale.org>\n" "Language: eu\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1442136392.000000\n" +"X-POOTLE-MTIME: 1458497713.000000\n" #: condformatdlg.src msgctxt "" @@ -329,7 +329,7 @@ "New Style...\n" "stringlist.text" msgid "New Style..." -msgstr "Estilo ~berria..." +msgstr "Estilo berria..." #: condformatdlg.src msgctxt "" @@ -392,7 +392,7 @@ "Formula\n" "stringlist.text" msgid "Formula" -msgstr "~Formulak" +msgstr "Formula" #: condformatdlg.src msgctxt "" @@ -455,7 +455,7 @@ "Formula\n" "stringlist.text" msgid "Formula" -msgstr "~Formulak" +msgstr "Formula" #: condformatdlg.src msgctxt "" @@ -518,7 +518,7 @@ "Formula\n" "stringlist.text" msgid "Formula" -msgstr "~Formulak" +msgstr "Formula" #: condformatdlg.src msgctxt "" @@ -536,10 +536,9 @@ "FT_VAL\n" "fixedtext.text" msgid "Enter a value!" -msgstr "" +msgstr "Sartu balio bat!" #: condformatdlg.src -#, fuzzy msgctxt "" "condformatdlg.src\n" "RID_COND_ENTRY\n" @@ -738,7 +737,6 @@ msgstr "3 Sinboloak 2" #: condformatdlg.src -#, fuzzy msgctxt "" "condformatdlg.src\n" "RID_COND_ENTRY.LB_ICONSET_TYPE\n" @@ -754,7 +752,7 @@ "3 Stars\n" "stringlist.text" msgid "3 Stars" -msgstr "" +msgstr "3 izar" #: condformatdlg.src msgctxt "" @@ -763,10 +761,9 @@ "3 Triangles\n" "stringlist.text" msgid "3 Triangles" -msgstr "" +msgstr "3 triangelu" #: condformatdlg.src -#, fuzzy msgctxt "" "condformatdlg.src\n" "RID_COND_ENTRY.LB_ICONSET_TYPE\n" @@ -863,7 +860,7 @@ "5 Boxes\n" "stringlist.text" msgid "5 Boxes" -msgstr "" +msgstr "5 kutxa" #: condformatdlg.src msgctxt "" @@ -908,7 +905,7 @@ "Formula\n" "stringlist.text" msgid "Formula" -msgstr "~Formulak" +msgstr "Formula" #: filter.src msgctxt "" @@ -1335,7 +1332,7 @@ "STR_UNDO_PIVOT_NEW\n" "string.text" msgid "Create pivot table" -msgstr "Sortu pibote-taula" +msgstr "Sortu taula dinamikoa" #: globstr.src msgctxt "" @@ -1344,7 +1341,7 @@ "STR_UNDO_PIVOT_MODIFY\n" "string.text" msgid "Edit pivot table" -msgstr "Editatu pibote-taula" +msgstr "Editatu taula dinamikoa" #: globstr.src msgctxt "" @@ -1353,7 +1350,7 @@ "STR_UNDO_PIVOT_DELETE\n" "string.text" msgid "Delete pivot table" -msgstr "Ezabatu pibote-taula" +msgstr "Ezabatu taula dinamikoa" #: globstr.src msgctxt "" @@ -2042,7 +2039,7 @@ "STR_PIVOT_NODATA\n" "string.text" msgid "The pivot table must contain at least one entry." -msgstr "Pibote-taulak sarrera bat izan behar du gutxienez." +msgstr "Taula dinamikoak sarrera bat izan behar du gutxienez." #: globstr.src msgctxt "" @@ -2060,7 +2057,7 @@ "STR_PIVOT_ERROR\n" "string.text" msgid "Error creating the pivot table." -msgstr "Errorea pibote-taula sortzean." +msgstr "Errorea taula dinamikoa sortzean." #: globstr.src msgctxt "" @@ -2069,7 +2066,7 @@ "STR_PIVOT_OVERLAP\n" "string.text" msgid "Pivot tables can not overlap." -msgstr "Pibote-taulak ezin dira teilakatu." +msgstr "Taula dinamikoak ezin dira teilakatu." #: globstr.src msgctxt "" @@ -2096,7 +2093,7 @@ "STR_PIVOT_PROGRESS\n" "string.text" msgid "Create Pivot Table" -msgstr "Sortu pibote-taula" +msgstr "Sortu taula dinamikoa" #: globstr.src msgctxt "" @@ -2240,7 +2237,7 @@ "STR_ROWCOL_SELCOUNT\n" "string.text" msgid "$1 rows, $2 columns selected" -msgstr "" +msgstr "$1 errenkada eta $2 zutabe hautatuta" #: globstr.src msgctxt "" @@ -2453,7 +2450,7 @@ "STR_PIVOT_TABLE\n" "string.text" msgid "Pivot Table" -msgstr "Pibote-taula" +msgstr "Taula dinamikoa" #: globstr.src msgctxt "" @@ -2561,7 +2558,7 @@ "STR_PIVOT_NOTFOUND\n" "string.text" msgid "No pivot table found at this position." -msgstr "Ez da pibote-taularik aurkitu kokaleku horretan." +msgstr "Ez da taula dinamikorik aurkitu kokaleku horretan." #: globstr.src msgctxt "" @@ -4189,7 +4186,7 @@ "STR_PIVOT_STYLE_INNER\n" "string.text" msgid "Pivot Table Value" -msgstr "Pibote-taularen balioa" +msgstr "Taula dinamikoaren balioa" #: globstr.src msgctxt "" @@ -4198,7 +4195,7 @@ "STR_PIVOT_STYLE_RESULT\n" "string.text" msgid "Pivot Table Result" -msgstr "Pibote-taularen emaitza" +msgstr "Taula dinamikoaren emaitza" #: globstr.src msgctxt "" @@ -4207,7 +4204,7 @@ "STR_PIVOT_STYLE_CATEGORY\n" "string.text" msgid "Pivot Table Category" -msgstr "Pibote-taularen kategoria" +msgstr "Taula dinamikoaren kategoria" #: globstr.src msgctxt "" @@ -4216,7 +4213,7 @@ "STR_PIVOT_STYLE_TITLE\n" "string.text" msgid "Pivot Table Title" -msgstr "Pibote-taularen estiloa" +msgstr "Taula dinamikoaren titulua" #: globstr.src msgctxt "" @@ -4225,7 +4222,7 @@ "STR_PIVOT_STYLE_FIELDNAME\n" "string.text" msgid "Pivot Table Field" -msgstr "Pibote-taularen eremua" +msgstr "Taula dinamikoaren eremua" #: globstr.src msgctxt "" @@ -4234,7 +4231,7 @@ "STR_PIVOT_STYLE_TOP\n" "string.text" msgid "Pivot Table Corner" -msgstr "Pibote-taularen izkina" +msgstr "Taula dinamikoaren izkina" #: globstr.src msgctxt "" @@ -4345,7 +4342,6 @@ msgstr "#1 txertatu da" #: globstr.src -#, fuzzy msgctxt "" "globstr.src\n" "RID_GLOBSTR\n" @@ -4546,7 +4542,7 @@ "STR_ERR_DATAPILOT_INPUT\n" "string.text" msgid "You cannot change this part of the pivot table." -msgstr "Ezin duzu pibote-taularen zati hau aldatu." +msgstr "Ezin duzu taula dinamikoaren zati hau aldatu." #: globstr.src msgctxt "" @@ -4858,7 +4854,7 @@ "STR_ERR_DATAPILOTSOURCE\n" "string.text" msgid "Pivot table source data is invalid." -msgstr "Pibote-taularen iturburuko datuak baliogabeak dira." +msgstr "Taula dinamikoaren iturburuko datuak baliogabeak dira." #: globstr.src msgctxt "" @@ -4876,7 +4872,7 @@ "STR_PIVOT_ONLYONEROWERR\n" "string.text" msgid "Pivot table needs at least two rows of data to create or refresh." -msgstr "Pibote-taulak gutxienez bi datu-errenkada behar ditu sortu edo freskatzeko." +msgstr "Taula dinamikoak gutxienez bi datu-errenkada behar ditu sortu edo freskatzeko." #: globstr.src msgctxt "" @@ -4912,7 +4908,7 @@ "STR_MANAGE_NAMES\n" "string.text" msgid "Manage Names..." -msgstr "~Kudeatu izenak..." +msgstr "Kudeatu izenak..." #: globstr.src msgctxt "" @@ -4930,7 +4926,7 @@ "STR_HEADER_RANGE_OR_EXPR\n" "string.text" msgid "Range or formula expression" -msgstr "" +msgstr "Area edo formula espresioa" #: globstr.src msgctxt "" @@ -5422,7 +5418,7 @@ "STR_NO_INSERT_DELETE_OVER_PIVOT_TABLE\n" "string.text" msgid "You cannot insert or delete cells when the affected range intersects with pivot table." -msgstr "Ezin dira gelaxkak txertatu edo ezabatu aldatu nahi den area pibote-taula batekin bat datorrenean." +msgstr "Ezin dira gelaxkak txertatu edo ezabatu aldatu nahi den area taula dinamiko batekin bat datorrenean." #: globstr.src msgctxt "" @@ -5590,7 +5586,7 @@ "STR_CTRLCLICKHYPERLINK\n" "string.text" msgid "%s-Click to follow link:" -msgstr "" +msgstr "%s-Klik esteka jarraitzeko:" #: globstr.src msgctxt "" @@ -5644,7 +5640,7 @@ "STR_UNQUOTED_STRING\n" "string.text" msgid "Strings without quotes are interpreted as column/row labels." -msgstr "" +msgstr "Komatxorik gabeko kateak zutabe/errenkadaren etiketatzat hartuko dira." #: globstr.src msgctxt "" @@ -5653,7 +5649,7 @@ "STR_ENTER_VALUE\n" "string.text" msgid "Enter a value!" -msgstr "" +msgstr "Sartu balio bat!" #: globstr.src msgctxt "" @@ -5662,7 +5658,7 @@ "STR_TABLE_COUNT\n" "string.text" msgid "Sheet %1 of %2" -msgstr "" +msgstr "%1 / %2 orria" #: hdrcont.src msgctxt "" @@ -5710,7 +5706,6 @@ msgstr "Itsatsi ~berezia..." #: hdrcont.src -#, fuzzy msgctxt "" "hdrcont.src\n" "RID_POPUP_ROWHEADER\n" @@ -5726,7 +5721,7 @@ "FID_INS_ROWS_AFTER\n" "menuitem.text" msgid "Insert Rows ~Below" -msgstr "" +msgstr "Txertatu errenkadak ~azpian" #: hdrcont.src msgctxt "" @@ -5735,7 +5730,7 @@ "SID_DEL_ROWS\n" "menuitem.text" msgid "~Delete Rows" -msgstr "" +msgstr "~Ezabatu errenkadak" #: hdrcont.src msgctxt "" @@ -5744,7 +5739,7 @@ "SID_DELETE\n" "menuitem.text" msgid "Cl~ear Contents..." -msgstr "" +msgstr "Garbitu ~edukiak..." #: hdrcont.src msgctxt "" @@ -5756,7 +5751,6 @@ msgstr "~Errenkada-altuera..." #: hdrcont.src -#, fuzzy msgctxt "" "hdrcont.src\n" "RID_POPUP_ROWHEADER\n" @@ -5772,7 +5766,7 @@ "FID_ROW_HIDE\n" "menuitem.text" msgid "~Hide Rows" -msgstr "" +msgstr "~Ezkutatu errenkadak" #: hdrcont.src msgctxt "" @@ -5781,10 +5775,9 @@ "FID_ROW_SHOW\n" "menuitem.text" msgid "~Show Rows" -msgstr "" +msgstr "~Erakutsi errenkadak" #: hdrcont.src -#, fuzzy msgctxt "" "hdrcont.src\n" "RID_POPUP_COLHEADER\n" @@ -5794,7 +5787,6 @@ msgstr "Itsatsi ~berezia..." #: hdrcont.src -#, fuzzy msgctxt "" "hdrcont.src\n" "RID_POPUP_COLHEADER\n" @@ -5804,14 +5796,13 @@ msgstr "~Txertatu zutabeak ezkerrean" #: hdrcont.src -#, fuzzy msgctxt "" "hdrcont.src\n" "RID_POPUP_COLHEADER\n" "FID_INS_COLUMNS_AFTER\n" "menuitem.text" msgid "Insert Columns ~Right" -msgstr "~Txertatu zutabeak ezkerrean" +msgstr "Txertatu zutabeak e~skuinean" #: hdrcont.src msgctxt "" @@ -5820,7 +5811,7 @@ "SID_DEL_COLS\n" "menuitem.text" msgid "~Delete Columns" -msgstr "" +msgstr "~Ezabatu Zutabeak" #: hdrcont.src msgctxt "" @@ -5829,10 +5820,9 @@ "SID_DELETE\n" "menuitem.text" msgid "Cl~ear Contents..." -msgstr "" +msgstr "Garbitu ~edukiak..." #: hdrcont.src -#, fuzzy msgctxt "" "hdrcont.src\n" "RID_POPUP_COLHEADER\n" @@ -5842,7 +5832,6 @@ msgstr "Zut~abe-zabalera..." #: hdrcont.src -#, fuzzy msgctxt "" "hdrcont.src\n" "RID_POPUP_COLHEADER\n" @@ -5858,7 +5847,7 @@ "FID_COL_HIDE\n" "menuitem.text" msgid "~Hide Columns" -msgstr "" +msgstr "~Ezkutatu zutabeak" #: hdrcont.src msgctxt "" @@ -5867,7 +5856,7 @@ "FID_COL_SHOW\n" "menuitem.text" msgid "~Show Columns" -msgstr "" +msgstr "~Erakutsi zutabeak" #: popup.src msgctxt "" @@ -5992,7 +5981,7 @@ "SID_DELETE\n" "menuitem.text" msgid "Cl~ear Contents..." -msgstr "" +msgstr "Garbitu ~edukiak..." #: popup.src msgctxt "" @@ -6022,14 +6011,13 @@ msgstr "~Txertatu iruzkina" #: popup.src -#, fuzzy msgctxt "" "popup.src\n" "RID_POPUP_CELLS\n" "SID_EDIT_POSTIT\n" "menuitem.text" msgid "Edit Co~mment" -msgstr "Editatu iruzkina" +msgstr "Editatu ~iruzkina" #: popup.src msgctxt "" @@ -6136,7 +6124,7 @@ "FID_TAB_TOGGLE_GRID\n" "menuitem.text" msgid "Sheet ~Gridlines" -msgstr "" +msgstr "Orriaren ~sareta-marrak" #: popup.src msgctxt "" @@ -6198,7 +6186,7 @@ "RID_POPUP_PIVOT\n" "string.text" msgid "Pivot table pop-up menu" -msgstr "Pibote-taularen laster-menua" +msgstr "Taula dinamikoaren laster-menua" #: popup.src msgctxt "" @@ -7811,7 +7799,6 @@ msgstr "Diferentzia kalkulatzeko metodoa: modua = 0 amerikar metodoarentzat (NASD), Modua = 1 europar metodoarentzat." #: scfuncs.src -#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS1.SC_OPCODE_NETWORKDAYS\n" @@ -7863,7 +7850,7 @@ "6\n" "string.text" msgid "list of dates" -msgstr "" +msgstr "daten zerrenda" #: scfuncs.src msgctxt "" @@ -7875,7 +7862,6 @@ msgstr "Jaieguntzat hartuko diren egunen multzoa (aukerakoa)." #: scfuncs.src -#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS1.SC_OPCODE_NETWORKDAYS\n" @@ -7891,7 +7877,7 @@ "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 "Aukerako zenbaki zerrenda, lanegunak (0) eta asteburuko egunak (ez zero) zehazteko. Ez bada ematen, asteburua larunbata eta igandeak osatuko dute." #: scfuncs.src msgctxt "" @@ -8272,14 +8258,13 @@ msgstr "Ordenagailuaren uneko data ematen du." #: scfuncs.src -#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS1.SC_OPCODE_GET_DAY_OF_WEEK\n" "1\n" "string.text" msgid "Returns the day of the week for the date value as an integer." -msgstr "Data-balioari dagokion asteko eguna ematen du osoko zenbaki gisa (1-7)." +msgstr "Data-balioari dagokion asteko eguna ematen du osoko zenbaki gisa." #: scfuncs.src msgctxt "" @@ -8495,7 +8480,7 @@ "5\n" "string.text" msgid "Indicates the first day of the week and when week 1 starts." -msgstr "" +msgstr "Asteko lehen eguna eta 1. astea noiz hasten den adierazten du." #: scfuncs.src msgctxt "" @@ -8504,10 +8489,9 @@ "1\n" "string.text" msgid "Calculates the ISO 8601 calendar week for the given date." -msgstr "" +msgstr "Emandako datari dagokion egutegiko ISO 8601 astea kalkulatzen du." #: scfuncs.src -#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS1.SC_OPCODE_ISOWEEKNUM\n" @@ -8517,7 +8501,6 @@ msgstr "Zenbakia" #: scfuncs.src -#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS1.SC_OPCODE_ISOWEEKNUM\n" @@ -9370,7 +9353,7 @@ "8\n" "string.text" msgid "S" -msgstr "" +msgstr "S" #: scfuncs.src msgctxt "" @@ -10801,7 +10784,7 @@ "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 "Balio baten datu-mota itzultzen du (1 = zenbakia, 2 = testua, 4 = balio logikoa, 8 = formula, 16 = errore-balioa, 64 = matrizea)." #: scfuncs.src msgctxt "" @@ -11944,7 +11927,7 @@ "3\n" "string.text" msgid "A value greater than or equal to 1 for which the inverse hyperbolic cosine is to be returned." -msgstr "-1 baino txikiagoa edo 1 baino handiagoa den balioa, alderantzizko kotangente hiperbolikoa kalkulatzeko erabiliko dena." +msgstr "1 edo handiagoa den balioa, alderantzizko kosinu hiperbolikoa kalkulatzeko erabiliko dena." #: scfuncs.src msgctxt "" @@ -13162,7 +13145,6 @@ msgstr "Zein zenbakiren multiplora biribildu behar den." #: scfuncs.src -#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS1.SC_OPCODE_CEIL_PRECISE\n" @@ -13295,7 +13277,7 @@ "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 "Adierazten bada balioa honen multiplo hurbilenera borobilduko da, bestela -1 ala 1, zenbakiaren zeinuaren arabera" #: scfuncs.src msgctxt "" @@ -13358,7 +13340,7 @@ "5\n" "string.text" msgid "If given the number to whose multiple the value is rounded, else 1." -msgstr "" +msgstr "Adierazten bada balioa honen multiplo hurbilenera borobilduko da, bestela 1." #: scfuncs.src msgctxt "" @@ -13376,7 +13358,7 @@ "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 "Zenbaki negatiboentzat; adierazten bada eta zero ez bada zerotik aldenduz borobiltzen du, bestela zerora hurbilduz borobiltzen du." #: scfuncs.src msgctxt "" @@ -13433,14 +13415,13 @@ msgstr "Modua" #: scfuncs.src -#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS1.SC_OPCODE_FLOOR\n" "7\n" "string.text" msgid "If given and not equal to zero then rounded towards zero with negative number and significance." -msgstr "Adierazten bada, eta zero ez bada, zenbakia eta zenbaki esanguratsua negatiboak direnean, balio absolutuaren arabera biribilduko da behera." +msgstr "Adierazten bada, eta zero ez bada, zerora hurbilduz borobilduko da zenbaki eta esangura negatiboarekin." #: scfuncs.src msgctxt "" @@ -13449,7 +13430,7 @@ "1\n" "string.text" msgid "Rounds number towards zero to the nearest multiple of absolute value of significance." -msgstr "" +msgstr "Zenbakia zerora hurbilduz borobiltzen du esanguraren balio absolutuaren multiplo hurbilenera." #: scfuncs.src msgctxt "" @@ -13488,7 +13469,6 @@ msgstr "Zein zenbakiren multiplora biribildu behar den." #: scfuncs.src -#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS1.SC_OPCODE_FLOOR_MATH\n" @@ -13498,7 +13478,6 @@ msgstr "Zenbakia behera biribiltzen du, zenbaki esanguratsuaren multiplo hurbilenera, haren ikurra kontuan hartu gabe." #: scfuncs.src -#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS1.SC_OPCODE_FLOOR_MATH\n" @@ -13508,7 +13487,6 @@ msgstr "Zenbakia" #: scfuncs.src -#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS1.SC_OPCODE_FLOOR_MATH\n" @@ -13518,7 +13496,6 @@ msgstr "Behera biribildu beharreko zenbakia." #: scfuncs.src -#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS1.SC_OPCODE_FLOOR_MATH\n" @@ -13528,7 +13505,6 @@ msgstr "Zk. esanguratsua" #: scfuncs.src -#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS1.SC_OPCODE_FLOOR_MATH\n" @@ -13538,7 +13514,6 @@ msgstr "Zein zenbakiren multiplora biribildu behar den." #: scfuncs.src -#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS1.SC_OPCODE_FLOOR_MATH\n" @@ -13554,20 +13529,18 @@ "7\n" "string.text" msgid "For negative numbers; if given and not equal to or less than zero rounds towards zero." -msgstr "" +msgstr "Zenbaki negatiboentzat: adierazten bada eta zero edo zero baino gutxiago ez bada, zerora hurbilduz borobiltzen du." #: 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 "Zenbakia behera biribiltzen du, zenbaki esanguratsuaren multiplo hurbilenera." +msgstr "Zenbakia behera biribiltzen du(-∞runtz) , zenbaki esanguratsuaren multiplo hurbilenera." #: scfuncs.src -#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS1.SC_OPCODE_FLOOR_PRECISE\n" @@ -13577,7 +13550,6 @@ msgstr "Zenbakia" #: scfuncs.src -#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS1.SC_OPCODE_FLOOR_PRECISE\n" @@ -13587,7 +13559,6 @@ msgstr "Behera biribildu beharreko zenbakia." #: scfuncs.src -#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS1.SC_OPCODE_FLOOR_PRECISE\n" @@ -13603,7 +13574,7 @@ "5\n" "string.text" msgid "The number to whose multiple the value is to be rounded down. Sign has no meaning." -msgstr "" +msgstr "Balioa honen multiplora biribilduko da. Zeinuak ez du esanahirik." #: scfuncs.src msgctxt "" @@ -14074,7 +14045,6 @@ msgstr "Lineal_mota" #: scfuncs.src -#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_LINEST\n" @@ -14156,7 +14126,6 @@ msgstr "Funtzio_mota" #: scfuncs.src -#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_LOGEST\n" @@ -14235,7 +14204,7 @@ "6\n" "string.text" msgid "new data_X" -msgstr "X_datu_berriak" +msgstr "X_datu berriak" #: scfuncs.src msgctxt "" @@ -16542,14 +16511,13 @@ msgstr "0 edo FALSE balioak probabilitatearen dentsitate-funtzioa kalkulatzen du. Beste edozein baliok edo TRUE balioak banaketa metatuaren funtzioa kalkulatzen du." #: scfuncs.src -#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_CRIT_BINOM\n" "1\n" "string.text" msgid "Returns the smallest value for which the cumulative binomial distribution is greater than or equal to a criterion value." -msgstr "Banaketa binomial metatua irizpide-balioa baino handiagoa edo berdina duten balioetatik txikiena ematen du.>" +msgstr "Banaketa binomial metatua irizpide-balioa baino handiagoa edo berdina duten balioetatik txikiena ematen du." #: scfuncs.src msgctxt "" @@ -19519,7 +19487,7 @@ "1\n" "string.text" msgid "Returns the right-tail probability of the chi-square distribution." -msgstr "Ji-karratuaren banaketaren probabilitatearen eskuin ilara ematen du." +msgstr "Khi-karratuaren banaketaren probabilitatearen eskuin ilara ematen du." #: scfuncs.src msgctxt "" @@ -19537,7 +19505,7 @@ "3\n" "string.text" msgid "The value for which the chi square distribution is to be calculated." -msgstr "Ji-karratuaren banaketa kalkulatu behar zaion balioa." +msgstr "Khi-karratuaren banaketa kalkulatu behar zaion balioa." #: scfuncs.src msgctxt "" @@ -19555,7 +19523,7 @@ "5\n" "string.text" msgid "The degrees of freedom of the chi square distribution." -msgstr "Ji-karratuaren banaketaren askatasun-graduak." +msgstr "Khi-karratuaren banaketaren askatasun-graduak." #: scfuncs.src msgctxt "" @@ -19564,7 +19532,7 @@ "1\n" "string.text" msgid "Returns the right-tail probability of the chi-square distribution." -msgstr "Ji-karratuaren banaketaren probabilitatearen eskuin ilara ematen du." +msgstr "Khi-karratuaren banaketaren probabilitatearen eskuin ilara ematen du." #: scfuncs.src msgctxt "" @@ -19582,7 +19550,7 @@ "3\n" "string.text" msgid "The value for which the chi square distribution is to be calculated." -msgstr "Ji-karratuaren banaketa kalkulatu behar zaion balioa." +msgstr "Khi-karratuaren banaketa kalkulatu behar zaion balioa." #: scfuncs.src msgctxt "" @@ -19600,7 +19568,7 @@ "5\n" "string.text" msgid "The degrees of freedom of the chi square distribution." -msgstr "Ji-karratuaren banaketaren askatasun-graduak." +msgstr "Khi-karratuaren banaketaren askatasun-graduak." #: scfuncs.src msgctxt "" @@ -19609,7 +19577,7 @@ "1\n" "string.text" msgid "Returns left-tail probability of the cumulative distribution function or values of the probability density function of the chi-square distribution." -msgstr "Banaketa metatutaren funtzioaren probabilitatearen ezker ilara edo ji-karratuaren banaketaren" +msgstr "Banaketa metatuaren funtzioaren probabilitatearen ezker ilara edo khi-karratuaren banaketaren dentsitate funtzioaren balioak ematen ditu." #: scfuncs.src msgctxt "" @@ -19645,7 +19613,7 @@ "5\n" "string.text" msgid "The degrees of freedom of the chi-square distribution." -msgstr "Ji-karratuaren banaketaren askatasun graduak" +msgstr "Khi-karratuaren banaketaren askatasun-graduak." #: scfuncs.src msgctxt "" @@ -19672,7 +19640,7 @@ "1\n" "string.text" msgid "Returns left-tail probability of the cumulative distribution function or values of the probability density function of the chi-square distribution." -msgstr "Banaketa metatutaren funtzioaren probabilitatearen ezker ilara edo ji-karratuaren banaketaren" +msgstr "Banaketa metatuaren funtzioaren probabilitatearen ezker ilara edo khi-karratuaren banaketaren dentsitate funtzioaren balioak ematen ditu." #: scfuncs.src msgctxt "" @@ -19708,7 +19676,7 @@ "5\n" "string.text" msgid "The degrees of freedom of the chi-square distribution." -msgstr "Ji-karratuaren banaketaren askatasun graduak" +msgstr "Khi-karratuaren banaketaren askatasun-graduak." #: scfuncs.src msgctxt "" @@ -19753,7 +19721,7 @@ "3\n" "string.text" msgid "The probability value for which the inverse chi square distribution is to be calculated." -msgstr "Alderantzizko ji-karratuaren banaketa kalkulatu behar zaion probabilitate-balioa." +msgstr "Alderantzizko khi-karratuaren banaketa kalkulatu behar zaion probabilitate-balioa." #: scfuncs.src msgctxt "" @@ -19771,7 +19739,7 @@ "5\n" "string.text" msgid "The degrees of freedom of the chi square distribution." -msgstr "Ji-karratuaren banaketaren askatasun-graduak." +msgstr "Khi-karratuaren banaketaren askatasun-graduak." #: scfuncs.src msgctxt "" @@ -19798,7 +19766,7 @@ "3\n" "string.text" msgid "The probability value for which the inverse chi square distribution is to be calculated." -msgstr "Alderantzizko ji-karratuaren banaketa kalkulatu behar zaion probabilitate-balioa." +msgstr "Alderantzizko khi-karratuaren banaketa kalkulatu behar zaion probabilitate-balioa." #: scfuncs.src msgctxt "" @@ -19816,7 +19784,7 @@ "5\n" "string.text" msgid "The degrees of freedom of the chi square distribution." -msgstr "Ji-karratuaren banaketaren askatasun-graduak." +msgstr "Khi-karratuaren banaketaren askatasun-graduak." #: scfuncs.src msgctxt "" @@ -19843,7 +19811,7 @@ "3\n" "string.text" msgid "The probability value for which the inverse of the chi square distribution is to be calculated." -msgstr "Probabilitatearen balioa ji-karratuaren banaketaren alderantzizkoa kalkulatzeko." +msgstr "Probabilitatearen balioa khi-karratuaren banaketaren alderantzizkoa kalkulatzeko." #: scfuncs.src msgctxt "" @@ -19861,7 +19829,7 @@ "5\n" "string.text" msgid "The degrees of freedom of the chi square distribution." -msgstr "Ji-karratuaren banaketaren askatasun-graduak." +msgstr "Khi-karratuaren banaketaren askatasun-graduak." #: scfuncs.src msgctxt "" @@ -19888,7 +19856,7 @@ "3\n" "string.text" msgid "The probability value for which the inverse of the chi square distribution is to be calculated." -msgstr "Probabilitatearen balioa ji-karratuaren banaketaren alderantzizkoa kalkulatzeko." +msgstr "Probabilitatearen balioa khi-karratuaren banaketaren alderantzizkoa kalkulatzeko." #: scfuncs.src msgctxt "" @@ -19906,7 +19874,7 @@ "5\n" "string.text" msgid "The degrees of freedom of the chi square distribution." -msgstr "Ji-karratuaren banaketaren askatasun-graduak." +msgstr "Khi-karratuaren banaketaren askatasun-graduak." #: scfuncs.src msgctxt "" @@ -20062,7 +20030,6 @@ msgstr "Hautatutako elementu kopurua." #: scfuncs.src -#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_CONFIDENCE\n" @@ -20126,7 +20093,6 @@ msgstr "Populazioaren tamaina." #: scfuncs.src -#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_CONFIDENCE_N\n" @@ -20190,7 +20156,6 @@ msgstr "Populazioaren tamaina." #: scfuncs.src -#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_CONFIDENCE_T\n" @@ -20386,7 +20351,7 @@ "1\n" "string.text" msgid "Returns the chi square independence test." -msgstr "Ji-karratuaren independentzia-proba ematen du." +msgstr "Khi-karratuaren independentzia-proba ematen du." #: scfuncs.src msgctxt "" @@ -20431,7 +20396,7 @@ "1\n" "string.text" msgid "Returns the chi square independence test." -msgstr "Ji-karratuaren independentzia-proba ematen du." +msgstr "Khi-karratuaren independentzia-proba ematen du." #: scfuncs.src msgctxt "" @@ -21846,7 +21811,7 @@ "4\n" "string.text" msgid "Search vector" -msgstr "Bilaketa_bektorea" +msgstr "Bilaketa bektorea" #: scfuncs.src msgctxt "" @@ -22071,7 +22036,7 @@ "1\n" "string.text" msgid "Returns a number corresponding to one of the error values or #N/A if no error exists" -msgstr "" +msgstr "Errore-balioetako bati dagokion zenbakia itzultzen du edo #NA errorerik ez badago." #: scfuncs.src msgctxt "" @@ -22080,7 +22045,7 @@ "2\n" "string.text" msgid "expression" -msgstr "" +msgstr "espresioa" #: scfuncs.src msgctxt "" @@ -22089,7 +22054,7 @@ "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 "Identifikatzen duen zenbakia aurkitzea dagoen errore-balioa. Egiazko errorea-balioa izan daiteke edo probatu nahi duzun gelaxkaren erreferentzia." #: scfuncs.src msgctxt "" @@ -22287,7 +22252,7 @@ "1\n" "string.text" msgid "Extracts value(s) from a pivot table." -msgstr "Pibote-taulatik balioa(k) erauzten du." +msgstr "Taula dinamikotik balioa(k) erauzten du." #: scfuncs.src msgctxt "" @@ -22305,7 +22270,7 @@ "3\n" "string.text" msgid "The name of the pivot table field to extract." -msgstr "Erauziko den Pibote-taularen eremuaren izena." +msgstr "Erauziko den taula dinamikoko eremuaren izena." #: scfuncs.src msgctxt "" @@ -22314,7 +22279,7 @@ "4\n" "string.text" msgid "Pivot Table" -msgstr "Pibote-taula" +msgstr "Taula dinamikoa" #: scfuncs.src msgctxt "" @@ -22323,7 +22288,7 @@ "5\n" "string.text" msgid "A reference to a cell or range in the pivot table." -msgstr "Pibote-taulako gelaxka edo area batera erreferentzia." +msgstr "Taula dinamikoko gelaxka edo area batera erreferentzia." #: scfuncs.src msgctxt "" @@ -24457,7 +24422,7 @@ "1\n" "string.text" msgid "Return a URL-encoded string." -msgstr "" +msgstr "URL gisa kodetutako kate bat itzuli." #: scfuncs.src msgctxt "" @@ -24475,7 +24440,7 @@ "3\n" "string.text" msgid "A string to be URL-encoded" -msgstr "" +msgstr "URL gisa kodetuko den kate bat" #: scfuncs.src msgctxt "" @@ -25417,7 +25382,7 @@ "STR_ACC_DATAPILOT_ROW_DESCR\n" "string.text" msgid "Fields that you drop here will be displayed as rows in the final pivot table." -msgstr "Hemen jaregiten dituzun eremuak errenkada gisa bistaratutako dira azken pibote-taulan." +msgstr "Hemen jaregiten dituzun eremuak errenkada gisa bistaratutako dira azken taula dinamikoan." #: scstring.src msgctxt "" @@ -25425,7 +25390,7 @@ "STR_ACC_DATAPILOT_COL_DESCR\n" "string.text" msgid "Fields that you drop here will be displayed as columns in the final pivot table." -msgstr "Hemen jaregiten dituzun eremuak zutabe gisa bistaratutako dira azken pibote-taulan." +msgstr "Hemen jaregiten dituzun eremuak zutabe gisa bistaratutako dira azken taula dinamikoan." #: scstring.src msgctxt "" @@ -25433,7 +25398,7 @@ "STR_ACC_DATAPILOT_DATA_DESCR\n" "string.text" msgid "Fields that you drop here will be used for calculations in the final pivot table." -msgstr "Hemen jaregiten dituzun eremuak kalkuluak egiteko erabiliko dira azken pibote-taulan." +msgstr "Hemen jaregiten dituzun eremuak kalkuluak egiteko erabiliko dira azken taula dinamikoan." #: scstring.src msgctxt "" @@ -25449,7 +25414,7 @@ "STR_ACC_DATAPILOT_PAGE_DESCR\n" "string.text" msgid "Fields that you drop here will be available as filter lists at the top of the final pivot table." -msgstr "Hemen jaregiten dituzun eremuak iragazki-zerrenda bezala agertuko dira azken pibote-taularen gainaldean." +msgstr "Hemen jaregiten dituzun eremuak iragazki-zerrenda bezala agertuko dira azken taula dinamikoaren gainaldean." #: scstring.src msgctxt "" @@ -25964,7 +25929,7 @@ "SCSTR_UNDO_PAGE_ANCHOR\n" "string.text" msgid "Page Anchor" -msgstr "" +msgstr "Orri-aingura" #: scstring.src msgctxt "" @@ -25972,7 +25937,7 @@ "SCSTR_UNDO_CELL_ANCHOR\n" "string.text" msgid "Cell Anchor" -msgstr "" +msgstr "Gelaxka-aingura" #: scwarngs.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/eu/sc/source/ui/StatisticsDialogs.po libreoffice-5.1.2~rc2/translations/source/eu/sc/source/ui/StatisticsDialogs.po --- libreoffice-5.1.1~rc2/translations/source/eu/sc/source/ui/StatisticsDialogs.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/eu/sc/source/ui/StatisticsDialogs.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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: 2014-12-07 07:45+0000\n" -"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n" +"PO-Revision-Date: 2016-03-20 18:01+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 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1417938313.000000\n" +"X-POOTLE-MTIME: 1458496901.000000\n" #: StatisticsDialogs.src msgctxt "" @@ -581,7 +581,7 @@ "STR_CHI_SQUARE_TEST\n" "string.text" msgid "Test of Independence (Chi-Square)" -msgstr "Independentzia-testa (Ji-karratua)" +msgstr "Independentzia-proba (Khi-karratua)" #: StatisticsDialogs.src msgctxt "" @@ -590,7 +590,7 @@ "STR_REGRESSION_UNDO_NAME\n" "string.text" msgid "Regression" -msgstr "" +msgstr "Erregresioa" #: StatisticsDialogs.src msgctxt "" @@ -599,7 +599,7 @@ "STR_REGRESSION\n" "string.text" msgid "Regression" -msgstr "" +msgstr "Erregresioa" #: StatisticsDialogs.src msgctxt "" @@ -716,7 +716,7 @@ "STR_LABEL_LINEAR\n" "string.text" msgid "Linear" -msgstr "" +msgstr "Lineala" #: StatisticsDialogs.src msgctxt "" @@ -725,7 +725,7 @@ "STR_LABEL_LOGARITHMIC\n" "string.text" msgid "Logarithmic" -msgstr "" +msgstr "Logaritmikoa" #: StatisticsDialogs.src msgctxt "" @@ -734,7 +734,7 @@ "STR_LABEL_POWER\n" "string.text" msgid "Power" -msgstr "" +msgstr "Potentziala" #: StatisticsDialogs.src msgctxt "" @@ -743,7 +743,7 @@ "STR_LABEL_REGRESSION_MODEL\n" "string.text" msgid "Regression Model" -msgstr "" +msgstr "Erregresio modeloa" #: StatisticsDialogs.src msgctxt "" @@ -752,7 +752,7 @@ "STR_LABEL_RSQUARED\n" "string.text" msgid "R^2" -msgstr "" +msgstr "R^2" #: StatisticsDialogs.src msgctxt "" @@ -761,7 +761,7 @@ "STR_LABEL_SLOPE\n" "string.text" msgid "Slope" -msgstr "" +msgstr "Malda" #: StatisticsDialogs.src msgctxt "" @@ -770,7 +770,7 @@ "STR_LABEL_INTERCEPT\n" "string.text" msgid "Intercept" -msgstr "" +msgstr "Ebakidura" #: StatisticsDialogs.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/eu/sc/uiconfig/scalc/ui.po libreoffice-5.1.2~rc2/translations/source/eu/sc/uiconfig/scalc/ui.po --- libreoffice-5.1.1~rc2/translations/source/eu/sc/uiconfig/scalc/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/eu/sc/uiconfig/scalc/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: LibO 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 00:23+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2016-03-20 18:01+0000\n" +"Last-Translator: Osoitz <oelkoro@gmail.com>\n" "Language-Team: none\n" "Language: eu\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1435278200.000000\n" +"X-POOTLE-MTIME: 1458496907.000000\n" #: advancedfilterdialog.ui msgctxt "" @@ -533,7 +533,7 @@ "title\n" "string.text" msgid "Chi Square Test" -msgstr "Ji-karratuaren proba" +msgstr "Khi-karratuaren proba" #: chisquaretestdialog.ui msgctxt "" @@ -578,7 +578,7 @@ "label\n" "string.text" msgid "_Rows" -msgstr "Errenkadak" +msgstr "E_rrenkadak" #: chisquaretestdialog.ui msgctxt "" @@ -614,7 +614,7 @@ "label\n" "string.text" msgid "_Rows" -msgstr "Errenkadak" +msgstr "E_rrenkadak" #: colorrowdialog.ui msgctxt "" @@ -1415,7 +1415,7 @@ "label\n" "string.text" msgid "Fill:" -msgstr "" +msgstr "Bete:" #: databaroptions.ui msgctxt "" @@ -1424,7 +1424,7 @@ "0\n" "stringlist.text" msgid "Color" -msgstr "" +msgstr "Kolorea" #: databaroptions.ui msgctxt "" @@ -1433,7 +1433,7 @@ "1\n" "stringlist.text" msgid "Gradient" -msgstr "" +msgstr "Gradientea" #: databaroptions.ui msgctxt "" @@ -1505,7 +1505,7 @@ "label\n" "string.text" msgid "Minimum bar length (%):" -msgstr "" +msgstr "Barraren gutxieneko luzera (%):" #: databaroptions.ui msgctxt "" @@ -1514,7 +1514,7 @@ "label\n" "string.text" msgid "Maximum bar length (%):" -msgstr "" +msgstr "Barraren gehieneko luzera (%):" #: databaroptions.ui msgctxt "" @@ -1523,7 +1523,7 @@ "label\n" "string.text" msgid "Bar Lengths" -msgstr "" +msgstr "Barraren luzerak" #: databaroptions.ui msgctxt "" @@ -1532,7 +1532,7 @@ "label\n" "string.text" msgid "Display bar only" -msgstr "" +msgstr "Bistaratu barra besterik ez" #: databaroptions.ui msgctxt "" @@ -1541,10 +1541,9 @@ "label\n" "string.text" msgid "The minimum value must be less than the maximum value." -msgstr "" +msgstr "Gutxieneko balioa gehieneko galioa baino txikiagoa izan behar du." #: databaroptions.ui -#, fuzzy msgctxt "" "databaroptions.ui\n" "custom_color\n" @@ -1776,7 +1775,7 @@ "label\n" "string.text" msgid "_Repeat item labels" -msgstr "" +msgstr "E_rrepikatu elementuen etiketak" #: datafieldoptionsdialog.ui msgctxt "" @@ -2208,7 +2207,7 @@ "label\n" "string.text" msgid "Contains _totals row" -msgstr "" +msgstr "_Totalen errenkada barne-hartzen du" #: definedatabaserangedialog.ui msgctxt "" @@ -2298,7 +2297,7 @@ "label\n" "string.text" msgid "Range or formula expression:" -msgstr "" +msgstr "Area edo formula espresioa:" #: definename.ui msgctxt "" @@ -2559,7 +2558,7 @@ "label\n" "string.text" msgid "_Rows" -msgstr "Errenkadak" +msgstr "E_rrenkadak" #: descriptivestatisticsdialog.ui msgctxt "" @@ -3102,34 +3101,31 @@ msgstr "Kalkulu-ezarpen xeheak" #: formulacalculationoptions.ui -#, fuzzy msgctxt "" "formulacalculationoptions.ui\n" "labelConvT2N\n" "label\n" "string.text" msgid "Conversion from text to number:" -msgstr "Testutik zenbakira bihurtzea" +msgstr "Testutik zenbakira bihurtzea:" #: formulacalculationoptions.ui -#, fuzzy msgctxt "" "formulacalculationoptions.ui\n" "checkEmptyAsZero\n" "label\n" "string.text" msgid "Treat _empty string as zero" -msgstr "Kate hutsa zerotzat hartu" +msgstr "Kate _hutsa zerotzat hartu" #: formulacalculationoptions.ui -#, fuzzy msgctxt "" "formulacalculationoptions.ui\n" "labelSyntaxRef\n" "label\n" "string.text" msgid "Reference syntax for string reference:" -msgstr "Erreferentzia-sintaxia kate-erreferentziarako" +msgstr "Erreferentzia-sintaxia kate-erreferentziarako:" #: formulacalculationoptions.ui msgctxt "" @@ -3159,7 +3155,6 @@ msgstr "Tratatu zero gisa" #: formulacalculationoptions.ui -#, fuzzy msgctxt "" "formulacalculationoptions.ui\n" "comboConversion\n" @@ -3184,7 +3179,7 @@ "label\n" "string.text" msgid "Apply those settings to current document only" -msgstr "" +msgstr "Aplikatu ezarpen horiek uneko dokumentuan soilik" #: formulacalculationoptions.ui msgctxt "" @@ -3193,7 +3188,7 @@ "label\n" "string.text" msgid "Contents to Numbers" -msgstr "" +msgstr "Edukiak zenbakietara" #: formulacalculationoptions.ui msgctxt "" @@ -3265,37 +3260,34 @@ "label\n" "string.text" msgid "_Test OpenCL" -msgstr "" +msgstr "OpenCL _proba" #: formulacalculationoptions.ui -#, fuzzy msgctxt "" "formulacalculationoptions.ui\n" "CBUseOpenCL\n" "label\n" "string.text" msgid "Use Open_CL only for a subset of operations" -msgstr "Erabili OpenCL eragiketen azpimultzo batean soilik" +msgstr "Erabili Open_CL eragiketen azpimultzo batean soilik" #: formulacalculationoptions.ui -#, fuzzy msgctxt "" "formulacalculationoptions.ui\n" "label5\n" "label\n" "string.text" msgid "Minimum data size for OpenCL use:" -msgstr "OpenCL erabiltzeko datu-tamaina minimoa" +msgstr "OpenCL erabiltzeko datu-tamaina minimoa:" #: formulacalculationoptions.ui -#, fuzzy msgctxt "" "formulacalculationoptions.ui\n" "label7\n" "label\n" "string.text" msgid "Subset of OpCodes for which OpenCL is used:" -msgstr "OpenCL erabiliko den eragiketa-kodeen azpimultzoa" +msgstr "OpenCL erabiliko den eragiketa-kodeen azpimultzoa:" #: formulacalculationoptions.ui msgctxt "" @@ -3304,7 +3296,7 @@ "label\n" "string.text" msgid "OpenCL Settings" -msgstr "" +msgstr "OpenCL ezarpenak" #: goalseekdlg.ui msgctxt "" @@ -3529,7 +3521,7 @@ "label\n" "string.text" msgid "_Rows" -msgstr "Errenkadak" +msgstr "E_rrenkadak" #: groupdialog.ui msgctxt "" @@ -4249,7 +4241,7 @@ "label\n" "string.text" msgid "Range or formula expression:" -msgstr "" +msgstr "Area edo formula espresioa:" #: managenamesdialog.ui msgctxt "" @@ -4303,7 +4295,7 @@ "title\n" "string.text" msgid "column" -msgstr "" +msgstr "zutabea" #: movecopysheet.ui msgctxt "" @@ -5968,7 +5960,7 @@ "title\n" "string.text" msgid "Pivot Table Layout" -msgstr "Pibote-taularen diseinua" +msgstr "Taula dinamikoaren diseinua" #: pivottablelayoutdialog.ui msgctxt "" @@ -6553,10 +6545,9 @@ "title\n" "string.text" msgid "Regression" -msgstr "" +msgstr "Erregresioa" #: regressiondialog.ui -#, fuzzy msgctxt "" "regressiondialog.ui\n" "variable1-range-label\n" @@ -6566,7 +6557,6 @@ msgstr "1. aldagaiaren barrutia:" #: regressiondialog.ui -#, fuzzy msgctxt "" "regressiondialog.ui\n" "variable2-range-label\n" @@ -6576,7 +6566,6 @@ msgstr "2. aldagaiaren barrutia:" #: regressiondialog.ui -#, fuzzy msgctxt "" "regressiondialog.ui\n" "output-range-label\n" @@ -6586,7 +6575,6 @@ msgstr "Emaitzen area:" #: regressiondialog.ui -#, fuzzy msgctxt "" "regressiondialog.ui\n" "label1\n" @@ -6596,7 +6584,6 @@ msgstr "Datuak" #: regressiondialog.ui -#, fuzzy msgctxt "" "regressiondialog.ui\n" "groupedby-columns-radio\n" @@ -6606,7 +6593,6 @@ msgstr "Zutabeak" #: regressiondialog.ui -#, fuzzy msgctxt "" "regressiondialog.ui\n" "groupedby-rows-radio\n" @@ -6616,7 +6602,6 @@ msgstr "Errenkadak" #: regressiondialog.ui -#, fuzzy msgctxt "" "regressiondialog.ui\n" "label2\n" @@ -6632,7 +6617,7 @@ "label\n" "string.text" msgid "Linear Regression" -msgstr "" +msgstr "Erregresio lineala" #: regressiondialog.ui msgctxt "" @@ -6641,7 +6626,7 @@ "label\n" "string.text" msgid "Logarithmic Regression" -msgstr "" +msgstr "Erregresio logaritmikoa" #: regressiondialog.ui msgctxt "" @@ -6650,7 +6635,7 @@ "label\n" "string.text" msgid "Power Regression" -msgstr "" +msgstr "Erregresio potentziala" #: regressiondialog.ui msgctxt "" @@ -6659,7 +6644,7 @@ "label\n" "string.text" msgid "Output Regression Types" -msgstr "" +msgstr "Irteera erregresio motak" #: retypepassdialog.ui msgctxt "" @@ -7262,7 +7247,7 @@ "0\n" "stringlist.text" msgid "Table" -msgstr "" +msgstr "Taula" #: selectdatasource.ui msgctxt "" @@ -7847,7 +7832,7 @@ "label\n" "string.text" msgid "_Indent:" -msgstr "" +msgstr "_Koska:" #: sidebaralignment.ui msgctxt "" @@ -7955,7 +7940,7 @@ "tooltip_text\n" "string.text" msgid "Text Extension From Lower Cell Border" -msgstr "" +msgstr "Testu-hedapena gelaxkaren beheko ertzetik" #: sidebaralignment.ui msgctxt "" @@ -7964,7 +7949,7 @@ "tooltip_text\n" "string.text" msgid "Text Extension From Upper Cell Border" -msgstr "" +msgstr "Testu-hedapena gelaxkaren goiko ertzetik" #: sidebaralignment.ui msgctxt "" @@ -7973,10 +7958,9 @@ "tooltip_text\n" "string.text" msgid "Text Extension Inside Cell" -msgstr "" +msgstr "Testu-hedapena gelaxka barruan" #: sidebaralignment.ui -#, fuzzy msgctxt "" "sidebaralignment.ui\n" "stacked\n" @@ -7986,14 +7970,13 @@ msgstr "Bertikalki pilatuta" #: sidebarcellappearance.ui -#, fuzzy msgctxt "" "sidebarcellappearance.ui\n" "cellbackgroundlabel\n" "label\n" "string.text" msgid "_Background:" -msgstr "Atzeko planoa" +msgstr "_Atzeko planoa:" #: sidebarcellappearance.ui msgctxt "" @@ -8248,7 +8231,6 @@ msgstr "Sartu dezimalaren aurretik erakutsiko diren zeroen kopuru maximoa." #: sidebarnumberformat.ui -#, fuzzy msgctxt "" "sidebarnumberformat.ui\n" "negativenumbersred\n" @@ -9614,7 +9596,7 @@ "label\n" "string.text" msgid "Number of Formula Groups:" -msgstr "" +msgstr "Formula talde kopurua:" #: statisticsinfopage.ui msgctxt "" @@ -10505,7 +10487,7 @@ "label\n" "string.text" msgid "_Rows" -msgstr "Errenkadak" +msgstr "E_rrenkadak" #: ungroupdialog.ui msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/eu/scaddins/source/analysis.po libreoffice-5.1.2~rc2/translations/source/eu/scaddins/source/analysis.po --- libreoffice-5.1.1~rc2/translations/source/eu/scaddins/source/analysis.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/eu/scaddins/source/analysis.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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-06-18 19:54+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2016-02-26 21:46+0000\n" +"Last-Translator: Osoitz <oelkoro@gmail.com>\n" "Language-Team: Librezale <librezale@librezale.org>\n" "Language: eu\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1403121290.000000\n" +"X-POOTLE-MTIME: 1456523182.000000\n" #: analysis.src msgctxt "" @@ -197,6 +197,8 @@ "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 "" +"Zehaztutako dataren egutegiko aste zenbakia itzultzen du.\n" +"Funtzio hau Microsoft Excel dokuentu zaharrekin bateragarritasuna mantentzeko dago, dokumentu berrietan WEEKNUM erabili." #: analysis.src msgctxt "" @@ -214,7 +216,7 @@ "3\n" "string.text" msgid "The date or date serial number" -msgstr "" +msgstr "Data eta dataren serie zenbakia" #: analysis.src msgctxt "" @@ -226,14 +228,13 @@ msgstr "Metodoa" #: 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 "Asteko lehen eguna adierazten du (1= igandea, bestelako balioak = astelehena)" +msgstr "Asteko lehen eguna adierazten du (1= igandea, 2 = astelehena)" #: analysis.src msgctxt "" @@ -290,6 +291,8 @@ "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 "" +"Bi daten arteko lanegun kopurua itzultzen du.\n" +"Funtzio hau Microsoft Excel dokumentu zaharrekin bateragarritasuna mantentzeko dago, dokumentu berrietan NETWORKDAYS erabili." #: analysis.src msgctxt "" @@ -409,7 +412,6 @@ msgstr "Zenbaki multzo baten koefiziente multinominala ematen du" #: analysis.src -#, fuzzy msgctxt "" "analysis.src\n" "RID_ANALYSIS_FUNCTION_DESCRIPTIONS.ANALYSIS_Multinomial\n" @@ -680,9 +682,10 @@ "Returns the greatest common divisor.\n" "This function exists for interoperability with older Microsoft Excel documents, for new documents use GCD instead." msgstr "" +"Zatitzaile komun handiena itzultzen du.\n" +".Funtzio hau Microsoft Excel dokumentu zaharrekin bateragarritasuna mantentzeko dago, dokumentu berrietan GCD erabili." #: analysis.src -#, fuzzy msgctxt "" "analysis.src\n" "RID_ANALYSIS_FUNCTION_DESCRIPTIONS.ANALYSIS_Gcd\n" @@ -710,9 +713,10 @@ "Returns the least common multiple.\n" "This function exists for interoperability with older Microsoft Excel documents, for new documents use LCM instead." msgstr "" +"Multiplo komun txikiena itzultzen du.\n" +"Funtzio hau Microsoft Excel dokumentu zaharrekin bateragarritasuna mantentzeko dago, dokumentu berrietan LCM erabili." #: analysis.src -#, fuzzy msgctxt "" "analysis.src\n" "RID_ANALYSIS_FUNCTION_DESCRIPTIONS.ANALYSIS_Lcm\n" diff -Nru libreoffice-5.1.1~rc2/translations/source/eu/scp2/source/accessories.po libreoffice-5.1.2~rc2/translations/source/eu/scp2/source/accessories.po --- libreoffice-5.1.1~rc2/translations/source/eu/scp2/source/accessories.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/eu/scp2/source/accessories.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\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:10+0000\n" -"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n" +"PO-Revision-Date: 2016-02-24 20:18+0000\n" +"Last-Translator: Osoitz <oelkoro@gmail.com>\n" "Language-Team: Librezale <librezale@librezale.org>\n" "Language: eu\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1431429043.000000\n" +"X-POOTLE-MTIME: 1456345103.000000\n" #: module_accessories.ulf msgctxt "" @@ -233,13 +233,12 @@ msgstr "Portugesa (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 "Portugesaren euskarria instalatzen du %PRODUCTNAME %PRODUCTVERSION(e)n" +msgstr "Portugesa (Brasil) euskarria instalatzen du %PRODUCTNAME %PRODUCTVERSION(e)n" #: module_samples_accessories.ulf msgctxt "" @@ -2010,13 +2009,12 @@ msgstr "Portugesa (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 "Portugesaren euskarria instalatzen du %PRODUCTNAME %PRODUCTVERSION(e)n" +msgstr "Portugesa (Brasil) euskarria instalatzen du %PRODUCTNAME %PRODUCTVERSION(e)n" #: module_templates_accessories.ulf msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/eu/scp2/source/ooo.po libreoffice-5.1.2~rc2/translations/source/eu/scp2/source/ooo.po --- libreoffice-5.1.1~rc2/translations/source/eu/scp2/source/ooo.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/eu/scp2/source/ooo.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\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:10+0000\n" -"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n" +"PO-Revision-Date: 2016-02-24 20:19+0000\n" +"Last-Translator: Osoitz <oelkoro@gmail.com>\n" "Language-Team: Librezale <librezale@librezale.org>\n" "Language: eu\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1431429048.000000\n" +"X-POOTLE-MTIME: 1456345165.000000\n" #: folderitem_ooo.ulf msgctxt "" @@ -177,13 +177,12 @@ msgstr "Portugesa (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 "Portugesezko laguntza instalatzen du %PRODUCTNAME %PRODUCTVERSION(e)n" +msgstr "Portugesa (Brasil) laguntza instalatzen du %PRODUCTNAME %PRODUCTVERSION(e)n" #: module_helppack.ulf msgctxt "" @@ -1386,22 +1385,20 @@ msgstr "Gujaratierazko laguntza instalatzen du %PRODUCTNAME %PRODUCTVERSION(e)n" #: module_helppack.ulf -#, fuzzy msgctxt "" "module_helppack.ulf\n" "STR_NAME_MODULE_HELPPACK_GUG\n" "LngText.text" msgid "Guarani" -msgstr "Gujeratiera" +msgstr "Guaraniera" #: 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 "Gujaratierazko laguntza instalatzen du %PRODUCTNAME %PRODUCTVERSION(e)n" +msgstr "Guaranierazko laguntza instalatzen du %PRODUCTNAME %PRODUCTVERSION(e)n" #: module_helppack.ulf msgctxt "" @@ -3180,22 +3177,20 @@ msgstr "Gujeratierazko erabiltzaile-interfazea instalatzen du" #: module_langpack.ulf -#, fuzzy msgctxt "" "module_langpack.ulf\n" "STR_NAME_MODULE_LANGPACK_GUG\n" "LngText.text" msgid "Guarani" -msgstr "Gujeratiera" +msgstr "Guaraniera" #: module_langpack.ulf -#, fuzzy msgctxt "" "module_langpack.ulf\n" "STR_DESC_MODULE_LANGPACK_GUG\n" "LngText.text" msgid "Installs the Guarani user interface" -msgstr "Gujeratierazko erabiltzaile-interfazea instalatzen du" +msgstr "Guaranierazko erabiltzaile-interfazea instalatzen du" #: module_langpack.ulf msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/eu/sd/source/ui/animations.po libreoffice-5.1.2~rc2/translations/source/eu/sd/source/ui/animations.po --- libreoffice-5.1.1~rc2/translations/source/eu/sd/source/ui/animations.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/eu/sd/source/ui/animations.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "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-08 07:55+0000\n" -"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n" +"PO-Revision-Date: 2016-02-25 14:28+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 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1386489345.000000\n" +"X-POOTLE-MTIME: 1456410493.000000\n" #: CustomAnimation.src msgctxt "" @@ -555,10 +555,9 @@ msgstr "Erabiltzailearen bide-izenak" #: CustomAnimation.src -#, fuzzy msgctxt "" "CustomAnimation.src\n" "STR_SLIDETRANSITION_NONE\n" "string.text" msgid "None" -msgstr "bat ere ez" +msgstr "Bat ere ez" diff -Nru libreoffice-5.1.1~rc2/translations/source/eu/sd/source/ui/app.po libreoffice-5.1.2~rc2/translations/source/eu/sd/source/ui/app.po --- libreoffice-5.1.1~rc2/translations/source/eu/sd/source/ui/app.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/eu/sd/source/ui/app.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\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 11:11+0000\n" -"Last-Translator: system user <>\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" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1431429077.000000\n" +"X-POOTLE-MTIME: 1457785298.000000\n" #: menuids3_tmpl.src msgctxt "" @@ -107,24 +107,22 @@ msgstr "~3D Efektuak" #: menuids3_tmpl.src -#, fuzzy msgctxt "" "menuids3_tmpl.src\n" "MN_PRESENTATION_LAYOUT\n" "SID_PRESENTATION_LAYOUT\n" "menuitem.text" msgid "~Slide Design..." -msgstr "~Diapositiba-diseinua" +msgstr "~Diapositiba-diseinua..." #: menuids3_tmpl.src -#, fuzzy msgctxt "" "menuids3_tmpl.src\n" "MN_PAGE_DESIGN\n" "SID_PRESENTATION_LAYOUT\n" "menuitem.text" msgid "~Page Design..." -msgstr "~Diapositiba-diseinua" +msgstr "~Orri-diseinua..." #: menuids3_tmpl.src msgctxt "" @@ -163,14 +161,13 @@ msgstr "~Banaketa..." #: menuids_tmpl.src -#, fuzzy msgctxt "" "menuids_tmpl.src\n" "MN_INSERT_GRAPHIC\n" "SID_INSERT_GRAPHIC\n" "menuitem.text" msgid "Insert I~mage..." -msgstr "Txertatu irudia" +msgstr "Txertatu i~rudia..." #: menuids_tmpl.src msgctxt "" @@ -206,7 +203,7 @@ "SID_MODIFYPAGE\n" "menuitem.text" msgid "Page ~Layout" -msgstr "" +msgstr "Orrialde-~diseinua" #: menuids_tmpl.src msgctxt "" @@ -224,7 +221,7 @@ "SID_PAGESETUP\n" "menuitem.text" msgid "Format ~Slide..." -msgstr "" +msgstr "~Diapositiba-formatua..." #: menuids_tmpl.src msgctxt "" @@ -269,7 +266,7 @@ "SID_SELECT_BACKGROUND\n" "menuitem.text" msgid "Set Background Image..." -msgstr "" +msgstr "Ezarri atzeko planoko irudia..." #: menuids_tmpl.src msgctxt "" @@ -278,10 +275,9 @@ "SID_SAVE_BACKGROUND\n" "menuitem.text" msgid "Save Background Image..." -msgstr "" +msgstr "Gorde atzeko planoko irudia..." #: 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 @@ msgstr "Bistaratu maisuaren atzeko planoa" #: 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,14 +350,13 @@ msgstr "E~zabatu orrialdea" #: menuids_tmpl.src -#, fuzzy msgctxt "" "menuids_tmpl.src\n" "MN_RENAME_SLIDE\n" "SID_RENAMEPAGE\n" "menuitem.text" msgid "~Rename Slide..." -msgstr "~Izena aldatu diapositibari" +msgstr "~Izena aldatu diapositibari..." #: menuids_tmpl.src msgctxt "" @@ -374,14 +368,13 @@ msgstr "~Izena aldatu maisuari" #: menuids_tmpl.src -#, fuzzy msgctxt "" "menuids_tmpl.src\n" "MN_RENAME_PAGE\n" "SID_RENAMEPAGE\n" "menuitem.text" msgid "~Rename Page..." -msgstr "~Izena aldatu geruzari..." +msgstr "~Izena aldatu orriari..." #: menuids_tmpl.src msgctxt "" @@ -624,7 +617,7 @@ "SID_OBJECT_ALIGN\n" "menuitem.text" msgid "Al~ign" -msgstr "" +msgstr "~Lerrokatu" #: menuids_tmpl.src msgctxt "" @@ -840,7 +833,7 @@ "SID_SET_DEFAULT\n" "menuitem.text" msgid "~Default Formatting" -msgstr "" +msgstr "~Lehenetsitako formatua" #: menuids_tmpl.src msgctxt "" @@ -858,17 +851,16 @@ "SID_ORIGINAL_SIZE\n" "menuitem.text" msgid "Restore ~Original Size" -msgstr "" +msgstr "Leheneratu ~Jatorrizko tamainara" #: menuids_tmpl.src -#, fuzzy msgctxt "" "menuids_tmpl.src\n" "MN_CROP\n" "SID_OBJECT_CROP\n" "menuitem.text" msgid "Crop I~mage" -msgstr "Moztu irudia" +msgstr "Moztu i~rudia" #: menuids_tmpl.src msgctxt "" @@ -985,7 +977,7 @@ "SID_RULER\n" "menuitem.text" msgid "View ~Ruler" -msgstr "" +msgstr "Ikusi e~rregela" #: menuids_tmpl.src msgctxt "" @@ -1560,7 +1552,7 @@ "SfxStyleFamiliesRes1\n" "#define.text" msgid "Graphic Styles" -msgstr "" +msgstr "Estilo grafikoak" #: res_bmp.src msgctxt "" @@ -1881,7 +1873,6 @@ msgstr "Itxi poligonoa" #: strings.src -#, fuzzy msgctxt "" "strings.src\n" "STR_SLIDE_SORTER_MODE\n" @@ -1890,7 +1881,6 @@ msgstr "Diapositiba-antolatzailea" #: strings.src -#, fuzzy msgctxt "" "strings.src\n" "STR_NORMAL_MODE\n" @@ -1899,13 +1889,12 @@ msgstr "Normala" #: strings.src -#, fuzzy msgctxt "" "strings.src\n" "STR_SLIDE_MASTER_MODE\n" "string.text" msgid "Slide Master" -msgstr "Diapositiba-antolatzailea" +msgstr "Diapositiben maisua" #: strings.src msgctxt "" @@ -1929,10 +1918,9 @@ "STR_NOTES_MASTER_MODE\n" "string.text" msgid "Notes Master" -msgstr "" +msgstr "Oharren maisua" #: strings.src -#, fuzzy msgctxt "" "strings.src\n" "STR_HANDOUT_MASTER_MODE\n" @@ -2130,10 +2118,9 @@ "STR_DISPLAYMODE_EDITMODES\n" "string.text" msgid "Edit Modes" -msgstr "" +msgstr "Editatu moduak" #: strings.src -#, fuzzy msgctxt "" "strings.src\n" "STR_DISPLAYMODE_MASTERMODES\n" @@ -2411,7 +2398,7 @@ "STR_SD_PAGE_COUNT\n" "string.text" msgid "Slide %1 of %2" -msgstr "" +msgstr "Diapositiba: %1 / %2" #: strings.src msgctxt "" @@ -2419,7 +2406,7 @@ "STR_SD_PAGE_COUNT_CUSTOM\n" "string.text" msgid "Slide %1 of %2 (%3)" -msgstr "" +msgstr "Diapositiba: %1 / %2 (%3)" #: strings.src msgctxt "" @@ -2476,6 +2463,7 @@ "Do you want to scale the copied objects to fit the new page size?" msgstr "" "Helburuko dokumentuen orrialde-tamaina eta iturburuko dokumentuarena ez dira berdinak.\n" +"\n" "Kopiatutako objektuen eskala aldatu nahi duzu orrialde-tamaina berrira egoki daitezen?" #: strings.src @@ -2772,7 +2760,7 @@ "STR_CLICK_ACTION_NEXTPAGE\n" "string.text" msgid "Go to next slide" -msgstr "Joan hurrengo orrialdera" +msgstr "Joan hurrengo diapositibara" #: strings.src msgctxt "" @@ -3116,7 +3104,7 @@ "STR_EYEDROPPER\n" "string.text" msgid "Color Replacer" -msgstr "Kolore-ordezkatzailea" +msgstr "Tanta-kontagailua" #: strings.src msgctxt "" @@ -3612,7 +3600,7 @@ "STR_STATUSBAR_MASTERPAGE\n" "string.text" msgid "Slide Master name. Right-click for list and double-click for dialog." -msgstr "" +msgstr "Diapositiba maisuaren izena. Egin klik eskuineko botoiarekin zerrendatzeko eta klik bikoitza elkarrizketa-koadrora joateko." #: strings.src msgctxt "" @@ -3732,7 +3720,7 @@ "STR_FIELD_PLACEHOLDER_SLIDENAME\n" "string.text" msgid "<slide-name>" -msgstr "" +msgstr "<slide-name>" #: strings.src msgctxt "" @@ -3740,7 +3728,7 @@ "STR_FIELD_PLACEHOLDER_PAGENAME\n" "string.text" msgid "<page-name>" -msgstr "" +msgstr "<page-name>" #: strings.src msgctxt "" @@ -3868,7 +3856,7 @@ "STR_GRAPHICS_STYLE_FAMILY\n" "string.text" msgid "Graphic Styles" -msgstr "" +msgstr "Estilo grafikoak" #: strings.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/eu/sd/source/ui/view.po libreoffice-5.1.2~rc2/translations/source/eu/sd/source/ui/view.po --- libreoffice-5.1.1~rc2/translations/source/eu/sd/source/ui/view.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/eu/sd/source/ui/view.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\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 12:44+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2016-02-25 15:00+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 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1401885871.000000\n" +"X-POOTLE-MTIME: 1456412403.000000\n" #: DocumentRenderer.src msgctxt "" @@ -104,7 +104,7 @@ "According to layout\n" "itemlist.text" msgid "According to layout" -msgstr "" +msgstr "Diseinuaren arabera" #: DocumentRenderer.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/eu/sd/uiconfig/sdraw/ui.po libreoffice-5.1.2~rc2/translations/source/eu/sd/uiconfig/sdraw/ui.po --- libreoffice-5.1.1~rc2/translations/source/eu/sd/uiconfig/sdraw/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/eu/sd/uiconfig/sdraw/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: LibO 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: 2014-12-06 21:44+0000\n" -"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.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 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1417902286.000000\n" +"X-POOTLE-MTIME: 1457407385.000000\n" #: breakdialog.ui msgctxt "" @@ -401,7 +401,7 @@ "label\n" "string.text" msgid "Highlighting" -msgstr "" +msgstr "Nabarmentzea" #: drawpagedialog.ui msgctxt "" @@ -761,7 +761,7 @@ "label\n" "string.text" msgid "Page name" -msgstr "~Orrialde-izena" +msgstr "Orrialde-izena" #: printeroptions.ui msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/eu/sd/uiconfig/simpress/ui.po libreoffice-5.1.2~rc2/translations/source/eu/sd/uiconfig/simpress/ui.po --- libreoffice-5.1.1~rc2/translations/source/eu/sd/uiconfig/simpress/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/eu/sd/uiconfig/simpress/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 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:30+0000\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" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1435278634.000000\n" +"X-POOTLE-MTIME: 1457407508.000000\n" #: assistentdialog.ui msgctxt "" @@ -194,7 +194,7 @@ "label\n" "string.text" msgid "_Variant:" -msgstr "" +msgstr "_Aldaera:" #: assistentdialog.ui msgctxt "" @@ -707,7 +707,7 @@ "label\n" "string.text" msgid "_Options..." -msgstr "" +msgstr "_Aukerak..." #: customanimationspanel.ui msgctxt "" @@ -1076,7 +1076,7 @@ "title\n" "string.text" msgid "Animation" -msgstr "" +msgstr "Animazioa" #: dockinganimation.ui msgctxt "" @@ -1094,7 +1094,7 @@ "tooltip_text\n" "string.text" msgid "Loop Count" -msgstr "" +msgstr "Begizta kopurua" #: dockinganimation.ui msgctxt "" @@ -1103,7 +1103,7 @@ "18\n" "stringlist.text" msgid "Max." -msgstr "" +msgstr "Geih." #: dockinganimation.ui msgctxt "" @@ -1112,17 +1112,16 @@ "tooltip_text\n" "string.text" msgid "Duration" -msgstr "" +msgstr "Iraupena" #: dockinganimation.ui -#, fuzzy msgctxt "" "dockinganimation.ui\n" "numbitmap\n" "tooltip_text\n" "string.text" msgid "Image Number" -msgstr "_Orrialde-zenbakia" +msgstr "Irudi-zenbakia" #: dockinganimation.ui msgctxt "" @@ -1131,7 +1130,7 @@ "tooltip_text\n" "string.text" msgid "First Image" -msgstr "" +msgstr "Lehen irudia" #: dockinganimation.ui msgctxt "" @@ -1140,7 +1139,7 @@ "tooltip_text\n" "string.text" msgid "Backwards" -msgstr "" +msgstr "Atzerantz" #: dockinganimation.ui msgctxt "" @@ -1149,7 +1148,7 @@ "tooltip_text\n" "string.text" msgid "Stop" -msgstr "" +msgstr "Gelditu" #: dockinganimation.ui msgctxt "" @@ -1167,7 +1166,7 @@ "tooltip_text\n" "string.text" msgid "Last Image" -msgstr "" +msgstr "Azken irudia" #: dockinganimation.ui msgctxt "" @@ -1176,7 +1175,7 @@ "label\n" "string.text" msgid "Group object" -msgstr "" +msgstr "Taldeko objektua" #: dockinganimation.ui msgctxt "" @@ -1185,7 +1184,7 @@ "label\n" "string.text" msgid "Bitmap object" -msgstr "" +msgstr "Bit-maparen objektua" #: dockinganimation.ui msgctxt "" @@ -1203,7 +1202,7 @@ "0\n" "stringlist.text" msgid "Top Left" -msgstr "" +msgstr "Goian ezkerrean" #: dockinganimation.ui msgctxt "" @@ -1212,7 +1211,7 @@ "1\n" "stringlist.text" msgid "Left" -msgstr "" +msgstr "Ezkerrean" #: dockinganimation.ui msgctxt "" @@ -1221,7 +1220,7 @@ "2\n" "stringlist.text" msgid "Bottom Left" -msgstr "" +msgstr "Behean ezkerrean" #: dockinganimation.ui msgctxt "" @@ -1230,7 +1229,7 @@ "3\n" "stringlist.text" msgid "Top" -msgstr "" +msgstr "Goian" #: dockinganimation.ui msgctxt "" @@ -1239,7 +1238,7 @@ "4\n" "stringlist.text" msgid "Centered" -msgstr "" +msgstr "Erdian" #: dockinganimation.ui msgctxt "" @@ -1248,7 +1247,7 @@ "5\n" "stringlist.text" msgid "Bottom" -msgstr "" +msgstr "Behean" #: dockinganimation.ui msgctxt "" @@ -1257,7 +1256,7 @@ "6\n" "stringlist.text" msgid "Top Right" -msgstr "" +msgstr "Goian eskuman" #: dockinganimation.ui msgctxt "" @@ -1266,7 +1265,7 @@ "7\n" "stringlist.text" msgid "Right" -msgstr "" +msgstr "Eskuman" #: dockinganimation.ui msgctxt "" @@ -1275,7 +1274,7 @@ "8\n" "stringlist.text" msgid "Bottom Right" -msgstr "" +msgstr "Behean eskuman" #: dockinganimation.ui msgctxt "" @@ -1284,7 +1283,7 @@ "label\n" "string.text" msgid "Animation group" -msgstr "" +msgstr "Animazio-taldea" #: dockinganimation.ui msgctxt "" @@ -1293,7 +1292,7 @@ "tooltip_text\n" "string.text" msgid "Apply Object" -msgstr "" +msgstr "Aplikatu objektua" #: dockinganimation.ui msgctxt "" @@ -1302,7 +1301,7 @@ "tooltip_text\n" "string.text" msgid "Apply Objects Individually" -msgstr "" +msgstr "Aplikatu objektuak banaka" #: dockinganimation.ui msgctxt "" @@ -1311,7 +1310,7 @@ "label\n" "string.text" msgid "Number" -msgstr "" +msgstr "Zenbakia" #: dockinganimation.ui msgctxt "" @@ -1320,7 +1319,7 @@ "tooltip_text\n" "string.text" msgid "Delete Current Image" -msgstr "" +msgstr "Ezabatu uneko irudia" #: dockinganimation.ui msgctxt "" @@ -1329,7 +1328,7 @@ "tooltip_text\n" "string.text" msgid "Delete All Images" -msgstr "" +msgstr "Ezabatu irudi guztiak" #: dockinganimation.ui msgctxt "" @@ -1338,17 +1337,16 @@ "label\n" "string.text" msgid "Image" -msgstr "" +msgstr "Irudia" #: dockinganimation.ui -#, fuzzy msgctxt "" "dockinganimation.ui\n" "create\n" "label\n" "string.text" msgid "Create" -msgstr "_Sortu" +msgstr "Sortu" #: headerfooterdialog.ui msgctxt "" @@ -1528,7 +1526,7 @@ "label\n" "string.text" msgid "_Before" -msgstr "Aurretik" +msgstr "_Aurretik" #: insertslides.ui msgctxt "" @@ -1537,7 +1535,7 @@ "label\n" "string.text" msgid "A_fter" -msgstr "Ondoren" +msgstr "O_ndoren" #: insertslides.ui msgctxt "" @@ -1969,7 +1967,7 @@ "label\n" "string.text" msgid "Add caption to each slide" -msgstr "" +msgstr "Gehitu epigrafea diapositiba bakoitzean" #: photoalbum.ui msgctxt "" @@ -2257,7 +2255,7 @@ "label\n" "string.text" msgid "Slide name" -msgstr "~Diapositiba-izena" +msgstr "Diapositiba-izena" #: printeroptions.ui msgctxt "" @@ -2653,7 +2651,7 @@ "label\n" "string.text" msgid "URL for _presentation:" -msgstr "~Aurkezpenerako URLa:" +msgstr "Aurkezpenerako URLa:" #: publishingdialog.ui msgctxt "" @@ -3283,7 +3281,7 @@ "label\n" "string.text" msgid "Variant" -msgstr "" +msgstr "Aldaera" #: slidetransitionspanel.ui msgctxt "" @@ -3328,10 +3326,9 @@ "label\n" "string.text" msgid "Apply Transition to All Slides" -msgstr "" +msgstr "Aplikatu trantsizioa diapositiba guztiei" #: slidetransitionspanel.ui -#, fuzzy msgctxt "" "slidetransitionspanel.ui\n" "auto_preview\n" @@ -3410,7 +3407,7 @@ "title\n" "string.text" msgid "Graphic Styles" -msgstr "" +msgstr "Estilo grafikoak" #: templatedialog.ui msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/eu/sfx2/source/appl.po libreoffice-5.1.2~rc2/translations/source/eu/sfx2/source/appl.po --- libreoffice-5.1.1~rc2/translations/source/eu/sfx2/source/appl.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/eu/sfx2/source/appl.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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: 2014-12-07 08:01+0000\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" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1417939316.000000\n" +"X-POOTLE-MTIME: 1457407538.000000\n" #: app.src msgctxt "" @@ -326,7 +326,7 @@ "STR_QUITAPP\n" "string.text" msgid "E~xit %PRODUCTNAME" -msgstr "Irten %PRODUCTNAME(e)tik" +msgstr "I~rten %PRODUCTNAME(e)tik" #: app.src msgctxt "" @@ -453,16 +453,16 @@ msgstr "" "Dokumentu hau kanpoko datuekin estekatuta dago.\n" "\n" -"Dokumentua aldatu eta esteka guztiak eguneratu nahi dituzu, daturik berrienak eskuratzeko?" +"Dokumentua aldatu eta esteka guztiak eguneratu nahi dituzu,\n" +" daturik berrienak eskuratzeko?" #: 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 "% area %(r)entzako %(e)rako DDE-esteka ez dago erabilgarri." +msgstr "DDE-esteka ez dago erabilgarri %1 (e)rako %2 area %3 (r)entzako." #: app.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/eu/sfx2/source/doc.po libreoffice-5.1.2~rc2/translations/source/eu/sfx2/source/doc.po --- libreoffice-5.1.1~rc2/translations/source/eu/sfx2/source/doc.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/eu/sfx2/source/doc.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,17 +4,17 @@ "Project-Id-Version: PACKAGE VERSION\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 @@ "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 -Nru libreoffice-5.1.1~rc2/translations/source/eu/sfx2/source/sidebar.po libreoffice-5.1.2~rc2/translations/source/eu/sfx2/source/sidebar.po --- libreoffice-5.1.1~rc2/translations/source/eu/sfx2/source/sidebar.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/eu/sfx2/source/sidebar.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\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-12 11:13+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2016-02-26 21:47+0000\n" +"Last-Translator: Osoitz <oelkoro@gmail.com>\n" "Language-Team: Librezale <librezale@librezale.org>\n" "Language: eu\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1431429207.000000\n" +"X-POOTLE-MTIME: 1456523279.000000\n" #: Sidebar.src msgctxt "" @@ -65,4 +65,4 @@ "SFX_STR_SIDEBAR_SETTINGS\n" "string.text" msgid "Sidebar Settings" -msgstr "" +msgstr "Alboko-barraren ezarpenak" diff -Nru libreoffice-5.1.1~rc2/translations/source/eu/sfx2/uiconfig/ui.po libreoffice-5.1.2~rc2/translations/source/eu/sfx2/uiconfig/ui.po --- libreoffice-5.1.1~rc2/translations/source/eu/sfx2/uiconfig/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/eu/sfx2/uiconfig/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: LibO 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:55+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2016-02-26 21:51+0000\n" +"Last-Translator: Osoitz <oelkoro@gmail.com>\n" "Language-Team: Librezale <librezale@librezale.org>\n" "Language: eu\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1452261306.000000\n" +"X-POOTLE-MTIME: 1456523460.000000\n" #: alienwarndialog.ui msgctxt "" @@ -50,7 +50,7 @@ "label\n" "string.text" msgid "Use %DEFAULTEXTENSION _Format" -msgstr "" +msgstr "Erabili %DEFAULTEXTENSION _Formatua" #: alienwarndialog.ui msgctxt "" @@ -62,14 +62,13 @@ msgstr "_Erabili %FORMATNAME formatua" #: alienwarndialog.ui -#, fuzzy msgctxt "" "alienwarndialog.ui\n" "ask\n" "label\n" "string.text" msgid "_Ask when not saving in ODF or default format" -msgstr "_Galdetu ODF formatuan noiz ez gorde" +msgstr "_Galdetu ODF edo lehenetsitako formatuan gordetzen ez denean " #: bookmarkdialog.ui msgctxt "" @@ -348,7 +347,7 @@ "label\n" "string.text" msgid "Save preview image with this document" -msgstr "" +msgstr "Gorde aurrebista dokumentu honekin" #: documentinfopage.ui msgctxt "" @@ -357,7 +356,7 @@ "label\n" "string.text" msgid "Reset Properties" -msgstr "" +msgstr "Leheneratu Propietateak" #: documentinfopage.ui msgctxt "" @@ -763,6 +762,15 @@ "\n" "This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details." msgstr "" +"%PRODUCTNAME Mozilla Public License, v. 2.0 lizentziaren terminoak jarraituz argitaratu da. MPL lizentziaren kopia bat eskura daiteke http://mozilla.org/MPL/2.0/ helbidean.\n" +"\n" +"Hirugarrenen kodearen beste copyright-ohar eta lizentzia-termino batzuk, softwarearen beste zati batzuei aplikatutakoak, LICENSE.html fitxategian jaso dira; hautatu \"Erakutsi lizentzia\" xehetasunak ikusteko ingelesez.\n" +"\n" +"Aipatutako marka erregistratu guztiak, bakoitza bere jabearenak dira.\n" +"\n" +"Copyright © 2000-2016 LibreOffice kolaboratzaileak. Eskubide guztiak erreserbatuta.\n" +"\n" +"Produktu honen sortzailea %OOOVENDOR da. Oracle eta/edo haren afiliatuen Copyright 2000, 2011 lizentzia duen OpenOffice.org aplikazioan oinarrituta dago. %OOOVENDOR hornitzaileak komunitateko kide guztien lana aitortzen du, ikus http://www.libreoffice.org/ xehetasun gehiagorako." #: linkeditdialog.ui msgctxt "" @@ -942,7 +950,7 @@ "label\n" "string.text" msgid "Edit Style" -msgstr "" +msgstr "Editatu estiloa" #: managestylepage.ui msgctxt "" @@ -951,7 +959,7 @@ "label\n" "string.text" msgid "Edit Style" -msgstr "" +msgstr "Editatu estiloa" #: managestylepage.ui msgctxt "" @@ -1536,7 +1544,7 @@ "label\n" "string.text" msgid "Remote File_s" -msgstr "" +msgstr "Urruneko fitxategia_k" #: startcenter.ui msgctxt "" @@ -1566,64 +1574,58 @@ msgstr "Sortu:" #: startcenter.ui -#, fuzzy msgctxt "" "startcenter.ui\n" "writer_all\n" "label\n" "string.text" msgid "_Writer Document" -msgstr "Writer _dokumentua" +msgstr "_Writer dokumentua" #: startcenter.ui -#, fuzzy msgctxt "" "startcenter.ui\n" "calc_all\n" "label\n" "string.text" msgid "_Calc Spreadsheet" -msgstr "Calc _kalkulu-orria" +msgstr "_Calc kalkulu-orria" #: startcenter.ui -#, fuzzy msgctxt "" "startcenter.ui\n" "impress_all\n" "label\n" "string.text" msgid "_Impress Presentation" -msgstr "Impress _aurkezpena" +msgstr "_Impress aurkezpena" #: startcenter.ui -#, fuzzy msgctxt "" "startcenter.ui\n" "draw_all\n" "label\n" "string.text" msgid "_Draw Drawing" -msgstr "Draw _marrazkia" +msgstr "_Draw marrazkia" #: startcenter.ui -#, fuzzy msgctxt "" "startcenter.ui\n" "math_all\n" "label\n" "string.text" msgid "_Math Formula" -msgstr "Math _formula" +msgstr "_Math formula" #: startcenter.ui -#, fuzzy msgctxt "" "startcenter.ui\n" "database_all\n" "label\n" "string.text" msgid "_Base Database" -msgstr "Base datu-_basea" +msgstr "_Base datu-basea" #: startcenter.ui msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/eu/starmath/source.po libreoffice-5.1.2~rc2/translations/source/eu/starmath/source.po --- libreoffice-5.1.1~rc2/translations/source/eu/starmath/source.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/eu/starmath/source.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\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-03 17:32+0200\n" +"POT-Creation-Date: 2016-03-29 16:07+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -1843,7 +1843,7 @@ "RID_XPRECEDESEQUALY_HELP\n" "string.text" msgid "Precedes or equal to" -msgstr "Azpimultzoa edo honen berdina da" +msgstr "Honen aurretik dago edo honen berdina da" #: commands.src msgctxt "" @@ -1851,7 +1851,7 @@ "RID_XPRECEDESEQUIVY_HELP\n" "string.text" msgid "Precedes or equivalent to" -msgstr "Azpimultzoa edo honen berdina da" +msgstr "Honen aurretik dago edo honen baliokidea da" #: commands.src msgctxt "" @@ -1867,7 +1867,7 @@ "RID_XSUCCEEDSEQUALY_HELP\n" "string.text" msgid "Succeeds or equal to" -msgstr "Azpimultzoa edo honen berdina da" +msgstr "Honen ondoren dago edo honen berdina da" #: commands.src msgctxt "" @@ -1875,7 +1875,7 @@ "RID_XSUCCEEDSEQUIVY_HELP\n" "string.text" msgid "Succeeds or equivalent to" -msgstr "Azpimultzoa edo honen berdina da" +msgstr "Honen ondoren dago edo honen baliokidea da" #: commands.src msgctxt "" @@ -3630,7 +3630,7 @@ "RID_XPRECEDESEQUALY\n" "toolboxitem.text" msgid "Precedes or equal to" -msgstr "Azpimultzoa edo honen berdina da" +msgstr "Honen aurretik dago edo honen berdina da" #: toolbox.src msgctxt "" @@ -3639,7 +3639,7 @@ "RID_XSUCCEEDSEQUALY\n" "toolboxitem.text" msgid "Succeeds or equal to" -msgstr "Azpimultzoa edo honen berdina da" +msgstr "Honen ondoren dago edo honen berdina da" #: toolbox.src msgctxt "" @@ -3648,7 +3648,7 @@ "RID_XPRECEDESEQUIVY\n" "toolboxitem.text" msgid "Precedes or equivalent to" -msgstr "Azpimultzoa edo honen berdina da" +msgstr "Honen aurretik dago edo honen baliokidea da" #: toolbox.src msgctxt "" @@ -3657,7 +3657,7 @@ "RID_XSUCCEEDSEQUIVY\n" "toolboxitem.text" msgid "Succeeds or equivalent to" -msgstr "Azpimultzoa edo honen berdina da" +msgstr "Honen ondoren dago edo honen baliokidea da" #: toolbox.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/eu/starmath/uiconfig/smath/ui.po libreoffice-5.1.2~rc2/translations/source/eu/starmath/uiconfig/smath/ui.po --- libreoffice-5.1.1~rc2/translations/source/eu/starmath/uiconfig/smath/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/eu/starmath/uiconfig/smath/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: LibO 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-15 19:00+0000\n" -"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n" +"PO-Revision-Date: 2016-02-24 20:08+0000\n" +"Last-Translator: Osoitz <oelkoro@gmail.com>\n" "Language-Team: none\n" "Language: eu\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1439665252.000000\n" +"X-POOTLE-MTIME: 1456344489.000000\n" #: alignmentdialog.ui msgctxt "" @@ -626,7 +626,7 @@ "label\n" "string.text" msgid "Auto close brackets, parentheses and braces" -msgstr "" +msgstr "Automatikoki itxi kortxeteak, parentesiak eta giltzak" #: smathsettings.ui msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/eu/svtools/source/contnr.po libreoffice-5.1.2~rc2/translations/source/eu/svtools/source/contnr.po --- libreoffice-5.1.1~rc2/translations/source/eu/svtools/source/contnr.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/eu/svtools/source/contnr.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,17 +4,17 @@ "Project-Id-Version: PACKAGE VERSION\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-08-07 01:10+0000\n" -"Last-Translator: Asier <asiersar@yahoo.com>\n" +"PO-Revision-Date: 2016-02-24 20:19+0000\n" +"Last-Translator: Osoitz <oelkoro@gmail.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: eu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "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: 1375837817.0\n" +"X-POOTLE-MTIME: 1456345191.000000\n" #: fileview.src msgctxt "" @@ -22,7 +22,7 @@ "STR_SVT_FILEVIEW_COLUMN_TITLE\n" "string.text" msgid "Name" -msgstr "" +msgstr "Izena" #: fileview.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/eu/svtools/source/control.po libreoffice-5.1.2~rc2/translations/source/eu/svtools/source/control.po --- libreoffice-5.1.1~rc2/translations/source/eu/svtools/source/control.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/eu/svtools/source/control.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\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-06-14 21:39+0000\n" -"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n" +"PO-Revision-Date: 2016-02-24 20:19+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 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1402781973.000000\n" +"X-POOTLE-MTIME: 1456345196.000000\n" #: calendar.src msgctxt "" @@ -390,7 +390,7 @@ "STR_TABBAR_PUSHBUTTON_ADDTAB\n" "string.text" msgid "Add" -msgstr "" +msgstr "Gehitu" #: ruler.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/eu/svtools/source/dialogs.po libreoffice-5.1.2~rc2/translations/source/eu/svtools/source/dialogs.po --- libreoffice-5.1.1~rc2/translations/source/eu/svtools/source/dialogs.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/eu/svtools/source/dialogs.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-08-25 12:33+0200\n" -"PO-Revision-Date: 2013-11-29 16:01+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2016-02-24 20:20+0000\n" +"Last-Translator: Osoitz <oelkoro@gmail.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: eu\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1385740866.000000\n" +"X-POOTLE-MTIME: 1456345217.000000\n" #: addresstemplate.src msgctxt "" @@ -302,7 +302,7 @@ "STR_SVT_DEFAULT_SERVICE_LABEL\n" "string.text" msgid "$user$'s $service$" -msgstr "" +msgstr "$user$(r)en $service$" #: formats.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/eu/svtools/source/misc.po libreoffice-5.1.2~rc2/translations/source/eu/svtools/source/misc.po --- libreoffice-5.1.1~rc2/translations/source/eu/svtools/source/misc.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/eu/svtools/source/misc.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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 00:33+0000\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" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1435278822.000000\n" +"X-POOTLE-MTIME: 1457408164.000000\n" #: imagemgr.src msgctxt "" @@ -254,7 +254,7 @@ "STR_DESCRIPTION_FACTORY_MATH\n" "string.text" msgid "Formula" -msgstr "~Formulak" +msgstr "Formula" #: imagemgr.src msgctxt "" @@ -951,7 +951,7 @@ "LANGUAGE_USER_CHURCH_SLAVIC\n" "pairedlist.text" msgid "Church Slavic" -msgstr "" +msgstr "Eliza Eslaviera" #: langtab.src msgctxt "" @@ -2232,14 +2232,13 @@ msgstr "Sardiniera" #: langtab.src -#, fuzzy msgctxt "" "langtab.src\n" "STR_ARR_SVT_LANGUAGE_TABLE\n" "LANGUAGE_DZONGKHA_BHUTAN\n" "pairedlist.text" msgid "Dzongkha" -msgstr "Bhutanera" +msgstr "Dzongkha" #: langtab.src msgctxt "" @@ -2815,7 +2814,7 @@ "LANGUAGE_GUARANI_PARAGUAY\n" "pairedlist.text" msgid "Guarani (Paraguay)" -msgstr "" +msgstr "Guaraniera (Paraguai)" #: langtab.src msgctxt "" @@ -3778,27 +3777,25 @@ "LANGUAGE_USER_VENETIAN\n" "pairedlist.text" msgid "Venetian" -msgstr "" +msgstr "Veneziera" #: langtab.src -#, fuzzy msgctxt "" "langtab.src\n" "STR_ARR_SVT_LANGUAGE_TABLE\n" "LANGUAGE_USER_ENGLISH_GAMBIA\n" "pairedlist.text" msgid "English (Gambia)" -msgstr "Ingelesa (Namibia)" +msgstr "Ingelesa (Gambia)" #: langtab.src -#, fuzzy msgctxt "" "langtab.src\n" "STR_ARR_SVT_LANGUAGE_TABLE\n" "LANGUAGE_USER_OCCITAN_ARANESE\n" "pairedlist.text" msgid "Aranese" -msgstr "Aragoiera" +msgstr "Aranera" #: langtab.src msgctxt "" @@ -3807,7 +3804,7 @@ "LANGUAGE_USER_ARPITAN_FRANCE\n" "pairedlist.text" msgid "Arpitan (France)" -msgstr "" +msgstr "Arpitana (Frantzia)" #: langtab.src msgctxt "" @@ -3816,17 +3813,16 @@ "LANGUAGE_USER_ARPITAN_ITALY\n" "pairedlist.text" msgid "Arpitan (Italy)" -msgstr "" +msgstr "Arpitana (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 "Alemana (Suitza)" +msgstr "Arpitana (Suitza)" #: langtab.src msgctxt "" @@ -3835,7 +3831,7 @@ "LANGUAGE_USER_ENGLISH_BOTSWANA\n" "pairedlist.text" msgid "English (Botswana)" -msgstr "" +msgstr "Ingelesa (Botswana)" #: svtools.src msgctxt "" @@ -3907,9 +3903,7 @@ "STR_SVT_ESTIMATED_SIZE_PIX_2\n" "string.text" msgid "The picture needs about %1 KB of memory, the file size is %2 KB." -msgstr "" -"Irudiak %1 KB inguruko memoria behar du.\n" -" fitxategiaren tamaina %2 KB da." +msgstr "Irudiak %1 KB inguruko memoria behar du, fitxategiaren tamaina %2 KB da." #: svtools.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/eu/svtools/uiconfig/ui.po libreoffice-5.1.2~rc2/translations/source/eu/svtools/uiconfig/ui.po --- libreoffice-5.1.1~rc2/translations/source/eu/svtools/uiconfig/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/eu/svtools/uiconfig/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: LibO 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 00:34+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2016-02-24 20:27+0000\n" +"Last-Translator: Osoitz <oelkoro@gmail.com>\n" "Language-Team: Librezale <librezale@librezale.org>\n" "Language: eu\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1435278854.000000\n" +"X-POOTLE-MTIME: 1456345659.000000\n" #: GraphicExportOptionsDialog.ui msgctxt "" @@ -23,7 +23,7 @@ "title\n" "string.text" msgid "Image Options" -msgstr "" +msgstr "Irudi aukerak" #: GraphicExportOptionsDialog.ui msgctxt "" @@ -98,24 +98,22 @@ msgstr "Txantiloiak: Helbide-liburuaren esleipena" #: addresstemplatedialog.ui -#, fuzzy msgctxt "" "addresstemplatedialog.ui\n" "label33\n" "label\n" "string.text" msgid "Data source:" -msgstr "Datu-iturburua" +msgstr "Datu-iturburua:" #: addresstemplatedialog.ui -#, fuzzy msgctxt "" "addresstemplatedialog.ui\n" "label43\n" "label\n" "string.text" msgid "Table:" -msgstr "Taula" +msgstr "Taula:" #: addresstemplatedialog.ui msgctxt "" @@ -217,7 +215,6 @@ msgstr "Konpresioa" #: graphicexport.ui -#, fuzzy msgctxt "" "graphicexport.ui\n" "rlecb\n" @@ -299,7 +296,6 @@ msgstr "Kodeketa" #: graphicexport.ui -#, fuzzy msgctxt "" "graphicexport.ui\n" "tiffpreviewcb\n" @@ -516,24 +512,22 @@ msgstr "Fitxategi-zerbitzuak" #: placeedit.ui -#, fuzzy msgctxt "" "placeedit.ui\n" "typeLabel\n" "label\n" "string.text" msgid "Type:" -msgstr "Mota" +msgstr "Mota:" #: placeedit.ui -#, fuzzy msgctxt "" "placeedit.ui\n" "hostLabel\n" "label\n" "string.text" msgid "Host:" -msgstr "Ostalaria" +msgstr "Ostalaria:" #: placeedit.ui msgctxt "" @@ -542,27 +536,25 @@ "label\n" "string.text" msgid "Root:" -msgstr "" +msgstr "Erroa:" #: placeedit.ui -#, fuzzy msgctxt "" "placeedit.ui\n" "shareLabel\n" "label\n" "string.text" msgid "Share:" -msgstr "Konpartitu" +msgstr "Konpartitu:" #: placeedit.ui -#, fuzzy msgctxt "" "placeedit.ui\n" "repositoryLabel\n" "label\n" "string.text" msgid "Repository:" -msgstr "Biltegia" +msgstr "Biltegia:" #: placeedit.ui msgctxt "" @@ -571,7 +563,7 @@ "label\n" "string.text" msgid "Secure connection" -msgstr "" +msgstr "Konexio segurua" #: placeedit.ui msgctxt "" @@ -580,7 +572,7 @@ "label\n" "string.text" msgid "User:" -msgstr "" +msgstr "Erabiltzailea:" #: placeedit.ui msgctxt "" @@ -589,17 +581,16 @@ "label\n" "string.text" msgid "Label:" -msgstr "" +msgstr "Etiketa:" #: placeedit.ui -#, fuzzy msgctxt "" "placeedit.ui\n" "portLabel\n" "label\n" "string.text" msgid "Port:" -msgstr "Ataka" +msgstr "Ataka:" #: placeedit.ui msgctxt "" @@ -608,7 +599,7 @@ "label\n" "string.text" msgid "Password:" -msgstr "" +msgstr "Pasahitza:" #: placeedit.ui msgctxt "" @@ -617,7 +608,7 @@ "label\n" "string.text" msgid "Remember password" -msgstr "" +msgstr "Gogoratu pasahitza" #: placeedit.ui msgctxt "" @@ -674,54 +665,49 @@ msgstr "Aukerak..." #: printersetupdialog.ui -#, fuzzy msgctxt "" "printersetupdialog.ui\n" "label2\n" "label\n" "string.text" msgid "Name:" -msgstr "Izena" +msgstr "Izena:" #: printersetupdialog.ui -#, fuzzy msgctxt "" "printersetupdialog.ui\n" "label3\n" "label\n" "string.text" msgid "Status:" -msgstr "Egoera" +msgstr "Egoera:" #: printersetupdialog.ui -#, fuzzy msgctxt "" "printersetupdialog.ui\n" "label4\n" "label\n" "string.text" msgid "Type:" -msgstr "Mota" +msgstr "Mota:" #: printersetupdialog.ui -#, fuzzy msgctxt "" "printersetupdialog.ui\n" "label5\n" "label\n" "string.text" msgid "Location:" -msgstr "Kokalekua" +msgstr "Kokalekua:" #: printersetupdialog.ui -#, fuzzy msgctxt "" "printersetupdialog.ui\n" "label6\n" "label\n" "string.text" msgid "Comment:" -msgstr "Iruzkina" +msgstr "Iruzkina:" #: printersetupdialog.ui msgctxt "" @@ -805,7 +791,6 @@ msgstr "Berrabiarazi %PRODUCTNAME" #: restartdialog.ui -#, fuzzy msgctxt "" "restartdialog.ui\n" "yes\n" @@ -815,7 +800,6 @@ msgstr "Berrabiarazi orain" #: restartdialog.ui -#, fuzzy msgctxt "" "restartdialog.ui\n" "no\n" @@ -852,14 +836,13 @@ msgstr "%PRODUCTNAME berrabiarazi behar da bibliografiak ongi funtziona dezan." #: 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 "%PRODUCTNAME berrabiarazi behar da bibliografiak ongi funtziona dezan." +msgstr "Posta nahasketak ongi funtziona dezan %PRODUCTNAME berrabiarazi behar da." #: restartdialog.ui msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/eu/svx/inc.po libreoffice-5.1.2~rc2/translations/source/eu/svx/inc.po --- libreoffice-5.1.1~rc2/translations/source/eu/svx/inc.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/eu/svx/inc.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 00:34+0000\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" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1435278880.000000\n" +"X-POOTLE-MTIME: 1457408220.000000\n" #: globlmn_tmpl.hrc msgctxt "" @@ -374,7 +374,7 @@ "ITEM_OBJECT_CROP\n" "#define.text" msgid "Crop I~mage" -msgstr "" +msgstr "Moztu i~rudia" #: globlmn_tmpl.hrc msgctxt "" @@ -398,7 +398,7 @@ "ITEM_CHANGE_PICTURE\n" "#define.text" msgid "Replace Image..." -msgstr "" +msgstr "Ordeztu irudia..." #: globlmn_tmpl.hrc msgctxt "" @@ -451,7 +451,7 @@ "SID_EQUALIZEWIDTH\n" "menuitem.text" msgid "Equalize ~Width" -msgstr "" +msgstr "Berdindu ~Zabalera" #: globlmn_tmpl.hrc msgctxt "" @@ -460,7 +460,7 @@ "SID_EQUALIZEHEIGHT\n" "menuitem.text" msgid "Equalize ~Height" -msgstr "" +msgstr "Berdindu ~Altuera" #: globlmn_tmpl.hrc msgctxt "" @@ -624,7 +624,7 @@ "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 -Nru libreoffice-5.1.1~rc2/translations/source/eu/svx/source/dialog.po libreoffice-5.1.2~rc2/translations/source/eu/svx/source/dialog.po --- libreoffice-5.1.1~rc2/translations/source/eu/svx/source/dialog.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/eu/svx/source/dialog.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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-12 11:17+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2016-02-28 16:32+0000\n" +"Last-Translator: Osoitz <oelkoro@gmail.com>\n" "Language-Team: Librezale <librezale@librezale.org>\n" "Language: eu\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1431429458.000000\n" +"X-POOTLE-MTIME: 1456677176.000000\n" #: bmpmask.src msgctxt "" @@ -2879,13 +2879,12 @@ msgstr "Bilatutako gakoa ez da aurkitu" #: srchdlg.src -#, fuzzy msgctxt "" "srchdlg.src\n" "RID_SVXSTR_SEARCH_START\n" "string.text" msgid "Reached the beginning of the document" -msgstr "Dokumentuaren azkenera iritsi da" +msgstr "Dokumentuaren hasierara iritsi da" #: svxbmpnumvalueset.src msgctxt "" @@ -6155,7 +6154,7 @@ "RID_SUBSETSTR_BASSA_VAH\n" "string.text" msgid "Bassa Vah" -msgstr "" +msgstr "Bassa Vah" #: ucsubset.src msgctxt "" @@ -6164,7 +6163,7 @@ "RID_SUBSETSTR_CAUCASIAN_ALBANIAN\n" "string.text" msgid "Caucasian Albanian" -msgstr "" +msgstr "Kaukasoko Albaniera" #: ucsubset.src msgctxt "" @@ -6173,10 +6172,9 @@ "RID_SUBSETSTR_COPTIC_EPACT_NUMBERS\n" "string.text" msgid "Coptic Epact Numbers" -msgstr "" +msgstr "Koptoera Epaktera zenbakiak" #: ucsubset.src -#, fuzzy msgctxt "" "ucsubset.src\n" "RID_SUBSETMAP\n" @@ -6192,7 +6190,7 @@ "RID_SUBSETSTR_DUPLOYAN\n" "string.text" msgid "Duployan" -msgstr "" +msgstr "Duployera" #: ucsubset.src msgctxt "" @@ -6201,7 +6199,7 @@ "RID_SUBSETSTR_ELBASAN\n" "string.text" msgid "Elbasan" -msgstr "" +msgstr "Elbasan" #: ucsubset.src msgctxt "" @@ -6210,7 +6208,7 @@ "RID_SUBSETSTR_GEOMETRIC_SHAPES_EXTENDED\n" "string.text" msgid "Geometric Shapes Extended" -msgstr "" +msgstr "Irudi geometrikoak hedatuta" #: ucsubset.src msgctxt "" @@ -6219,7 +6217,7 @@ "RID_SUBSETSTR_GRANTHA\n" "string.text" msgid "Grantha" -msgstr "" +msgstr "Grantha" #: ucsubset.src msgctxt "" @@ -6228,7 +6226,7 @@ "RID_SUBSETSTR_KHOJKI\n" "string.text" msgid "Khojki" -msgstr "" +msgstr "Khojki" #: ucsubset.src msgctxt "" @@ -6237,17 +6235,16 @@ "RID_SUBSETSTR_KHUDAWADI\n" "string.text" msgid "Khudawadi" -msgstr "" +msgstr "Khudawadi" #: ucsubset.src -#, fuzzy msgctxt "" "ucsubset.src\n" "RID_SUBSETMAP\n" "RID_SUBSETSTR_LATIN_EXTENDED_E\n" "string.text" msgid "Latin Extended-E" -msgstr "Latin hedatua-A" +msgstr "Latin hedatua-E" #: ucsubset.src msgctxt "" @@ -6256,7 +6253,7 @@ "RID_SUBSETSTR_LINEAR_A\n" "string.text" msgid "Linear A" -msgstr "" +msgstr "Lineala A" #: ucsubset.src msgctxt "" @@ -6265,7 +6262,7 @@ "RID_SUBSETSTR_MAHAJANI\n" "string.text" msgid "Mahajani" -msgstr "" +msgstr "Mahajani" #: ucsubset.src msgctxt "" @@ -6274,7 +6271,7 @@ "RID_SUBSETSTR_MANICHAEAN\n" "string.text" msgid "Manichaean" -msgstr "" +msgstr "Manikeoa" #: ucsubset.src msgctxt "" @@ -6283,7 +6280,7 @@ "RID_SUBSETSTR_MENDE_KIKAKUI\n" "string.text" msgid "Mende Kikakui" -msgstr "" +msgstr "Mende Kikakui" #: ucsubset.src msgctxt "" @@ -6292,7 +6289,7 @@ "RID_SUBSETSTR_MODI\n" "string.text" msgid "Modi" -msgstr "" +msgstr "Modi" #: ucsubset.src msgctxt "" @@ -6301,17 +6298,16 @@ "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 "Myanmar hedatua-A" +msgstr "Myanmar hedatua-B" #: ucsubset.src msgctxt "" @@ -6320,17 +6316,16 @@ "RID_SUBSETSTR_NABATAEAN\n" "string.text" msgid "Nabataean" -msgstr "" +msgstr "Nabatearra" #: ucsubset.src -#, fuzzy msgctxt "" "ucsubset.src\n" "RID_SUBSETMAP\n" "RID_SUBSETSTR_OLD_NORTH_ARABIAN\n" "string.text" msgid "Old North Arabian" -msgstr "Hegoaldeko arabiera zaharra" +msgstr "Iparraldeko arabiera zaharra" #: ucsubset.src msgctxt "" @@ -6339,7 +6334,7 @@ "RID_SUBSETSTR_OLD_PERMIC\n" "string.text" msgid "Old Permic" -msgstr "" +msgstr "Antzinako Permikoa" #: ucsubset.src msgctxt "" @@ -6348,7 +6343,7 @@ "RID_SUBSETSTR_ORNAMENTAL_DINGBATS\n" "string.text" msgid "Ornamental Dingbats" -msgstr "" +msgstr "Dingbats apaingarriak" #: ucsubset.src msgctxt "" @@ -6357,7 +6352,7 @@ "RID_SUBSETSTR_PAHAWH_HMONG\n" "string.text" msgid "Pahawh Hmong" -msgstr "" +msgstr "Pahawh Hmong" #: ucsubset.src msgctxt "" @@ -6366,7 +6361,7 @@ "RID_SUBSETSTR_PALMYRENE\n" "string.text" msgid "Palmyrene" -msgstr "" +msgstr "Palmirako alfabetoa" #: ucsubset.src msgctxt "" @@ -6375,7 +6370,7 @@ "RID_SUBSETSTR_PAU_CIN_HAU\n" "string.text" msgid "Pau Cin Hau" -msgstr "" +msgstr "Pau Cin Hau" #: ucsubset.src msgctxt "" @@ -6384,7 +6379,7 @@ "RID_SUBSETSTR_PSALTER_PAHLAVI\n" "string.text" msgid "Psalter Pahlavi" -msgstr "" +msgstr "Psalter Pahlavi" #: ucsubset.src msgctxt "" @@ -6393,7 +6388,7 @@ "RID_SUBSETSTR_SHORTHAND_FORMAT_CONTROLS\n" "string.text" msgid "Shorthand Format Controls" -msgstr "" +msgstr "Takigrafia formatuko kontrolak" #: ucsubset.src msgctxt "" @@ -6402,7 +6397,7 @@ "RID_SUBSETSTR_SIDDHAM\n" "string.text" msgid "Siddham" -msgstr "" +msgstr "Siddham" #: ucsubset.src msgctxt "" @@ -6411,17 +6406,16 @@ "RID_SUBSETSTR_SINHALA_ARCHAIC_NUMBERS\n" "string.text" msgid "Sinhala Archaic Numbers" -msgstr "" +msgstr "Sinhala zenbaki arkaikoak" #: ucsubset.src -#, fuzzy msgctxt "" "ucsubset.src\n" "RID_SUBSETMAP\n" "RID_SUBSETSTR_SUPPLEMENTAL_ARROWS_C\n" "string.text" msgid "Supplemental Arrows-C" -msgstr "Gezi osagarriak A" +msgstr "Gezi osagarriak-C" #: ucsubset.src msgctxt "" @@ -6430,7 +6424,7 @@ "RID_SUBSETSTR_TIRHUTA\n" "string.text" msgid "Tirhuta" -msgstr "" +msgstr "Tirhuta" #: ucsubset.src msgctxt "" @@ -6439,7 +6433,7 @@ "RID_SUBSETSTR_WARANG_CITI\n" "string.text" msgid "Warang Citi" -msgstr "" +msgstr "Warang Citi" #: ucsubset.src msgctxt "" @@ -6448,7 +6442,7 @@ "RID_SUBSETSTR_AHOM\n" "string.text" msgid "Ahom" -msgstr "" +msgstr "Ahom" #: ucsubset.src msgctxt "" @@ -6457,7 +6451,7 @@ "RID_SUBSETSTR_ANATOLIAN_HIEROGLYPHS\n" "string.text" msgid "Anatolian Hieroglyphs" -msgstr "" +msgstr "Anatoliar hieroglifikoak" #: ucsubset.src msgctxt "" @@ -6466,17 +6460,16 @@ "RID_SUBSETSTR_CHEROKEE_SUPPLEMENT\n" "string.text" msgid "Cherokee Supplement" -msgstr "" +msgstr "Txeroki osagarria" #: 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 ideografo bateratuak A hedapena" +msgstr "CJK ideografo bateratuak E hedapena" #: ucsubset.src msgctxt "" @@ -6485,7 +6478,7 @@ "RID_SUBSETSTR_EARLY_DYNASTIC_CUNEIFORM\n" "string.text" msgid "Early Dynastic Cuneiform" -msgstr "" +msgstr "Goiz dinastiako kuneiformea" #: ucsubset.src msgctxt "" @@ -6494,7 +6487,7 @@ "RID_SUBSETSTR_HATRAN\n" "string.text" msgid "Hatran" -msgstr "" +msgstr "Hatran" #: ucsubset.src msgctxt "" @@ -6503,7 +6496,7 @@ "RID_SUBSETSTR_MULTANI\n" "string.text" msgid "Multani" -msgstr "" +msgstr "Multani" #: ucsubset.src msgctxt "" @@ -6512,7 +6505,7 @@ "RID_SUBSETSTR_OLD_HUNGARIAN\n" "string.text" msgid "Old Hungarian" -msgstr "" +msgstr "Hungariera zaharra" #: ucsubset.src msgctxt "" @@ -6521,7 +6514,7 @@ "RID_SUBSETSTR_SUPPLEMENTAL_SYMBOLS_AND_PICTOGRAPHS\n" "string.text" msgid "Supplemental Symbols And Pictographs" -msgstr "" +msgstr "Ikur eta piktografia osagarriak" #: ucsubset.src msgctxt "" @@ -6530,4 +6523,4 @@ "RID_SUBSETSTR_SUTTON_SIGNWRITING\n" "string.text" msgid "Sutton Signwriting" -msgstr "" +msgstr "Sutton keinu-idazkera" diff -Nru libreoffice-5.1.1~rc2/translations/source/eu/svx/source/items.po libreoffice-5.1.2~rc2/translations/source/eu/svx/source/items.po --- libreoffice-5.1.1~rc2/translations/source/eu/svx/source/items.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/eu/svx/source/items.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\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-07-30 10:44+0000\n" -"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.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 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1406717065.000000\n" +"X-POOTLE-MTIME: 1457408699.000000\n" #: svxerr.src msgctxt "" @@ -442,7 +442,7 @@ "Character blinking\n" "itemlist.text" msgid "Character blinking" -msgstr "" +msgstr "Karaktere keinukaria" #: svxitems.src msgctxt "" @@ -541,7 +541,7 @@ "Paragraph spacing\n" "itemlist.text" msgid "Paragraph spacing" -msgstr "" +msgstr "Paragrafo arteko tartea" #: svxitems.src msgctxt "" @@ -550,7 +550,7 @@ "Paragraph indent\n" "itemlist.text" msgid "Paragraph indent" -msgstr "" +msgstr "Paragrafo-koska" #: svxitems.src msgctxt "" @@ -775,7 +775,7 @@ "Character scaling\n" "itemlist.text" msgid "Character scaling" -msgstr "" +msgstr "Karaktere-eskala" #: svxitems.src msgctxt "" @@ -873,7 +873,7 @@ "RID_SVXITEMS_SEARCHIN_FORMULA\n" "string.text" msgid "Formula" -msgstr "~Formulak" +msgstr "Formula" #: svxitems.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/eu/svx/source/stbctrls.po libreoffice-5.1.2~rc2/translations/source/eu/svx/source/stbctrls.po --- libreoffice-5.1.1~rc2/translations/source/eu/svx/source/stbctrls.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/eu/svx/source/stbctrls.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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-12 11:18+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2016-02-26 22:31+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 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1431429538.000000\n" +"X-POOTLE-MTIME: 1456525910.000000\n" #: stbctrls.src msgctxt "" @@ -179,7 +179,7 @@ "RID_SVXSTR_ZOOM_25\n" "string.text" msgid "25%" -msgstr "" +msgstr "%25" #: stbctrls.src msgctxt "" @@ -187,7 +187,7 @@ "RID_SVXSTR_ZOOM_50\n" "string.text" msgid "50%" -msgstr "" +msgstr "%50" #: stbctrls.src msgctxt "" @@ -195,7 +195,7 @@ "RID_SVXSTR_ZOOM_75\n" "string.text" msgid "75%" -msgstr "" +msgstr "%75" #: stbctrls.src msgctxt "" @@ -203,7 +203,7 @@ "RID_SVXSTR_ZOOM_100\n" "string.text" msgid "100%" -msgstr "" +msgstr "%100" #: stbctrls.src msgctxt "" @@ -211,7 +211,7 @@ "RID_SVXSTR_ZOOM_150\n" "string.text" msgid "150%" -msgstr "" +msgstr "%150" #: stbctrls.src msgctxt "" @@ -219,7 +219,7 @@ "RID_SVXSTR_ZOOM_200\n" "string.text" msgid "200%" -msgstr "" +msgstr "%200" #: stbctrls.src msgctxt "" @@ -279,7 +279,7 @@ "ZOOM_50\n" "menuitem.text" msgid "50%" -msgstr "" +msgstr "%50" #: stbctrls.src msgctxt "" @@ -288,7 +288,7 @@ "ZOOM_75\n" "menuitem.text" msgid "75%" -msgstr "" +msgstr "%75" #: stbctrls.src msgctxt "" @@ -297,7 +297,7 @@ "ZOOM_100\n" "menuitem.text" msgid "100%" -msgstr "" +msgstr "%100" #: stbctrls.src msgctxt "" @@ -306,7 +306,7 @@ "ZOOM_150\n" "menuitem.text" msgid "150%" -msgstr "" +msgstr "%150" #: stbctrls.src msgctxt "" @@ -315,7 +315,7 @@ "ZOOM_200\n" "menuitem.text" msgid "200%" -msgstr "" +msgstr "%200" #: stbctrls.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/eu/svx/source/svdraw.po libreoffice-5.1.2~rc2/translations/source/eu/svx/source/svdraw.po --- libreoffice-5.1.1~rc2/translations/source/eu/svx/source/svdraw.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/eu/svx/source/svdraw.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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-06-23 09:27+0000\n" -"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n" +"PO-Revision-Date: 2016-02-28 16:14+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 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1403515652.000000\n" +"X-POOTLE-MTIME: 1456676066.000000\n" #: svdstr.src msgctxt "" @@ -1566,7 +1566,7 @@ "STR_EqualizeWidthMarkedObjects\n" "string.text" msgid "Equalize Width %1" -msgstr "" +msgstr "Berdindu Zabalera %1" #: svdstr.src msgctxt "" @@ -1574,7 +1574,7 @@ "STR_EqualizeHeightMarkedObjects\n" "string.text" msgid "Equalize Height %1" -msgstr "" +msgstr "Berdindu Altuera %1" #: svdstr.src msgctxt "" @@ -3854,7 +3854,7 @@ "SIP_SA_CHAINNEXTNAME\n" "string.text" msgid "Next link in text chain" -msgstr "" +msgstr "Testu-kateko hurrengo esteka" #: svdstr.src msgctxt "" @@ -4918,7 +4918,7 @@ "STR_TABLE_DELETE_CELL_CONTENTS\n" "string.text" msgid "Delete cell contents" -msgstr "" +msgstr "Ezabatu gelaxkaren edukiak" #: svdstr.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/eu/svx/source/tbxctrls.po libreoffice-5.1.2~rc2/translations/source/eu/svx/source/tbxctrls.po --- libreoffice-5.1.1~rc2/translations/source/eu/svx/source/tbxctrls.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/eu/svx/source/tbxctrls.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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:36+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2016-02-28 16:23+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 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1435278960.000000\n" +"X-POOTLE-MTIME: 1456676585.000000\n" #: colrctrl.src msgctxt "" @@ -568,7 +568,7 @@ "RID_SVXSTR_EXTRAS_CHARBACKGROUND\n" "string.text" msgid "Highlight Color" -msgstr "" +msgstr "Nabarmentze-kolorea" #: tbcontrl.src msgctxt "" @@ -688,4 +688,4 @@ "RID_SVXSTR_FINDBAR_SEARCHFORMATTED\n" "string.text" msgid "Search Formatted Display String" -msgstr "" +msgstr "Bilatu formatudun bistaratze-katea" diff -Nru libreoffice-5.1.1~rc2/translations/source/eu/svx/uiconfig/ui.po libreoffice-5.1.2~rc2/translations/source/eu/svx/uiconfig/ui.po --- libreoffice-5.1.1~rc2/translations/source/eu/svx/uiconfig/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/eu/svx/uiconfig/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 00:38+0000\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" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1435279083.000000\n" +"X-POOTLE-MTIME: 1457409294.000000\n" #: acceptrejectchangesdialog.ui msgctxt "" @@ -284,7 +284,7 @@ "label\n" "string.text" msgid "_Browse..." -msgstr "" +msgstr "_Arakatu..." #: addinstancedialog.ui msgctxt "" @@ -1256,7 +1256,7 @@ "title\n" "string.text" msgid "3D Effects" -msgstr "" +msgstr "3D Efektuak" #: docking3deffects.ui msgctxt "" @@ -1265,7 +1265,7 @@ "label\n" "string.text" msgid "R_ounded edges" -msgstr "" +msgstr "Ertz _biribilduak" #: docking3deffects.ui msgctxt "" @@ -1274,7 +1274,7 @@ "label\n" "string.text" msgid "_Scaled depth" -msgstr "" +msgstr "_Sakonera-eskala" #: docking3deffects.ui msgctxt "" @@ -1283,17 +1283,16 @@ "label\n" "string.text" msgid "_Rotation angle" -msgstr "" +msgstr "_Biraketa-angelua" #: docking3deffects.ui -#, fuzzy msgctxt "" "docking3deffects.ui\n" "depthft\n" "label\n" "string.text" msgid "_Depth" -msgstr "Sakonera" +msgstr "_Sakonera" #: docking3deffects.ui msgctxt "" @@ -1302,27 +1301,25 @@ "label\n" "string.text" msgid "Geometry" -msgstr "" +msgstr "Geometria" #: docking3deffects.ui -#, fuzzy msgctxt "" "docking3deffects.ui\n" "label6\n" "label\n" "string.text" msgid "_Horizontal" -msgstr "_Horizontala:" +msgstr "_Horizontala" #: docking3deffects.ui -#, fuzzy msgctxt "" "docking3deffects.ui\n" "label7\n" "label\n" "string.text" msgid "_Vertical" -msgstr "_Bertikala:" +msgstr "_Bertikala" #: docking3deffects.ui msgctxt "" @@ -1331,7 +1328,7 @@ "label\n" "string.text" msgid "Segments" -msgstr "" +msgstr "Segmentuak" #: docking3deffects.ui msgctxt "" @@ -1340,7 +1337,7 @@ "tooltip_text\n" "string.text" msgid "Object-Specific" -msgstr "" +msgstr "Objektuaren berariazkoa" #: docking3deffects.ui msgctxt "" @@ -1358,7 +1355,7 @@ "tooltip_text\n" "string.text" msgid "Spherical" -msgstr "" +msgstr "Esferikoa" #: docking3deffects.ui msgctxt "" @@ -1367,7 +1364,7 @@ "tooltip_text\n" "string.text" msgid "Invert Normals" -msgstr "" +msgstr "Alderantzikatu normalak" #: docking3deffects.ui msgctxt "" @@ -1376,7 +1373,7 @@ "tooltip_text\n" "string.text" msgid "Double-Sided Illumination" -msgstr "" +msgstr "Bi aldetako argiztapena" #: docking3deffects.ui msgctxt "" @@ -1385,7 +1382,7 @@ "tooltip_text\n" "string.text" msgid "Double-Sided" -msgstr "" +msgstr "Bi aldetakoa" #: docking3deffects.ui msgctxt "" @@ -1394,7 +1391,7 @@ "label\n" "string.text" msgid "Normals" -msgstr "" +msgstr "Normalak" #: docking3deffects.ui msgctxt "" @@ -1403,7 +1400,7 @@ "tooltip_text\n" "string.text" msgid "Convert to 3D" -msgstr "" +msgstr "3D bihurtu" #: docking3deffects.ui msgctxt "" @@ -1412,7 +1409,7 @@ "tooltip_text\n" "string.text" msgid "Convert to Rotation Object" -msgstr "" +msgstr "Biraketa-objektu bihurtu" #: docking3deffects.ui msgctxt "" @@ -1421,7 +1418,7 @@ "tooltip_text\n" "string.text" msgid "Perspective On/Off" -msgstr "" +msgstr "Perspektiba jarri/kendu" #: docking3deffects.ui msgctxt "" @@ -1430,7 +1427,7 @@ "AtkObject::accessible-name\n" "string.text" msgid "3D Preview" -msgstr "" +msgstr "3D aurrebista" #: docking3deffects.ui msgctxt "" @@ -1439,7 +1436,7 @@ "AtkObject::accessible-name\n" "string.text" msgid "Color Light Preview" -msgstr "" +msgstr "Kolore-argiaren aurrebista" #: docking3deffects.ui msgctxt "" @@ -1448,7 +1445,7 @@ "label\n" "string.text" msgid "_Mode" -msgstr "" +msgstr "_Modua" #: docking3deffects.ui msgctxt "" @@ -1466,7 +1463,7 @@ "1\n" "stringlist.text" msgid "Phong" -msgstr "" +msgstr "Phong" #: docking3deffects.ui msgctxt "" @@ -1475,7 +1472,7 @@ "2\n" "stringlist.text" msgid "Gouraud" -msgstr "" +msgstr "Gouraud" #: docking3deffects.ui msgctxt "" @@ -1484,7 +1481,7 @@ "label\n" "string.text" msgid "Shading" -msgstr "" +msgstr "Itzaldura" #: docking3deffects.ui msgctxt "" @@ -1493,7 +1490,7 @@ "label\n" "string.text" msgid "S_urface angle" -msgstr "" +msgstr "Paperaren angel_ua" #: docking3deffects.ui msgctxt "" @@ -1502,7 +1499,7 @@ "tooltip_text\n" "string.text" msgid "3D Shadowing On/Off" -msgstr "" +msgstr "3D itzala jarri/kendu" #: docking3deffects.ui msgctxt "" @@ -1511,7 +1508,7 @@ "label\n" "string.text" msgid "Shadow" -msgstr "" +msgstr "Itzala" #: docking3deffects.ui msgctxt "" @@ -1520,17 +1517,16 @@ "label\n" "string.text" msgid "_Focal length" -msgstr "" +msgstr "_Foku-distantzia" #: docking3deffects.ui -#, fuzzy msgctxt "" "docking3deffects.ui\n" "label14\n" "label\n" "string.text" msgid "_Distance" -msgstr "Instantzia" +msgstr "_Distantzia" #: docking3deffects.ui msgctxt "" @@ -1539,7 +1535,7 @@ "label\n" "string.text" msgid "Camera" -msgstr "" +msgstr "Kamera" #: docking3deffects.ui msgctxt "" @@ -1548,7 +1544,7 @@ "label\n" "string.text" msgid "_Light source" -msgstr "" +msgstr "_Argi-iturria" #: docking3deffects.ui msgctxt "" @@ -1557,7 +1553,7 @@ "tooltip_text\n" "string.text" msgid "Colors Dialog" -msgstr "" +msgstr "Koloreen elkarrizketa-koadroa" #: docking3deffects.ui msgctxt "" @@ -1566,7 +1562,7 @@ "tooltip_text\n" "string.text" msgid "Colors Dialog" -msgstr "" +msgstr "Koloreen elkarrizketa-koadroa" #: docking3deffects.ui msgctxt "" @@ -1575,7 +1571,7 @@ "label\n" "string.text" msgid "_Ambient light" -msgstr "" +msgstr "_Giro-argia" #: docking3deffects.ui msgctxt "" @@ -1584,7 +1580,7 @@ "tooltip_text\n" "string.text" msgid "Light Source 1" -msgstr "" +msgstr "1. argi-iturria" #: docking3deffects.ui msgctxt "" @@ -1593,7 +1589,7 @@ "tooltip_text\n" "string.text" msgid "Light Source 2" -msgstr "" +msgstr "2. argi-iturria" #: docking3deffects.ui msgctxt "" @@ -1602,7 +1598,7 @@ "tooltip_text\n" "string.text" msgid "Light Source 3" -msgstr "" +msgstr "3. argi-iturria" #: docking3deffects.ui msgctxt "" @@ -1611,7 +1607,7 @@ "tooltip_text\n" "string.text" msgid "Light Source 4" -msgstr "" +msgstr "4. argi-iturria" #: docking3deffects.ui msgctxt "" @@ -1620,7 +1616,7 @@ "tooltip_text\n" "string.text" msgid "Light Source 5" -msgstr "" +msgstr "5. argi-iturria" #: docking3deffects.ui msgctxt "" @@ -1629,7 +1625,7 @@ "tooltip_text\n" "string.text" msgid "Light Source 6" -msgstr "" +msgstr "6. argi-iturria" #: docking3deffects.ui msgctxt "" @@ -1638,7 +1634,7 @@ "tooltip_text\n" "string.text" msgid "Light Source 7" -msgstr "" +msgstr "7. argi-iturria" #: docking3deffects.ui msgctxt "" @@ -1647,7 +1643,7 @@ "tooltip_text\n" "string.text" msgid "Light Source 8" -msgstr "" +msgstr "8. argi-iturria" #: docking3deffects.ui msgctxt "" @@ -1656,7 +1652,7 @@ "label\n" "string.text" msgid "Illumination" -msgstr "" +msgstr "Argiztapena" #: docking3deffects.ui msgctxt "" @@ -1665,7 +1661,7 @@ "label\n" "string.text" msgid "_Type" -msgstr "" +msgstr "M_ota" #: docking3deffects.ui msgctxt "" @@ -1674,7 +1670,7 @@ "label\n" "string.text" msgid "_Mode" -msgstr "" +msgstr "_Modua" #: docking3deffects.ui msgctxt "" @@ -1683,7 +1679,7 @@ "label\n" "string.text" msgid "_Projection X" -msgstr "" +msgstr "X _proiekzioa" #: docking3deffects.ui msgctxt "" @@ -1692,7 +1688,7 @@ "label\n" "string.text" msgid "P_rojection Y" -msgstr "" +msgstr "Y p_roiekzioa" #: docking3deffects.ui msgctxt "" @@ -1701,7 +1697,7 @@ "label\n" "string.text" msgid "_Filtering" -msgstr "" +msgstr "_Iragazkia" #: docking3deffects.ui msgctxt "" @@ -1710,17 +1706,16 @@ "tooltip_text\n" "string.text" msgid "Black & White" -msgstr "" +msgstr "Zuri-beltza" #: docking3deffects.ui -#, fuzzy msgctxt "" "docking3deffects.ui\n" "texcolor\n" "tooltip_text\n" "string.text" msgid "Color" -msgstr "_Kolorea:" +msgstr "Kolorea" #: docking3deffects.ui msgctxt "" @@ -1729,7 +1724,7 @@ "tooltip_text\n" "string.text" msgid "Only Texture" -msgstr "" +msgstr "Testura bakarrik" #: docking3deffects.ui msgctxt "" @@ -1738,7 +1733,7 @@ "tooltip_text\n" "string.text" msgid "Texture and Shading" -msgstr "" +msgstr "Testura eta itzaldura" #: docking3deffects.ui msgctxt "" @@ -1747,7 +1742,7 @@ "tooltip_text\n" "string.text" msgid "Object-Specific" -msgstr "" +msgstr "Objektuaren berariazkoa" #: docking3deffects.ui msgctxt "" @@ -1756,7 +1751,7 @@ "tooltip_text\n" "string.text" msgid "Parallel" -msgstr "" +msgstr "Paralelo" #: docking3deffects.ui msgctxt "" @@ -1765,7 +1760,7 @@ "tooltip_text\n" "string.text" msgid "Circular" -msgstr "" +msgstr "Zirkularra" #: docking3deffects.ui msgctxt "" @@ -1774,7 +1769,7 @@ "tooltip_text\n" "string.text" msgid "Object-Specific" -msgstr "" +msgstr "Objektuaren berariazkoa" #: docking3deffects.ui msgctxt "" @@ -1783,7 +1778,7 @@ "tooltip_text\n" "string.text" msgid "Parallel" -msgstr "" +msgstr "Paraleloa" #: docking3deffects.ui msgctxt "" @@ -1792,7 +1787,7 @@ "tooltip_text\n" "string.text" msgid "Circular" -msgstr "" +msgstr "Zirkularra" #: docking3deffects.ui msgctxt "" @@ -1801,7 +1796,7 @@ "tooltip_text\n" "string.text" msgid "Filtering On/Off" -msgstr "" +msgstr "Iragazkia jarri/kendu" #: docking3deffects.ui msgctxt "" @@ -1810,7 +1805,7 @@ "tooltip_text\n" "string.text" msgid "Texture, Shadow and Color" -msgstr "" +msgstr "Testura, itzaldura eta kolorea" #: docking3deffects.ui msgctxt "" @@ -1819,7 +1814,7 @@ "label\n" "string.text" msgid "Textures" -msgstr "" +msgstr "Testurak" #: docking3deffects.ui msgctxt "" @@ -1828,7 +1823,7 @@ "label\n" "string.text" msgid "_Favorites" -msgstr "" +msgstr "_Gogokoak" #: docking3deffects.ui msgctxt "" @@ -1837,7 +1832,7 @@ "label\n" "string.text" msgid "_Object color" -msgstr "" +msgstr "_Objektuaren kolorea" #: docking3deffects.ui msgctxt "" @@ -1846,7 +1841,7 @@ "label\n" "string.text" msgid "_Illumination color" -msgstr "" +msgstr "_Argi-kolorea" #: docking3deffects.ui msgctxt "" @@ -1855,7 +1850,7 @@ "0\n" "stringlist.text" msgid "User-defined" -msgstr "" +msgstr "Erabiltzaileak definituta" #: docking3deffects.ui msgctxt "" @@ -1864,7 +1859,7 @@ "1\n" "stringlist.text" msgid "Metal" -msgstr "" +msgstr "Metala" #: docking3deffects.ui msgctxt "" @@ -1873,7 +1868,7 @@ "2\n" "stringlist.text" msgid "Gold" -msgstr "" +msgstr "Urrea" #: docking3deffects.ui msgctxt "" @@ -1882,7 +1877,7 @@ "3\n" "stringlist.text" msgid "Chrome" -msgstr "" +msgstr "Kromoa" #: docking3deffects.ui msgctxt "" @@ -1891,7 +1886,7 @@ "4\n" "stringlist.text" msgid "Plastic" -msgstr "" +msgstr "Plastikoa" #: docking3deffects.ui msgctxt "" @@ -1900,7 +1895,7 @@ "5\n" "stringlist.text" msgid "Wood" -msgstr "" +msgstr "Zura" #: docking3deffects.ui msgctxt "" @@ -1909,7 +1904,7 @@ "tooltip_text\n" "string.text" msgid "Colors Dialog" -msgstr "" +msgstr "Koloreen elkarrizketa-koadroa" #: docking3deffects.ui msgctxt "" @@ -1918,7 +1913,7 @@ "tooltip_text\n" "string.text" msgid "Colors Dialog" -msgstr "" +msgstr "Koloreen elkarrizketa-koadroa" #: docking3deffects.ui msgctxt "" @@ -1927,17 +1922,16 @@ "label\n" "string.text" msgid "Material" -msgstr "" +msgstr "Materiala" #: docking3deffects.ui -#, fuzzy msgctxt "" "docking3deffects.ui\n" "label30\n" "label\n" "string.text" msgid "_Color" -msgstr "_Kolorea:" +msgstr "_Kolorea" #: docking3deffects.ui msgctxt "" @@ -1946,7 +1940,7 @@ "label\n" "string.text" msgid "I_ntensity" -msgstr "" +msgstr "I_ntentsitatea" #: docking3deffects.ui msgctxt "" @@ -1955,7 +1949,7 @@ "tooltip_text\n" "string.text" msgid "Colors Dialog" -msgstr "" +msgstr "Koloreen elkarrizketa-koadroa" #: docking3deffects.ui msgctxt "" @@ -1964,7 +1958,7 @@ "label\n" "string.text" msgid "Specular" -msgstr "" +msgstr "Distira-puntua" #: docking3deffects.ui msgctxt "" @@ -1973,7 +1967,7 @@ "tooltip_text\n" "string.text" msgid "Assign" -msgstr "" +msgstr "Esleitu" #: docking3deffects.ui msgctxt "" @@ -1982,7 +1976,7 @@ "tooltip_text\n" "string.text" msgid "Update" -msgstr "" +msgstr "Eguneratu" #: docking3deffects.ui msgctxt "" @@ -1991,7 +1985,7 @@ "tooltip_text\n" "string.text" msgid "Material" -msgstr "" +msgstr "Materiala" #: docking3deffects.ui msgctxt "" @@ -2000,7 +1994,7 @@ "tooltip_text\n" "string.text" msgid "Textures" -msgstr "" +msgstr "Testurak" #: docking3deffects.ui msgctxt "" @@ -2009,7 +2003,7 @@ "tooltip_text\n" "string.text" msgid "Illumination" -msgstr "" +msgstr "Argiztapena" #: docking3deffects.ui msgctxt "" @@ -2018,7 +2012,7 @@ "tooltip_text\n" "string.text" msgid "Shading" -msgstr "" +msgstr "Itzaldura" #: docking3deffects.ui msgctxt "" @@ -2027,7 +2021,7 @@ "tooltip_text\n" "string.text" msgid "Geometry" -msgstr "" +msgstr "Geometria" #: dockingcolorreplace.ui msgctxt "" @@ -2036,7 +2030,7 @@ "title\n" "string.text" msgid "Color Replacer" -msgstr "" +msgstr "Tanta-kontagailua" #: dockingcolorreplace.ui msgctxt "" @@ -2045,7 +2039,7 @@ "label\n" "string.text" msgid "Source color" -msgstr "" +msgstr "Jatorrizko kolorea" #: dockingcolorreplace.ui msgctxt "" @@ -2054,7 +2048,7 @@ "label\n" "string.text" msgid "Tolerance" -msgstr "" +msgstr "Perdoia" #: dockingcolorreplace.ui msgctxt "" @@ -2063,27 +2057,25 @@ "label\n" "string.text" msgid "Replace with..." -msgstr "" +msgstr "Ordeztu honekin..." #: dockingcolorreplace.ui -#, fuzzy msgctxt "" "dockingcolorreplace.ui\n" "cbx5\n" "label\n" "string.text" msgid "Tr_ansparency" -msgstr "Gardentasuna" +msgstr "G_ardentasuna" #: dockingcolorreplace.ui -#, fuzzy msgctxt "" "dockingcolorreplace.ui\n" "label1\n" "label\n" "string.text" msgid "Colors" -msgstr "_Kolorea:" +msgstr "Koloreak" #: dockingcolorreplace.ui msgctxt "" @@ -2110,7 +2102,7 @@ "title\n" "string.text" msgid "Fontwork" -msgstr "" +msgstr "Fontwork" #: dockingfontwork.ui msgctxt "" @@ -2119,7 +2111,7 @@ "tooltip_text\n" "string.text" msgid "Off" -msgstr "" +msgstr "Desaktibatuta" #: dockingfontwork.ui msgctxt "" @@ -2128,7 +2120,7 @@ "tooltip_text\n" "string.text" msgid "Rotate" -msgstr "" +msgstr "Biratu" #: dockingfontwork.ui msgctxt "" @@ -2137,7 +2129,7 @@ "tooltip_text\n" "string.text" msgid "Upright" -msgstr "" +msgstr "Zutik" #: dockingfontwork.ui msgctxt "" @@ -2146,7 +2138,7 @@ "tooltip_text\n" "string.text" msgid "Slant Horizontal" -msgstr "" +msgstr "Inklinatu horizontalki" #: dockingfontwork.ui msgctxt "" @@ -2155,7 +2147,7 @@ "tooltip_text\n" "string.text" msgid "Slant Vertical" -msgstr "" +msgstr "Inklinatu bertikalki" #: dockingfontwork.ui msgctxt "" @@ -2164,7 +2156,7 @@ "tooltip_text\n" "string.text" msgid "Orientation" -msgstr "" +msgstr "Orientazioa" #: dockingfontwork.ui msgctxt "" @@ -2173,7 +2165,7 @@ "tooltip_text\n" "string.text" msgid "Align Left" -msgstr "" +msgstr "Lerrokatu ezkerrean" #: dockingfontwork.ui msgctxt "" @@ -2191,7 +2183,7 @@ "tooltip_text\n" "string.text" msgid "Align Right" -msgstr "" +msgstr "Lerrokatu eskuinean" #: dockingfontwork.ui msgctxt "" @@ -2200,17 +2192,16 @@ "tooltip_text\n" "string.text" msgid "AutoSize Text" -msgstr "" +msgstr "Testu-tamaina automatikoa" #: dockingfontwork.ui -#, fuzzy msgctxt "" "dockingfontwork.ui\n" "distance\n" "tooltip_text\n" "string.text" msgid "Distance" -msgstr "Instantzia" +msgstr "Distantzia" #: dockingfontwork.ui msgctxt "" @@ -2228,7 +2219,7 @@ "tooltip_text\n" "string.text" msgid "Contour" -msgstr "" +msgstr "Ingerada" #: dockingfontwork.ui msgctxt "" @@ -2237,7 +2228,7 @@ "tooltip_text\n" "string.text" msgid "Text Contour" -msgstr "" +msgstr "Testu-ingerada" #: dockingfontwork.ui msgctxt "" @@ -2246,17 +2237,16 @@ "tooltip_text\n" "string.text" msgid "No Shadow" -msgstr "" +msgstr "Itzalik ez" #: dockingfontwork.ui -#, fuzzy msgctxt "" "dockingfontwork.ui\n" "vertical\n" "tooltip_text\n" "string.text" msgid "Vertical" -msgstr "_Bertikala:" +msgstr "Bertikala" #: dockingfontwork.ui msgctxt "" @@ -2265,27 +2255,25 @@ "tooltip_text\n" "string.text" msgid "Slant" -msgstr "" +msgstr "Inklinatu" #: dockingfontwork.ui -#, fuzzy msgctxt "" "dockingfontwork.ui\n" "distancex\n" "tooltip_text\n" "string.text" msgid "Distance X" -msgstr "Instantzia" +msgstr "X distantzia" #: dockingfontwork.ui -#, fuzzy msgctxt "" "dockingfontwork.ui\n" "distancey\n" "tooltip_text\n" "string.text" msgid "Distance Y" -msgstr "Instantzia" +msgstr "Y distantzia" #: dockingfontwork.ui msgctxt "" @@ -2294,7 +2282,7 @@ "tooltip_text\n" "string.text" msgid "Shadow Color" -msgstr "" +msgstr "Itzalaren kolorea" #: docrecoverybrokendialog.ui msgctxt "" @@ -2679,7 +2667,7 @@ "label\n" "string.text" msgid "Similarities..." -msgstr "" +msgstr "Antzekotasunak..." #: findreplacedialog.ui msgctxt "" @@ -2715,7 +2703,7 @@ "label\n" "string.text" msgid "Sounds..." -msgstr "" +msgstr "Soinuak..." #: findreplacedialog.ui msgctxt "" @@ -2823,7 +2811,7 @@ "label\n" "string.text" msgid "Search formatted display string" -msgstr "" +msgstr "Bilatu formatudun bistaratze-katea" #: findreplacedialog.ui msgctxt "" @@ -4435,7 +4423,7 @@ "tooltip_markup\n" "string.text" msgid "Fill gradient from." -msgstr "" +msgstr "Bete gradientea hemendik." #: sidebararea.ui msgctxt "" @@ -4444,7 +4432,7 @@ "tooltip_text\n" "string.text" msgid "Fill gradient from." -msgstr "" +msgstr "Bete gradientea hemendik." #: sidebararea.ui msgctxt "" @@ -4606,7 +4594,7 @@ "tooltip_markup\n" "string.text" msgid "Fill gradient to." -msgstr "" +msgstr "Bete gradientea hona." #: sidebararea.ui msgctxt "" @@ -4615,7 +4603,7 @@ "tooltip_text\n" "string.text" msgid "Fill gradient to." -msgstr "" +msgstr "Bete gradientea hona." #: sidebararea.ui msgctxt "" @@ -4624,7 +4612,7 @@ "tooltip_markup\n" "string.text" msgid "Select the gradient angle." -msgstr "" +msgstr "Aukeratu gradientearen angelua." #: sidebararea.ui msgctxt "" @@ -4633,10 +4621,9 @@ "tooltip_text\n" "string.text" msgid "Select the gradient angle." -msgstr "" +msgstr "Aukeratu gradientearen angelua." #: sidebararea.ui -#, fuzzy msgctxt "" "sidebararea.ui\n" "gradientstyle\n" @@ -4646,7 +4633,6 @@ msgstr "Lineala" #: sidebararea.ui -#, fuzzy msgctxt "" "sidebararea.ui\n" "gradientstyle\n" @@ -4656,7 +4642,6 @@ msgstr "Axiala" #: sidebararea.ui -#, fuzzy msgctxt "" "sidebararea.ui\n" "gradientstyle\n" @@ -4666,7 +4651,6 @@ msgstr "Erradiala" #: sidebararea.ui -#, fuzzy msgctxt "" "sidebararea.ui\n" "gradientstyle\n" @@ -4676,7 +4660,6 @@ msgstr "Elipsoidea" #: sidebararea.ui -#, fuzzy msgctxt "" "sidebararea.ui\n" "gradientstyle\n" @@ -4686,7 +4669,6 @@ msgstr "Koadratikoa" #: sidebararea.ui -#, fuzzy msgctxt "" "sidebararea.ui\n" "gradientstyle\n" @@ -4702,7 +4684,7 @@ "tooltip_markup\n" "string.text" msgid "Select the gradient style." -msgstr "" +msgstr "Aukeratu gradientearen estiloa." #: sidebararea.ui msgctxt "" @@ -4711,27 +4693,25 @@ "tooltip_text\n" "string.text" msgid "Select the gradient style." -msgstr "" +msgstr "Aukeratu gradientearen estiloa." #: sidebararea.ui -#, fuzzy msgctxt "" "sidebararea.ui\n" "transparencyslider\n" "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 -#, fuzzy msgctxt "" "sidebararea.ui\n" "transparencyslider\n" "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." #: sidebararea.ui msgctxt "" @@ -4740,7 +4720,7 @@ "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 "" @@ -4749,7 +4729,7 @@ "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 "" @@ -5616,14 +5596,13 @@ msgstr "Sartu posizio horizontalaren balioa." #: sidebarpossize.ui -#, fuzzy msgctxt "" "sidebarpossize.ui\n" "horizontalpos\n" "AtkObject::accessible-name\n" "string.text" msgid "Horizontal" -msgstr "_Horizontala:" +msgstr "Horizontala" #: sidebarpossize.ui msgctxt "" @@ -5653,14 +5632,13 @@ msgstr "Sartu posizio bertikalaren balioa." #: sidebarpossize.ui -#, fuzzy msgctxt "" "sidebarpossize.ui\n" "verticalpos\n" "AtkObject::accessible-name\n" "string.text" msgid "Vertical" -msgstr "_Bertikala:" +msgstr "Bertikala" #: sidebarpossize.ui msgctxt "" @@ -5690,14 +5668,13 @@ msgstr "Sartu hautatutako objektuaren zabalera." #: sidebarpossize.ui -#, fuzzy msgctxt "" "sidebarpossize.ui\n" "selectwidth\n" "AtkObject::accessible-name\n" "string.text" msgid "Width" -msgstr "Zabalera:" +msgstr "Zabalera" #: sidebarpossize.ui msgctxt "" @@ -5727,14 +5704,13 @@ msgstr "Sartu hautatutako objektuaren altuera." #: sidebarpossize.ui -#, fuzzy msgctxt "" "sidebarpossize.ui\n" "selectheight\n" "AtkObject::accessible-name\n" "string.text" msgid "Height" -msgstr "Altuera:" +msgstr "Altuera" #: sidebarpossize.ui msgctxt "" @@ -5773,14 +5749,13 @@ msgstr "B_iraketa:" #: sidebarpossize.ui -#, fuzzy msgctxt "" "sidebarpossize.ui\n" "orientationcontrol-atkobject\n" "AtkObject::accessible-name\n" "string.text" msgid "Rotation" -msgstr "B_iraketa:" +msgstr "Biraketa" #: sidebarpossize.ui msgctxt "" @@ -5852,7 +5827,7 @@ "label\n" "string.text" msgid "Enable" -msgstr "" +msgstr "Gaitu" #: sidebarshadow.ui msgctxt "" @@ -5861,37 +5836,34 @@ "label\n" "string.text" msgid "Angle" -msgstr "" +msgstr "Angelua" #: sidebarshadow.ui -#, fuzzy msgctxt "" "sidebarshadow.ui\n" "distance\n" "label\n" "string.text" msgid "Distance" -msgstr "Instantzia" +msgstr "Distantzia" #: sidebarshadow.ui -#, fuzzy msgctxt "" "sidebarshadow.ui\n" "transparency_label\n" "label\n" "string.text" msgid "Transparency:" -msgstr "_Gardentasuna:" +msgstr "Gardentasuna:" #: sidebarshadow.ui -#, fuzzy msgctxt "" "sidebarshadow.ui\n" "color\n" "label\n" "string.text" msgid "Color:" -msgstr "_Kolorea:" +msgstr "Kolorea:" #: textcontrolchardialog.ui msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/eu/sw/source/ui/app.po libreoffice-5.1.2~rc2/translations/source/eu/sw/source/ui/app.po --- libreoffice-5.1.1~rc2/translations/source/eu/sw/source/ui/app.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/eu/sw/source/ui/app.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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:38+0000\n" -"Last-Translator: system user <>\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" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1435279138.000000\n" +"X-POOTLE-MTIME: 1457859781.000000\n" #: app.src msgctxt "" @@ -687,7 +687,7 @@ "STR_SHAPE_DEFNAME\n" "string.text" msgid "Shape" -msgstr "" +msgstr "Forma" #: app.src msgctxt "" @@ -973,7 +973,7 @@ "STR_COL\n" "string.text" msgid "Column" -msgstr "~Zutabea" +msgstr "Zutabea" #: app.src msgctxt "" @@ -1150,14 +1150,13 @@ msgstr "Pasahitzez babestutako fitxategiak ezin dira ireki." #: 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 "Hau ez da WinWord6 fitxategia." +msgstr "Hau ez da baliozko WinWord6 fitxategi bat." #: error.src msgctxt "" @@ -1187,14 +1186,13 @@ msgstr "Fitxategia bertsio berriagoan idatzi da." #: 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 "Hau ez da WinWord97 fitxategia." +msgstr "Hau ez da baliozko WinWord97 fitxategi bat." #: error.src msgctxt "" @@ -1426,14 +1424,13 @@ msgstr "Oin-oharra/Amaiera-oharra~..." #: 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 "Indi~ze-sarrera..." +msgstr "Editatu Indi~ze-sarrera..." #: mn.src msgctxt "" @@ -1460,7 +1457,7 @@ "FN_COPY_HYPERLINK_LOCATION\n" "menuitem.text" msgid "Copy Hyper~link" -msgstr "" +msgstr "Kopiatu hiper~esteka" #: mn.src msgctxt "" @@ -1550,7 +1547,7 @@ "FN_UPDATE_CUR_TOX\n" "menuitem.text" msgid "~Update Index or Table of Contents" -msgstr "" +msgstr "~Eguneratu indizea edo aurkibidea" #: mn.src msgctxt "" @@ -1559,7 +1556,7 @@ "FN_EDIT_CURRENT_TOX\n" "menuitem.text" msgid "~Edit Index or Table of Contents" -msgstr "" +msgstr "~Editatu indizea edo aurkibidea" #: mn.src msgctxt "" @@ -1568,7 +1565,7 @@ "FN_REMOVE_CUR_TOX\n" "menuitem.text" msgid "Delete Index or Table of Contents" -msgstr "" +msgstr "Ezabatu indizea edo aurkibidea" #: mn.src msgctxt "" @@ -1577,7 +1574,7 @@ "FN_INSERT_CAPTION\n" "menuitem.text" msgid "Insert ~Caption..." -msgstr "" +msgstr "Txertatu E~pigrafea..." #: mn.src msgctxt "" @@ -1586,7 +1583,7 @@ "FN_TABLE_INSERT_ROW_BEFORE\n" "menuitem.text" msgid "Rows Above" -msgstr "" +msgstr "Errenkadak gainean" #: mn.src msgctxt "" @@ -1595,7 +1592,7 @@ "FN_TABLE_INSERT_ROW_AFTER\n" "menuitem.text" msgid "Rows Below" -msgstr "" +msgstr "Errenkadak azpian" #: mn.src msgctxt "" @@ -1604,7 +1601,7 @@ "FN_TABLE_INSERT_ROW_DLG\n" "menuitem.text" msgid "~Rows..." -msgstr "" +msgstr "E~rrenkadak..." #: mn.src msgctxt "" @@ -1613,7 +1610,7 @@ "FN_TABLE_INSERT_COL_BEFORE\n" "menuitem.text" msgid "Columns Left" -msgstr "" +msgstr "Zutabeak ezkerrean" #: mn.src msgctxt "" @@ -1622,7 +1619,7 @@ "FN_TABLE_INSERT_COL_AFTER\n" "menuitem.text" msgid "Columns Right" -msgstr "" +msgstr "Zutabeak eskuman" #: mn.src msgctxt "" @@ -1631,7 +1628,7 @@ "FN_TABLE_INSERT_COL_DLG\n" "menuitem.text" msgid "~Columns..." -msgstr "" +msgstr "~Zutabeak..." #: mn.src msgctxt "" @@ -1640,37 +1637,34 @@ "DUMMY\n" "menuitem.text" msgid "~Insert" -msgstr "" +msgstr "~Txertatu" #: mn.src -#, fuzzy msgctxt "" "mn.src\n" "MN_TABLE.DUMMY+1\n" "FN_TABLE_DELETE_ROW\n" "menuitem.text" msgid "~Rows" -msgstr "Errenkadak" +msgstr "~Errenkadak" #: mn.src -#, fuzzy msgctxt "" "mn.src\n" "MN_TABLE.DUMMY+1\n" "FN_TABLE_DELETE_COL\n" "menuitem.text" msgid "~Columns" -msgstr "~Zutabea" +msgstr "~Zutabeak" #: mn.src -#, fuzzy msgctxt "" "mn.src\n" "MN_TABLE.DUMMY+1\n" "FN_TABLE_DELETE_TABLE\n" "menuitem.text" msgid "~Table" -msgstr "Taula" +msgstr "~Taula" #: mn.src msgctxt "" @@ -1682,34 +1676,31 @@ msgstr "E~zabatu" #: mn.src -#, fuzzy msgctxt "" "mn.src\n" "MN_TABLE.DUMMY+2\n" "FN_TABLE_SELECT_ROW\n" "menuitem.text" msgid "~Rows" -msgstr "Errenkadak" +msgstr "~Errenkadak" #: mn.src -#, fuzzy msgctxt "" "mn.src\n" "MN_TABLE.DUMMY+2\n" "FN_TABLE_SELECT_COL\n" "menuitem.text" msgid "~Columns" -msgstr "~Zutabea" +msgstr "~Zutabeak" #: mn.src -#, fuzzy msgctxt "" "mn.src\n" "MN_TABLE.DUMMY+2\n" "FN_TABLE_SELECT_ALL\n" "menuitem.text" msgid "~Table" -msgstr "Taula" +msgstr "~Taula" #: mn.src msgctxt "" @@ -1718,7 +1709,7 @@ "FN_TABLE_SELECT_CELL\n" "menuitem.text" msgid "C~ell" -msgstr "" +msgstr "~Gelaxka" #: mn.src msgctxt "" @@ -1781,7 +1772,7 @@ "FN_TABLE_SET_COL_WIDTH\n" "menuitem.text" msgid "~Column Width..." -msgstr "" +msgstr "~Zutabe-zabalera..." #: mn.src msgctxt "" @@ -1790,7 +1781,7 @@ "FN_TABLE_ADJUST_CELLS\n" "menuitem.text" msgid "~Optimal Column Width" -msgstr "" +msgstr "Zutabe-zabalera ~optimoa" #: mn.src msgctxt "" @@ -1799,7 +1790,7 @@ "FN_TABLE_BALANCE_CELLS\n" "menuitem.text" msgid "~Distribute Columns Equally" -msgstr "" +msgstr "~Banatu zutabeak uniformeki" #: mn.src msgctxt "" @@ -1808,7 +1799,7 @@ "FN_TABLE_SET_ROW_HEIGHT\n" "menuitem.text" msgid "~Row Height..." -msgstr "" +msgstr "E~rrenkada-altuera..." #: mn.src msgctxt "" @@ -1817,7 +1808,7 @@ "FN_TABLE_OPTIMAL_HEIGHT\n" "menuitem.text" msgid "Optimal Row ~Height" -msgstr "" +msgstr "Errenkada-~altuera optimoa" #: mn.src msgctxt "" @@ -1826,7 +1817,7 @@ "FN_TABLE_BALANCE_ROWS\n" "menuitem.text" msgid "Distribute Rows ~Equally" -msgstr "" +msgstr "Banatu errenkadak ~uniformeki" #: mn.src msgctxt "" @@ -1835,7 +1826,7 @@ "DUMMY+4\n" "menuitem.text" msgid "Si~ze" -msgstr "" +msgstr "~Tamaina" #: mn.src msgctxt "" @@ -1853,7 +1844,7 @@ "FN_FORMAT_TABLE_DLG\n" "menuitem.text" msgid "~Table Properties..." -msgstr "" +msgstr "~Taularen propietateak..." #: mn.src msgctxt "" @@ -1964,14 +1955,13 @@ msgstr "Ezabatu iruzkin ~denak" #: mn.src -#, fuzzy msgctxt "" "mn.src\n" "MN_ANNOTATIONS\n" "FN_FORMAT_ALL_NOTES\n" "menuitem.text" msgid "~Format All Comments..." -msgstr "Eman ~formatua iruzkin guztiei" +msgstr "Eman ~formatua iruzkin guztiei..." #: mn.src msgctxt "" @@ -1996,7 +1986,7 @@ "FN_FRAME_WRAP_CONTOUR\n" "menuitem.text" msgid "Enable ~Contour" -msgstr "" +msgstr "Gaitu ~ingerada" #: mn.src msgctxt "" @@ -2041,7 +2031,7 @@ "FN_FRAME_WRAP_LEFT\n" "menuitem.text" msgid "Wrap ~Before" -msgstr "" +msgstr "Egokitu ~aurretik" #: mn.src msgctxt "" @@ -2050,7 +2040,7 @@ "FN_FRAME_WRAP_RIGHT\n" "menuitem.text" msgid "Wrap ~After" -msgstr "" +msgstr "Egokitu ~ondoren" #: mn.src msgctxt "" @@ -2361,7 +2351,7 @@ "SID_MENU_MANAGE_GRAPHIC\n" "menuitem.text" msgid "~Rotate" -msgstr "" +msgstr "~Biratu" #: mn.src msgctxt "" @@ -2370,7 +2360,7 @@ "FN_FORMAT_GRAFIC_DLG\n" "menuitem.text" msgid "Format ~Image..." -msgstr "" +msgstr "Formateatu ~irudia..." #: mn.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/eu/sw/source/ui/dbui.po libreoffice-5.1.2~rc2/translations/source/eu/sw/source/ui/dbui.po --- libreoffice-5.1.1~rc2/translations/source/eu/sw/source/ui/dbui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/eu/sw/source/ui/dbui.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,18 +3,18 @@ msgstr "" "Project-Id-Version: PACKAGE 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 @@ "ST_SAVESTART\n" "string.text" msgid "Save ~starting document" -msgstr "Gorde _hasierako dokumentua" +msgstr "Gorde ~hasierako dokumentua" #: dbui.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/eu/sw/source/ui/dochdl.po libreoffice-5.1.2~rc2/translations/source/eu/sw/source/ui/dochdl.po --- libreoffice-5.1.1~rc2/translations/source/eu/sw/source/ui/dochdl.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/eu/sw/source/ui/dochdl.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\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-01-09 23:40+0000\n" -"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n" +"PO-Revision-Date: 2016-02-26 21:57+0000\n" +"Last-Translator: Osoitz <oelkoro@gmail.com>\n" "Language-Team: Librezale <librezale@librezale.org>\n" "Language: eu\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1420846824.000000\n" +"X-POOTLE-MTIME: 1456523879.000000\n" #: dochdl.src msgctxt "" @@ -30,7 +30,7 @@ "STR_NO_TABLE\n" "string.text" msgid "A table with no rows or no cells cannot be inserted" -msgstr "" +msgstr "Ezin da erernkada eta zutabe gabeko taula bat txertatu" #: dochdl.src msgctxt "" @@ -38,7 +38,7 @@ "STR_TABLE_TOO_LARGE\n" "string.text" msgid "The table cannot be inserted because it is too large" -msgstr "" +msgstr "Ezin da taula txertatu handiegia delako" #: dochdl.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/eu/sw/source/ui/envelp.po libreoffice-5.1.2~rc2/translations/source/eu/sw/source/ui/envelp.po --- libreoffice-5.1.1~rc2/translations/source/eu/sw/source/ui/envelp.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/eu/sw/source/ui/envelp.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,17 +3,18 @@ msgstr "" "Project-Id-Version: PACKAGE 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 @@ "STR_PHEIGHT\n" "string.text" msgid "Page Height" -msgstr "Orrialde-~altuera" +msgstr "Orrialde-altuera" diff -Nru libreoffice-5.1.1~rc2/translations/source/eu/sw/source/ui/misc.po libreoffice-5.1.2~rc2/translations/source/eu/sw/source/ui/misc.po --- libreoffice-5.1.1~rc2/translations/source/eu/sw/source/ui/misc.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/eu/sw/source/ui/misc.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,17 +4,17 @@ "Project-Id-Version: PACKAGE VERSION\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-01-09 23:40+0000\n" -"Last-Translator: Asier <asiersar@yahoo.com>\n" +"PO-Revision-Date: 2016-02-26 21:58+0000\n" +"Last-Translator: Osoitz <oelkoro@gmail.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: eu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "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: 1420846855.000000\n" +"X-POOTLE-MTIME: 1456523883.000000\n" #: glossary.src msgctxt "" @@ -105,7 +105,7 @@ "Graphics\n" "itemlist.text" msgid "Graphics" -msgstr "" +msgstr "Grafikoak" #: numberingtypelistbox.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/eu/sw/source/uibase/lingu.po libreoffice-5.1.2~rc2/translations/source/eu/sw/source/uibase/lingu.po --- libreoffice-5.1.1~rc2/translations/source/eu/sw/source/uibase/lingu.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/eu/sw/source/uibase/lingu.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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-12-06 10:17+0000\n" -"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n" +"PO-Revision-Date: 2016-02-26 20:56+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 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1417861056.000000\n" +"X-POOTLE-MTIME: 1456520164.000000\n" #: olmenu.src msgctxt "" @@ -44,14 +44,13 @@ msgstr "Gehitu ~hiztegiari" #: olmenu.src -#, fuzzy msgctxt "" "olmenu.src\n" "MN_SPELL_POPUP\n" "MN_AUTOCORR\n" "menuitem.text" msgid "Always correct ~to" -msgstr "Beti zuzendu honela:" +msgstr "Beti zuzendu ~honela:" #: olmenu.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/eu/sw/source/uibase/utlui.po libreoffice-5.1.2~rc2/translations/source/eu/sw/source/uibase/utlui.po --- libreoffice-5.1.1~rc2/translations/source/eu/sw/source/uibase/utlui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/eu/sw/source/uibase/utlui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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-12 11:21+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2016-02-26 21:59+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 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1431429719.000000\n" +"X-POOTLE-MTIME: 1456523963.000000\n" #: attrdesc.src msgctxt "" @@ -1689,7 +1689,6 @@ msgstr "Edukiaren ikuspegia" #: navipi.src -#, fuzzy msgctxt "" "navipi.src\n" "STR_OUTLINE_LEVEL\n" @@ -1698,7 +1697,6 @@ msgstr "Eskema-maila" #: navipi.src -#, fuzzy msgctxt "" "navipi.src\n" "STR_DRAGMODE\n" @@ -1707,7 +1705,6 @@ msgstr "Arrastatze modua" #: navipi.src -#, fuzzy msgctxt "" "navipi.src\n" "STR_HYPERLINK\n" @@ -1716,7 +1713,6 @@ msgstr "Txertatu hiperesteka gisa" #: navipi.src -#, fuzzy msgctxt "" "navipi.src\n" "STR_LINK_REGION\n" @@ -1725,7 +1721,6 @@ msgstr "Txertatu esteka gisa" #: navipi.src -#, fuzzy msgctxt "" "navipi.src\n" "STR_COPY_REGION\n" @@ -1734,16 +1729,14 @@ msgstr "Txertatu kopia gisa" #: navipi.src -#, fuzzy msgctxt "" "navipi.src\n" "STR_DISPLAY\n" "string.text" msgid "Display" -msgstr "Erakutsi" +msgstr "Bistaratu" #: navipi.src -#, fuzzy msgctxt "" "navipi.src\n" "STR_ACTIVE_VIEW\n" @@ -1752,7 +1745,6 @@ msgstr "Leiho aktiboa" #: navipi.src -#, fuzzy msgctxt "" "navipi.src\n" "STR_HIDDEN\n" @@ -1761,7 +1753,6 @@ msgstr "ezkutukoak" #: navipi.src -#, fuzzy msgctxt "" "navipi.src\n" "STR_ACTIVE\n" @@ -1770,7 +1761,6 @@ msgstr "aktiboak" #: navipi.src -#, fuzzy msgctxt "" "navipi.src\n" "STR_INACTIVE\n" @@ -1779,7 +1769,6 @@ msgstr "inaktiboak" #: navipi.src -#, fuzzy msgctxt "" "navipi.src\n" "STR_EDIT_ENTRY\n" @@ -1788,7 +1777,6 @@ msgstr "Editatu..." #: navipi.src -#, fuzzy msgctxt "" "navipi.src\n" "STR_UPDATE\n" @@ -1797,7 +1785,6 @@ msgstr "~Eguneratu" #: navipi.src -#, fuzzy msgctxt "" "navipi.src\n" "STR_EDIT_CONTENT\n" @@ -1806,16 +1793,14 @@ msgstr "Editatu" #: navipi.src -#, fuzzy msgctxt "" "navipi.src\n" "STR_EDIT_LINK\n" "string.text" msgid "Edit link" -msgstr "Editatu estekak" +msgstr "Editatu esteka" #: navipi.src -#, fuzzy msgctxt "" "navipi.src\n" "STR_EDIT_INSERT\n" @@ -1824,7 +1809,6 @@ msgstr "Txertatu" #: navipi.src -#, fuzzy msgctxt "" "navipi.src\n" "STR_INDEX\n" @@ -1833,7 +1817,6 @@ msgstr "~Indizea" #: navipi.src -#, fuzzy msgctxt "" "navipi.src\n" "STR_FILE\n" @@ -1842,7 +1825,6 @@ msgstr "Fitxategia" #: navipi.src -#, fuzzy msgctxt "" "navipi.src\n" "STR_NEW_FILE\n" @@ -1851,7 +1833,6 @@ msgstr "Dokumentu berria" #: navipi.src -#, fuzzy msgctxt "" "navipi.src\n" "STR_INSERT_TEXT\n" @@ -1860,7 +1841,6 @@ msgstr "Testua" #: navipi.src -#, fuzzy msgctxt "" "navipi.src\n" "STR_DELETE\n" @@ -1869,7 +1849,6 @@ msgstr "Ezabatu" #: navipi.src -#, fuzzy msgctxt "" "navipi.src\n" "STR_DELETE_ENTRY\n" @@ -1878,16 +1857,14 @@ msgstr "E~zabatu" #: navipi.src -#, fuzzy msgctxt "" "navipi.src\n" "STR_UPDATE_SEL\n" "string.text" msgid "Selection" -msgstr "Hautatu" +msgstr "Hautapena" #: navipi.src -#, fuzzy msgctxt "" "navipi.src\n" "STR_UPDATE_INDEX\n" @@ -1896,7 +1873,6 @@ msgstr "Indizeak" #: navipi.src -#, fuzzy msgctxt "" "navipi.src\n" "STR_UPDATE_LINK\n" @@ -1905,7 +1881,6 @@ msgstr "Estekak" #: navipi.src -#, fuzzy msgctxt "" "navipi.src\n" "STR_UPDATE_ALL\n" @@ -1914,7 +1889,6 @@ msgstr "Denak" #: navipi.src -#, fuzzy msgctxt "" "navipi.src\n" "STR_REMOVE_INDEX\n" @@ -1923,7 +1897,6 @@ msgstr "~Kendu indizea" #: navipi.src -#, fuzzy msgctxt "" "navipi.src\n" "STR_REMOVE_TBL_PROTECTION\n" @@ -1932,7 +1905,6 @@ msgstr "~Kendu babesa" #: navipi.src -#, fuzzy msgctxt "" "navipi.src\n" "STR_INVISIBLE\n" @@ -1941,7 +1913,6 @@ msgstr "ezkutukoak" #: navipi.src -#, fuzzy msgctxt "" "navipi.src\n" "STR_BROKEN_LINK\n" @@ -1950,7 +1921,6 @@ msgstr "Fitxategia ez da aurkitu: " #: navipi.src -#, fuzzy msgctxt "" "navipi.src\n" "STR_RENAME\n" @@ -1959,7 +1929,6 @@ msgstr "~Izena aldatu" #: navipi.src -#, fuzzy msgctxt "" "navipi.src\n" "STR_READONLY_IDX\n" @@ -1968,7 +1937,6 @@ msgstr "Irakurtzeko ~soilik" #: navipi.src -#, fuzzy msgctxt "" "navipi.src\n" "STR_POSTIT_SHOW\n" @@ -1977,7 +1945,6 @@ msgstr "Erakutsi dena" #: navipi.src -#, fuzzy msgctxt "" "navipi.src\n" "STR_POSTIT_HIDE\n" @@ -1986,7 +1953,6 @@ msgstr "Ezkutatu denak" #: navipi.src -#, fuzzy msgctxt "" "navipi.src\n" "STR_POSTIT_DELETE\n" @@ -2016,7 +1982,7 @@ "STR_VIEWLAYOUT_MULTI\n" "string.text" msgid "Multiple-page view" -msgstr "" +msgstr "Hainbat orrialdeko ikuspegia" #: statusbar.src msgctxt "" @@ -2032,7 +1998,7 @@ "STR_BOOKCTRL_HINT\n" "string.text" msgid "Page number in document. Click to open Navigator window or right-click for bookmark list." -msgstr "" +msgstr "Orrialde zenbakia dokumentuan. Egin klik nabigatzailearen leihoa irekitzeko edo egin eskumako klik laster-marken zerrendarako." #: statusbar.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/eu/sw/uiconfig/swriter/ui.po libreoffice-5.1.2~rc2/translations/source/eu/sw/uiconfig/swriter/ui.po --- libreoffice-5.1.1~rc2/translations/source/eu/sw/uiconfig/swriter/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/eu/sw/uiconfig/swriter/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 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:47+0000\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" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1438901226.000000\n" +"X-POOTLE-MTIME: 1457410735.000000\n" #: abstractdialog.ui msgctxt "" @@ -1562,7 +1562,7 @@ "label\n" "string.text" msgid "Highlighting" -msgstr "" +msgstr "Nabarmentzea" #: characterproperties.ui msgctxt "" @@ -2651,7 +2651,7 @@ "label\n" "string.text" msgid "A_ddress list elements:" -msgstr "Helbide-zerrendaren elementuak:" +msgstr "Helbi_de-zerrendaren elementuak:" #: datasourcesunavailabledialog.ui msgctxt "" @@ -2966,7 +2966,7 @@ "label\n" "string.text" msgid "Password..." -msgstr "" +msgstr "Pasahitza..." #: editsectiondialog.ui msgctxt "" @@ -5454,10 +5454,9 @@ "2\n" "stringlist.text" msgid "Right-to-left (vertical)" -msgstr "" +msgstr "Eskuinetik ezkerrera (bertikala)" #: frmaddpage.ui -#, fuzzy msgctxt "" "frmaddpage.ui\n" "liststore1\n" @@ -6067,7 +6066,7 @@ "label\n" "string.text" msgid "Line break" -msgstr "~Lerro-jauzia" +msgstr "Lerro-jauzia" #: insertbreak.ui msgctxt "" @@ -6076,7 +6075,7 @@ "label\n" "string.text" msgid "Column break" -msgstr "~Zutabe-jauzia" +msgstr "Zutabe-jauzia" #: insertbreak.ui msgctxt "" @@ -6085,7 +6084,7 @@ "label\n" "string.text" msgid "Page break" -msgstr "~Orrialde-jauzia" +msgstr "Orrialde-jauzia" #: insertbreak.ui msgctxt "" @@ -6103,7 +6102,7 @@ "label\n" "string.text" msgid "Change page number" -msgstr "Aldatu ~orrialde-zenbakia" +msgstr "Aldatu orrialde-zenbakia" #: insertbreak.ui msgctxt "" @@ -6364,7 +6363,7 @@ "label\n" "string.text" msgid "Paragraph _style:" -msgstr "Paragrafo-estiloa:" +msgstr "Paragrafo-_estiloa:" #: insertdbcolumnsdialog.ui msgctxt "" @@ -6652,7 +6651,7 @@ "label\n" "string.text" msgid "Hea_ding" -msgstr "Izenburua" +msgstr "I_zenburua" #: inserttable.ui msgctxt "" @@ -6697,7 +6696,7 @@ "label\n" "string.text" msgid "Auto_Format" -msgstr "Autoformatua" +msgstr "Auto_formatua" #: inserttable.ui msgctxt "" @@ -7525,7 +7524,7 @@ "label\n" "string.text" msgid "_Accept" -msgstr "" +msgstr "_Onartu" #: managechangessidebar.ui msgctxt "" @@ -7534,7 +7533,7 @@ "label\n" "string.text" msgid "_Reject" -msgstr "" +msgstr "_Ezetsi" #: managechangessidebar.ui msgctxt "" @@ -7543,7 +7542,7 @@ "label\n" "string.text" msgid "A_ccept All" -msgstr "" +msgstr "O_nartu dena" #: managechangessidebar.ui msgctxt "" @@ -7552,7 +7551,7 @@ "label\n" "string.text" msgid "R_eject All" -msgstr "" +msgstr "E_zetsi dena" #: mergeconnectdialog.ui msgctxt "" @@ -8362,7 +8361,7 @@ "label\n" "string.text" msgid "Name of the a_ttachment" -msgstr "Eranskinaren izena" +msgstr "Eran_skinaren izena" #: mmoutputpage.ui msgctxt "" @@ -8854,7 +8853,7 @@ "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 "" @@ -9160,7 +9159,7 @@ "label\n" "string.text" msgid "Edit Style" -msgstr "" +msgstr "Editatu estiloa" #: numparapage.ui msgctxt "" @@ -9376,7 +9375,7 @@ "label\n" "string.text" msgid "Level:" -msgstr "_Maila:" +msgstr "Maila:" #: optcaptionpage.ui msgctxt "" @@ -9533,7 +9532,7 @@ "label\n" "string.text" msgid "Take it into account when comparing" -msgstr "" +msgstr "Kontuan izan konparatzean" #: optcomparison.ui msgctxt "" @@ -9542,7 +9541,7 @@ "label\n" "string.text" msgid "Store it when changing the document" -msgstr "" +msgstr "Gorde dokumentua aldatzean" #: optcomparison.ui msgctxt "" @@ -9551,7 +9550,7 @@ "label\n" "string.text" msgid "Random number to improve accuracy of document comparison" -msgstr "" +msgstr "Ausazko zenbakia dokumentuen konparaketaren zehaztasuna hobetzeko" #: optcompatpage.ui msgctxt "" @@ -9938,7 +9937,7 @@ "label\n" "string.text" msgid "Enable cursor" -msgstr "" +msgstr "Gaitu kurtsorea" #: optformataidspage.ui msgctxt "" @@ -9947,7 +9946,7 @@ "label\n" "string.text" msgid "Ignore protection" -msgstr "" +msgstr "Ezikusi babesa" #: optformataidspage.ui msgctxt "" @@ -9956,7 +9955,7 @@ "label\n" "string.text" msgid "Protected Areas" -msgstr "" +msgstr "Babestutako areak" #: optgeneralpage.ui msgctxt "" @@ -10433,7 +10432,7 @@ "label\n" "string.text" msgid "New Table Defaults" -msgstr "" +msgstr "Taula berriaren lehenetsitako balioak" #: opttablepage.ui msgctxt "" @@ -10580,7 +10579,6 @@ msgstr "Z_utabea:" #: opttablepage.ui -#, fuzzy msgctxt "" "opttablepage.ui\n" "label14\n" @@ -11284,7 +11282,7 @@ "label\n" "string.text" msgid "_Rows" -msgstr "Errenkadak" +msgstr "E_rrenkadak" #: previewzoomdialog.ui msgctxt "" @@ -11302,7 +11300,7 @@ "label\n" "string.text" msgid "Page background" -msgstr "Orrialdearen a~tzeko planoa" +msgstr "Orrialdearen atzeko planoa" #: printeroptions.ui msgctxt "" @@ -11311,7 +11309,7 @@ "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 "" @@ -11329,7 +11327,7 @@ "label\n" "string.text" msgid "Text placeholders" -msgstr "~Testuaren leku-markak" +msgstr "Testuaren leku-markak" #: printeroptions.ui msgctxt "" @@ -11338,7 +11336,7 @@ "label\n" "string.text" msgid "Form controls" -msgstr "Inprimakiko ~kontrolak" +msgstr "Inprimakiko kontrolak" #: printeroptions.ui msgctxt "" @@ -11356,7 +11354,7 @@ "label\n" "string.text" msgid "Print text in black" -msgstr "Inprimatu testua ~beltzean" +msgstr "Inprimatu testua beltzean" #: printeroptions.ui msgctxt "" @@ -11374,7 +11372,7 @@ "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 "" @@ -12283,7 +12281,7 @@ "label\n" "string.text" msgid "Password..." -msgstr "" +msgstr "Pasahitza..." #: sectionpage.ui msgctxt "" @@ -12628,7 +12626,6 @@ msgstr "Marjina" #: sidebartheme.ui -#, fuzzy msgctxt "" "sidebartheme.ui\n" "label1\n" @@ -12638,14 +12635,13 @@ msgstr "Letra-tipoa" #: sidebartheme.ui -#, fuzzy msgctxt "" "sidebartheme.ui\n" "label2\n" "label\n" "string.text" msgid "Colors" -msgstr "Kolorea" +msgstr "Koloreak" #: sidebarwrap.ui msgctxt "" @@ -12762,7 +12758,7 @@ "label\n" "string.text" msgid "Enable Contour" -msgstr "" +msgstr "Gaitu ingerada" #: sidebarwrap.ui msgctxt "" @@ -12771,7 +12767,7 @@ "tooltip_markup\n" "string.text" msgid "Click to automatically trim unnecessary parts of the image" -msgstr "" +msgstr "Egin klik iruditik behar ez diren parteak automatikoki mozteko" #: sidebarwrap.ui msgctxt "" @@ -12780,7 +12776,7 @@ "tooltip_text\n" "string.text" msgid "Click to automatically trim unnecessary parts of the image" -msgstr "" +msgstr "Egin klik iruditik behar ez diren parteak automatikoki mozteko" #: sidebarwrap.ui msgctxt "" @@ -12789,7 +12785,7 @@ "label\n" "string.text" msgid "Edit Contour" -msgstr "" +msgstr "Editatu ingerada" #: sidebarwrap.ui msgctxt "" @@ -12798,7 +12794,7 @@ "tooltip_markup\n" "string.text" msgid "Edit the trimmed area of the image" -msgstr "" +msgstr "Editatu iruditik moztutako area" #: sidebarwrap.ui msgctxt "" @@ -12807,10 +12803,9 @@ "tooltip_text\n" "string.text" msgid "Edit the trimmed area of the image" -msgstr "" +msgstr "Editatu iruditik moztutako area" #: sidebarwrap.ui -#, fuzzy msgctxt "" "sidebarwrap.ui\n" "label1\n" @@ -12826,7 +12821,7 @@ "tooltip_markup\n" "string.text" msgid "Set the amount of space between the image and surrounding text" -msgstr "" +msgstr "Ezarri irudia eta inguruko testuaren arteko espazio kopurua" #: sidebarwrap.ui msgctxt "" @@ -12835,7 +12830,7 @@ "tooltip_text\n" "string.text" msgid "Set the amount of space between the image and surrounding text" -msgstr "" +msgstr "Ezarri irudia eta inguruko testuaren arteko espazio kopurua" #: sidebarwrap.ui msgctxt "" @@ -12844,10 +12839,9 @@ "label\n" "string.text" msgid "Custom" -msgstr "" +msgstr "Pertsonalizatua" #: sidebarwrap.ui -#, fuzzy msgctxt "" "sidebarwrap.ui\n" "spacinglist\n" @@ -12863,7 +12857,7 @@ "1\n" "stringlist.text" msgid "Extra Small (0.16cm)" -msgstr "" +msgstr "Oso txikia (0,16cm)" #: sidebarwrap.ui msgctxt "" @@ -12872,7 +12866,7 @@ "2\n" "stringlist.text" msgid "Small (0.32cm)" -msgstr "" +msgstr "Txikia (0,32cm)" #: sidebarwrap.ui msgctxt "" @@ -12881,7 +12875,7 @@ "3\n" "stringlist.text" msgid "Small Medium (0.64cm)" -msgstr "" +msgstr "Txiki ertaina (0,64cm)" #: sidebarwrap.ui msgctxt "" @@ -12890,7 +12884,7 @@ "4\n" "stringlist.text" msgid "Medium (0.95cm)" -msgstr "" +msgstr "Ertaina (0,95cm)" #: sidebarwrap.ui msgctxt "" @@ -12899,7 +12893,7 @@ "5\n" "stringlist.text" msgid "Medium Large (1.27cm)" -msgstr "" +msgstr "Ertain handia (1,27cm)" #: sidebarwrap.ui msgctxt "" @@ -12908,7 +12902,7 @@ "6\n" "stringlist.text" msgid "Large (1.9cm)" -msgstr "" +msgstr "Handia (1,9cm)" #: sidebarwrap.ui msgctxt "" @@ -12917,7 +12911,7 @@ "7\n" "stringlist.text" msgid "Extra Large (2.54cm)" -msgstr "" +msgstr "Oso handia (2,54cm)" #: sortdialog.ui msgctxt "" @@ -13016,7 +13010,7 @@ "label\n" "string.text" msgid "Key 1" -msgstr "~1. gakoa" +msgstr "1. gakoa" #: sortdialog.ui msgctxt "" @@ -13025,7 +13019,7 @@ "label\n" "string.text" msgid "Key 2" -msgstr "~2. gakoa" +msgstr "2. gakoa" #: sortdialog.ui msgctxt "" @@ -13034,7 +13028,7 @@ "label\n" "string.text" msgid "Key 3" -msgstr "~3. gakoa" +msgstr "3. gakoa" #: sortdialog.ui msgctxt "" @@ -13097,7 +13091,7 @@ "label\n" "string.text" msgid "Select..." -msgstr "" +msgstr "Hautatu..." #: sortdialog.ui msgctxt "" @@ -13151,7 +13145,7 @@ "label\n" "string.text" msgid "Copy heading" -msgstr "~Kopiatu izenburua" +msgstr "Kopiatu izenburua" #: splittable.ui msgctxt "" @@ -13160,7 +13154,7 @@ "label\n" "string.text" msgid "Custom heading (apply Style)" -msgstr "Izenburu ~pertsonala (aplikatu estiloa)" +msgstr "Izenburu pertsonala (aplikatu estiloa)" #: splittable.ui msgctxt "" @@ -13169,7 +13163,7 @@ "label\n" "string.text" msgid "Custom heading" -msgstr "Izenburu per~tsonala" +msgstr "Izenburu pertsonala" #: splittable.ui msgctxt "" @@ -13178,7 +13172,7 @@ "label\n" "string.text" msgid "No heading" -msgstr "~Izenbururik ez" +msgstr "Izenbururik ez" #: splittable.ui msgctxt "" @@ -13709,7 +13703,7 @@ "label\n" "string.text" msgid "Highlighting" -msgstr "" +msgstr "Nabarmentzea" #: templatedialog1.ui msgctxt "" @@ -13898,7 +13892,7 @@ "label\n" "string.text" msgid "Highlighting" -msgstr "" +msgstr "Nabarmentzea" #: templatedialog2.ui msgctxt "" @@ -14546,7 +14540,7 @@ "title\n" "string.text" msgid "Insert Index or Table of Contents" -msgstr "" +msgstr "Txertatu indizea edo aurkibidea" #: tocdialog.ui msgctxt "" @@ -14564,7 +14558,7 @@ "label\n" "string.text" msgid "Index or Table of Contents" -msgstr "" +msgstr "Indizea edo aurkibidea" #: tocdialog.ui msgctxt "" @@ -15140,7 +15134,7 @@ "label\n" "string.text" msgid "Create Index or Table of Contents" -msgstr "" +msgstr "Sortu indizea edo aurkibidea" #: tocindexpage.ui msgctxt "" @@ -15224,14 +15218,13 @@ msgstr "_Estiloak" #: tocindexpage.ui -#, fuzzy msgctxt "" "tocindexpage.ui\n" "styles\n" "label\n" "string.text" msgid "Assign styles..." -msgstr "Esleitu estiloak" +msgstr "Esleitu estiloak..." #: tocindexpage.ui msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/eu/uui/source.po libreoffice-5.1.2~rc2/translations/source/eu/uui/source.po --- libreoffice-5.1.1~rc2/translations/source/eu/uui/source.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/eu/uui/source.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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:44+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2016-02-25 14:23+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,10 +14,9 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1435279466.000000\n" +"X-POOTLE-MTIME: 1456410194.000000\n" #: alreadyopen.src -#, fuzzy msgctxt "" "alreadyopen.src\n" "STR_ALREADYOPEN_TITLE\n" @@ -872,7 +871,7 @@ "STR_LOCKFAILED_TITLE\n" "string.text" msgid "Document Could Not Be Locked" -msgstr "" +msgstr "Ezin izan da dokumentua blokeatu" #: lockfailed.src msgctxt "" @@ -888,7 +887,7 @@ "STR_LOCKFAILED_DONTSHOWAGAIN\n" "string.text" msgid "~Do not show this message again" -msgstr "" +msgstr "~Ez erakutsi mezu hau berriro" #: nameclashdlg.src msgctxt "" @@ -899,6 +898,8 @@ "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 "" +"Badago aurretik \"%NAME\" izeneko fitxategi bat \"%FOLDER\" karpetan.\n" +"Hautatu Ordezkatu dagoen fitxategia gainidazteko ala izen berri bat eman." #: nameclashdlg.src msgctxt "" @@ -909,6 +910,8 @@ "A file with the name \"%NAME\" already exists in the location \"%FOLDER\".\n" "Please enter a new name." msgstr "" +"Badago aurretik \"%NAME\" izeneko fitxategi bat \"%FOLDER\" karpetan.\n" +"Eman izen berri bat mesedez." #: nameclashdlg.src msgctxt "" @@ -916,7 +919,7 @@ "STR_SAME_NAME_USED\n" "string.text" msgid "Please provide a different file name!" -msgstr "" +msgstr "Izen desberdin bat eman mesedez!" #: openlocked.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/eu/uui/uiconfig/ui.po libreoffice-5.1.2~rc2/translations/source/eu/uui/uiconfig/ui.po --- libreoffice-5.1.1~rc2/translations/source/eu/uui/uiconfig/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/eu/uui/uiconfig/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\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-12 11:23+0000\n" -"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n" +"PO-Revision-Date: 2016-02-25 14:25+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,10 +14,9 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1431429837.000000\n" +"X-POOTLE-MTIME: 1456410329.000000\n" #: authfallback.ui -#, fuzzy msgctxt "" "authfallback.ui\n" "AuthFallbackDlg\n" @@ -63,44 +62,40 @@ msgstr "_Gogoratu pasahitza" #: logindialog.ui -#, fuzzy msgctxt "" "logindialog.ui\n" "accountft\n" "label\n" "string.text" msgid "A_ccount:" -msgstr "_kontua" +msgstr "_Kontua:" #: logindialog.ui -#, fuzzy msgctxt "" "logindialog.ui\n" "passwordft\n" "label\n" "string.text" msgid "Pass_word:" -msgstr "_Pasahitza" +msgstr "_Pasahitza:" #: logindialog.ui -#, fuzzy msgctxt "" "logindialog.ui\n" "nameft\n" "label\n" "string.text" msgid "_User name:" -msgstr "E_rabiltzaile-izena" +msgstr "E_rabiltzaile-izena:" #: logindialog.ui -#, fuzzy msgctxt "" "logindialog.ui\n" "pathft\n" "label\n" "string.text" msgid "_Path:" -msgstr "_Bide-izena" +msgstr "_Bide-izena:" #: logindialog.ui msgctxt "" @@ -109,10 +104,9 @@ "label\n" "string.text" msgid "_Browse…" -msgstr "" +msgstr "Ara_katu..." #: logindialog.ui -#, fuzzy msgctxt "" "logindialog.ui\n" "loginrealm\n" @@ -123,7 +117,7 @@ "“%2†on %1" msgstr "" "Sartu erabiltzaile-izena eta pasahitza honetarako:\n" -"\"%2\" %1(e)n" +"“%2†%1(e)n" #: logindialog.ui msgctxt "" @@ -184,24 +178,22 @@ msgstr "Dokumentuak sinatutako dokumentu-makroak ditu:" #: macrowarnmedium.ui -#, fuzzy msgctxt "" "macrowarnmedium.ui\n" "descr1aLabel\n" "label\n" "string.text" msgid "The document contains document macros." -msgstr "Dokumentuak sinatutako dokumentu-makroak ditu:" +msgstr "Dokumentuak dokumentu-makroak ditu." #: macrowarnmedium.ui -#, fuzzy msgctxt "" "macrowarnmedium.ui\n" "viewSignsButton\n" "label\n" "string.text" msgid "_View Signatures…" -msgstr "_Ikusi sinadurak..." +msgstr "_Ikusi sinadurak…" #: macrowarnmedium.ui msgctxt "" @@ -384,11 +376,10 @@ msgstr "Ez onartu ziurtagiri hau eta ez konektatu webgune honetara" #: unknownauthdialog.ui -#, fuzzy msgctxt "" "unknownauthdialog.ui\n" "examine\n" "label\n" "string.text" msgid "Examine Certificate…" -msgstr "Aztertu ziurtagiria..." +msgstr "Aztertu ziurtagiria…" diff -Nru libreoffice-5.1.1~rc2/translations/source/eu/vcl/source/src.po libreoffice-5.1.2~rc2/translations/source/eu/vcl/source/src.po --- libreoffice-5.1.1~rc2/translations/source/eu/vcl/source/src.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/eu/vcl/source/src.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\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:31+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2016-02-24 20:10+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 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1449851510.000000\n" +"X-POOTLE-MTIME: 1456344645.000000\n" #: app.src msgctxt "" @@ -22,7 +22,7 @@ "SV_APP_CPUTHREADS\n" "string.text" msgid "CPU Threads: " -msgstr "" +msgstr "PUZ hariak: " #: app.src msgctxt "" @@ -30,7 +30,7 @@ "SV_APP_OSVERSION\n" "string.text" msgid "OS Version: " -msgstr "" +msgstr "SE bertsioa: " #: app.src msgctxt "" @@ -38,7 +38,7 @@ "SV_APP_UIRENDER\n" "string.text" msgid "UI Render: " -msgstr "" +msgstr "EI errendatzailea: " #: app.src msgctxt "" @@ -46,7 +46,7 @@ "SV_APP_GL\n" "string.text" msgid "GL" -msgstr "" +msgstr "GL" #: app.src msgctxt "" @@ -54,7 +54,7 @@ "SV_APP_DEFAULT\n" "string.text" msgid "default" -msgstr "" +msgstr "lehenetsia" #. This is used on buttons for platforms other than windows, there should be a ~ mnemonic in this string #: btntext.src diff -Nru libreoffice-5.1.1~rc2/translations/source/eu/vcl/uiconfig/ui.po libreoffice-5.1.2~rc2/translations/source/eu/vcl/uiconfig/ui.po --- libreoffice-5.1.1~rc2/translations/source/eu/vcl/uiconfig/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/eu/vcl/uiconfig/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 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 @@ "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 @@ "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 @@ "label\n" "string.text" msgid "Pages per sheet" -msgstr "Orrialdeak ~orriko" +msgstr "Orrialdeak orriko" #: printdialog.ui msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/eu/wizards/source/formwizard.po libreoffice-5.1.2~rc2/translations/source/eu/wizards/source/formwizard.po --- libreoffice-5.1.1~rc2/translations/source/eu/wizards/source/formwizard.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/eu/wizards/source/formwizard.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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-09 08:39+0000\n" -"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n" +"PO-Revision-Date: 2016-02-26 19:48+0000\n" +"Last-Translator: Osoitz <oelkoro@gmail.com>\n" "Language-Team: Librezale <librezale@librezale.org>\n" "Language: eu\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1439109596.000000\n" +"X-POOTLE-MTIME: 1456516081.000000\n" #: dbwizres.src msgctxt "" @@ -503,7 +503,7 @@ "The join '<FIELDNAME1>' and '<FIELDNAME2>' has been selected twice.\n" "But joins may only be used once." msgstr "" -" '<FIELDNAME1>' eta '<FIELDNAME2>' batzea bi aldiz hautatu da.\n" +"'<FIELDNAME1>' eta '<FIELDNAME2>' batzea bi aldiz hautatu da.\n" "Aitzitik, batzeak behin bakarrik erabil daitezke." #: dbwizres.src @@ -1255,7 +1255,6 @@ msgstr "kalkulatu maximoa:" #: dbwizres.src -#, fuzzy msgctxt "" "dbwizres.src\n" "RID_DB_QUERY_WIZARD_START + 44\n" diff -Nru libreoffice-5.1.1~rc2/translations/source/eu/wizards/source/template.po libreoffice-5.1.2~rc2/translations/source/eu/wizards/source/template.po --- libreoffice-5.1.1~rc2/translations/source/eu/wizards/source/template.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/eu/wizards/source/template.po 2016-03-29 15:38:48.000000000 +0000 @@ -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 @@ "STYLENAME + 3\n" "string.text" msgid "Black and White" -msgstr "~Beltza eta zuria" +msgstr "Beltza eta zuria" #: template.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/fa/cui/uiconfig/ui.po libreoffice-5.1.2~rc2/translations/source/fa/cui/uiconfig/ui.po --- libreoffice-5.1.1~rc2/translations/source/fa/cui/uiconfig/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/fa/cui/uiconfig/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 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 @@ "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 @@ 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 @@ 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 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/fa/dbaccess/uiconfig/ui.po libreoffice-5.1.2~rc2/translations/source/fa/dbaccess/uiconfig/ui.po --- libreoffice-5.1.1~rc2/translations/source/fa/dbaccess/uiconfig/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/fa/dbaccess/uiconfig/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,17 +4,17 @@ "Project-Id-Version: LibO 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 @@ 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 @@ msgstr "" #: queryfilterdialog.ui +#, fuzzy msgctxt "" "queryfilterdialog.ui\n" "cond1\n" "4\n" "stringlist.text" msgid ">" -msgstr "" +msgstr ">" #: queryfilterdialog.ui msgctxt "" @@ -3017,58 +3020,64 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/fa/extensions/uiconfig/sabpilot/ui.po libreoffice-5.1.2~rc2/translations/source/fa/extensions/uiconfig/sabpilot/ui.po --- libreoffice-5.1.1~rc2/translations/source/fa/extensions/uiconfig/sabpilot/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/fa/extensions/uiconfig/sabpilot/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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 @@ "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 @@ msgstr "" #: gridfieldsselectionpage.ui +#, fuzzy msgctxt "" "gridfieldsselectionpage.ui\n" "fieldright\n" "label\n" "string.text" msgid "->" -msgstr "" +msgstr "->" #: gridfieldsselectionpage.ui msgctxt "" @@ -299,13 +300,14 @@ msgstr "" #: gridfieldsselectionpage.ui +#, fuzzy msgctxt "" "gridfieldsselectionpage.ui\n" "fieldleft\n" "label\n" "string.text" msgid "<-" -msgstr "" +msgstr "<-" #: gridfieldsselectionpage.ui msgctxt "" @@ -380,22 +382,24 @@ 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 @@ msgstr "" #: tableselectionpage.ui +#, fuzzy msgctxt "" "tableselectionpage.ui\n" "search\n" "label\n" "string.text" msgid "_..." -msgstr "" +msgstr "_..." #: tableselectionpage.ui msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/fa/librelogo/source/pythonpath.po libreoffice-5.1.2~rc2/translations/source/fa/librelogo/source/pythonpath.po --- libreoffice-5.1.1~rc2/translations/source/fa/librelogo/source/pythonpath.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/fa/librelogo/source/pythonpath.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,18 +3,18 @@ msgstr "" "Project-Id-Version: LibO 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 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/fa/officecfg/registry/data/org/openoffice/Office.po libreoffice-5.1.2~rc2/translations/source/fa/officecfg/registry/data/org/openoffice/Office.po --- libreoffice-5.1.1~rc2/translations/source/fa/officecfg/registry/data/org/openoffice/Office.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/fa/officecfg/registry/data/org/openoffice/Office.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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 @@ "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 @@ msgstr "" #: PresentationMinimizer.xcu +#, fuzzy msgctxt "" "PresentationMinimizer.xcu\n" "..PresentationMinimizer.Strings\n" "STR_FILESIZESEPARATOR\n" "value.text" msgid "." -msgstr "" +msgstr "." #: PresentationMinimizer.xcu msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/fa/reportdesign/uiconfig/dbreport/ui.po libreoffice-5.1.2~rc2/translations/source/fa/reportdesign/uiconfig/dbreport/ui.po --- libreoffice-5.1.1~rc2/translations/source/fa/reportdesign/uiconfig/dbreport/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/fa/reportdesign/uiconfig/dbreport/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 @@ "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 @@ msgstr "" #: conditionwin.ui +#, fuzzy msgctxt "" "conditionwin.ui\n" "lhsButton\n" "label\n" "string.text" msgid "..." -msgstr "" +msgstr "..." #: conditionwin.ui msgctxt "" @@ -215,13 +216,14 @@ msgstr "" #: conditionwin.ui +#, fuzzy msgctxt "" "conditionwin.ui\n" "rhsButton\n" "label\n" "string.text" msgid "..." -msgstr "" +msgstr "..." #: conditionwin.ui msgctxt "" @@ -278,13 +280,14 @@ msgstr "" #: conditionwin.ui +#, fuzzy msgctxt "" "conditionwin.ui\n" "removeButton\n" "label\n" "string.text" msgid "-" -msgstr "" +msgstr "-" #: conditionwin.ui msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/fa/sc/uiconfig/scalc/ui.po libreoffice-5.1.2~rc2/translations/source/fa/sc/uiconfig/scalc/ui.po --- libreoffice-5.1.1~rc2/translations/source/fa/sc/uiconfig/scalc/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/fa/sc/uiconfig/scalc/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 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 @@ "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 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/fa/sd/uiconfig/simpress/ui.po libreoffice-5.1.2~rc2/translations/source/fa/sd/uiconfig/simpress/ui.po --- libreoffice-5.1.1~rc2/translations/source/fa/sd/uiconfig/simpress/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/fa/sd/uiconfig/simpress/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 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 @@ "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 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/fa/starmath/source.po libreoffice-5.1.2~rc2/translations/source/fa/starmath/source.po --- libreoffice-5.1.1~rc2/translations/source/fa/starmath/source.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/fa/starmath/source.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\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-12 13:26+0200\n" +"POT-Creation-Date: 2016-03-29 16:07+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff -Nru libreoffice-5.1.1~rc2/translations/source/fa/svx/source/form.po libreoffice-5.1.2~rc2/translations/source/fa/svx/source/form.po --- libreoffice-5.1.1~rc2/translations/source/fa/svx/source/form.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/fa/svx/source/form.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 @@ "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 @@ msgstr "" #: fmstring.src +#, fuzzy msgctxt "" "fmstring.src\n" "RID_STR_AUTOFIELD\n" "string.text" msgid "<AutoField>" -msgstr "" +msgstr "<AutoField>" #: fmstring.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/fa/sw/source/ui/dbui.po libreoffice-5.1.2~rc2/translations/source/fa/sw/source/ui/dbui.po --- libreoffice-5.1.1~rc2/translations/source/fa/sw/source/ui/dbui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/fa/sw/source/ui/dbui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 @@ "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 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/fa/sw/source/ui/index.po libreoffice-5.1.2~rc2/translations/source/fa/sw/source/ui/index.po --- libreoffice-5.1.1~rc2/translations/source/fa/sw/source/ui/index.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/fa/sw/source/ui/index.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,17 +3,18 @@ msgstr "" "Project-Id-Version: PACKAGE 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 @@ 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 @@ msgstr "" #: cnttab.src +#, fuzzy msgctxt "" "cnttab.src\n" "STR_TOKEN_PAGE_NUMS\n" "string.text" msgid "#" -msgstr "" +msgstr "#" #: cnttab.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/fa/sw/source/ui/utlui.po libreoffice-5.1.2~rc2/translations/source/fa/sw/source/ui/utlui.po --- libreoffice-5.1.1~rc2/translations/source/fa/sw/source/ui/utlui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/fa/sw/source/ui/utlui.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE 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-20 11:58+0100\n" +"POT-Creation-Date: 2016-03-29 16:07+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff -Nru libreoffice-5.1.1~rc2/translations/source/fa/sw/uiconfig/swriter/ui.po libreoffice-5.1.2~rc2/translations/source/fa/sw/uiconfig/swriter/ui.po --- libreoffice-5.1.1~rc2/translations/source/fa/sw/uiconfig/swriter/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/fa/sw/uiconfig/swriter/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 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 @@ "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 @@ msgstr "تبدیل جدول به متن" #: converttexttable.ui +#, fuzzy msgctxt "" "converttexttable.ui\n" "othered\n" "text\n" "string.text" msgid "," -msgstr "" +msgstr "," #: converttexttable.ui msgctxt "" @@ -2504,13 +2505,14 @@ msgstr "" #: createaddresslist.ui +#, fuzzy msgctxt "" "createaddresslist.ui\n" "PREV\n" "label\n" "string.text" msgid "<" -msgstr "" +msgstr "<" #: createaddresslist.ui msgctxt "" @@ -2522,13 +2524,14 @@ msgstr "" #: createaddresslist.ui +#, fuzzy msgctxt "" "createaddresslist.ui\n" "NEXT\n" "label\n" "string.text" msgid ">" -msgstr "" +msgstr ">" #: createaddresslist.ui msgctxt "" @@ -4437,13 +4440,14 @@ msgstr "" #: fldvarpage.ui +#, fuzzy msgctxt "" "fldvarpage.ui\n" "separator\n" "text\n" "string.text" msgid "." -msgstr "" +msgstr "." #: fldvarpage.ui msgctxt "" @@ -5425,22 +5429,24 @@ 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 @@ 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 @@ 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 @@ msgstr "" #: mmpreparepage.ui +#, fuzzy msgctxt "" "mmpreparepage.ui\n" "prev\n" "label\n" "string.text" msgid "<" -msgstr "" +msgstr "<" #: mmpreparepage.ui msgctxt "" @@ -8729,13 +8738,14 @@ msgstr "" #: mmpreparepage.ui +#, fuzzy msgctxt "" "mmpreparepage.ui\n" "next\n" "label\n" "string.text" msgid ">" -msgstr "" +msgstr ">" #: mmpreparepage.ui #, fuzzy @@ -9583,13 +9593,14 @@ msgstr "موقعیت" #: optcaptionpage.ui +#, fuzzy msgctxt "" "optcaptionpage.ui\n" "numseparator\n" "text\n" "string.text" msgid ". " -msgstr "" +msgstr ". " #: optcaptionpage.ui #, fuzzy @@ -15719,40 +15730,44 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/fa/vcl/source/src.po libreoffice-5.1.2~rc2/translations/source/fa/vcl/source/src.po --- libreoffice-5.1.1~rc2/translations/source/fa/vcl/source/src.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/fa/vcl/source/src.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 @@ "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 @@ 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 @@ msgstr "" #: units.src +#, fuzzy msgctxt "" "units.src\n" "SV_FUNIT_STRINGS\n" "°\n" "itemlist.text" msgid "°" -msgstr "" +msgstr "°" #: units.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/fa/wizards/source/formwizard.po libreoffice-5.1.2~rc2/translations/source/fa/wizards/source/formwizard.po --- libreoffice-5.1.1~rc2/translations/source/fa/wizards/source/formwizard.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/fa/wizards/source/formwizard.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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 @@ "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 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/fr/formula/source/core/resource.po libreoffice-5.1.2~rc2/translations/source/fr/formula/source/core/resource.po --- libreoffice-5.1.1~rc2/translations/source/fr/formula/source/core/resource.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/fr/formula/source/core/resource.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\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-27 00:46+0100\n" +"POT-Creation-Date: 2016-03-29 16:07+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff -Nru libreoffice-5.1.1~rc2/translations/source/fr/sw/source/ui/utlui.po libreoffice-5.1.2~rc2/translations/source/fr/sw/source/ui/utlui.po --- libreoffice-5.1.1~rc2/translations/source/fr/sw/source/ui/utlui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/fr/sw/source/ui/utlui.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\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-19 01:45+0200\n" +"POT-Creation-Date: 2016-03-29 16:07+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff -Nru libreoffice-5.1.1~rc2/translations/source/ga/dbaccess/uiconfig/ui.po libreoffice-5.1.2~rc2/translations/source/ga/dbaccess/uiconfig/ui.po --- libreoffice-5.1.1~rc2/translations/source/ga/dbaccess/uiconfig/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ga/dbaccess/uiconfig/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "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 @@ "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 @@ msgstr "," #: textpage.ui +#, fuzzy msgctxt "" "textpage.ui\n" "decimalseparator\n" "2\n" "stringlist.text" msgid ";" -msgstr "" +msgstr ";" #: textpage.ui msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/gd/filter/source/config/fragments/filters.po libreoffice-5.1.2~rc2/translations/source/gd/filter/source/config/fragments/filters.po --- libreoffice-5.1.1~rc2/translations/source/gd/filter/source/config/fragments/filters.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/gd/filter/source/config/fragments/filters.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\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 @@ "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 @@ 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 @@ msgstr "PDF - Portable Document Format" #: writer_web_png_Export.xcu -#, fuzzy msgctxt "" "writer_web_png_Export.xcu\n" "writer_web_png_Export\n" diff -Nru libreoffice-5.1.1~rc2/translations/source/gd/sfx2/uiconfig/ui.po libreoffice-5.1.2~rc2/translations/source/gd/sfx2/uiconfig/ui.po --- libreoffice-5.1.1~rc2/translations/source/gd/sfx2/uiconfig/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/gd/sfx2/uiconfig/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: LibO 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 @@ "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 @@ msgstr "F_osgail faidhle" #: startcenter.ui -#, fuzzy msgctxt "" "startcenter.ui\n" "open_remote\n" diff -Nru libreoffice-5.1.1~rc2/translations/source/gd/vcl/source/src.po libreoffice-5.1.2~rc2/translations/source/gd/vcl/source/src.po --- libreoffice-5.1.1~rc2/translations/source/gd/vcl/source/src.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/gd/vcl/source/src.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 @@ "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 @@ "SV_APP_CPUTHREADS\n" "string.text" msgid "CPU Threads: " -msgstr "" +msgstr "Snàithleanan an CPU: " #: app.src msgctxt "" @@ -31,7 +31,7 @@ "SV_APP_OSVERSION\n" "string.text" msgid "OS Version: " -msgstr "" +msgstr "Tionndadh an OS: " #: app.src msgctxt "" @@ -39,7 +39,7 @@ "SV_APP_UIRENDER\n" "string.text" msgid "UI Render: " -msgstr "" +msgstr "Reandaradh an UI: " #: app.src msgctxt "" @@ -47,7 +47,7 @@ "SV_APP_GL\n" "string.text" msgid "GL" -msgstr "" +msgstr "GL" #: app.src msgctxt "" @@ -55,7 +55,7 @@ "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 -Nru libreoffice-5.1.1~rc2/translations/source/gl/formula/source/core/resource.po libreoffice-5.1.2~rc2/translations/source/gl/formula/source/core/resource.po --- libreoffice-5.1.1~rc2/translations/source/gl/formula/source/core/resource.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/gl/formula/source/core/resource.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\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-29 16:07+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff -Nru libreoffice-5.1.1~rc2/translations/source/gl/helpcontent2/source/text/scalc/01.po libreoffice-5.1.2~rc2/translations/source/gl/helpcontent2/source/text/scalc/01.po --- libreoffice-5.1.1~rc2/translations/source/gl/helpcontent2/source/text/scalc/01.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/gl/helpcontent2/source/text/scalc/01.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "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 @@ "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 @@ 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 @@ msgstr "menor que" #: 12090103.xhp +#, fuzzy msgctxt "" "12090103.xhp\n" "par_id3155335\n" "17\n" "help.text" msgid ">" -msgstr "" +msgstr ">" #: 12090103.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/gl/helpcontent2/source/text/shared/02.po libreoffice-5.1.2~rc2/translations/source/gl/helpcontent2/source/text/shared/02.po --- libreoffice-5.1.1~rc2/translations/source/gl/helpcontent2/source/text/shared/02.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/gl/helpcontent2/source/text/shared/02.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "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 @@ "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 @@ 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 @@ 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 @@ 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 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/gl/helpcontent2/source/text/shared/autopi.po libreoffice-5.1.2~rc2/translations/source/gl/helpcontent2/source/text/shared/autopi.po --- libreoffice-5.1.1~rc2/translations/source/gl/helpcontent2/source/text/shared/autopi.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/gl/helpcontent2/source/text/shared/autopi.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "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 @@ "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 @@ 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 @@ 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 @@ msgstr "" #: 01090100.xhp +#, fuzzy msgctxt "" "01090100.xhp\n" "par_idN1074A\n" "help.text" msgid "^" -msgstr "" +msgstr "^" #: 01090100.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/gl/helpcontent2/source/text/shared/explorer/database.po libreoffice-5.1.2~rc2/translations/source/gl/helpcontent2/source/text/shared/explorer/database.po --- libreoffice-5.1.1~rc2/translations/source/gl/helpcontent2/source/text/shared/explorer/database.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/gl/helpcontent2/source/text/shared/explorer/database.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 @@ "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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/gl/sd/uiconfig/simpress/ui.po libreoffice-5.1.2~rc2/translations/source/gl/sd/uiconfig/simpress/ui.po --- libreoffice-5.1.1~rc2/translations/source/gl/sd/uiconfig/simpress/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/gl/sd/uiconfig/simpress/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 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-24 21:46+0000\n" +"PO-Revision-Date: 2016-02-26 20:48+0000\n" "Last-Translator: Xosé <xosecalvo@gmail.com>\n" "Language-Team: none\n" "Language: gl\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1448401578.000000\n" +"X-POOTLE-MTIME: 1456519682.000000\n" #: assistentdialog.ui msgctxt "" @@ -1598,7 +1598,7 @@ "label\n" "string.text" msgid "_Find" -msgstr "_Buscar" +msgstr "_Atopar" #: interactionpage.ui msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/gu/dbaccess/uiconfig/ui.po libreoffice-5.1.2~rc2/translations/source/gu/dbaccess/uiconfig/ui.po --- libreoffice-5.1.1~rc2/translations/source/gu/dbaccess/uiconfig/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/gu/dbaccess/uiconfig/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 @@ "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 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/gu/extensions/uiconfig/sabpilot/ui.po libreoffice-5.1.2~rc2/translations/source/gu/extensions/uiconfig/sabpilot/ui.po --- libreoffice-5.1.1~rc2/translations/source/gu/extensions/uiconfig/sabpilot/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/gu/extensions/uiconfig/sabpilot/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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 @@ "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 @@ msgstr "" #: gridfieldsselectionpage.ui +#, fuzzy msgctxt "" "gridfieldsselectionpage.ui\n" "fieldright\n" "label\n" "string.text" msgid "->" -msgstr "" +msgstr "->" #: gridfieldsselectionpage.ui msgctxt "" @@ -308,13 +309,14 @@ msgstr "" #: gridfieldsselectionpage.ui +#, fuzzy msgctxt "" "gridfieldsselectionpage.ui\n" "fieldleft\n" "label\n" "string.text" msgid "<-" -msgstr "" +msgstr "<-" #: gridfieldsselectionpage.ui msgctxt "" @@ -389,22 +391,24 @@ 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 @@ msgstr "" #: tableselectionpage.ui +#, fuzzy msgctxt "" "tableselectionpage.ui\n" "search\n" "label\n" "string.text" msgid "_..." -msgstr "" +msgstr "_..." #: tableselectionpage.ui msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/gu/formula/source/core/resource.po libreoffice-5.1.2~rc2/translations/source/gu/formula/source/core/resource.po --- libreoffice-5.1.1~rc2/translations/source/gu/formula/source/core/resource.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/gu/formula/source/core/resource.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\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-29 16:07+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff -Nru libreoffice-5.1.1~rc2/translations/source/gu/helpcontent2/source/text/scalc/01.po libreoffice-5.1.2~rc2/translations/source/gu/helpcontent2/source/text/scalc/01.po --- libreoffice-5.1.1~rc2/translations/source/gu/helpcontent2/source/text/scalc/01.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/gu/helpcontent2/source/text/scalc/01.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 @@ "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 @@ 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 @@ msgstr "less than" #: 12090103.xhp +#, fuzzy msgctxt "" "12090103.xhp\n" "par_id3155335\n" "17\n" "help.text" msgid ">" -msgstr "" +msgstr ">" #: 12090103.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/gu/helpcontent2/source/text/shared/00.po libreoffice-5.1.2~rc2/translations/source/gu/helpcontent2/source/text/shared/00.po --- libreoffice-5.1.1~rc2/translations/source/gu/helpcontent2/source/text/shared/00.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/gu/helpcontent2/source/text/shared/00.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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 @@ "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 @@ msgstr "" #: 00000021.xhp +#, fuzzy msgctxt "" "00000021.xhp\n" "par_id100120091238112\n" "help.text" msgid "-" -msgstr "" +msgstr "-" #: 00000021.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/gu/helpcontent2/source/text/shared/01.po libreoffice-5.1.2~rc2/translations/source/gu/helpcontent2/source/text/shared/01.po --- libreoffice-5.1.1~rc2/translations/source/gu/helpcontent2/source/text/shared/01.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/gu/helpcontent2/source/text/shared/01.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 @@ "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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ msgstr "Explanation" #: 05020301.xhp +#, fuzzy msgctxt "" "05020301.xhp\n" "par_id3152801\n" "5\n" "help.text" msgid "#" -msgstr "" +msgstr "#" #: 05020301.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/gu/helpcontent2/source/text/shared/02.po libreoffice-5.1.2~rc2/translations/source/gu/helpcontent2/source/text/shared/02.po --- libreoffice-5.1.1~rc2/translations/source/gu/helpcontent2/source/text/shared/02.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/gu/helpcontent2/source/text/shared/02.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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 @@ "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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/gu/helpcontent2/source/text/shared/autopi.po libreoffice-5.1.2~rc2/translations/source/gu/helpcontent2/source/text/shared/autopi.po --- libreoffice-5.1.1~rc2/translations/source/gu/helpcontent2/source/text/shared/autopi.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/gu/helpcontent2/source/text/shared/autopi.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 @@ "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 @@ 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 @@ 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 @@ msgstr "" #: 01090100.xhp +#, fuzzy msgctxt "" "01090100.xhp\n" "par_idN1074A\n" "help.text" msgid "^" -msgstr "" +msgstr "^" #: 01090100.xhp msgctxt "" @@ -4524,13 +4527,14 @@ 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 @@ 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 @@ 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 @@ msgstr "" #: 01100200.xhp +#, fuzzy msgctxt "" "01100200.xhp\n" "hd_id3154823\n" "5\n" "help.text" msgid "<" -msgstr "" +msgstr "<" #: 01100200.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/gu/helpcontent2/source/text/shared/explorer/database.po libreoffice-5.1.2~rc2/translations/source/gu/helpcontent2/source/text/shared/explorer/database.po --- libreoffice-5.1.1~rc2/translations/source/gu/helpcontent2/source/text/shared/explorer/database.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/gu/helpcontent2/source/text/shared/explorer/database.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 @@ "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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/gu/helpcontent2/source/text/swriter/01.po libreoffice-5.1.2~rc2/translations/source/gu/helpcontent2/source/text/swriter/01.po --- libreoffice-5.1.1~rc2/translations/source/gu/helpcontent2/source/text/swriter/01.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/gu/helpcontent2/source/text/swriter/01.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 @@ "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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/gu/helpcontent2/source/text/swriter/02.po libreoffice-5.1.2~rc2/translations/source/gu/helpcontent2/source/text/swriter/02.po --- libreoffice-5.1.1~rc2/translations/source/gu/helpcontent2/source/text/swriter/02.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/gu/helpcontent2/source/text/swriter/02.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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 @@ "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 @@ msgstr "Subtraction" #: 14020000.xhp +#, fuzzy msgctxt "" "14020000.xhp\n" "par_id3150087\n" "12\n" "help.text" msgid "-" -msgstr "" +msgstr "-" #: 14020000.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/gu/reportdesign/uiconfig/dbreport/ui.po libreoffice-5.1.2~rc2/translations/source/gu/reportdesign/uiconfig/dbreport/ui.po --- libreoffice-5.1.1~rc2/translations/source/gu/reportdesign/uiconfig/dbreport/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/gu/reportdesign/uiconfig/dbreport/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 @@ "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 @@ msgstr "" #: conditionwin.ui +#, fuzzy msgctxt "" "conditionwin.ui\n" "lhsButton\n" "label\n" "string.text" msgid "..." -msgstr "" +msgstr "..." #: conditionwin.ui msgctxt "" @@ -215,13 +216,14 @@ msgstr "" #: conditionwin.ui +#, fuzzy msgctxt "" "conditionwin.ui\n" "rhsButton\n" "label\n" "string.text" msgid "..." -msgstr "" +msgstr "..." #: conditionwin.ui msgctxt "" @@ -278,13 +280,14 @@ msgstr "" #: conditionwin.ui +#, fuzzy msgctxt "" "conditionwin.ui\n" "removeButton\n" "label\n" "string.text" msgid "-" -msgstr "" +msgstr "-" #: conditionwin.ui msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/gu/starmath/source.po libreoffice-5.1.2~rc2/translations/source/gu/starmath/source.po --- libreoffice-5.1.1~rc2/translations/source/gu/starmath/source.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/gu/starmath/source.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\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-12 13:26+0200\n" +"POT-Creation-Date: 2016-03-29 16:07+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff -Nru libreoffice-5.1.1~rc2/translations/source/gu/sw/uiconfig/swriter/ui.po libreoffice-5.1.2~rc2/translations/source/gu/sw/uiconfig/swriter/ui.po --- libreoffice-5.1.1~rc2/translations/source/gu/sw/uiconfig/swriter/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/gu/sw/uiconfig/swriter/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 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 @@ "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 @@ msgstr "|<" #: createaddresslist.ui +#, fuzzy msgctxt "" "createaddresslist.ui\n" "PREV\n" "label\n" "string.text" msgid "<" -msgstr "" +msgstr "<" #: createaddresslist.ui msgctxt "" @@ -2506,13 +2507,14 @@ msgstr ">|" #: createaddresslist.ui +#, fuzzy msgctxt "" "createaddresslist.ui\n" "NEXT\n" "label\n" "string.text" msgid ">" -msgstr "" +msgstr ">" #: createaddresslist.ui msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/gug/formula/source/core/resource.po libreoffice-5.1.2~rc2/translations/source/gug/formula/source/core/resource.po --- libreoffice-5.1.1~rc2/translations/source/gug/formula/source/core/resource.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/gug/formula/source/core/resource.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\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-29 16:07+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff -Nru libreoffice-5.1.1~rc2/translations/source/gug/sw/source/ui/utlui.po libreoffice-5.1.2~rc2/translations/source/gug/sw/source/ui/utlui.po --- libreoffice-5.1.1~rc2/translations/source/gug/sw/source/ui/utlui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/gug/sw/source/ui/utlui.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\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-03 17:32+0200\n" +"POT-Creation-Date: 2016-03-29 16:07+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff -Nru libreoffice-5.1.1~rc2/translations/source/he/cui/uiconfig/ui.po libreoffice-5.1.2~rc2/translations/source/he/cui/uiconfig/ui.po --- libreoffice-5.1.1~rc2/translations/source/he/cui/uiconfig/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/he/cui/uiconfig/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 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 @@ "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 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/he/dbaccess/uiconfig/ui.po libreoffice-5.1.2~rc2/translations/source/he/dbaccess/uiconfig/ui.po --- libreoffice-5.1.1~rc2/translations/source/he/dbaccess/uiconfig/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/he/dbaccess/uiconfig/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\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 @@ "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 @@ 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 @@ msgstr "" #: queryfilterdialog.ui +#, fuzzy msgctxt "" "queryfilterdialog.ui\n" "cond1\n" "4\n" "stringlist.text" msgid ">" -msgstr "" +msgstr ">" #: queryfilterdialog.ui msgctxt "" @@ -3026,58 +3029,64 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/he/extensions/uiconfig/sabpilot/ui.po libreoffice-5.1.2~rc2/translations/source/he/extensions/uiconfig/sabpilot/ui.po --- libreoffice-5.1.1~rc2/translations/source/he/extensions/uiconfig/sabpilot/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/he/extensions/uiconfig/sabpilot/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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 @@ "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 @@ msgstr "" #: gridfieldsselectionpage.ui +#, fuzzy msgctxt "" "gridfieldsselectionpage.ui\n" "fieldright\n" "label\n" "string.text" msgid "->" -msgstr "" +msgstr "->" #: gridfieldsselectionpage.ui msgctxt "" @@ -299,13 +300,14 @@ msgstr "" #: gridfieldsselectionpage.ui +#, fuzzy msgctxt "" "gridfieldsselectionpage.ui\n" "fieldleft\n" "label\n" "string.text" msgid "<-" -msgstr "" +msgstr "<-" #: gridfieldsselectionpage.ui msgctxt "" @@ -380,22 +382,24 @@ 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 @@ msgstr "" #: tableselectionpage.ui +#, fuzzy msgctxt "" "tableselectionpage.ui\n" "search\n" "label\n" "string.text" msgid "_..." -msgstr "" +msgstr "_..." #: tableselectionpage.ui msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/he/helpcontent2/source/text/scalc/01.po libreoffice-5.1.2~rc2/translations/source/he/helpcontent2/source/text/scalc/01.po --- libreoffice-5.1.1~rc2/translations/source/he/helpcontent2/source/text/scalc/01.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/he/helpcontent2/source/text/scalc/01.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 @@ "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 @@ 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 @@ msgstr "less than" #: 12090103.xhp +#, fuzzy msgctxt "" "12090103.xhp\n" "par_id3155335\n" "17\n" "help.text" msgid ">" -msgstr "" +msgstr ">" #: 12090103.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/he/helpcontent2/source/text/shared/00.po libreoffice-5.1.2~rc2/translations/source/he/helpcontent2/source/text/shared/00.po --- libreoffice-5.1.1~rc2/translations/source/he/helpcontent2/source/text/shared/00.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/he/helpcontent2/source/text/shared/00.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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 @@ "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 @@ msgstr "" #: 00000021.xhp +#, fuzzy msgctxt "" "00000021.xhp\n" "par_id100120091238112\n" "help.text" msgid "-" -msgstr "" +msgstr "-" #: 00000021.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/he/helpcontent2/source/text/shared/01.po libreoffice-5.1.2~rc2/translations/source/he/helpcontent2/source/text/shared/01.po --- libreoffice-5.1.1~rc2/translations/source/he/helpcontent2/source/text/shared/01.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/he/helpcontent2/source/text/shared/01.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 @@ "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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ msgstr "Explanation" #: 05020301.xhp +#, fuzzy msgctxt "" "05020301.xhp\n" "par_id3152801\n" "5\n" "help.text" msgid "#" -msgstr "" +msgstr "#" #: 05020301.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/he/helpcontent2/source/text/shared/02.po libreoffice-5.1.2~rc2/translations/source/he/helpcontent2/source/text/shared/02.po --- libreoffice-5.1.1~rc2/translations/source/he/helpcontent2/source/text/shared/02.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/he/helpcontent2/source/text/shared/02.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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 @@ "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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/he/helpcontent2/source/text/shared/autopi.po libreoffice-5.1.2~rc2/translations/source/he/helpcontent2/source/text/shared/autopi.po --- libreoffice-5.1.1~rc2/translations/source/he/helpcontent2/source/text/shared/autopi.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/he/helpcontent2/source/text/shared/autopi.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,18 +3,18 @@ msgstr "" "Project-Id-Version: PACKAGE 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 @@ 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 @@ 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 @@ msgstr "" #: 01090100.xhp +#, fuzzy msgctxt "" "01090100.xhp\n" "par_idN1074A\n" "help.text" msgid "^" -msgstr "" +msgstr "^" #: 01090100.xhp msgctxt "" @@ -4524,13 +4527,14 @@ 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 @@ 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 @@ 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 @@ msgstr "" #: 01100200.xhp +#, fuzzy msgctxt "" "01100200.xhp\n" "hd_id3154823\n" "5\n" "help.text" msgid "<" -msgstr "" +msgstr "<" #: 01100200.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/he/helpcontent2/source/text/shared/explorer/database.po libreoffice-5.1.2~rc2/translations/source/he/helpcontent2/source/text/shared/explorer/database.po --- libreoffice-5.1.1~rc2/translations/source/he/helpcontent2/source/text/shared/explorer/database.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/he/helpcontent2/source/text/shared/explorer/database.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 @@ "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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ msgstr "" #: querywizard04.xhp +#, fuzzy msgctxt "" "querywizard04.xhp\n" "par_idN105F1\n" "help.text" msgid "-" -msgstr "" +msgstr "-" #: querywizard04.xhp msgctxt "" @@ -14443,12 +14449,13 @@ msgstr "" #: tablewizard02.xhp +#, fuzzy msgctxt "" "tablewizard02.xhp\n" "par_idN10574\n" "help.text" msgid "-" -msgstr "" +msgstr "-" #: tablewizard02.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/he/helpcontent2/source/text/swriter/01.po libreoffice-5.1.2~rc2/translations/source/he/helpcontent2/source/text/swriter/01.po --- libreoffice-5.1.1~rc2/translations/source/he/helpcontent2/source/text/swriter/01.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/he/helpcontent2/source/text/swriter/01.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 @@ "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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ msgstr "" #: mm_newaddblo.xhp +#, fuzzy msgctxt "" "mm_newaddblo.xhp\n" "par_idN10577\n" "help.text" msgid "<" -msgstr "" +msgstr "<" #: mm_newaddblo.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/he/helpcontent2/source/text/swriter/02.po libreoffice-5.1.2~rc2/translations/source/he/helpcontent2/source/text/swriter/02.po --- libreoffice-5.1.1~rc2/translations/source/he/helpcontent2/source/text/swriter/02.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/he/helpcontent2/source/text/swriter/02.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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 @@ "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 @@ msgstr "Subtraction" #: 14020000.xhp +#, fuzzy msgctxt "" "14020000.xhp\n" "par_id3150087\n" "12\n" "help.text" msgid "-" -msgstr "" +msgstr "-" #: 14020000.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/he/officecfg/registry/data/org/openoffice/Office.po libreoffice-5.1.2~rc2/translations/source/he/officecfg/registry/data/org/openoffice/Office.po --- libreoffice-5.1.1~rc2/translations/source/he/officecfg/registry/data/org/openoffice/Office.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/he/officecfg/registry/data/org/openoffice/Office.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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 @@ "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 @@ msgstr "" #: PresentationMinimizer.xcu +#, fuzzy msgctxt "" "PresentationMinimizer.xcu\n" "..PresentationMinimizer.Strings\n" "STR_FILESIZESEPARATOR\n" "value.text" msgid "." -msgstr "" +msgstr "." #: PresentationMinimizer.xcu msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/he/sw/source/ui/index.po libreoffice-5.1.2~rc2/translations/source/he/sw/source/ui/index.po --- libreoffice-5.1.1~rc2/translations/source/he/sw/source/ui/index.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/he/sw/source/ui/index.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\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 @@ "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 @@ msgstr "" #: cnttab.src +#, fuzzy msgctxt "" "cnttab.src\n" "STR_TOKEN_PAGE_NUMS\n" "string.text" msgid "#" -msgstr "" +msgstr "#" #: cnttab.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/he/sw/uiconfig/swriter/ui.po libreoffice-5.1.2~rc2/translations/source/he/sw/uiconfig/swriter/ui.po --- libreoffice-5.1.1~rc2/translations/source/he/sw/uiconfig/swriter/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/he/sw/uiconfig/swriter/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: LibO 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 @@ "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 @@ msgstr "" #: createaddresslist.ui +#, fuzzy msgctxt "" "createaddresslist.ui\n" "PREV\n" "label\n" "string.text" msgid "<" -msgstr "" +msgstr "<" #: createaddresslist.ui msgctxt "" @@ -2494,13 +2495,14 @@ msgstr "" #: createaddresslist.ui +#, fuzzy msgctxt "" "createaddresslist.ui\n" "NEXT\n" "label\n" "string.text" msgid ">" -msgstr "" +msgstr ">" #: createaddresslist.ui msgctxt "" @@ -4392,13 +4394,14 @@ msgstr "לל×" #: fldvarpage.ui +#, fuzzy msgctxt "" "fldvarpage.ui\n" "separator\n" "text\n" "string.text" msgid "." -msgstr "" +msgstr "." #: fldvarpage.ui msgctxt "" @@ -5351,22 +5354,24 @@ 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 @@ msgstr "" #: mmpreparepage.ui +#, fuzzy msgctxt "" "mmpreparepage.ui\n" "prev\n" "label\n" "string.text" msgid "<" -msgstr "" +msgstr "<" #: mmpreparepage.ui msgctxt "" @@ -8641,13 +8647,14 @@ msgstr "" #: mmpreparepage.ui +#, fuzzy msgctxt "" "mmpreparepage.ui\n" "next\n" "label\n" "string.text" msgid ">" -msgstr "" +msgstr ">" #: mmpreparepage.ui #, fuzzy @@ -15559,40 +15566,44 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/hi/cui/uiconfig/ui.po libreoffice-5.1.2~rc2/translations/source/hi/cui/uiconfig/ui.po --- libreoffice-5.1.1~rc2/translations/source/hi/cui/uiconfig/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/hi/cui/uiconfig/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 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 @@ "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 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/hi/dbaccess/uiconfig/ui.po libreoffice-5.1.2~rc2/translations/source/hi/dbaccess/uiconfig/ui.po --- libreoffice-5.1.1~rc2/translations/source/hi/dbaccess/uiconfig/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/hi/dbaccess/uiconfig/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 @@ "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 @@ 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 @@ msgstr "" #: queryfilterdialog.ui +#, fuzzy msgctxt "" "queryfilterdialog.ui\n" "cond1\n" "4\n" "stringlist.text" msgid ">" -msgstr "" +msgstr ">" #: queryfilterdialog.ui msgctxt "" @@ -3022,58 +3025,64 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/hi/extensions/uiconfig/sabpilot/ui.po libreoffice-5.1.2~rc2/translations/source/hi/extensions/uiconfig/sabpilot/ui.po --- libreoffice-5.1.1~rc2/translations/source/hi/extensions/uiconfig/sabpilot/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/hi/extensions/uiconfig/sabpilot/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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 @@ "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 @@ msgstr "" #: gridfieldsselectionpage.ui +#, fuzzy msgctxt "" "gridfieldsselectionpage.ui\n" "fieldright\n" "label\n" "string.text" msgid "->" -msgstr "" +msgstr "->" #: gridfieldsselectionpage.ui msgctxt "" @@ -299,13 +300,14 @@ msgstr "" #: gridfieldsselectionpage.ui +#, fuzzy msgctxt "" "gridfieldsselectionpage.ui\n" "fieldleft\n" "label\n" "string.text" msgid "<-" -msgstr "" +msgstr "<-" #: gridfieldsselectionpage.ui msgctxt "" @@ -380,22 +382,24 @@ 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 @@ msgstr "" #: tableselectionpage.ui +#, fuzzy msgctxt "" "tableselectionpage.ui\n" "search\n" "label\n" "string.text" msgid "_..." -msgstr "" +msgstr "_..." #: tableselectionpage.ui msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/hi/helpcontent2/source/text/scalc/01.po libreoffice-5.1.2~rc2/translations/source/hi/helpcontent2/source/text/scalc/01.po --- libreoffice-5.1.1~rc2/translations/source/hi/helpcontent2/source/text/scalc/01.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/hi/helpcontent2/source/text/scalc/01.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 @@ "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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ msgstr "से बड़ा है या समान है" #: 12090103.xhp +#, fuzzy msgctxt "" "12090103.xhp\n" "par_id3150345\n" "23\n" "help.text" msgid "<>" -msgstr "" +msgstr "<>" #: 12090103.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/hi/helpcontent2/source/text/scalc/05.po libreoffice-5.1.2~rc2/translations/source/hi/helpcontent2/source/text/scalc/05.po --- libreoffice-5.1.1~rc2/translations/source/hi/helpcontent2/source/text/scalc/05.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/hi/helpcontent2/source/text/scalc/05.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 @@ "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 @@ msgstr "सà¥à¤ªà¤·à¥à¤Ÿà¥€à¤•à¤°à¤£" #: 02140000.xhp +#, fuzzy msgctxt "" "02140000.xhp\n" "par_id1668467\n" "help.text" msgid "###" -msgstr "" +msgstr "###" #: 02140000.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/hi/helpcontent2/source/text/shared/00.po libreoffice-5.1.2~rc2/translations/source/hi/helpcontent2/source/text/shared/00.po --- libreoffice-5.1.1~rc2/translations/source/hi/helpcontent2/source/text/shared/00.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/hi/helpcontent2/source/text/shared/00.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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 @@ "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 @@ msgstr "" #: 00000021.xhp +#, fuzzy msgctxt "" "00000021.xhp\n" "par_id100120091238112\n" "help.text" msgid "-" -msgstr "" +msgstr "-" #: 00000021.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/hi/helpcontent2/source/text/shared/01.po libreoffice-5.1.2~rc2/translations/source/hi/helpcontent2/source/text/shared/01.po --- libreoffice-5.1.1~rc2/translations/source/hi/helpcontent2/source/text/shared/01.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/hi/helpcontent2/source/text/shared/01.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 @@ "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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/hi/helpcontent2/source/text/shared/02.po libreoffice-5.1.2~rc2/translations/source/hi/helpcontent2/source/text/shared/02.po --- libreoffice-5.1.1~rc2/translations/source/hi/helpcontent2/source/text/shared/02.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/hi/helpcontent2/source/text/shared/02.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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 @@ "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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/hi/helpcontent2/source/text/shared/autopi.po libreoffice-5.1.2~rc2/translations/source/hi/helpcontent2/source/text/shared/autopi.po --- libreoffice-5.1.1~rc2/translations/source/hi/helpcontent2/source/text/shared/autopi.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/hi/helpcontent2/source/text/shared/autopi.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,18 +3,18 @@ msgstr "" "Project-Id-Version: PACKAGE 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 @@ msgstr "" #: 01020500.xhp +#, fuzzy msgctxt "" "01020500.xhp\n" "par_idN105DE\n" "help.text" msgid "..." -msgstr "" +msgstr "..." #: 01020500.xhp msgctxt "" @@ -3422,13 +3423,14 @@ 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 @@ 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 @@ 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 @@ 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 @@ msgstr "" #: 01090100.xhp +#, fuzzy msgctxt "" "01090100.xhp\n" "par_idN1074A\n" "help.text" msgid "^" -msgstr "" +msgstr "^" #: 01090100.xhp msgctxt "" @@ -4524,13 +4530,14 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ msgstr "" #: webwizard07.xhp +#, fuzzy msgctxt "" "webwizard07.xhp\n" "par_idN10565\n" "help.text" msgid "..." -msgstr "" +msgstr "..." #: webwizard07.xhp msgctxt "" @@ -9503,12 +9521,13 @@ 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 @@ msgstr "" #: webwizard07fc.xhp +#, fuzzy msgctxt "" "webwizard07fc.xhp\n" "par_idN1058D\n" "help.text" msgid "..." -msgstr "" +msgstr "..." #: webwizard07fc.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/hi/helpcontent2/source/text/shared/explorer/database.po libreoffice-5.1.2~rc2/translations/source/hi/helpcontent2/source/text/shared/explorer/database.po --- libreoffice-5.1.1~rc2/translations/source/hi/helpcontent2/source/text/shared/explorer/database.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/hi/helpcontent2/source/text/shared/explorer/database.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 @@ "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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ msgstr "" #: querywizard04.xhp +#, fuzzy msgctxt "" "querywizard04.xhp\n" "par_idN105F1\n" "help.text" msgid "-" -msgstr "" +msgstr "-" #: querywizard04.xhp msgctxt "" @@ -14444,12 +14455,13 @@ msgstr "" #: tablewizard02.xhp +#, fuzzy msgctxt "" "tablewizard02.xhp\n" "par_idN10574\n" "help.text" msgid "-" -msgstr "" +msgstr "-" #: tablewizard02.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/hi/helpcontent2/source/text/shared/optionen.po libreoffice-5.1.2~rc2/translations/source/hi/helpcontent2/source/text/shared/optionen.po --- libreoffice-5.1.1~rc2/translations/source/hi/helpcontent2/source/text/shared/optionen.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/hi/helpcontent2/source/text/shared/optionen.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "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 @@ "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 @@ 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 @@ 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 @@ msgstr "" #: 01020300.xhp +#, fuzzy msgctxt "" "01020300.xhp\n" "par_idN10591\n" "help.text" msgid "..." -msgstr "" +msgstr "..." #: 01020300.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/hi/helpcontent2/source/text/smath/01.po libreoffice-5.1.2~rc2/translations/source/hi/helpcontent2/source/text/smath/01.po --- libreoffice-5.1.1~rc2/translations/source/hi/helpcontent2/source/text/smath/01.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/hi/helpcontent2/source/text/smath/01.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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 @@ "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 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/hi/helpcontent2/source/text/swriter/01.po libreoffice-5.1.2~rc2/translations/source/hi/helpcontent2/source/text/swriter/01.po --- libreoffice-5.1.1~rc2/translations/source/hi/helpcontent2/source/text/swriter/01.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/hi/helpcontent2/source/text/swriter/01.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 @@ "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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ msgstr "" #: mm_newaddblo.xhp +#, fuzzy msgctxt "" "mm_newaddblo.xhp\n" "par_idN10577\n" "help.text" msgid "<" -msgstr "" +msgstr "<" #: mm_newaddblo.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/hi/helpcontent2/source/text/swriter/02.po libreoffice-5.1.2~rc2/translations/source/hi/helpcontent2/source/text/swriter/02.po --- libreoffice-5.1.1~rc2/translations/source/hi/helpcontent2/source/text/swriter/02.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/hi/helpcontent2/source/text/swriter/02.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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 @@ "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 @@ msgstr "घटाना" #: 14020000.xhp +#, fuzzy msgctxt "" "14020000.xhp\n" "par_id3150087\n" "12\n" "help.text" msgid "-" -msgstr "" +msgstr "-" #: 14020000.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/hi/librelogo/source/pythonpath.po libreoffice-5.1.2~rc2/translations/source/hi/librelogo/source/pythonpath.po --- libreoffice-5.1.1~rc2/translations/source/hi/librelogo/source/pythonpath.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/hi/librelogo/source/pythonpath.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,18 +3,18 @@ msgstr "" "Project-Id-Version: LibO 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 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/hi/officecfg/registry/data/org/openoffice/Office.po libreoffice-5.1.2~rc2/translations/source/hi/officecfg/registry/data/org/openoffice/Office.po --- libreoffice-5.1.1~rc2/translations/source/hi/officecfg/registry/data/org/openoffice/Office.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/hi/officecfg/registry/data/org/openoffice/Office.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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 @@ "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 @@ msgstr "" #: PresentationMinimizer.xcu +#, fuzzy msgctxt "" "PresentationMinimizer.xcu\n" "..PresentationMinimizer.Strings\n" "STR_FILESIZESEPARATOR\n" "value.text" msgid "." -msgstr "" +msgstr "." #: PresentationMinimizer.xcu msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/hi/reportdesign/uiconfig/dbreport/ui.po libreoffice-5.1.2~rc2/translations/source/hi/reportdesign/uiconfig/dbreport/ui.po --- libreoffice-5.1.1~rc2/translations/source/hi/reportdesign/uiconfig/dbreport/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/hi/reportdesign/uiconfig/dbreport/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 @@ "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 @@ msgstr "" #: conditionwin.ui +#, fuzzy msgctxt "" "conditionwin.ui\n" "lhsButton\n" "label\n" "string.text" msgid "..." -msgstr "" +msgstr "..." #: conditionwin.ui msgctxt "" @@ -215,13 +216,14 @@ msgstr "" #: conditionwin.ui +#, fuzzy msgctxt "" "conditionwin.ui\n" "rhsButton\n" "label\n" "string.text" msgid "..." -msgstr "" +msgstr "..." #: conditionwin.ui msgctxt "" @@ -278,13 +280,14 @@ msgstr "" #: conditionwin.ui +#, fuzzy msgctxt "" "conditionwin.ui\n" "removeButton\n" "label\n" "string.text" msgid "-" -msgstr "" +msgstr "-" #: conditionwin.ui msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/hi/sc/source/ui/src.po libreoffice-5.1.2~rc2/translations/source/hi/sc/source/ui/src.po --- libreoffice-5.1.1~rc2/translations/source/hi/sc/source/ui/src.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/hi/sc/source/ui/src.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "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 @@ "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 @@ msgstr "पाठ गà¥à¤£" #: globstr.src +#, fuzzy msgctxt "" "globstr.src\n" "RID_GLOBSTR\n" "STR_HFCMD_DELIMITER\n" "string.text" msgid "\\" -msgstr "" +msgstr "\\" #: globstr.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/hi/sd/uiconfig/simpress/ui.po libreoffice-5.1.2~rc2/translations/source/hi/sd/uiconfig/simpress/ui.po --- libreoffice-5.1.1~rc2/translations/source/hi/sd/uiconfig/simpress/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/hi/sd/uiconfig/simpress/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 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 @@ "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 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/hi/starmath/source.po libreoffice-5.1.2~rc2/translations/source/hi/starmath/source.po --- libreoffice-5.1.1~rc2/translations/source/hi/starmath/source.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/hi/starmath/source.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\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-12 13:26+0200\n" +"POT-Creation-Date: 2016-03-29 16:07+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff -Nru libreoffice-5.1.1~rc2/translations/source/hi/sw/source/core/undo.po libreoffice-5.1.2~rc2/translations/source/hi/sw/source/core/undo.po --- libreoffice-5.1.1~rc2/translations/source/hi/sw/source/core/undo.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/hi/sw/source/core/undo.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "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 @@ "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 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/hi/sw/source/ui/dbui.po libreoffice-5.1.2~rc2/translations/source/hi/sw/source/ui/dbui.po --- libreoffice-5.1.1~rc2/translations/source/hi/sw/source/ui/dbui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/hi/sw/source/ui/dbui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "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 @@ "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 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/hi/sw/source/ui/index.po libreoffice-5.1.2~rc2/translations/source/hi/sw/source/ui/index.po --- libreoffice-5.1.1~rc2/translations/source/hi/sw/source/ui/index.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/hi/sw/source/ui/index.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,18 +3,18 @@ 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 @@ 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 @@ msgstr "" #: cnttab.src +#, fuzzy msgctxt "" "cnttab.src\n" "STR_TOKEN_PAGE_NUMS\n" "string.text" msgid "#" -msgstr "" +msgstr "#" #: cnttab.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/hi/sw/source/ui/misc.po libreoffice-5.1.2~rc2/translations/source/hi/sw/source/ui/misc.po --- libreoffice-5.1.1~rc2/translations/source/hi/sw/source/ui/misc.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/hi/sw/source/ui/misc.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "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 @@ "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 @@ msgstr "शà¥à¤°à¥‡à¤£à¥€ को मिटाना है " #: glossary.src +#, fuzzy msgctxt "" "glossary.src\n" "STR_QUERY_DELETE_GROUP2\n" "string.text" msgid "?" -msgstr "" +msgstr "?" #: glossary.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/hi/sw/source/ui/utlui.po libreoffice-5.1.2~rc2/translations/source/hi/sw/source/ui/utlui.po --- libreoffice-5.1.1~rc2/translations/source/hi/sw/source/ui/utlui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/hi/sw/source/ui/utlui.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE 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-20 11:58+0100\n" +"POT-Creation-Date: 2016-03-29 16:07+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff -Nru libreoffice-5.1.1~rc2/translations/source/hi/sw/uiconfig/swriter/ui.po libreoffice-5.1.2~rc2/translations/source/hi/sw/uiconfig/swriter/ui.po --- libreoffice-5.1.1~rc2/translations/source/hi/sw/uiconfig/swriter/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/hi/sw/uiconfig/swriter/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 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 @@ "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 @@ msgstr "सारणी को पाठ में बदलें" #: converttexttable.ui +#, fuzzy msgctxt "" "converttexttable.ui\n" "othered\n" "text\n" "string.text" msgid "," -msgstr "" +msgstr "," #: converttexttable.ui msgctxt "" @@ -2490,13 +2491,14 @@ msgstr "" #: createaddresslist.ui +#, fuzzy msgctxt "" "createaddresslist.ui\n" "PREV\n" "label\n" "string.text" msgid "<" -msgstr "" +msgstr "<" #: createaddresslist.ui msgctxt "" @@ -2508,13 +2510,14 @@ msgstr "" #: createaddresslist.ui +#, fuzzy msgctxt "" "createaddresslist.ui\n" "NEXT\n" "label\n" "string.text" msgid ">" -msgstr "" +msgstr ">" #: createaddresslist.ui msgctxt "" @@ -4384,13 +4387,14 @@ msgstr "कोई नहीं" #: fldvarpage.ui +#, fuzzy msgctxt "" "fldvarpage.ui\n" "separator\n" "text\n" "string.text" msgid "." -msgstr "" +msgstr "." #: fldvarpage.ui #, fuzzy @@ -5338,22 +5342,24 @@ 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 @@ msgstr "पà¥à¤°à¤¥à¤®" #: mmpreparepage.ui +#, fuzzy msgctxt "" "mmpreparepage.ui\n" "prev\n" "label\n" "string.text" msgid "<" -msgstr "" +msgstr "<" #: mmpreparepage.ui msgctxt "" @@ -8635,13 +8642,14 @@ msgstr "पिछला" #: mmpreparepage.ui +#, fuzzy msgctxt "" "mmpreparepage.ui\n" "next\n" "label\n" "string.text" msgid ">" -msgstr "" +msgstr ">" #: mmpreparepage.ui msgctxt "" @@ -15562,40 +15570,44 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/hi/vcl/source/src.po libreoffice-5.1.2~rc2/translations/source/hi/vcl/source/src.po --- libreoffice-5.1.1~rc2/translations/source/hi/vcl/source/src.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/hi/vcl/source/src.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "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 @@ "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 @@ 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 @@ 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 @@ 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 @@ msgstr "" #: units.src +#, fuzzy msgctxt "" "units.src\n" "SV_FUNIT_STRINGS\n" "°\n" "itemlist.text" msgid "°" -msgstr "" +msgstr "°" #: units.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/hi/wizards/source/formwizard.po libreoffice-5.1.2~rc2/translations/source/hi/wizards/source/formwizard.po --- libreoffice-5.1.1~rc2/translations/source/hi/wizards/source/formwizard.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/hi/wizards/source/formwizard.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "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 @@ "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 @@ msgstr "" #: dbwizres.src +#, fuzzy msgctxt "" "dbwizres.src\n" "RID_DB_TABLE_WIZARD_START + 22\n" "string.text" msgid "-" -msgstr "" +msgstr "-" #: dbwizres.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/hr/helpcontent2/source/text/scalc/01.po libreoffice-5.1.2~rc2/translations/source/hr/helpcontent2/source/text/scalc/01.po --- libreoffice-5.1.1~rc2/translations/source/hr/helpcontent2/source/text/scalc/01.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/hr/helpcontent2/source/text/scalc/01.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 @@ "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 @@ 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 @@ msgstr "manje od" #: 12090103.xhp +#, fuzzy msgctxt "" "12090103.xhp\n" "par_id3155335\n" "17\n" "help.text" msgid ">" -msgstr "" +msgstr ">" #: 12090103.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/hr/helpcontent2/source/text/shared/00.po libreoffice-5.1.2~rc2/translations/source/hr/helpcontent2/source/text/shared/00.po --- libreoffice-5.1.1~rc2/translations/source/hr/helpcontent2/source/text/shared/00.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/hr/helpcontent2/source/text/shared/00.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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 @@ "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 @@ msgstr "" #: 00000021.xhp +#, fuzzy msgctxt "" "00000021.xhp\n" "par_id100120091238112\n" "help.text" msgid "-" -msgstr "" +msgstr "-" #: 00000021.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/hr/helpcontent2/source/text/shared/01.po libreoffice-5.1.2~rc2/translations/source/hr/helpcontent2/source/text/shared/01.po --- libreoffice-5.1.1~rc2/translations/source/hr/helpcontent2/source/text/shared/01.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/hr/helpcontent2/source/text/shared/01.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 @@ "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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/hr/helpcontent2/source/text/shared/02.po libreoffice-5.1.2~rc2/translations/source/hr/helpcontent2/source/text/shared/02.po --- libreoffice-5.1.1~rc2/translations/source/hr/helpcontent2/source/text/shared/02.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/hr/helpcontent2/source/text/shared/02.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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 @@ "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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/hr/helpcontent2/source/text/shared/autopi.po libreoffice-5.1.2~rc2/translations/source/hr/helpcontent2/source/text/shared/autopi.po --- libreoffice-5.1.1~rc2/translations/source/hr/helpcontent2/source/text/shared/autopi.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/hr/helpcontent2/source/text/shared/autopi.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,18 +3,18 @@ msgstr "" "Project-Id-Version: PACKAGE 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 @@ 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 @@ 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 @@ msgstr "" #: 01090100.xhp +#, fuzzy msgctxt "" "01090100.xhp\n" "par_idN1074A\n" "help.text" msgid "^" -msgstr "" +msgstr "^" #: 01090100.xhp msgctxt "" @@ -4524,13 +4527,14 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/hr/helpcontent2/source/text/shared/explorer/database.po libreoffice-5.1.2~rc2/translations/source/hr/helpcontent2/source/text/shared/explorer/database.po --- libreoffice-5.1.1~rc2/translations/source/hr/helpcontent2/source/text/shared/explorer/database.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/hr/helpcontent2/source/text/shared/explorer/database.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 @@ "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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ msgstr "" #: querywizard04.xhp +#, fuzzy msgctxt "" "querywizard04.xhp\n" "par_idN105F1\n" "help.text" msgid "-" -msgstr "" +msgstr "-" #: querywizard04.xhp msgctxt "" @@ -14489,12 +14495,13 @@ msgstr "" #: tablewizard02.xhp +#, fuzzy msgctxt "" "tablewizard02.xhp\n" "par_idN10574\n" "help.text" msgid "-" -msgstr "" +msgstr "-" #: tablewizard02.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/hr/helpcontent2/source/text/shared/optionen.po libreoffice-5.1.2~rc2/translations/source/hr/helpcontent2/source/text/shared/optionen.po --- libreoffice-5.1.1~rc2/translations/source/hr/helpcontent2/source/text/shared/optionen.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/hr/helpcontent2/source/text/shared/optionen.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "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 @@ "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 @@ 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 @@ msgstr "" #: 01010501.xhp +#, fuzzy msgctxt "" "01010501.xhp\n" "hd_id3158409\n" "13\n" "help.text" msgid "-->" -msgstr "" +msgstr "-->" #: 01010501.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/hr/helpcontent2/source/text/smath/01.po libreoffice-5.1.2~rc2/translations/source/hr/helpcontent2/source/text/smath/01.po --- libreoffice-5.1.1~rc2/translations/source/hr/helpcontent2/source/text/smath/01.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/hr/helpcontent2/source/text/smath/01.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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 @@ "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 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/hr/helpcontent2/source/text/swriter/01.po libreoffice-5.1.2~rc2/translations/source/hr/helpcontent2/source/text/swriter/01.po --- libreoffice-5.1.1~rc2/translations/source/hr/helpcontent2/source/text/swriter/01.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/hr/helpcontent2/source/text/swriter/01.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 @@ "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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ msgstr "" #: mm_newaddblo.xhp +#, fuzzy msgctxt "" "mm_newaddblo.xhp\n" "par_idN10577\n" "help.text" msgid "<" -msgstr "" +msgstr "<" #: mm_newaddblo.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/hr/helpcontent2/source/text/swriter/02.po libreoffice-5.1.2~rc2/translations/source/hr/helpcontent2/source/text/swriter/02.po --- libreoffice-5.1.1~rc2/translations/source/hr/helpcontent2/source/text/swriter/02.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/hr/helpcontent2/source/text/swriter/02.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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 @@ "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 @@ msgstr "Oduzimanje" #: 14020000.xhp +#, fuzzy msgctxt "" "14020000.xhp\n" "par_id3150087\n" "12\n" "help.text" msgid "-" -msgstr "" +msgstr "-" #: 14020000.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/hu/formula/source/core/resource.po libreoffice-5.1.2~rc2/translations/source/hu/formula/source/core/resource.po --- libreoffice-5.1.1~rc2/translations/source/hu/formula/source/core/resource.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/hu/formula/source/core/resource.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\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-27 00:46+0100\n" +"POT-Creation-Date: 2016-03-29 16:07+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff -Nru libreoffice-5.1.1~rc2/translations/source/hu/svx/inc.po libreoffice-5.1.2~rc2/translations/source/hu/svx/inc.po --- libreoffice-5.1.1~rc2/translations/source/hu/svx/inc.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/hu/svx/inc.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "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 @@ "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 "" diff -Nru libreoffice-5.1.1~rc2/translations/source/id/cui/uiconfig/ui.po libreoffice-5.1.2~rc2/translations/source/id/cui/uiconfig/ui.po --- libreoffice-5.1.1~rc2/translations/source/id/cui/uiconfig/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/id/cui/uiconfig/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: LibO 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:00+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2016-03-27 13:30+0000\n" +"Last-Translator: Andika Triwidada <andika@gmail.com>\n" "Language-Team: none\n" "Language: id\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1452261631.000000\n" +"X-POOTLE-MTIME: 1459085424.000000\n" #: aboutconfigdialog.ui msgctxt "" @@ -179,14 +179,13 @@ msgstr "%PRODUCTNAME adalah kelompok aplikasi produktivitas yang open source, mudah dipakai, dan modern untuk pengolahan kata, lembar kerja, presentasi, dan lainnya." #: aboutdialog.ui -#, fuzzy msgctxt "" "aboutdialog.ui\n" "copyright\n" "label\n" "string.text" msgid "Copyright © 2000–2016 LibreOffice contributors." -msgstr "Hak Cipta © 2000 - 2015 para kontributor LibreOffice." +msgstr "Hak Cipta © 2000-2016 para kontributor LibreOffice." #: aboutdialog.ui msgctxt "" @@ -11351,7 +11350,7 @@ "label\n" "string.text" msgid "_Send OS version & simple hardware info." -msgstr "" +msgstr "Kirim versi O_S & info perangkat keras sederhana." #: optonlineupdatepage.ui msgctxt "" @@ -11360,7 +11359,7 @@ "tooltip_text\n" "string.text" msgid "This information lets us optimize for your hardware & OS." -msgstr "" +msgstr "Informasi ini memungkinkan kami mengoptimasi untuk perangkat keras & OS Anda." #: optonlineupdatepage.ui msgctxt "" @@ -11369,7 +11368,7 @@ "label\n" "string.text" msgid "User Agent:" -msgstr "" +msgstr "User Agent:" #: optonlineupdatepage.ui msgctxt "" @@ -11378,7 +11377,7 @@ "label\n" "string.text" msgid "Hit apply to update" -msgstr "" +msgstr "Tekan terapkan untuk memutakhirkan" #: optonlineupdatepage.ui msgctxt "" @@ -11405,7 +11404,7 @@ "label\n" "string.text" msgid "Allow use of Software Interpreter (even when OpenCL is not available)" -msgstr "" +msgstr "Ijinkan penggunaan Interpreter Perangkat Lunak (bahkan ketika OpenCL tidak tersedia)" #: optopenclpage.ui msgctxt "" @@ -15650,14 +15649,13 @@ msgstr "Karakter:" #: specialcharacters.ui -#, fuzzy msgctxt "" "specialcharacters.ui\n" "decimallabel\n" "label\n" "string.text" msgid "Decimal:" -msgstr "Desi_mal" +msgstr "Desimal:" #: specialcharacters.ui msgctxt "" @@ -15666,7 +15664,7 @@ "label\n" "string.text" msgid "Hexadecimal:" -msgstr "" +msgstr "Heksadesimal:" #: spellingdialog.ui msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/id/dbaccess/source/ui/dlg.po libreoffice-5.1.2~rc2/translations/source/id/dbaccess/source/ui/dlg.po --- libreoffice-5.1.1~rc2/translations/source/id/dbaccess/source/ui/dlg.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/id/dbaccess/source/ui/dlg.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-01-09 04:52+0000\n" +"PO-Revision-Date: 2016-03-27 13:15+0000\n" "Last-Translator: Andika Triwidada <andika@gmail.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: id\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1420779134.000000\n" +"X-POOTLE-MTIME: 1459084522.000000\n" #: AutoControls.src msgctxt "" @@ -86,7 +86,7 @@ "STR_COMMONURL\n" "string.text" msgid "Datasource URL (e.g. postgresql://host:port/database)" -msgstr "" +msgstr "URL Sumber Data (mis. postgresql://host:port/basisdata)" #: AutoControls.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/id/desktop/uiconfig/ui.po libreoffice-5.1.2~rc2/translations/source/id/desktop/uiconfig/ui.po --- libreoffice-5.1.1~rc2/translations/source/id/desktop/uiconfig/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/id/desktop/uiconfig/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: LibO 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: 2014-12-18 02:26+0000\n" -"Last-Translator: Singgih Octafianto <singgih.octafianto@gmail.com>\n" +"PO-Revision-Date: 2016-03-27 13:22+0000\n" +"Last-Translator: Andika Triwidada <andika@gmail.com>\n" "Language-Team: none\n" "Language: id\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1418869609.000000\n" +"X-POOTLE-MTIME: 1459084933.000000\n" #: cmdlinehelp.ui msgctxt "" @@ -215,14 +215,13 @@ 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 "Bacalah Perjanjian Lisensi lengkap. Gunakan bilah gulir atau tombol 'Gulung Turun' pada dialog ini untuk melihat seluruh teks lisensi.\"" +msgstr "Bacalah Perjanjian Lisensi lengkap. Gunakan bilah gulir atau tombol 'Gulung Turun' pada dialog ini untuk melihat seluruh teks lisensi." #: licensedialog.ui msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/id/dictionaries/is.po libreoffice-5.1.2~rc2/translations/source/id/dictionaries/is.po --- libreoffice-5.1.1~rc2/translations/source/id/dictionaries/is.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/id/dictionaries/is.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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-06-16 11:04+0000\n" +"PO-Revision-Date: 2016-03-27 13:18+0000\n" "Last-Translator: Andika Triwidada <andika@gmail.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: id\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1371380699.000000\n" +"X-POOTLE-MTIME: 1459084689.000000\n" #: description.xml msgctxt "" @@ -22,4 +22,4 @@ "dispname\n" "description.text" msgid "Icelandic spelling dictionary, hyphenation rules and thesaurus" -msgstr "" +msgstr "Kamus ejaan, aturan pemenggalan kata, dan tesaurus untuk bahasa Islandia" diff -Nru libreoffice-5.1.1~rc2/translations/source/id/dictionaries/sv_SE.po libreoffice-5.1.2~rc2/translations/source/id/dictionaries/sv_SE.po --- libreoffice-5.1.1~rc2/translations/source/id/dictionaries/sv_SE.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/id/dictionaries/sv_SE.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "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-05-23 23:39+0000\n" +"PO-Revision-Date: 2016-03-27 13:18+0000\n" "Last-Translator: Andika Triwidada <andika@gmail.com>\n" "Language-Team: none\n" "Language: id\n" @@ -14,13 +14,12 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1369352398.000000\n" +"X-POOTLE-MTIME: 1459084728.000000\n" #: description.xml -#, fuzzy msgctxt "" "description.xml\n" "dispname\n" "description.text" msgid "Swedish spelling dictionary, hyphenation and thesaurus" -msgstr "Kamus ejaan dan tesaurus bahasa Swedia" +msgstr "Kamus ejaan, pemenggalan kata, dan tesaurus untuk bahasa Swedia" diff -Nru libreoffice-5.1.1~rc2/translations/source/id/editeng/source/editeng.po libreoffice-5.1.2~rc2/translations/source/id/editeng/source/editeng.po --- libreoffice-5.1.1~rc2/translations/source/id/editeng/source/editeng.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/id/editeng/source/editeng.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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-06-16 11:09+0000\n" +"PO-Revision-Date: 2016-03-27 13:16+0000\n" "Last-Translator: Andika Triwidada <andika@gmail.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: id\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1371380992.000000\n" +"X-POOTLE-MTIME: 1459084587.000000\n" #: editeng.src msgctxt "" @@ -89,14 +89,13 @@ msgstr "Ubah Kapitalisasi" #: editeng.src -#, fuzzy msgctxt "" "editeng.src\n" "RID_MENU_SPELL\n" "MN_IGNORE\n" "menuitem.text" msgid "I~gnore All" -msgstr "Abaikan Semua" +msgstr "A~baikan Semua" #: editeng.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/id/filter/source/config/fragments/filters.po libreoffice-5.1.2~rc2/translations/source/id/filter/source/config/fragments/filters.po --- libreoffice-5.1.1~rc2/translations/source/id/filter/source/config/fragments/filters.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/id/filter/source/config/fragments/filters.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "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 16:45+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2016-03-27 13:23+0000\n" +"Last-Translator: Andika Triwidada <andika@gmail.com>\n" "Language-Team: Indonesian <>\n" "Language: id\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1449852339.000000\n" +"X-POOTLE-MTIME: 1459085018.000000\n" #: AbiWord.xcu msgctxt "" @@ -710,14 +710,13 @@ 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 "Dokumen Teks ODF" +msgstr "Dokumen Teks Palm" #: Plucker_eBook.xcu msgctxt "" @@ -1899,7 +1898,6 @@ msgstr "Palet HTML OpenOffice.org 1.0" #: writer_web_jpg_Export.xcu -#, fuzzy msgctxt "" "writer_web_jpg_Export.xcu\n" "writer_web_jpg_Export\n" @@ -1918,7 +1916,6 @@ msgstr "PDF - Portable Document Format" #: writer_web_png_Export.xcu -#, fuzzy msgctxt "" "writer_web_png_Export.xcu\n" "writer_web_png_Export\n" diff -Nru libreoffice-5.1.1~rc2/translations/source/id/formula/source/core/resource.po libreoffice-5.1.2~rc2/translations/source/id/formula/source/core/resource.po --- libreoffice-5.1.1~rc2/translations/source/id/formula/source/core/resource.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/id/formula/source/core/resource.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-11-22 10:41+0000\n" +"PO-Revision-Date: 2016-03-27 13:13+0000\n" "Last-Translator: Andika Triwidada <andika@gmail.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: id\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1448188897.000000\n" +"X-POOTLE-MTIME: 1459084385.000000\n" #: core_resource.src msgctxt "" @@ -3155,7 +3155,7 @@ "SC_OPCODE_WEEKNUM_OOO\n" "string.text" msgid "WEEKNUM_OOO" -msgstr "" +msgstr "WEEKNUM_OOO" #: core_resource.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/id/fpicker/source/office.po libreoffice-5.1.2~rc2/translations/source/id/fpicker/source/office.po --- libreoffice-5.1.1~rc2/translations/source/id/fpicker/source/office.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/id/fpicker/source/office.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\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-01-09 04:51+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2016-03-27 13:24+0000\n" +"Last-Translator: Andika Triwidada <andika@gmail.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: id\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1420779094.000000\n" +"X-POOTLE-MTIME: 1459085087.000000\n" #: OfficeFilePicker.src msgctxt "" @@ -251,6 +251,8 @@ "Are you sure you want to delete the service?\n" "\"$servicename$\"" msgstr "" +"Anda yakin ingin menghapus layanan?\n" +"\"$servicename$\"" #: iodlg.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/id/fpicker/uiconfig/ui.po libreoffice-5.1.2~rc2/translations/source/id/fpicker/uiconfig/ui.po --- libreoffice-5.1.1~rc2/translations/source/id/fpicker/uiconfig/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/id/fpicker/uiconfig/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\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-24 14:18+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2016-03-27 13:26+0000\n" +"Last-Translator: Andika Triwidada <andika@gmail.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: id\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1429885127.000000\n" +"X-POOTLE-MTIME: 1459085201.000000\n" #: explorerfiledialog.ui msgctxt "" @@ -149,7 +149,7 @@ "title\n" "string.text" msgid "Remote Files" -msgstr "" +msgstr "Berkas Jauh" #: remotefilesdialog.ui msgctxt "" @@ -158,7 +158,7 @@ "label\n" "string.text" msgid "Service:" -msgstr "" +msgstr "Layanan:" #: remotefilesdialog.ui msgctxt "" @@ -167,10 +167,9 @@ "label\n" "string.text" msgid "Add service" -msgstr "" +msgstr "Tambah layanan" #: remotefilesdialog.ui -#, fuzzy msgctxt "" "remotefilesdialog.ui\n" "new_folder\n" @@ -180,7 +179,6 @@ msgstr "Buat Folder Baru" #: remotefilesdialog.ui -#, fuzzy msgctxt "" "remotefilesdialog.ui\n" "new_folder\n" @@ -196,17 +194,16 @@ "label\n" "string.text" msgid "Filter" -msgstr "" +msgstr "Penyaring" #: remotefilesdialog.ui -#, fuzzy msgctxt "" "remotefilesdialog.ui\n" "nameLabel\n" "label\n" "string.text" msgid "File name" -msgstr "_Nama berkas:" +msgstr "Nama berkas" #: remotefilesdialog.ui msgctxt "" @@ -215,7 +212,7 @@ "label\n" "string.text" msgid "_Edit service" -msgstr "" +msgstr "_Sunting layanan" #: remotefilesdialog.ui msgctxt "" @@ -224,7 +221,7 @@ "label\n" "string.text" msgid "_Delete service" -msgstr "" +msgstr "_Hapus layanan" #: remotefilesdialog.ui msgctxt "" @@ -233,4 +230,4 @@ "label\n" "string.text" msgid "_Change password" -msgstr "" +msgstr "_Ubah sandi" diff -Nru libreoffice-5.1.1~rc2/translations/source/id/framework/source/classes.po libreoffice-5.1.2~rc2/translations/source/id/framework/source/classes.po --- libreoffice-5.1.1~rc2/translations/source/id/framework/source/classes.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/id/framework/source/classes.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "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:58+0100\n" -"PO-Revision-Date: 2014-11-19 05:01+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2016-03-27 13:15+0000\n" +"Last-Translator: Andika Triwidada <andika@gmail.com>\n" "Language-Team: Indonesian <>\n" "Language: id\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1416373316.000000\n" +"X-POOTLE-MTIME: 1459084559.000000\n" #: resource.src msgctxt "" @@ -148,7 +148,7 @@ "STR_OPEN_REMOTE\n" "string.text" msgid "Open remote file" -msgstr "" +msgstr "Buka berkas jauh" #: resource.src msgctxt "" @@ -156,7 +156,7 @@ "STR_REMOTE_TITLE\n" "string.text" msgid " (Remote)" -msgstr "" +msgstr " (Jauh)" #: resource.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/id/helpcontent2/source/text/shared/00.po libreoffice-5.1.2~rc2/translations/source/id/helpcontent2/source/text/shared/00.po --- libreoffice-5.1.1~rc2/translations/source/id/helpcontent2/source/text/shared/00.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/id/helpcontent2/source/text/shared/00.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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 @@ "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 @@ msgstr "" #: 00000021.xhp +#, fuzzy msgctxt "" "00000021.xhp\n" "par_id100120091238112\n" "help.text" msgid "-" -msgstr "" +msgstr "-" #: 00000021.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/id/helpcontent2/source/text/shared/01.po libreoffice-5.1.2~rc2/translations/source/id/helpcontent2/source/text/shared/01.po --- libreoffice-5.1.1~rc2/translations/source/id/helpcontent2/source/text/shared/01.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/id/helpcontent2/source/text/shared/01.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "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 @@ "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 @@ 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 @@ 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 @@ 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 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/id/helpcontent2/source/text/shared/02.po libreoffice-5.1.2~rc2/translations/source/id/helpcontent2/source/text/shared/02.po --- libreoffice-5.1.1~rc2/translations/source/id/helpcontent2/source/text/shared/02.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/id/helpcontent2/source/text/shared/02.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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 @@ "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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/id/helpcontent2/source/text/shared/autopi.po libreoffice-5.1.2~rc2/translations/source/id/helpcontent2/source/text/shared/autopi.po --- libreoffice-5.1.1~rc2/translations/source/id/helpcontent2/source/text/shared/autopi.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/id/helpcontent2/source/text/shared/autopi.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 @@ "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 @@ 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 @@ 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 @@ msgstr "" #: 01090100.xhp +#, fuzzy msgctxt "" "01090100.xhp\n" "par_idN1074A\n" "help.text" msgid "^" -msgstr "" +msgstr "^" #: 01090100.xhp msgctxt "" @@ -4524,13 +4527,14 @@ 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 @@ 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 @@ 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 @@ msgstr "" #: 01100200.xhp +#, fuzzy msgctxt "" "01100200.xhp\n" "hd_id3154823\n" "5\n" "help.text" msgid "<" -msgstr "" +msgstr "<" #: 01100200.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/id/helpcontent2/source/text/shared/explorer/database.po libreoffice-5.1.2~rc2/translations/source/id/helpcontent2/source/text/shared/explorer/database.po --- libreoffice-5.1.1~rc2/translations/source/id/helpcontent2/source/text/shared/explorer/database.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/id/helpcontent2/source/text/shared/explorer/database.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 @@ "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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ msgstr "" #: querywizard04.xhp +#, fuzzy msgctxt "" "querywizard04.xhp\n" "par_idN105F1\n" "help.text" msgid "-" -msgstr "" +msgstr "-" #: querywizard04.xhp msgctxt "" @@ -14502,12 +14508,13 @@ msgstr "" #: tablewizard02.xhp +#, fuzzy msgctxt "" "tablewizard02.xhp\n" "par_idN10574\n" "help.text" msgid "-" -msgstr "" +msgstr "-" #: tablewizard02.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/id/helpcontent2/source/text/swriter/01.po libreoffice-5.1.2~rc2/translations/source/id/helpcontent2/source/text/swriter/01.po --- libreoffice-5.1.1~rc2/translations/source/id/helpcontent2/source/text/swriter/01.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/id/helpcontent2/source/text/swriter/01.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "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 @@ "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 @@ 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 @@ 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 @@ msgstr "" #: mm_cusaddfie.xhp +#, fuzzy msgctxt "" "mm_cusaddfie.xhp\n" "par_idN10577\n" "help.text" msgid "<" -msgstr "" +msgstr "<" #: mm_cusaddfie.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/id/sd/source/ui/app.po libreoffice-5.1.2~rc2/translations/source/id/sd/source/ui/app.po --- libreoffice-5.1.1~rc2/translations/source/id/sd/source/ui/app.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/id/sd/source/ui/app.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "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:58+0100\n" -"PO-Revision-Date: 2015-11-22 14:45+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2016-03-27 13:21+0000\n" +"Last-Translator: Andika Triwidada <andika@gmail.com>\n" "Language-Team: Indonesian <>\n" "Language: id\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1448203546.000000\n" +"X-POOTLE-MTIME: 1459084861.000000\n" #: menuids3_tmpl.src msgctxt "" @@ -1873,16 +1873,14 @@ msgstr "Tutup Poligon" #: strings.src -#, fuzzy msgctxt "" "strings.src\n" "STR_SLIDE_SORTER_MODE\n" "string.text" msgid "Slide Sorter" -msgstr "Penyusun Salindia" +msgstr "Pengurut Salindia" #: strings.src -#, fuzzy msgctxt "" "strings.src\n" "STR_NORMAL_MODE\n" @@ -1891,13 +1889,12 @@ msgstr "Normal" #: strings.src -#, fuzzy msgctxt "" "strings.src\n" "STR_SLIDE_MASTER_MODE\n" "string.text" msgid "Slide Master" -msgstr "Penyusun Salindia" +msgstr "Salindia Induk" #: strings.src msgctxt "" @@ -1921,7 +1918,7 @@ "STR_NOTES_MASTER_MODE\n" "string.text" msgid "Notes Master" -msgstr "" +msgstr "Induk Catatan" #: strings.src #, fuzzy @@ -2122,16 +2119,15 @@ "STR_DISPLAYMODE_EDITMODES\n" "string.text" msgid "Edit Modes" -msgstr "" +msgstr "Mode Sunting" #: strings.src -#, fuzzy msgctxt "" "strings.src\n" "STR_DISPLAYMODE_MASTERMODES\n" "string.text" msgid "Master Modes" -msgstr "Halaman Induk" +msgstr "Mode Induk" #: strings.src msgctxt "" @@ -3725,7 +3721,7 @@ "STR_FIELD_PLACEHOLDER_SLIDENAME\n" "string.text" msgid "<slide-name>" -msgstr "" +msgstr "<nama-salindia>" #: strings.src msgctxt "" @@ -3733,7 +3729,7 @@ "STR_FIELD_PLACEHOLDER_PAGENAME\n" "string.text" msgid "<page-name>" -msgstr "" +msgstr "<nama-halaman>" #: strings.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/id/sd/source/ui/view.po libreoffice-5.1.2~rc2/translations/source/id/sd/source/ui/view.po --- libreoffice-5.1.1~rc2/translations/source/id/sd/source/ui/view.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/id/sd/source/ui/view.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\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 12:56+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2016-03-27 13:21+0000\n" +"Last-Translator: Andika Triwidada <andika@gmail.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: id\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1401886578.000000\n" +"X-POOTLE-MTIME: 1459084871.000000\n" #: DocumentRenderer.src msgctxt "" @@ -104,7 +104,7 @@ "According to layout\n" "itemlist.text" msgid "According to layout" -msgstr "" +msgstr "Menurut tata letak" #: DocumentRenderer.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/id/sw/source/ui/utlui.po libreoffice-5.1.2~rc2/translations/source/id/sw/source/ui/utlui.po --- libreoffice-5.1.1~rc2/translations/source/id/sw/source/ui/utlui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/id/sw/source/ui/utlui.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\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-19 01:45+0200\n" +"POT-Creation-Date: 2016-03-29 16:07+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff -Nru libreoffice-5.1.1~rc2/translations/source/id/swext/mediawiki/help.po libreoffice-5.1.2~rc2/translations/source/id/swext/mediawiki/help.po --- libreoffice-5.1.1~rc2/translations/source/id/swext/mediawiki/help.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/id/swext/mediawiki/help.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,18 +3,18 @@ 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-05-02 00:05+0200\n" -"PO-Revision-Date: 2014-06-02 14:38+0700\n" -"Last-Translator: \n" +"POT-Creation-Date: 2015-04-22 23:39+0200\n" +"PO-Revision-Date: 2016-03-26 15:45+0000\n" +"Last-Translator: Andika Triwidada <andika@gmail.com>\n" "Language-Team: Indonesian <>\n" "Language: id\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: 1380435130.0\n" +"X-POOTLE-MTIME: 1459007105.000000\n" #: help.tree msgctxt "" @@ -526,7 +526,7 @@ "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 "Catatan: Transformasi menggunakan gaya baru dari catatan kaki dengan tag <ref> dan <references> yang memerlukan ekstensi Cite.php yang harus dipasang pada MediaWiki. Jika tag tersebut muncul sebagai teks biasa dalam hasil transformasi, tanyakan administrator Wiki untuk memasang ekstensi tersebut." +msgstr "Catatan: Transformasi menggunakan gaya baru dari catatan kaki dengan tag <ref> dan <references> yang memerlukan dipasangnya ekstensi Cite.php pada MediaWiki. Jika tag tersebut muncul sebagai teks biasa dalam hasil transformasi, mintalah kepada administrator Wiki untuk memasang ekstensi tersebut." #: wikiformats.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/id/vcl/source/src.po libreoffice-5.1.2~rc2/translations/source/id/vcl/source/src.po --- libreoffice-5.1.1~rc2/translations/source/id/vcl/source/src.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/id/vcl/source/src.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "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:26+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2016-03-27 13:17+0000\n" +"Last-Translator: Andika Triwidada <andika@gmail.com>\n" "Language-Team: Indonesian <>\n" "Language: id\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1449854799.000000\n" +"X-POOTLE-MTIME: 1459084633.000000\n" #: app.src msgctxt "" @@ -30,7 +30,7 @@ "SV_APP_OSVERSION\n" "string.text" msgid "OS Version: " -msgstr "" +msgstr "Versi OS: " #: app.src msgctxt "" @@ -46,7 +46,7 @@ "SV_APP_GL\n" "string.text" msgid "GL" -msgstr "" +msgstr "GL" #: app.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/is/cui/uiconfig/ui.po libreoffice-5.1.2~rc2/translations/source/is/cui/uiconfig/ui.po --- libreoffice-5.1.1~rc2/translations/source/is/cui/uiconfig/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/is/cui/uiconfig/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "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 @@ "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 @@ "label\n" "string.text" msgid "Co_rrect" -msgstr "Leið_rétt" +msgstr "Leið_rétta" #: spellingdialog.ui msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/is/helpcontent2/source/text/scalc/01.po libreoffice-5.1.2~rc2/translations/source/is/helpcontent2/source/text/scalc/01.po --- libreoffice-5.1.1~rc2/translations/source/is/helpcontent2/source/text/scalc/01.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/is/helpcontent2/source/text/scalc/01.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\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 @@ "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 @@ 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 @@ msgstr "minni en" #: 12090103.xhp +#, fuzzy msgctxt "" "12090103.xhp\n" "par_id3155335\n" "17\n" "help.text" msgid ">" -msgstr "" +msgstr ">" #: 12090103.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/is/helpcontent2/source/text/shared/autopi.po libreoffice-5.1.2~rc2/translations/source/is/helpcontent2/source/text/shared/autopi.po --- libreoffice-5.1.1~rc2/translations/source/is/helpcontent2/source/text/shared/autopi.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/is/helpcontent2/source/text/shared/autopi.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\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 @@ "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 @@ 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 @@ 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 @@ msgstr "" #: 01090100.xhp +#, fuzzy msgctxt "" "01090100.xhp\n" "par_idN1074A\n" "help.text" msgid "^" -msgstr "" +msgstr "^" #: 01090100.xhp msgctxt "" @@ -4524,13 +4527,14 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/is/helpcontent2/source/text/shared/explorer/database.po libreoffice-5.1.2~rc2/translations/source/is/helpcontent2/source/text/shared/explorer/database.po --- libreoffice-5.1.1~rc2/translations/source/is/helpcontent2/source/text/shared/explorer/database.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/is/helpcontent2/source/text/shared/explorer/database.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\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 @@ "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 @@ 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 @@ 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 @@ 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 @@ 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 @@ msgstr "" #: querywizard04.xhp +#, fuzzy msgctxt "" "querywizard04.xhp\n" "par_idN105F1\n" "help.text" msgid "-" -msgstr "" +msgstr "-" #: querywizard04.xhp msgctxt "" @@ -14448,12 +14453,13 @@ msgstr "" #: tablewizard02.xhp +#, fuzzy msgctxt "" "tablewizard02.xhp\n" "par_idN10574\n" "help.text" msgid "-" -msgstr "" +msgstr "-" #: tablewizard02.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/is/helpcontent2/source/text/swriter/01.po libreoffice-5.1.2~rc2/translations/source/is/helpcontent2/source/text/swriter/01.po --- libreoffice-5.1.1~rc2/translations/source/is/helpcontent2/source/text/swriter/01.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/is/helpcontent2/source/text/swriter/01.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\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 @@ "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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ msgstr "" #: mm_newaddblo.xhp +#, fuzzy msgctxt "" "mm_newaddblo.xhp\n" "par_idN10577\n" "help.text" msgid "<" -msgstr "" +msgstr "<" #: mm_newaddblo.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/is/helpcontent2/source/text/swriter/02.po libreoffice-5.1.2~rc2/translations/source/is/helpcontent2/source/text/swriter/02.po --- libreoffice-5.1.1~rc2/translations/source/is/helpcontent2/source/text/swriter/02.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/is/helpcontent2/source/text/swriter/02.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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 @@ "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 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/is/svx/inc.po libreoffice-5.1.2~rc2/translations/source/is/svx/inc.po --- libreoffice-5.1.1~rc2/translations/source/is/svx/inc.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/is/svx/inc.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "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 @@ "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 "" diff -Nru libreoffice-5.1.1~rc2/translations/source/it/helpcontent2/source/text/sbasic/guide.po libreoffice-5.1.2~rc2/translations/source/it/helpcontent2/source/text/sbasic/guide.po --- libreoffice-5.1.1~rc2/translations/source/it/helpcontent2/source/text/sbasic/guide.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/it/helpcontent2/source/text/sbasic/guide.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "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-02-22 13:57+0000\n" +"PO-Revision-Date: 2016-03-16 13:52+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 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1456149448.000000\n" +"X-POOTLE-MTIME: 1458136355.000000\n" #: access2base.xhp msgctxt "" @@ -269,7 +269,7 @@ "6\n" "help.text" msgid "If you do not see the <emph>Toolbox</emph> bar, click the arrow next to the <emph>Insert Controls </emph>icon to open the <emph>Toolbox</emph> bar." -msgstr "Se la barra della <emph>Casella degli strumenti</emph> non è visibile, fate clic sulla freccia accanto al simbolo <emph>Inserisci elementi di controllo</emph> per aprirla." +msgstr "Se la barra della <emph>Casella degli strumenti</emph> non è visibile, fate clic sulla freccia accanto all'icona <emph>Inserisci elementi di controllo</emph> per aprirla." #: create_dialog.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/it/helpcontent2/source/text/sbasic/shared.po libreoffice-5.1.2~rc2/translations/source/it/helpcontent2/source/text/sbasic/shared.po --- libreoffice-5.1.1~rc2/translations/source/it/helpcontent2/source/text/sbasic/shared.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/it/helpcontent2/source/text/sbasic/shared.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "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-09-01 20:20+0200\n" -"PO-Revision-Date: 2016-02-22 13:39+0000\n" +"PO-Revision-Date: 2016-03-16 13:54+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 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1456148352.000000\n" +"X-POOTLE-MTIME: 1458136480.000000\n" #: 00000002.xhp msgctxt "" @@ -4138,7 +4138,7 @@ "16\n" "help.text" msgid "...before a document is saved under a specified name (with <emph>File - Save As</emph>, or with <emph>File - Save</emph> or the <emph>Save</emph> icon, if a document name has not yet been specified)." -msgstr "...prima che il documento venga salvato con un nome specificato (con il comando <emph>File - Salva con nome</emph> o, se il nome del documento non è ancora stato specificato, con il comando <emph>File - Salva</emph> o con il simbolo <emph>Salva</emph>)." +msgstr "...prima che il documento venga salvato con un nome specificato (con il comando <emph>File - Salva con nome</emph> o, se il nome del documento non è ancora stato specificato, con il comando <emph>File - Salva</emph> o con l'icona <emph>Salva</emph>)." #: 01040000.xhp msgctxt "" @@ -4156,7 +4156,7 @@ "44\n" "help.text" msgid "... after a document was saved under a specified name (with <emph>File - Save As</emph>, or with <emph>File - Save</emph> or with the <emph>Save</emph> icon, if a document name has not yet been specified)." -msgstr "... ...dopo che il documento è stato salvato con un nome specificato (con il comando <emph>File - Salva con nome</emph> o, se il nome del documento non è ancora stato specificato, con il comando <emph>File - Salva</emph> o con il simbolo <emph>Salva</emph>)." +msgstr "... ...dopo che il documento è stato salvato con un nome specificato (con il comando <emph>File - Salva con nome</emph> o, se il nome del documento non è ancora stato specificato, con il comando <emph>File - Salva</emph> o con l'icona <emph>Salva</emph>)." #: 01040000.xhp msgctxt "" @@ -4174,7 +4174,7 @@ "18\n" "help.text" msgid "...before a document is saved with <emph>File - Save</emph> or the <emph>Save</emph> icon, provided that a document name has already been specified." -msgstr "...prima che il documento, il cui nome deve già essere stato specificato, venga salvato con il comando <emph>File - Salva</emph> o con il simbolo <emph>Salva</emph>." +msgstr "...prima che il documento, il cui nome deve già essere stato specificato, venga salvato con il comando <emph>File - Salva</emph> o con l'icona <emph>Salva</emph>." #: 01040000.xhp msgctxt "" @@ -4192,7 +4192,7 @@ "46\n" "help.text" msgid "...after a document is saved with <emph>File - Save</emph> or the <emph>Save</emph> icon, provided that a document name has already been specified." -msgstr "...dopo che il documento, il cui nome deve già essere stato specificato, è stato salvato con il comando <emph>File - Salva</emph> o con il simbolo <emph>Salva</emph>." +msgstr "...dopo che il documento, il cui nome deve già essere stato specificato, è stato salvato con il comando <emph>File - Salva</emph> o con l'icona <emph>Salva</emph>." #: 01040000.xhp msgctxt "" @@ -6405,7 +6405,7 @@ "par_idN10ED8\n" "help.text" msgid "<ahelp hid=\".\">Specifies the sequence of the selected items, where \"0\" corresponds to the first item. To select more than one item, Multiselection must be enabled.</ahelp>" -msgstr "<ahelp hid=\".\">Specifica la sequenza delle voci selezionate, dove \"0\" corrisponde alla prima voce. Per selezionare più voci, devi prima abilitare l'opzione Selezione multipla.</ahelp>" +msgstr "<ahelp hid=\".\">Specifica la sequenza delle voci selezionate, dove \"0\" corrisponde alla prima voce. Per selezionare più voci, si deve prima abilitare l'opzione Selezione multipla.</ahelp>" #: 01170101.xhp msgctxt "" @@ -6653,7 +6653,7 @@ "267\n" "help.text" msgid "<ahelp hid=\".\">Specify the title of the dialog. Click the border of the dialog to select the dialog.</ahelp>" -msgstr "<ahelp hid=\".\">Specifica il titolo della finestra di dialogo. Per selezionare la finestra di dialogo, fai clic sul suo bordo.</ahelp>" +msgstr "<ahelp hid=\".\">Specifica il titolo della finestra di dialogo. Per selezionare la finestra di dialogo, fare clic sul suo bordo.</ahelp>" #: 01170101.xhp msgctxt "" @@ -36918,7 +36918,7 @@ "2\n" "help.text" msgid "<ahelp hid=\".\">Choose the macro that you want to execute when the selected graphic, frame, or OLE object is selected.</ahelp> Depending on the object that is selected, the function is either found on the <emph>Macro</emph> tab of the <emph>Object</emph> dialog, or in the <emph>Assign Macro</emph> dialog." -msgstr "<ahelp hid=\".\">Sceglie la macro da eseguire quando viene selezionata l'immagine, la cornice o l'oggetto OLE specificato.</ahelp> In base all'oggetto selezionato, la funzione si trova nella scheda <emph>Macro</emph> della finestra di dialogo <emph>Oggetto</emph> o nella finestra di dialogo <emph>Assegna macro</emph>." +msgstr "<ahelp hid=\".\">Scegliere la macro da eseguire quando viene selezionata l'immagine, la cornice o l'oggetto OLE specificato.</ahelp> In base all'oggetto selezionato, la funzione si trova nella scheda <emph>Macro</emph> della finestra di dialogo <emph>Oggetto</emph> o nella finestra di dialogo <emph>Assegna macro</emph>." #: 05060700.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/it/helpcontent2/source/text/scalc/01.po libreoffice-5.1.2~rc2/translations/source/it/helpcontent2/source/text/scalc/01.po --- libreoffice-5.1.1~rc2/translations/source/it/helpcontent2/source/text/scalc/01.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/it/helpcontent2/source/text/scalc/01.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "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-02-23 19:04+0000\n" +"PO-Revision-Date: 2016-03-18 13:14+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 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1456254270.000000\n" +"X-POOTLE-MTIME: 1458306847.000000\n" #: 01120000.xhp msgctxt "" @@ -425,7 +425,7 @@ "28\n" "help.text" msgid "<ahelp hid=\"HID_SC_NAVIPI_DROP\">Opens a submenu for selecting the drag mode. You decide which action is performed when dragging and dropping an object from the Navigator into a document. Depending on the mode you select, the icon indicates whether a hyperlink, link or a copy is created.</ahelp>" -msgstr "<ahelp hid=\"HID_SC_NAVIPI_DROP\">Si apre un sottomenu per la selezione del modo di trascinamento desiderato. Si può decidere l'azione da eseguire quando si trascina e rilascia un oggetto dal Navigatore in un documento. A seconda della modalità selezionata, il simbolo mostra se viene creato un collegamento ipertestuale, un collegamento o una copia.</ahelp>" +msgstr "<ahelp hid=\"HID_SC_NAVIPI_DROP\">Si apre un sottomenu per la selezione del modo di trascinamento desiderato. Si può decidere l'azione da eseguire quando si trascina e rilascia un oggetto dal Navigatore in un documento. A seconda della modalità selezionata, l'icona mostra se viene creato un collegamento ipertestuale, un collegamento o una copia.</ahelp>" #: 02110000.xhp msgctxt "" @@ -676,7 +676,7 @@ "par_idN10815\n" "help.text" msgid "<ahelp hid=\".\">Select a predefined header or footer from the list.</ahelp>" -msgstr "<ahelp hid=\".\">Seleziona un'intestazione o un piè di pagina predefinito dall'elenco.</ahelp>" +msgstr "<ahelp hid=\".\">Selezionare un'intestazione o un piè di pagina predefinito dall'elenco.</ahelp>" #: 02120100.xhp msgctxt "" @@ -54472,7 +54472,7 @@ "2\n" "help.text" msgid "<variable id=\"autoformattext\"><ahelp hid=\".\">Use this command to apply an AutoFormat to a selected sheet area or to define your own AutoFormats.</ahelp></variable>" -msgstr "<variable id=\"autoformattext\"><ahelp hid=\".\">Con questo comando potete applicare una formattazione automatica a un'area del foglio precedentemente selezionata o definire formattazioni automatiche personalizzate.</ahelp></variable>" +msgstr "<variable id=\"autoformattext\"><ahelp hid=\".\">Con questo comando si può applicare una formattazione automatica a un'area del foglio precedentemente selezionata o definire formattazioni automatiche personalizzate.</ahelp></variable>" #: 05110000.xhp msgctxt "" @@ -55790,7 +55790,7 @@ "15\n" "help.text" msgid "<ahelp hid=\"HID_SC_SCENWIN_BOTTOM\">Specifies additional information about the scenario. This information will be displayed in the <link href=\"text/scalc/01/02110000.xhp\" name=\"Navigator\">Navigator</link> when you click the <emph>Scenarios</emph> icon and select the desired scenario.</ahelp> You can also modify this information in the Navigator through the <emph>Properties </emph>context menu command." -msgstr "<ahelp hid=\"HID_SC_SCENWIN_BOTTOM\">Specifica informazioni aggiuntive sullo scenario. Queste informazioni vengono visualizzate nel <link href=\"text/scalc/01/02110000.xhp\" name=\"Navigatore\">Navigatore</link> facendo clic sul simbolo <emph>Scenari</emph> e selezionando lo scenario desiderato.</ahelp> Potete modificare queste informazioni nel Navigatore, usando il comando del menu di contesto <emph>Proprietà</emph>." +msgstr "<ahelp hid=\"HID_SC_SCENWIN_BOTTOM\">Specifica informazioni aggiuntive sullo scenario. Queste informazioni vengono visualizzate nel <link href=\"text/scalc/01/02110000.xhp\" name=\"Navigatore\">Navigatore</link> facendo clic sull'icona <emph>Scenari</emph> e selezionando lo scenario desiderato.</ahelp> Potete modificare queste informazioni nel Navigatore, usando il comando del menu di contesto <emph>Proprietà</emph>." #: 06050000.xhp msgctxt "" @@ -58535,7 +58535,7 @@ "3\n" "help.text" msgid "When you group a cell range, and outline icon appears in the margins next to the group. To hide or show the group, click the icon. To ungroup the selection, choose <emph>Data – Outline -</emph> <link href=\"text/scalc/01/12080400.xhp\" name=\"Ungroup\"><emph>Ungroup</emph></link>." -msgstr "Quando raggruppate un'area di celle, sul margine accanto al gruppo appare un simbolo di struttura. Per nascondere o mostrare il gruppo, fate clic sul simbolo. Per sciogliere un gruppo selezionato, scegliete <emph>Dati - Struttura -</emph> <link href=\"text/scalc/01/12080400.xhp\" name=\"Separa\"><emph>Separa</emph></link>." +msgstr "Quando raggruppate un'area di celle, sul margine accanto al gruppo appare un'icona di struttura. Per nascondere o mostrare il gruppo, fate clic sull'icona. Per sciogliere un gruppo selezionato, scegliete <emph>Dati - Struttura -</emph> <link href=\"text/scalc/01/12080400.xhp\" name=\"Separa\"><emph>Separa</emph></link>." #: 12080300.xhp msgctxt "" @@ -59056,7 +59056,7 @@ "12\n" "help.text" msgid "<ahelp hid=\".\">Opens the <emph>External Source</emph> dialog where you can select the OLAP data source for the pivot table.</ahelp>" -msgstr "<ahelp hid=\".\">Apre la finestra di dialogo <emph>Sorgente dati esterna</emph> nella quale potete selezionare la sorgente OLAP per la tabella pivot.</ahelp>" +msgstr "<ahelp hid=\".\">Apre la finestra di dialogo <emph>Sorgente dati esterna</emph> nella quale si può selezionare la sorgente OLAP per la tabella pivot.</ahelp>" #: 12090100.xhp msgctxt "" @@ -59108,7 +59108,7 @@ "4\n" "help.text" msgid "<ahelp hid=\".\">You can only select databases that are registered in %PRODUCTNAME.</ahelp> To register a data source, choose <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME Base - Databases</emph>." -msgstr "<ahelp hid=\".\">Potete selezionare solo database registrati in %PRODUCTNAME.</ahelp> Per registrare una sorgente dati, scegliete <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferenze</caseinline><defaultinline>Strumenti - Opzioni</defaultinline></switchinline> - %PRODUCTNAME Base - Database</emph>." +msgstr "<ahelp hid=\".\">È possibile selezionare solo database registrati in %PRODUCTNAME.</ahelp> Per registrare una sorgente dati, scegliere <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferenze</caseinline><defaultinline>Strumenti - Opzioni</defaultinline></switchinline> - %PRODUCTNAME Base - Database</emph>." #: 12090101.xhp msgctxt "" @@ -59302,7 +59302,7 @@ "par_id0509200913025615\n" "help.text" msgid "<ahelp hid=\".\">Select the area that contains the data for the current pivot table.</ahelp>" -msgstr "<ahelp hid=\".\">Selezionate l'area che contiene i dati per la tabella pivot attuale.</ahelp>" +msgstr "<ahelp hid=\".\">Selezionare l'area che contiene i dati per la tabella pivot attuale.</ahelp>" #: 12090102.xhp msgctxt "" @@ -59441,7 +59441,7 @@ "par_idN108CD\n" "help.text" msgid "<ahelp hid=\".\">Select this check box and double-click an item label in the table to show or hide details for the item. Clear this check box and double-click a cell in the table to edit the contents of the cell.</ahelp>" -msgstr "<ahelp hid=\".\">Selezionate questa casella di controllo e fate doppio clic sulla didascalia di un elemento nella tabella per mostrare o nascondere i relativi dettagli. Per modificare il contenuto di una cella della tabella, deselezionate questa casella di controllo e fate doppio clic su quella cella.</ahelp>" +msgstr "<ahelp hid=\".\">Selezionare questa casella di controllo e fate doppio clic sulla didascalia di un elemento nella tabella per mostrare o nascondere i relativi dettagli. Per modificare il contenuto di una cella della tabella, deselezionare questa casella di controllo e fare doppio clic su quella cella.</ahelp>" #: 12090102.xhp msgctxt "" @@ -59497,7 +59497,7 @@ "par_idN10904\n" "help.text" msgid "<ahelp hid=\".\">Choose the field that you want to view the details for.</ahelp>" -msgstr "<ahelp hid=\".\">Scegliete il campo di cui desiderate visualizzare i dettagli.</ahelp>" +msgstr "<ahelp hid=\".\">Scegliere il campo di cui si desidera visualizzare i dettagli.</ahelp>" #: 12090102.xhp msgctxt "" @@ -60093,7 +60093,7 @@ "par_idN1070F\n" "help.text" msgid "<ahelp hid=\".\">For each data field, you can select the type of display.</ahelp> For some types you can select additional information for a base field and a base item." -msgstr "<ahelp hid=\".\">Per ogni campo dati potete selezionare il tipo di visualizzazione.</ahelp> Per alcuni tipi potete selezionare informazioni aggiuntive per un campo base e un elemento base." +msgstr "<ahelp hid=\".\">Per ogni campo dati si può selezionare il tipo di visualizzazione.</ahelp> Per alcuni tipi potete selezionare informazioni aggiuntive per un campo base e un elemento base." #: 12090105.xhp msgctxt "" @@ -61686,7 +61686,7 @@ "par_idN10558\n" "help.text" msgid "<ahelp hid=\".\">Opens a submenu to edit the properties of the selected object.</ahelp>" -msgstr "<ahelp hid=\".\">Apre un sottomenu in cui potete modificare le proprietà dell'oggetto selezionato.</ahelp>" +msgstr "<ahelp hid=\".\">Apre un sottomenu in cui si possono modificare le proprietà dell'oggetto selezionato.</ahelp>" #: format_graphic.xhp msgctxt "" @@ -61814,7 +61814,7 @@ "par_id2209201514174373\n" "help.text" msgid "<ahelp hid=\".\"><variable id=\"aggregate_des\">This function returns an aggregate result of the calculations in the range. You can use different aggregate functions listed below. The Aggregate function enables you to omit hidden rows, errors, SUBTOTAL and other AGGREGATE function results in the calculation.</variable></ahelp>" -msgstr "<ahelp hid=\".\"><variable id=\"aggregate_des\">La funzione restituisce un risultato aggregato dei calcoli all'interno dell'intervallo. Potete usare diverse funzioni aggregate, come elencate di seguito. La funzione AGGREGA permette di omettere righe, errori, SUBTOTALE e altri risultati della funzione AGGREGA all'interno del calcolo.</variable></ahelp>" +msgstr "<ahelp hid=\".\"><variable id=\"aggregate_des\">La funzione restituisce un risultato aggregato dei calcoli all'interno dell'intervallo. Si possono usare diverse funzioni aggregate, come elencate di seguito. La funzione AGGREGA permette di omettere righe, errori, SUBTOTALE e altri risultati della funzione AGGREGA all'interno del calcolo.</variable></ahelp>" #: func_aggregate.xhp msgctxt "" @@ -67570,7 +67570,7 @@ "par_id8538773\n" "help.text" msgid "<ahelp hid=\".\" visibility=\"hidden\">Enter or click the cell reference of the target cell. This field takes the address of the cell whose value is to be optimized.</ahelp>" -msgstr "<ahelp hid=\".\" visibility=\"hidden\">Inserite o selezionate la cella di riferimento della cella di destinazione. Questo campo contiene l'indirizzo della cella il cui valore deve essere ottimizzato.</ahelp>" +msgstr "<ahelp hid=\".\" visibility=\"hidden\">Inserisci o seleziona la cella di riferimento della cella di destinazione. Questo campo contiene l'indirizzo della cella il cui valore deve essere ottimizzato.</ahelp>" #: solver.xhp msgctxt "" @@ -67602,7 +67602,7 @@ "par_id7141026\n" "help.text" msgid "<ahelp hid=\".\" visibility=\"hidden\">Enter the value or a cell reference.</ahelp>" -msgstr "<ahelp hid=\".\" visibility=\"hidden\">Inserite il valore o un riferimento a una cella.</ahelp>" +msgstr "<ahelp hid=\".\" visibility=\"hidden\">Inserisci il valore o un riferimento a una cella.</ahelp>" #: solver.xhp msgctxt "" @@ -67610,7 +67610,7 @@ "par_id8531449\n" "help.text" msgid "<ahelp hid=\".\" visibility=\"hidden\">Enter the cell range that can be changed.</ahelp>" -msgstr "<ahelp hid=\".\" visibility=\"hidden\">Specificate l'intervallo di celle che si possono variare.</ahelp>" +msgstr "<ahelp hid=\".\" visibility=\"hidden\">Specifica l'intervallo di celle che si possono variare.</ahelp>" #: solver.xhp msgctxt "" @@ -67618,7 +67618,7 @@ "par_id9183935\n" "help.text" msgid "<ahelp hid=\".\" visibility=\"hidden\">Enter a cell reference.</ahelp>" -msgstr "<ahelp hid=\".\" visibility=\"hidden\">Inserite un riferimento a una cella.</ahelp>" +msgstr "<ahelp hid=\".\" visibility=\"hidden\">Inserisci un riferimento a una cella.</ahelp>" #: solver.xhp msgctxt "" @@ -67626,7 +67626,7 @@ "par_id946684\n" "help.text" msgid "<ahelp hid=\".\" visibility=\"hidden\">Select an operator from the list.</ahelp>" -msgstr "<ahelp hid=\".\" visibility=\"hidden\">Selezionate un operatore dall'elenco.</ahelp>" +msgstr "<ahelp hid=\".\" visibility=\"hidden\">Seleziona un operatore dall'elenco.</ahelp>" #: solver.xhp msgctxt "" @@ -67634,7 +67634,7 @@ "par_id9607226\n" "help.text" msgid "<ahelp hid=\".\" visibility=\"hidden\">Enter a value or a cell reference.</ahelp>" -msgstr "<ahelp hid=\".\" visibility=\"hidden\">Inserite un valore o un riferimento a una cella.</ahelp>" +msgstr "<ahelp hid=\".\" visibility=\"hidden\">Inserisci un valore o un riferimento a una cella.</ahelp>" #: solver.xhp msgctxt "" @@ -67642,7 +67642,7 @@ "par_id1939451\n" "help.text" msgid "<ahelp hid=\".\" visibility=\"hidden\">Click to shrink or restore the dialog. You can click or select cells in the sheet. You can enter a cell reference manually in the input box.</ahelp>" -msgstr "<ahelp hid=\".\" visibility=\"hidden\">Fate clic per minimizzare o ripristinare la finestra di dialogo. Potete fare clic su o selezionare celle nel foglio. Si può scrivere manualmente un riferimento a una cella nella casella di testo.</ahelp>" +msgstr "<ahelp hid=\".\" visibility=\"hidden\">Fai clic per minimizzare o ripristinare la finestra di dialogo. Puoi fare clic su o selezionare celle nel foglio. Si può scrivere manualmente un riferimento a una cella nella casella di testo.</ahelp>" #: solver.xhp msgctxt "" @@ -67650,7 +67650,7 @@ "par_id9038972\n" "help.text" msgid "<ahelp hid=\".\" visibility=\"hidden\">Click to remove the row from the list. Any rows from below this row move up.</ahelp>" -msgstr "<ahelp hid=\".\" visibility=\"hidden\">Fate un clic per eliminare la riga dall'elenco. Ogni riga sottostante si sposta sopra.</ahelp>" +msgstr "<ahelp hid=\".\" visibility=\"hidden\">Fai un clic per eliminare la riga dall'elenco. Ogni riga sottostante si sposta sopra.</ahelp>" #: solver.xhp msgctxt "" @@ -67666,7 +67666,7 @@ "par_id2569658\n" "help.text" msgid "<ahelp hid=\".\" visibility=\"hidden\">Click to solve the equation with the current settings. The dialog settings are retained until you close the current document.</ahelp>" -msgstr "<ahelp hid=\".\" visibility=\"hidden\">Fate clic per risolvere l'equazione con le impostazioni correnti. Le impostazioni vengono mantenute finché non si chiude il documento corrente.</ahelp>" +msgstr "<ahelp hid=\".\" visibility=\"hidden\">Fai clic per risolvere l'equazione con le impostazioni correnti. Le impostazioni vengono mantenute finché non si chiude il documento corrente.</ahelp>" #: solver.xhp msgctxt "" @@ -67738,7 +67738,7 @@ "par_id393993\n" "help.text" msgid "<ahelp hid=\".\" visibility=\"hidden\">Select a solver engine. The listbox is disabled if only one solver engine is installed. Solver engines can be installed as extensions.</ahelp>" -msgstr "<ahelp hid=\".\" visibility=\"hidden\">Selezionate un motore per il risolutore. L'elenco a discesa è disabilitato se è installato un solo motore. I motori del risolutore possono essere installati come estensioni.</ahelp>" +msgstr "<ahelp hid=\".\" visibility=\"hidden\">Seleziona un motore per il risolutore. L'elenco a discesa è disabilitato se è installato un solo motore. I motori del risolutore possono essere installati come estensioni.</ahelp>" #: solver_options.xhp msgctxt "" @@ -67746,7 +67746,7 @@ "par_id5871761\n" "help.text" msgid "<ahelp hid=\".\" visibility=\"hidden\">Configure the current solver.</ahelp>" -msgstr "<ahelp hid=\".\" visibility=\"hidden\">Configurare il risolutore corrente.</ahelp>" +msgstr "<ahelp hid=\".\" visibility=\"hidden\">Configura il risolutore corrente.</ahelp>" #: solver_options.xhp msgctxt "" @@ -67754,7 +67754,7 @@ "par_id6531266\n" "help.text" msgid "<ahelp hid=\".\" visibility=\"hidden\">If the current entry in the Settings listbox allows to edit a value, you can click the Edit button. A dialog opens where you can change the value.</ahelp>" -msgstr "<ahelp hid=\".\" visibility=\"hidden\">Se il valore corrente nelle Opzioni permette la modifica di un valore, potete fare clic sul pulsante Modifica. Si apre una finestra di dialogo in cui modificare il valore.</ahelp>" +msgstr "<ahelp hid=\".\" visibility=\"hidden\">Se il valore corrente nelle Opzioni permette la modifica di un valore, puoi fare clic sul pulsante Modifica. Si apre una finestra di dialogo in cui modificare il valore.</ahelp>" #: solver_options.xhp msgctxt "" @@ -67762,7 +67762,7 @@ "par_id3912778\n" "help.text" msgid "<ahelp hid=\".\" visibility=\"hidden\">Enter or change the value.</ahelp>" -msgstr "<ahelp hid=\".\" visibility=\"hidden\">Inserire o modificare il valore.</ahelp>" +msgstr "<ahelp hid=\".\" visibility=\"hidden\">Inserisci o modifica il valore.</ahelp>" #: solver_options.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/it/helpcontent2/source/text/scalc/02.po libreoffice-5.1.2~rc2/translations/source/it/helpcontent2/source/text/scalc/02.po --- libreoffice-5.1.1~rc2/translations/source/it/helpcontent2/source/text/scalc/02.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/it/helpcontent2/source/text/scalc/02.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-08-10 16:00+0000\n" +"PO-Revision-Date: 2016-03-16 13:57+0000\n" "Last-Translator: Valter Mura <valtermura@gmail.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: it\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1439222413.000000\n" +"X-POOTLE-MTIME: 1458136633.000000\n" #: 02130000.xhp msgctxt "" @@ -472,7 +472,7 @@ "3\n" "help.text" msgid "This icon is only available when the <emph>Input line</emph> box is not active." -msgstr "Questo simbolo è disponibile solo quando la <emph>riga di digitazione</emph> non è attiva." +msgstr "Questa icona è disponibile solo quando la <emph>riga di digitazione</emph> non è attiva." #: 06040000.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/it/helpcontent2/source/text/scalc/guide.po libreoffice-5.1.2~rc2/translations/source/it/helpcontent2/source/text/scalc/guide.po --- libreoffice-5.1.1~rc2/translations/source/it/helpcontent2/source/text/scalc/guide.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/it/helpcontent2/source/text/scalc/guide.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "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:41+0000\n" +"PO-Revision-Date: 2016-03-16 17:04+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 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1453664510.000000\n" +"X-POOTLE-MTIME: 1458147868.000000\n" #: address_auto.xhp msgctxt "" @@ -931,7 +931,7 @@ "par_id8964201\n" "help.text" msgid "Click the left icon to clear all lines. This removes all outer borders, all inner lines, and all diagonal lines." -msgstr "Fate clic sul simbolo più a sinistra per cancellare tutte le linee. Questa operazione rimuove tutti i bordi esterni, le linee interne e le diagonali." +msgstr "Fate clic sull'icona più a sinistra per cancellare tutte le linee. Questa operazione rimuove tutti i bordi esterni, le linee interne e le diagonali." #: borders.xhp msgctxt "" @@ -947,7 +947,7 @@ "par_id1495406\n" "help.text" msgid "Click the rightmost icon to set an outer border. The inner lines are not changed, except the diagonal lines, which will be removed." -msgstr "Fate clic sul simbolo più a destra per impostare un bordo esterno. Le linee interne non vengono modificate, fatta eccezione per le linee diagonali che vengono rimosse." +msgstr "Fate clic sull'icona più a destra per impostare un bordo esterno. Le linee interne non vengono modificate, fatta eccezione per le linee diagonali che vengono rimosse." #: borders.xhp msgctxt "" @@ -1131,7 +1131,7 @@ "par_id5775322\n" "help.text" msgid "Click the second <emph>Default</emph> icon from the left to set all four borders. Then repeatedly click the lower edge until a white line is shown. This removes the lower border." -msgstr "Fate clic sul secondo simbolo da sinistra nell'area <emph>Predefinito</emph> per impostare tutti e quattro i bordi. Quindi, fate clic più volte sul bordo inferiore fino a quando non viene visualizzata una linea bianca. In questo modo il bordo inferiore viene rimosso." +msgstr "Fate clic sulla seconda icona da sinistra nell'area <emph>Predefinito</emph> per impostare tutti e quattro i bordi. Quindi, fate clic più volte sul bordo inferiore fino a quando non viene visualizzata una linea bianca. In questo modo il bordo inferiore viene rimosso." #: borders.xhp msgctxt "" @@ -8268,7 +8268,7 @@ "par_id05092009140203598\n" "help.text" msgid "<ahelp hid=\".\" visibility=\"hidden\">Opens a dialog box where you can assign macros to sheet events.</ahelp>" -msgstr "<ahelp hid=\".\" visibility=\"hidden\">Apre un riquadro in cui potete assegnare macro ad eventi del foglio.</ahelp>" +msgstr "<ahelp hid=\".\" visibility=\"hidden\">Apre un riquadro in cui puoi assegnare macro ad eventi del foglio.</ahelp>" #: multitables.xhp msgctxt "" @@ -8276,7 +8276,7 @@ "par_id05092009140203523\n" "help.text" msgid "<ahelp hid=\".\" visibility=\"hidden\">Opens a window where you can assign a color to the sheet tab.</ahelp>" -msgstr "<ahelp hid=\".\" visibility=\"hidden\">Apre una finestra in cui potete assegnare un colore alla linguetta del foglio.</ahelp>" +msgstr "<ahelp hid=\".\" visibility=\"hidden\">Apre una finestra in cui puoi assegnare un colore alla linguetta del foglio.</ahelp>" #: multitables.xhp msgctxt "" @@ -8284,7 +8284,7 @@ "par_id050920091402035\n" "help.text" msgid "<ahelp hid=\".\" visibility=\"hidden\">Click to select all sheets in the document.</ahelp>" -msgstr "<ahelp hid=\".\" visibility=\"hidden\">Fate clic per selezionare tutti i fogli nel documento.</ahelp>" +msgstr "<ahelp hid=\".\" visibility=\"hidden\">Fai clic per selezionare tutti i fogli nel documento.</ahelp>" #: multitables.xhp msgctxt "" @@ -8292,7 +8292,7 @@ "par_id0509200914020391\n" "help.text" msgid "<ahelp hid=\".\" visibility=\"hidden\">Click to deselect all sheets in the document, except the current sheet.</ahelp>" -msgstr "<ahelp hid=\".\" visibility=\"hidden\">Fate clic per deselezionare tutti i fogli nel documento ad eccezione del foglio attivo.</ahelp>" +msgstr "<ahelp hid=\".\" visibility=\"hidden\">Fai clic per deselezionare tutti i fogli nel documento, ad eccezione del foglio attivo.</ahelp>" #: multitables.xhp msgctxt "" @@ -8783,7 +8783,7 @@ "13\n" "help.text" msgid "The command is not visible if the sheet was opened with write protection on. In that case, click the <emph>Edit File </emph>icon on the <emph>Standard</emph> Bar." -msgstr "Il comando non è visibile se il foglio è aperto in sola lettura. In tal caso, fate clic sul simbolo <emph>Modifica file</emph> nella <emph>barra standard</emph>." +msgstr "Il comando non è visibile se il foglio è aperto in sola lettura. In tal caso, fate clic sull'icona <emph>Modifica file</emph> nella <emph>barra standard</emph>." #: print_details.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/it/helpcontent2/source/text/schart/01.po libreoffice-5.1.2~rc2/translations/source/it/helpcontent2/source/text/schart/01.po --- libreoffice-5.1.1~rc2/translations/source/it/helpcontent2/source/text/schart/01.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/it/helpcontent2/source/text/schart/01.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "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 10:54+0000\n" +"PO-Revision-Date: 2016-03-28 16:24+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 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1451904859.000000\n" +"X-POOTLE-MTIME: 1459182285.000000\n" #: 03010000.xhp msgctxt "" @@ -221,7 +221,7 @@ "par_id6697286\n" "help.text" msgid "<ahelp hid=\".\" visibility=\"hidden\">Enter names for the data series.</ahelp>" -msgstr "<ahelp hid=\".\" visibility=\"hidden\">Digitate i nomi per la serie di dati.</ahelp>" +msgstr "<ahelp hid=\".\" visibility=\"hidden\">Digita i nomi per la serie di dati.</ahelp>" #: 04010000.xhp msgctxt "" @@ -292,7 +292,7 @@ "7\n" "help.text" msgid "<variable id=\"sytexttitel\"><ahelp hid=\".uno:ToggleTitle\">Click <emph>Title On/Off</emph> on the Formatting bar to show or hide the title and subtitle.</ahelp></variable>" -msgstr "<variable id=\"sytexttitel\"><ahelp hid=\".uno:ToggleTitle\">Con il simbolo <emph>Mostra/nascondi il titolo</emph> nella barra di formattazione potete mostrare o nascondere il titolo principale e il sottotitolo.</ahelp></variable>" +msgstr "<variable id=\"sytexttitel\"><ahelp hid=\".uno:ToggleTitle\">Con l'icona <emph>Mostra/nascondi il titolo</emph> nella barra di formattazione potete mostrare o nascondere il titolo principale e il sottotitolo.</ahelp></variable>" #: 04010000.xhp msgctxt "" @@ -398,7 +398,7 @@ "3\n" "help.text" msgid "<variable id=\"sytextlegende\"><ahelp hid=\".uno:ToggleLegend\">To show or hide a legend, click <emph>Legend On/Off</emph> on the <emph>Formatting</emph> bar.</ahelp></variable>" -msgstr "<variable id=\"sytextlegende\"><ahelp hid=\".uno:ToggleLegend\">Con il simbolo <emph>Mostra/nascondi legenda</emph> nella <emph>barra di formattazione</emph> potete mostrare o nascondere la legenda.</ahelp></variable>" +msgstr "<variable id=\"sytextlegende\"><ahelp hid=\".uno:ToggleLegend\">Con l'icona <emph>Mostra/nascondi legenda</emph> nella <emph>barra di formattazione</emph> potete mostrare o nascondere la legenda.</ahelp></variable>" #: 04020000.xhp msgctxt "" @@ -555,7 +555,7 @@ "par_id1106200812112530\n" "help.text" msgid "<ahelp hid=\".\">Specify the text direction for a paragraph that uses complex text layout (CTL). This feature is only available if complex text layout support is enabled.</ahelp>" -msgstr "<ahelp hid=\".\">Specifica la direzione del testo per un paragrafo che utilizza la disposizione testo complesso (CTL). Questa funzione è disponibile solo se avete abilitato il supporto alla disposizione testo complesso.</ahelp>" +msgstr "<ahelp hid=\".\">Specifica la direzione del testo per un paragrafo che utilizza la disposizione testo complesso (CTL). Questa funzione è disponibile solo se è stato abilitato il supporto alla disposizione testo complesso.</ahelp>" #: 04030000.xhp msgctxt "" @@ -631,7 +631,7 @@ "par_id9794610\n" "help.text" msgid "<ahelp hid=\".\">Opens a dialog to select the number format.</ahelp>" -msgstr "<ahelp hid=\".\">Apre una finestra di dialogo in cui potete selezionare il formato numero.</ahelp>" +msgstr "<ahelp hid=\".\">Apre una finestra di dialogo in cui si può selezionare il formato numero.</ahelp>" #: 04030000.xhp msgctxt "" @@ -665,7 +665,7 @@ "par_id5476241\n" "help.text" msgid "<ahelp hid=\".\">Opens a dialog to select the percentage format.</ahelp>" -msgstr "<ahelp hid=\".\">Apre una finestra di dialogo in cui potete selezionare il formato percentuale.</ahelp>" +msgstr "<ahelp hid=\".\">Apre una finestra di dialogo in cui si può selezionare il formato percentuale.</ahelp>" #: 04030000.xhp msgctxt "" @@ -717,7 +717,7 @@ "par_id6668904\n" "help.text" msgid "<ahelp hid=\".\">Selects the separator between multiple text strings for the same object.</ahelp>" -msgstr "<ahelp hid=\".\">Selezionate il separatore tra stringhe multiple di testo per lo stesso oggetto.</ahelp>" +msgstr "<ahelp hid=\".\">Seleziona il separatore tra stringhe multiple di testo per lo stesso oggetto.</ahelp>" #: 04030000.xhp msgctxt "" @@ -733,7 +733,7 @@ "par_id5159459\n" "help.text" msgid "<ahelp hid=\".\">Selects the placement of data labels relative to the objects.</ahelp>" -msgstr "<ahelp hid=\".\">Selezionate la posizione delle didascalie dei dati relative agli oggetti.</ahelp>" +msgstr "<ahelp hid=\".\">Seleziona la posizione delle didascalie dei dati relative agli oggetti.</ahelp>" #: 04030000.xhp msgctxt "" @@ -749,7 +749,7 @@ "par_id1106200812280719\n" "help.text" msgid "<ahelp hid=\".\">Specify the text direction for a paragraph that uses complex text layout (CTL). This feature is only available if complex text layout support is enabled.</ahelp>" -msgstr "<ahelp hid=\".\">Specifica la direzione del testo per un paragrafo che utilizza la disposizione testo complesso (CTL). Questa funzione è disponibile solo se avete abilitato il supporto alla disposizione testo complesso.</ahelp>" +msgstr "<ahelp hid=\".\">Specifica la direzione del testo per un paragrafo che utilizza la disposizione testo complesso (CTL). Questa funzione è disponibile solo se è stato abilitato il supporto alla disposizione testo complesso.</ahelp>" #: 04030000.xhp msgctxt "" @@ -765,7 +765,7 @@ "par_id1007200901590752\n" "help.text" msgid "<ahelp hid=\".\">Click in the dial to set the text orientation for the data labels.</ahelp>" -msgstr "<ahelp hid=\".\">Fate clic all'interno del selettore per impostare l'orientamento del testo delle didascalie dei dati nel modo desiderato.</ahelp>" +msgstr "<ahelp hid=\".\">Fare clic all'interno del selettore per impostare l'orientamento del testo delle didascalie dei dati nel modo desiderato.</ahelp>" #: 04030000.xhp msgctxt "" @@ -773,7 +773,7 @@ "par_id1007200901590757\n" "help.text" msgid "<ahelp hid=\".\">Enter the counterclockwise rotation angle for the data labels.</ahelp>" -msgstr "<ahelp hid=\".\">Inserite l'angolo di rotazione (antiorario) per le didascalie dei dati.</ahelp>" +msgstr "<ahelp hid=\".\">Inserire l'angolo di rotazione (antiorario) per le didascalie dei dati.</ahelp>" #: 04040000.xhp msgctxt "" @@ -959,7 +959,7 @@ "2\n" "help.text" msgid "<variable id=\"statistik\"><ahelp hid=\".\">Use the <emph>X or Y Error Bars</emph> dialog to display error bars for 2D charts.</ahelp></variable>" -msgstr "<variable id=\"statistik\"><ahelp hid=\".\">Utilizzate la finestra di dialogo <emph>Barre d'errore X o Y</emph> per visualizzare le barre d'errore nei grafici bidimensionali (2D).</ahelp></variable>" +msgstr "<variable id=\"statistik\"><ahelp hid=\".\">Usare la finestra di dialogo <emph>Barre d'errore X o Y</emph> per visualizzare le barre d'errore nei grafici a due dimensioni.</ahelp></variable>" #: 04050000.xhp msgctxt "" @@ -1064,7 +1064,7 @@ "par_id7109286\n" "help.text" msgid "<ahelp hid=\".\">Select a function to calculate the error bars.</ahelp>" -msgstr "<ahelp hid=\".\">Selezionate una funzione per calcolare le barre dell'errore.</ahelp>" +msgstr "<ahelp hid=\".\">Selezionare una funzione per calcolare le barre dell'errore.</ahelp>" #: 04050000.xhp msgctxt "" @@ -1115,7 +1115,7 @@ "par_id6679586\n" "help.text" msgid "<ahelp hid=\".\">Click Cell Range and then specify a cell range from which to take the positive and negative error bar values.</ahelp>" -msgstr "<ahelp hid=\".\">Fate clic sull'Intervallo di celle, e poi specificate l'intervallo di celle dal quale prendere i valori delle barre dell'errore positivo e negativo.</ahelp>" +msgstr "<ahelp hid=\".\">Fare clic sull'Intervallo di celle, e poi specificare l'intervallo di celle dal quale prendere i valori delle barre dell'errore positivo e negativo.</ahelp>" #: 04050000.xhp msgctxt "" @@ -1123,7 +1123,7 @@ "par_id3872188\n" "help.text" msgid "<ahelp hid=\".\" visibility=\"hidden\">Click a button to shrink the dialog, then use the mouse to select the cell range in the spreadsheet. Click the button again to restore the dialog to full size.</ahelp>" -msgstr "<ahelp hid=\".\" visibility=\"hidden\">Fate clic su un pulsante per ridurre la finestra di dialogo, poi selezionate l'intervallo di celle del foglio di lavoro utilizzando il mouse. Fate clic ancora sul pulsante per ripristinare le dimensioni massime della finestra di dialogo.</ahelp>" +msgstr "<ahelp hid=\".\" visibility=\"hidden\">Fai clic su un pulsante per ridurre la finestra di dialogo, poi seleziona l'intervallo di celle del foglio di lavoro utilizzando il mouse. Fai ancora clic sul pulsante per ripristinare le dimensioni massime della finestra di dialogo.</ahelp>" #: 04050000.xhp msgctxt "" @@ -1139,7 +1139,7 @@ "par_id6633503\n" "help.text" msgid "<ahelp hid=\".\">For a chart with its own data, the error bar values can be entered in the chart data table. The Data Table dialog shows additional columns titled Positive X or Y-Error-Bars and Negative X or Y-Error-Bars.</ahelp>" -msgstr "<ahelp hid=\".\">In un grafico con i propri dati, potete inserire i valori della barra dell'errore nella tabella dei dati del grafico. La finestra di dialogo Tabella dei dati, mostra delle colonne aggiuntive denominate Barre dell'errore positivo X o Y e Barre dell'errore negativo X o Y.</ahelp>" +msgstr "<ahelp hid=\".\">In un grafico con i propri dati, si possono inserire i valori della barra dell'errore nella tabella dei dati del grafico. La finestra di dialogo Tabella dei dati, mostra delle colonne aggiuntive denominate Barre dell'errore positivo X o Y e Barre dell'errore negativo X o Y.</ahelp>" #: 04050000.xhp msgctxt "" @@ -1147,7 +1147,7 @@ "par_id0428200810573839\n" "help.text" msgid "<ahelp hid=\".\" visibility=\"hidden\">Enter the value to add to the displayed value as the positive error value.</ahelp>" -msgstr "<ahelp hid=\".\" visibility=\"hidden\">Inserite il valore da aggiungere al valore visualizzato come valore dell'errore positivo.</ahelp>" +msgstr "<ahelp hid=\".\" visibility=\"hidden\">Inserisci il valore da aggiungere al valore visualizzato come valore dell'errore positivo.</ahelp>" #: 04050000.xhp msgctxt "" @@ -1155,7 +1155,7 @@ "par_id0428200810573862\n" "help.text" msgid "<ahelp hid=\".\" visibility=\"hidden\">Enter the value to subtract from the displayed value as the negative error value.</ahelp>" -msgstr "<ahelp hid=\".\" visibility=\"hidden\">Inserite il valore da sottrarre al valore visualizzato come valore dell'errore negativo.</ahelp>" +msgstr "<ahelp hid=\".\" visibility=\"hidden\">Inserisci il valore da sottrarre al valore visualizzato come valore dell'errore negativo.</ahelp>" #: 04050000.xhp msgctxt "" @@ -1163,7 +1163,7 @@ "par_id0428200810573844\n" "help.text" msgid "<ahelp hid=\".\" visibility=\"hidden\">Enter the address range from where to get the positive error values. Use the Shrink button to select the range from a sheet.</ahelp>" -msgstr "<ahelp hid=\".\" visibility=\"hidden\">Inserite l'intervallo di indirizzi dai quali ottenere i valori dell'errore positivo. Utilizzate il pulsante Riduci per selezionare l'intervallo all'interno di un foglio di lavoro.</ahelp>" +msgstr "<ahelp hid=\".\" visibility=\"hidden\">Inserisci l'intervallo di indirizzi dai quali ottenere i valori dell'errore positivo. Utilizza il pulsante Riduci per selezionare l'intervallo all'interno di un foglio di lavoro.</ahelp>" #: 04050000.xhp msgctxt "" @@ -1171,7 +1171,7 @@ "par_id0428200810573970\n" "help.text" msgid "<ahelp hid=\".\" visibility=\"hidden\">Enter the address range from where to get the negative error values. Use the Shrink button to select the range from a sheet.</ahelp>" -msgstr "<ahelp hid=\".\" visibility=\"hidden\">Inserite l'intervallo di indirizzi dai quali ottenere i valori dell'errore negativo. Utilizzate il pulsante Riduci per selezionare l'intervallo all'interno di un foglio di lavoro.</ahelp>" +msgstr "<ahelp hid=\".\" visibility=\"hidden\">Inserisci l'intervallo di indirizzi dai quali ottenere i valori dell'errore negativo. Utilizza il pulsante Riduci per selezionare l'intervallo all'interno di un foglio di lavoro.</ahelp>" #: 04050000.xhp msgctxt "" @@ -1187,7 +1187,7 @@ "par_id0428200810573991\n" "help.text" msgid "<ahelp hid=\".\">Enable to use the positive error values also as negative error values. You can only change the value of the \"Positve (+)\" box. That value gets copied to the \"Negative (-)\" box automatically.</ahelp>" -msgstr "<ahelp hid=\".\">Abilitate l'uso dei valori dell'errore positivo anche come valori dell'errore negativo. Potete cambiare solo il valore della casella \"Positivo (+)\". Quel valore viene copiato automaticamente nella casella \"Negativo (-)\" .</ahelp>" +msgstr "<ahelp hid=\".\">Abilitare l'uso dei valori dell'errore positivo anche come valori dell'errore negativo. Si può cambiare solo il valore della casella \"Positivo (+)\". Quel valore viene copiato automaticamente nella casella \"Negativo (-)\" .</ahelp>" #: 04050000.xhp msgctxt "" @@ -1285,7 +1285,7 @@ "par_id7272255\n" "help.text" msgid "<variable id=\"trendlinestext\"><ahelp hid=\".\">Trend lines can be added to all 2D chart types except for Pie and Stock charts.</ahelp></variable>" -msgstr "<variable id=\"trendlinestext\"><ahelp hid=\".\">Le linee di tendenza possono essere aggiunte a tutti i tipi di grafici bidimensionali (2D), tranne a quelli a torta e quelli azionari.</ahelp></variable>" +msgstr "<variable id=\"trendlinestext\"><ahelp hid=\".\">Le linee di tendenza possono essere aggiunte a tutti i tipi di grafici a due dimensioni, tranne a quelli a torta e quelli azionari.</ahelp></variable>" #: 04050100.xhp msgctxt "" @@ -1389,7 +1389,7 @@ "par_id4072084\n" "help.text" msgid "<ahelp hid=\".\">Mean Value Lines are special trend lines that show the mean value. Use <item type=\"menuitem\">Insert - Mean Value Lines</item> to insert mean value lines for data series.</ahelp>" -msgstr "<ahelp hid=\".\">Le linee valore medio rappresentano andamenti lineari particolari che mostrano il valore medio. Per inserire le linee valore per le serie di dati usate <item type=\"menuitem\">Inserisci - Linee valore medio</item>.</ahelp>" +msgstr "<ahelp hid=\".\">Le linee valore medio rappresentano andamenti lineari particolari che mostrano il valore medio. Per inserire le linee valore per le serie di dati usare <item type=\"menuitem\">Inserisci - Linee valore medio</item>.</ahelp>" #: 04050100.xhp msgctxt "" @@ -1405,7 +1405,7 @@ "par_id846888\n" "help.text" msgid "<ahelp hid=\".\">To show the trend line equation, select the trend line in the chart, right-click to open the context menu, and choose <emph>Insert Trend Line Equation</emph>.</ahelp>" -msgstr "<ahelp hid=\".\">Per visualizzare l'equazione della linea di tendenza, selezionate la linea di tendenza nel grafico, facendo clic col pulsante destro del mouse aprite il menu contestuale e scegliete <emph>Inserisci equazione della linea di tendenza</emph>.</ahelp>" +msgstr "<ahelp hid=\".\">Per visualizzare l'equazione della linea di tendenza, selezionare la linea di tendenza nel grafico, facendo clic col pulsante destro del mouse aprite il menu contestuale e scegliere <emph>Inserisci equazione della linea di tendenza</emph>.</ahelp>" #: 04050100.xhp msgctxt "" @@ -1437,7 +1437,7 @@ "par_id7971434\n" "help.text" msgid "<ahelp hid=\".\" visibility=\"hidden\">Enable Show equation to see the equation of the trend line.</ahelp>" -msgstr "<ahelp hid=\".\" visibility=\"hidden\">Abilitate Mostra equazione per vedere l'equazione della linea di tendenza.</ahelp>" +msgstr "<ahelp hid=\".\" visibility=\"hidden\">Abilita Mostra equazione per vedere l'equazione della linea di tendenza.</ahelp>" #: 04050100.xhp msgctxt "" @@ -1445,7 +1445,7 @@ "par_id558793\n" "help.text" msgid "<ahelp hid=\".\" visibility=\"hidden\">Enable Show Coefficient of Determination to see the determination coefficient of the trend line.</ahelp>" -msgstr "<ahelp hid=\".\" visibility=\"hidden\">Abilitate Mostra il coefficiente di determinazione per visualizzare il coefficiente di determinazione della linea di tendenza.</ahelp>" +msgstr "<ahelp hid=\".\" visibility=\"hidden\">Abilita Mostra il coefficiente di determinazione per visualizzare il coefficiente di determinazione della linea di tendenza.</ahelp>" #: 04050100.xhp msgctxt "" @@ -1957,7 +1957,7 @@ "par_id2144535\n" "help.text" msgid "As a result, bars attached to the first y-axis are partly or completely hidden by bars attached to the second y-axis. To avoid this, enable the option to display bars side by side. <ahelp hid=\".\">The bars from different data series are shown as if they were attached only to one axis.</ahelp>" -msgstr "Come risultato, le barre collegate al primo asse y sono parzialmente o completamente nascoste dalle barre collegate al secondo asse y. Per evitare questo, abilitate l'opzione Mostra le barre affiancate. <ahelp hid=\".\">Le barre che rappresentano differenti serie di dati sono visualizzate come se fossero attaccate solo a un asse.</ahelp>" +msgstr "Come risultato, le barre collegate al primo asse Y sono parzialmente o completamente nascoste dalle barre collegate al secondo asse Y. Per evitare questo, abilitate l'opzione Mostra le barre affiancate. <ahelp hid=\".\">Le barre che rappresentano differenti serie di dati sono visualizzate come se fossero attaccate solo a un asse.</ahelp>" #: 04060000.xhp msgctxt "" @@ -1973,7 +1973,7 @@ "par_id2527237\n" "help.text" msgid "Available for pie and donut charts. <ahelp hid=\".\">The default direction in which the pieces of a pie chart are ordered is counterclockwise. Enable the <emph>Clockwise direction</emph> checkbox to draw the pieces in opposite direction.</ahelp>" -msgstr "Disponibile per grafici a torta e a ciambella. <ahelp hid=\".\">La direzione predefinita nella quale sono ordinati i pezzi in un grafico a torta è quella antioraria. Abilitate la casella <emph>Rotazione in senso orario</emph> per disegnare i pezzi nella direzione opposta.</ahelp>" +msgstr "Disponibile per grafici a torta e a ciambella. <ahelp hid=\".\">La direzione predefinita nella quale sono ordinati i pezzi in un grafico a torta è quella antioraria. Abilitare la casella <emph>Rotazione in senso orario</emph> per disegnare i pezzi nella direzione opposta.</ahelp>" #: 04060000.xhp msgctxt "" @@ -1989,7 +1989,7 @@ "par_id761131\n" "help.text" msgid "<ahelp hid=\".\">Drag the small dot along the circle or click any position on the circle to set the starting angle of a pie or donut chart. The starting angle is the mathematical angle position where the first piece is drawn. The value of 90 degrees draws the first piece at the 12 o'clock position. A value of 0 degrees starts at the 3 o'clock position.</ahelp>" -msgstr "<ahelp hid=\".\">Per impostare l'angolo iniziale in grafici a torta o a ciambella, trascinate il piccolo punto lungo il cerchio o fate clic in qualsiasi posizione del cerchio. L'angolo di partenza è la posizione dell'angolo matematico dove viene disegnato il primo pezzo del grafico. Impostando il valore di 90 gradi il primo pezzo del grafico viene disegnato nella posizione corrispondente alle 12 sul quadrante di un orologio. Il valore di 0 gradi corrisponde alla posizione delle 3 sul quadrante di un orologio.</ahelp>" +msgstr "<ahelp hid=\".\">Per impostare l'angolo iniziale in grafici a torta o a ciambella, trascinare il piccolo punto lungo il cerchio o fare clic in qualsiasi posizione del cerchio. L'angolo di partenza è la posizione dell'angolo matematico dove viene disegnato il primo pezzo del grafico. Impostando il valore di 90 gradi il primo pezzo del grafico viene disegnato nella posizione corrispondente alle 12 sul quadrante di un orologio. Il valore di 0 gradi corrisponde alla posizione delle 3 sul quadrante di un orologio.</ahelp>" #: 04060000.xhp msgctxt "" @@ -2021,7 +2021,7 @@ "par_id2164067\n" "help.text" msgid "<ahelp hid=\".\">Enter the starting angle between 0 and 359 degrees. You can also click the arrows to change the displayed value.</ahelp>" -msgstr "<ahelp hid=\".\">Inserite un angolo iniziale compreso tra 0 e 359 gradi. Potete fare clic sulle frecce per modificare il valore mostrato.</ahelp>" +msgstr "<ahelp hid=\".\">Inserire un angolo iniziale compreso tra 0 e 359 gradi. Si può fare clic sulle frecce per modificare il valore mostrato.</ahelp>" #: 04060000.xhp msgctxt "" @@ -2053,7 +2053,7 @@ "par_id0305200910524811\n" "help.text" msgid "<ahelp hid=\".\">For a missing value, no data will be shown. This is the default for chart types Column, Bar, Line, Net.</ahelp>" -msgstr "<ahelp hid=\".\">In caso di valore mancante, nessun dato sarà visualizzato. Questo è il modo predefinito per i grafici a colonna, a barre, a linea, a rete.</ahelp>" +msgstr "<ahelp hid=\".\">In caso di valore mancante, non sarà visualizzato alcun dato. Questa è l'impostazione predefinita per i grafici a colonna, a barre, a linea, a rete.</ahelp>" #: 04060000.xhp msgctxt "" @@ -2069,7 +2069,7 @@ "par_id030520091052489\n" "help.text" msgid "<ahelp hid=\".\">For a missing value, the y-value will be shown as zero. This is the default for chart type Area.</ahelp>" -msgstr "<ahelp hid=\".\">In caso di valore mancante, il valore Y verrà visualizzato a zero. Questo è il modo predefinito per grafici ad area.</ahelp>" +msgstr "<ahelp hid=\".\">In caso di valore mancante, il valore Y sarà visualizzato a zero. Questa è l'impostazione predefinita per grafici ad area.</ahelp>" #: 04060000.xhp msgctxt "" @@ -2085,7 +2085,7 @@ "par_id0305200910524938\n" "help.text" msgid "<ahelp hid=\".\">For a missing value, the interpolation from the neighbor values will be shown. This is the default for chart type XY.</ahelp>" -msgstr "<ahelp hid=\".\">In caso di valore mancante, verrà visualizzata l'interpolazione tra i valori più vicini. Questo è il modo predefinito per il grafico di tipo XY.</ahelp>" +msgstr "<ahelp hid=\".\">In caso di valore mancante, sarà visualizzata l'interpolazione tra i valori più vicini. Questa è l'impostazione predefinita per il grafico di tipo XY.</ahelp>" #: 04060000.xhp msgctxt "" @@ -2101,7 +2101,7 @@ "par_id030520091052494\n" "help.text" msgid "<ahelp hid=\".\">Check to also show values of currently hidden cells within the source cell range.</ahelp>" -msgstr "<ahelp hid=\".\">Selezionate per visualizzare anche i dati delle celle attualmente nascoste all'interno dell'intervallo della cella sorgente.</ahelp>" +msgstr "<ahelp hid=\".\">Selezionare per visualizzare anche i dati delle celle attualmente nascoste all'interno dell'intervallo della cella sorgente.</ahelp>" #: 04070000.xhp msgctxt "" @@ -2133,7 +2133,7 @@ "par_id3146974\n" "help.text" msgid "<variable id=\"gitter\"><ahelp hid=\".\">You can divide the axes into sections by assigning gridlines to them. This allows you to get a better overview of the chart, especially if you are working with large charts.</ahelp> </variable> The Y axis major grid is activated by default." -msgstr "<variable id=\"gitter\"><ahelp hid=\".\">Potete dividere gli assi in sezioni mediante una griglia. Questo permette di migliorare la leggibilità dei grafici, in particolar modo se sono di grandi dimensioni.</ahelp></variable> La griglia principale dell'asse Y è attiva in maniera predefinita." +msgstr "<variable id=\"gitter\"><ahelp hid=\".\">Si possono dividere gli assi in sezioni mediante una griglia. Questo permette di migliorare la leggibilità dei grafici, in particolar modo se sono di grandi dimensioni.</ahelp></variable> La griglia principale dell'asse Y è attiva in maniera predefinita." #: 04070000.xhp msgctxt "" @@ -2311,7 +2311,7 @@ "2\n" "help.text" msgid "<variable id=\"objekteigenschaften\"><ahelp hid=\".\">Formats the selected object.</ahelp></variable> Depending on the object selected, the command opens dialogs that you can also open by choosing the following commands from the <emph>Format</emph> menu:" -msgstr "<variable id=\"objekteigenschaften\"><ahelp hid=\".\">Assegna determinate proprietà all'oggetto selezionato.</ahelp></variable> Il comando apre le finestre di dialogo associate all'oggetto selezionato, che è possibile richiamare anche con i seguenti comandi del menu <emph>Formato</emph>:" +msgstr "<variable id=\"objekteigenschaften\"><ahelp hid=\".\">Assegna determinate proprietà all'oggetto selezionato.</ahelp></variable> Il comando apre le finestre di dialogo associate all'oggetto selezionato, che potete richiamare anche con i seguenti comandi del menu <emph>Formato</emph>:" #: 05010000.xhp msgctxt "" @@ -3001,7 +3001,7 @@ "par_id1106200812235271\n" "help.text" msgid "<ahelp hid=\".\">Specify the text direction for a paragraph that uses complex text layout (CTL). This feature is only available if complex text layout support is enabled.</ahelp>" -msgstr "<ahelp hid=\".\">Specifica la direzione del testo per un paragrafo che utilizza la disposizione testo complesso (CTL). Questa funzione è disponibile solo se avete abilitato il supporto alla disposizione testo complesso.</ahelp>" +msgstr "<ahelp hid=\".\">Specificare la direzione del testo per un paragrafo che utilizza la disposizione testo complesso (CTL). Questa funzione è disponibile solo se è stato abilitato il supporto alla disposizione testo complesso.</ahelp>" #: 05030000.xhp msgctxt "" @@ -3511,7 +3511,7 @@ "par_id59225\n" "help.text" msgid "<ahelp hid=\".\">For some types of axes, you can select to format an axis as text or date, or to detect the type automatically.</ahelp> For the axis type \"Date\" you can set the following options." -msgstr "<ahelp hid=\".\">Per alcuni tipi di assi, potete selezionare per formattare un asse come testo o data, o per individuarne automaticamente il tipo.</ahelp> Per il tipo di asse \"Data\", potete impostare le opzioni che seguono." +msgstr "<ahelp hid=\".\">Per alcuni tipi di assi, si può selezionare per formattare un asse come testo o data, o per individuarne automaticamente il tipo.</ahelp> Per il tipo di asse \"Data\", potete impostare le opzioni che seguono." #: 05040201.xhp msgctxt "" @@ -3593,7 +3593,7 @@ "par_id1006200801024970\n" "help.text" msgid "<ahelp hid=\".\">Select where to cross the other axis: at start, at end, at a specified value, or at a category.</ahelp>" -msgstr "<ahelp hid=\".\">Selezionate dove intersecare l'altro asse: all'inizio, alla fine, in corrispondenza di un determinato valore, o in corrispondenza di una categoria.</ahelp>" +msgstr "<ahelp hid=\".\">Scegliere dove intersecare l'altro asse: all'inizio, alla fine, in corrispondenza di un determinato valore, o in corrispondenza di una categoria.</ahelp>" #: 05040202.xhp msgctxt "" @@ -3601,7 +3601,7 @@ "par_id1006200801024957\n" "help.text" msgid "<ahelp hid=\".\" visibility=\"hidden\">Enter the value where the axis line should cross the other axis.</ahelp>" -msgstr "<ahelp hid=\".\" visibility=\"hidden\">Digitate il valore dove l'asse dovrebbe intersecare l'altro asse.</ahelp>" +msgstr "<ahelp hid=\".\" visibility=\"hidden\">Digita il valore dove l'asse dovrebbe intersecare l'altro asse.</ahelp>" #: 05040202.xhp msgctxt "" @@ -3609,7 +3609,7 @@ "par_id100620080102503\n" "help.text" msgid "<ahelp hid=\".\" visibility=\"hidden\">Select the category where the axis line should cross the other axis.</ahelp>" -msgstr "<ahelp hid=\".\" visibility=\"hidden\">Selezionate la categoria dove l'asse dovrebbe intersecare l'altro asse.</ahelp>" +msgstr "<ahelp hid=\".\" visibility=\"hidden\">Seleziona la categoria dove l'asse dovrebbe intersecare l'altro asse.</ahelp>" #: 05040202.xhp msgctxt "" @@ -3633,7 +3633,7 @@ "par_id1006200801523889\n" "help.text" msgid "<ahelp hid=\".\">Select where to place the labels: near axis, near axis (other side), outside start, or outside end.</ahelp>" -msgstr "<ahelp hid=\".\">Selezionate dove disporre le didascalie: vicino all'asse, vicino all'asse (dall'altro lato), fuori dall'inizio, fuori dalla fine.</ahelp>" +msgstr "<ahelp hid=\".\">Scegliere dove disporre le didascalie: vicino all'asse, vicino all'asse (dall'altro lato), fuori dall'inizio, fuori dalla fine.</ahelp>" #: 05040202.xhp msgctxt "" @@ -3765,7 +3765,7 @@ "par_id1006200801025278\n" "help.text" msgid "<ahelp hid=\".\">Select where to place the marks: at labels, at axis, or at axis and labels.</ahelp>" -msgstr "<ahelp hid=\".\">Selezionate dove disporre i contrassegni: sulle didascalie, sugli assi o su entrambi.</ahelp>" +msgstr "<ahelp hid=\".\">Selezionare dove disporre i contrassegni: sulle didascalie, sugli assi o su entrambi.</ahelp>" #: 05050000.xhp msgctxt "" @@ -4342,7 +4342,7 @@ "par_id3424481\n" "help.text" msgid "<ahelp hid=\".\" visibility=\"hidden\">Apply a line curve model.</ahelp>" -msgstr "<ahelp hid=\".\" visibility=\"hidden\">Applicate un modello curva linea.</ahelp>" +msgstr "<ahelp hid=\".\" visibility=\"hidden\">Applica un modello curva linea.</ahelp>" #: smooth_line_properties.xhp msgctxt "" @@ -4350,7 +4350,7 @@ "par_id2320932\n" "help.text" msgid "<ahelp hid=\".\" visibility=\"hidden\">Set the resolution.</ahelp>" -msgstr "<ahelp hid=\".\" visibility=\"hidden\">Impostate la risoluzione.</ahelp>" +msgstr "<ahelp hid=\".\" visibility=\"hidden\">Imposta la risoluzione.</ahelp>" #: smooth_line_properties.xhp msgctxt "" @@ -4358,7 +4358,7 @@ "par_id8638874\n" "help.text" msgid "<ahelp hid=\".\" visibility=\"hidden\">Set the degree of the polynomials.</ahelp>" -msgstr "<ahelp hid=\".\" visibility=\"hidden\">Impostate il grado dei polinomi.</ahelp>" +msgstr "<ahelp hid=\".\" visibility=\"hidden\">Imposta il grado dei polinomi.</ahelp>" #: stepped_line_properties.xhp msgctxt "" @@ -4494,7 +4494,7 @@ "par_id6998809\n" "help.text" msgid "On the first page of the <link href=\"text/schart/01/wiz_chart_type.xhp\">Chart Wizard</link> or in the context menu of a chart you can choose a chart type. <ahelp hid=\".\" visibility=\"hidden\">Opens a dialog to edit the properties of a three dimensional view for Column, Bar, Pie, and Area charts. For Line and XY (Scatter) charts you can see 3D lines.</ahelp>" -msgstr "Nella prima pagina della <link href=\"text/schart/01/wiz_chart_type.xhp\">Creazione guidata grafico</link>, o nel menu contestuale di un grafico, potete scegliere il tipo di grafico. <ahelp hid=\".\" visibility=\"hidden\">Apre una finestra per modificare le proprietà della vista a tre dimensioni per i grafici a colonna, a barra, a torta e ad area. Per i grafici a linee e XY (Dispersione) potrete vedere linee 3D.</ahelp>" +msgstr "Nella prima pagina della <link href=\"text/schart/01/wiz_chart_type.xhp\">Creazione guidata grafico</link>, o nel menu contestuale di un grafico, potete scegliere il tipo di grafico. <ahelp hid=\".\" visibility=\"hidden\">Apre una finestra per modificare le proprietà della vista a tre dimensioni per i grafici a colonna, a barra, a torta e ad area. Per i grafici a linee e XY (Dispersione) è possibile vedere linee 3D.</ahelp>" #: three_d_view.xhp msgctxt "" @@ -4622,7 +4622,7 @@ "par_id7623828\n" "help.text" msgid "<ahelp hid=\".\" visibility=\"hidden\">If Right-angled axes is enabled, you can rotate the chart contents only in X and Y direction, that is, parallel to the chart borders. Right-angled axes is enabled by default for newly created 3D charts. Pie and Donut charts do not support right-angled axes.</ahelp>" -msgstr "<ahelp hid=\".\" visibility=\"hidden\">Se è abilitato l'asse ad angolo retto, è possibile ruotare i contenuti del grafico solo nei versi X e Y, ossia parallelamente ai bordi del grafico. L'asse ad angolo retto è abilitato per default nei grafici 3D appena creati. I grafici a ciambella e a torta non supportano gli assi ad angolo retto.</ahelp>" +msgstr "<ahelp hid=\".\" visibility=\"hidden\">Se è abilitato l'asse ad angolo retto, puoi ruotare i contenuti del grafico solo nei versi X e Y, ossia parallelamente ai bordi del grafico. Per impostazione predefinita, l'asse ad angolo retto è abilitato nei grafici 3D appena creati. I grafici a ciambella e a torta non supportano gli assi ad angolo retto.</ahelp>" #: three_d_view.xhp msgctxt "" @@ -4654,7 +4654,7 @@ "par_id6070436\n" "help.text" msgid "<ahelp hid=\".\" visibility=\"hidden\">Mark the Perspective box to view the chart as through a camera lens. Use the spin button to set the percentage. With a high percentage nearer objects look bigger than more distant objects.</ahelp>" -msgstr "<ahelp hid=\".\" visibility=\"hidden\">Selezionate la casella Prospettiva per ottenere una vista del grafico come attraverso la lente di una fotocamera. Utilizzate la casella di selezione per impostare la percentuale. Con una percentuale alta gli oggetti più vicini appaiono più grandi degli oggetti più distanti.</ahelp>" +msgstr "<ahelp hid=\".\" visibility=\"hidden\">Seleziona la casella Prospettiva per ottenere una vista del grafico come attraverso la lente di una fotocamera. Utilizza la casella di selezione per impostare la percentuale. Con una percentuale alta gli oggetti più vicini appaiono più grandi degli oggetti più distanti.</ahelp>" #: three_d_view.xhp msgctxt "" @@ -4734,7 +4734,7 @@ "par_id8531449\n" "help.text" msgid "<ahelp hid=\".\" visibility=\"hidden\">Select a scheme from the list box, or click any of the check boxes below.</ahelp>" -msgstr "<ahelp hid=\".\" visibility=\"hidden\">Selezionate uno schema dalla casella di riepilogo o fate clic su una delle caselle di controllo sotto riportate.</ahelp>" +msgstr "<ahelp hid=\".\" visibility=\"hidden\">Seleziona uno schema dalla casella di riepilogo oppure fai clic su una delle caselle di controllo sotto riportate.</ahelp>" #: three_d_view.xhp msgctxt "" @@ -4830,7 +4830,7 @@ "par_id2423780\n" "help.text" msgid "<ahelp hid=\".\" visibility=\"hidden\">Drag the right slider to set the vertical height and direction of the selected light source.</ahelp>" -msgstr "<ahelp hid=\".\" visibility=\"hidden\">Trascinate il cursore destro per impostare l'altezza e la direzione della fonte di luce selezionata.</ahelp>" +msgstr "<ahelp hid=\".\" visibility=\"hidden\">Trascina il cursore destro per impostare l'altezza e la direzione verticale della fonte di luce selezionata.</ahelp>" #: three_d_view.xhp msgctxt "" @@ -4838,7 +4838,7 @@ "par_id2569658\n" "help.text" msgid "<ahelp hid=\".\" visibility=\"hidden\">Drag the bottom slider to set the horizontal position and direction of the selected light source.</ahelp>" -msgstr "<ahelp hid=\".\" visibility=\"hidden\">Trascinate il cursore in basso per impostare la posizione e direzione orizzontale della fonte di luce selezionata.</ahelp>" +msgstr "<ahelp hid=\".\" visibility=\"hidden\">Trascina il cursore in basso per impostare la posizione e la direzione orizzontale della fonte di luce selezionata.</ahelp>" #: three_d_view.xhp msgctxt "" @@ -4846,7 +4846,7 @@ "par_id6394238\n" "help.text" msgid "<ahelp hid=\".\" visibility=\"hidden\">Click to switch between an illumination model of a sphere or a cube.</ahelp>" -msgstr "<ahelp hid=\".\" visibility=\"hidden\">Fate clic per passare da un modello di illuminazione a sfera o cubo.</ahelp>" +msgstr "<ahelp hid=\".\" visibility=\"hidden\">Fai clic per passare da un modello di illuminazione a sfera o cubo.</ahelp>" #: three_d_view.xhp msgctxt "" @@ -4854,7 +4854,7 @@ "par_id533768\n" "help.text" msgid "<ahelp hid=\".\" visibility=\"hidden\">Click to enable or disable the specular light source with highlights.</ahelp>" -msgstr "<ahelp hid=\".\" visibility=\"hidden\">Fate clic per attivare o disattivare una fonte di luce speculare con aree evidenziate.</ahelp>" +msgstr "<ahelp hid=\".\" visibility=\"hidden\">Fai clic per attivare o disattivare una fonte di luce speculare con aree evidenziate.</ahelp>" #: three_d_view.xhp msgctxt "" @@ -4862,7 +4862,7 @@ "par_id7214270\n" "help.text" msgid "<ahelp hid=\".\" visibility=\"hidden\">Click to enable or disable the uniform light source.</ahelp>" -msgstr "<ahelp hid=\".\" visibility=\"hidden\">Fate clic per attivare o disattivare una sorgente di luce uniforme.</ahelp>" +msgstr "<ahelp hid=\".\" visibility=\"hidden\">Fai clic per attivare o disattivare una sorgente di luce uniforme.</ahelp>" #: three_d_view.xhp msgctxt "" @@ -4870,7 +4870,7 @@ "par_id2186346\n" "help.text" msgid "<ahelp hid=\".\" visibility=\"hidden\">Select a color for the selected light source.</ahelp>" -msgstr "<ahelp hid=\".\" visibility=\"hidden\">Selezionate un colore per la fonte di luce scelta.</ahelp>" +msgstr "<ahelp hid=\".\" visibility=\"hidden\">Seleziona un colore per la fonte di luce scelta.</ahelp>" #: three_d_view.xhp msgctxt "" @@ -4878,7 +4878,7 @@ "par_id1331217\n" "help.text" msgid "<ahelp hid=\".\" visibility=\"hidden\">Select a color using the color dialog.</ahelp>" -msgstr "<ahelp hid=\".\" visibility=\"hidden\">Selezionate un colore utilizzando la finestra di dialogo colore.</ahelp>" +msgstr "<ahelp hid=\".\" visibility=\"hidden\">Seleziona un colore utilizzando la finestra di dialogo Colore.</ahelp>" #: three_d_view.xhp msgctxt "" @@ -4886,7 +4886,7 @@ "par_id393993\n" "help.text" msgid "<ahelp hid=\".\" visibility=\"hidden\">Select a color for the ambient light.</ahelp>" -msgstr "<ahelp hid=\".\" visibility=\"hidden\">Selezionate un colore per la luce ambientale.</ahelp>" +msgstr "<ahelp hid=\".\" visibility=\"hidden\">Seleziona un colore per la luce ambientale.</ahelp>" #: three_d_view.xhp msgctxt "" @@ -4894,7 +4894,7 @@ "par_id5871761\n" "help.text" msgid "<ahelp hid=\".\" visibility=\"hidden\">Select a color using the color dialog.</ahelp>" -msgstr "<ahelp hid=\".\" visibility=\"hidden\">Selezionate un colore utilizzando la finestra di dialogo colore.</ahelp>" +msgstr "<ahelp hid=\".\" visibility=\"hidden\">Seleziona un colore utilizzando la finestra di dialogo Colore.</ahelp>" #: type_area.xhp msgctxt "" @@ -6910,7 +6910,7 @@ "par_id6437269\n" "help.text" msgid "<ahelp hid=\".\" visibility=\"hidden\">Enter a title for your chart.</ahelp>" -msgstr "<ahelp hid=\".\" visibility=\"hidden\">Indicate un titolo per il vostro grafico.</ahelp>" +msgstr "<ahelp hid=\".\" visibility=\"hidden\">Indica un titolo per il tuo grafico.</ahelp>" #: wiz_chart_elements.xhp msgctxt "" @@ -6918,7 +6918,7 @@ "par_id9469893\n" "help.text" msgid "<ahelp hid=\".\" visibility=\"hidden\">Enter a subtitle for your chart.</ahelp>" -msgstr "<ahelp hid=\".\" visibility=\"hidden\">Indicate un sottotitolo per il vostro grafico.</ahelp>" +msgstr "<ahelp hid=\".\" visibility=\"hidden\">Indica un sottotitolo per il tuo grafico.</ahelp>" #: wiz_chart_elements.xhp msgctxt "" @@ -6926,7 +6926,7 @@ "par_id130008\n" "help.text" msgid "<ahelp hid=\".\" visibility=\"hidden\">Enter a label for the x-axis (horizontal).</ahelp>" -msgstr "<ahelp hid=\".\" visibility=\"hidden\">Indicate una didascalia per l'asse X (orizzontale).</ahelp>" +msgstr "<ahelp hid=\".\" visibility=\"hidden\">Indica una didascalia per l'asse X (orizzontale).</ahelp>" #: wiz_chart_elements.xhp msgctxt "" @@ -6934,7 +6934,7 @@ "par_id5821710\n" "help.text" msgid "<ahelp hid=\".\" visibility=\"hidden\">Enter a label for the y-axis (vertical).</ahelp>" -msgstr "<ahelp hid=\".\" visibility=\"hidden\">Indicate una didascalia per l'asse Y (verticale).</ahelp>" +msgstr "<ahelp hid=\".\" visibility=\"hidden\">Indica una didascalia per l'asse Y (verticale).</ahelp>" #: wiz_chart_elements.xhp msgctxt "" @@ -6942,7 +6942,7 @@ "par_id2871791\n" "help.text" msgid "<ahelp hid=\".\" visibility=\"hidden\">Enter a label for the z-axis. This option is only available for three-dimensional charts.</ahelp>" -msgstr "<ahelp hid=\".\" visibility=\"hidden\">Indicate una didascalia per l'asse Z. Questa opzione è disponibile solo per i grafici tridimensionali.</ahelp>" +msgstr "<ahelp hid=\".\" visibility=\"hidden\">Indica una didascalia per l'asse Z. Questa opzione è disponibile solo per i grafici tridimensionali.</ahelp>" #: wiz_chart_elements.xhp msgctxt "" @@ -6950,7 +6950,7 @@ "par_id7333597\n" "help.text" msgid "<ahelp hid=\".\" visibility=\"hidden\">Displays a legend in your chart.</ahelp>" -msgstr "<ahelp hid=\".\" visibility=\"hidden\">Visualizza una legenda nel vostro grafico.</ahelp>" +msgstr "<ahelp hid=\".\" visibility=\"hidden\">Visualizza una legenda nel tuo grafico.</ahelp>" #: wiz_chart_elements.xhp msgctxt "" @@ -7014,7 +7014,7 @@ "par_id9969481\n" "help.text" msgid "<ahelp hid=\".\" visibility=\"hidden\">Enter a label for the secondary x-axis. This option is only available for charts that support a secondary x-axis.</ahelp>" -msgstr "<ahelp hid=\".\" visibility=\"hidden\">Inserite una didascalia per l'asse X secondario. Questa opzione è disponibile solo per quei grafici che supportano un asse X secondario.</ahelp>" +msgstr "<ahelp hid=\".\" visibility=\"hidden\">Inserisci una didascalia per l'asse X secondario. Questa opzione è disponibile solo per quei grafici che supportano un asse X secondario.</ahelp>" #: wiz_chart_elements.xhp msgctxt "" @@ -7022,7 +7022,7 @@ "par_id816675\n" "help.text" msgid "<ahelp hid=\".\" visibility=\"hidden\">Enter a label for the secondary y-axis. This option is only available for charts that support a secondary y-axis.</ahelp>" -msgstr "<ahelp hid=\".\" visibility=\"hidden\">Inserite una didascalia per l'asse Y secondario. Questa opzione è disponibile solo per quei grafici che supportano un asse Y secondario.</ahelp>" +msgstr "<ahelp hid=\".\" visibility=\"hidden\">Inserisci una didascalia per l'asse Y secondario. Questa opzione è disponibile solo per quei grafici che supportano un asse Y secondario.</ahelp>" #: wiz_chart_elements.xhp msgctxt "" @@ -7318,7 +7318,7 @@ "par_id2284920\n" "help.text" msgid "<ahelp hid=\".\" visibility=\"hidden\">Click to go to the named wizard page.</ahelp>" -msgstr "<ahelp hid=\".\" visibility=\"hidden\">Fate clic per andare alla pagina nominata della procedura guidata.</ahelp>" +msgstr "<ahelp hid=\".\" visibility=\"hidden\">Fai clic per andare alla pagina nominata della procedura guidata.</ahelp>" #: wiz_chart_type.xhp msgctxt "" @@ -7326,7 +7326,7 @@ "par_id3184301\n" "help.text" msgid "<ahelp hid=\".\" visibility=\"hidden\">Select a basic chart type.</ahelp>" -msgstr "<ahelp hid=\".\" visibility=\"hidden\">Selezionate un tipo di grafico di base.</ahelp>" +msgstr "<ahelp hid=\".\" visibility=\"hidden\">Seleziona un tipo di grafico di base.</ahelp>" #: wiz_chart_type.xhp msgctxt "" @@ -7334,7 +7334,7 @@ "par_id2129276\n" "help.text" msgid "<ahelp hid=\".\" visibility=\"hidden\">Select a sub type of the basic chart type.</ahelp>" -msgstr "<ahelp hid=\".\" visibility=\"hidden\">Selezionate un sottotipo del tipo di grafico.</ahelp>" +msgstr "<ahelp hid=\".\" visibility=\"hidden\">Seleziona un sottotipo del tipo di grafico.</ahelp>" #: wiz_chart_type.xhp msgctxt "" @@ -7350,7 +7350,7 @@ "par_id3860896\n" "help.text" msgid "<ahelp hid=\".\" visibility=\"hidden\">Select the type of 3D look.</ahelp>" -msgstr "<ahelp hid=\".\" visibility=\"hidden\">Selezionate il tipo o l'aspetto 3D.</ahelp>" +msgstr "<ahelp hid=\".\" visibility=\"hidden\">Seleziona il tipo o l'aspetto 3D.</ahelp>" #: wiz_chart_type.xhp msgctxt "" @@ -7358,7 +7358,7 @@ "par_id4041871\n" "help.text" msgid "<ahelp hid=\".\" visibility=\"hidden\">Select a shape from the list.</ahelp>" -msgstr "<ahelp hid=\".\" visibility=\"hidden\">Selezionate una forma dall'elenco.</ahelp>" +msgstr "<ahelp hid=\".\" visibility=\"hidden\">Seleziona una forma dall'elenco.</ahelp>" #: wiz_chart_type.xhp msgctxt "" @@ -7390,7 +7390,7 @@ "par_id2414014\n" "help.text" msgid "<ahelp hid=\".\" visibility=\"hidden\">Choose the type of line to draw.</ahelp>" -msgstr "<ahelp hid=\".\" visibility=\"hidden\">Scegliete il tipo di linea da disegnare.</ahelp>" +msgstr "<ahelp hid=\".\" visibility=\"hidden\">Scegli il tipo di linea da disegnare.</ahelp>" #: wiz_chart_type.xhp msgctxt "" @@ -7414,7 +7414,7 @@ "par_id7334208\n" "help.text" msgid "<ahelp hid=\".\" visibility=\"hidden\">Set the number of lines for the Column and Line chart type.</ahelp>" -msgstr "<ahelp hid=\".\" visibility=\"hidden\">Impostate il numero di linee per il tipo di grafico a linee e colonne.</ahelp>" +msgstr "<ahelp hid=\".\" visibility=\"hidden\">Imposta il numero di linee per il tipo di grafico a linee e colonne.</ahelp>" #: wiz_chart_type.xhp msgctxt "" @@ -7462,7 +7462,7 @@ "par_id6401867\n" "help.text" msgid "<ahelp hid=\".\" visibility=\"hidden\">Opens the Data Ranges dialog where you can edit Data Range and Data Series.</ahelp>" -msgstr "<ahelp hid=\".\" visibility=\"hidden\">Apre la finestra di dialogo Area dati dove potete modificare l'area e le serie di dati.</ahelp>" +msgstr "<ahelp hid=\".\" visibility=\"hidden\">Apre la finestra di dialogo Area dati dove puoi modificare l'area e le serie di dati.</ahelp>" #: wiz_data_range.xhp msgctxt "" @@ -7558,7 +7558,7 @@ "par_id379650\n" "help.text" msgid "<ahelp hid=\".\" visibility=\"hidden\">Enter the data range that you want to include in your chart. To minimize this dialog while you select the data range in Calc, click the <emph>Select data range</emph> button.</ahelp>" -msgstr "<ahelp hid=\".\" visibility=\"hidden\">Indicate l'area dati che volete includere nel vostro grafico. Per ridurre la finestra di dialogo mentre selezionate l'area dati in Calc, fate clic sul pulsante <emph>Seleziona area dati</emph>.</ahelp>" +msgstr "<ahelp hid=\".\" visibility=\"hidden\">Indica l'area dati che vuoi includere nel tuo grafico. Per ridurre la finestra di dialogo mentre selezioni l'area dati in Calc, fai clic sul pulsante <emph>Seleziona area dati</emph>.</ahelp>" #: wiz_data_range.xhp msgctxt "" @@ -7782,7 +7782,7 @@ "par_id5201879\n" "help.text" msgid "<ahelp hid=\".\" visibility=\"hidden\">Shows a list of all data series in the chart. Click an entry to view and edit that data series. Click <emph>Add</emph> to insert a new series into the list after the selected entry.</ahelp>" -msgstr "<ahelp hid=\".\" visibility=\"hidden\">Mostra un elenco di tutte le serie di dati del grafico. Fate clic su una voce per vedere e modificare quella serie di dati. Fate clic su <emph>Aggiungi</emph> per inserire una nuova serie nell'elenco, dopo la voce selezionata.</ahelp>" +msgstr "<ahelp hid=\".\" visibility=\"hidden\">Mostra un elenco di tutte le serie di dati del grafico. Fai clic su una voce per vedere e modificare quella serie di dati. Fai clic su <emph>Aggiungi</emph> per inserire una nuova serie nell'elenco, dopo la voce selezionata.</ahelp>" #: wiz_data_series.xhp msgctxt "" @@ -7790,7 +7790,7 @@ "par_id2571794\n" "help.text" msgid "<ahelp hid=\".\" visibility=\"hidden\">Shows all the data ranges used by the data series that is selected in the Data Series list box. Each data range shows the role name and the source range address.</ahelp>" -msgstr "<ahelp hid=\".\" visibility=\"hidden\">Mostra tutti gli intervalli dei dati usati dalle serie dei dati selezionate nella casella di riepilogo Serie didati. Ciascun'area dati mostra il ruolo e l'indirizzo dell'intervallo sorgente.</ahelp>" +msgstr "<ahelp hid=\".\" visibility=\"hidden\">Mostra tutti gli intervalli dei dati usati dalle serie dei dati selezionate nella casella di riepilogo Serie di dati. Ciascuna area dati mostra il ruolo e l'indirizzo dell'intervallo sorgente.</ahelp>" #: wiz_data_series.xhp msgctxt "" @@ -7798,7 +7798,7 @@ "par_id2254402\n" "help.text" msgid "<ahelp hid=\".\" visibility=\"hidden\">Shows the source range address from the second column of the Data Range list box. You can change the range in the text box or by dragging in the document. To minimize this dialog while you select the data range in Calc, click the <emph>Select data range</emph> button.</ahelp>" -msgstr "<ahelp hid=\".\" visibility=\"hidden\">Mostra l'indirizzo della sorgente intervallo dalla seconda colonna della casella di riepilogo Area dati. Potete cambiare l'intervallo nella casella di testo o trascinando nel documento. Per ridurre la finestra di dialogo mentre selezionate l'intervallo dati in Calc, fate clic sul pulsante <emph>Seleziona un'area dati</emph> .</ahelp>" +msgstr "<ahelp hid=\".\" visibility=\"hidden\">Mostra l'indirizzo della sorgente intervallo dalla seconda colonna della casella di riepilogo Area dati. Puoi cambiare l'intervallo nella casella di testo o trascinando nel documento. Per ridurre la finestra di dialogo mentre selezioni l'intervallo dati in Calc, fai clic sul pulsante <emph>Seleziona un'area dati</emph> .</ahelp>" #: wiz_data_series.xhp msgctxt "" @@ -7806,7 +7806,7 @@ "par_id2419507\n" "help.text" msgid "<ahelp hid=\".\" visibility=\"hidden\">Shows the source range address of the categories (the texts you can see on the x-axis of a category chart). For an XY-chart, the text box contains the source range of the data labels which are displayed for the data points. To minimize this dialog while you select the data range in Calc, click the <emph>Select data range</emph> button.</ahelp>" -msgstr "<ahelp hid=\".\" visibility=\"hidden\">Mostra l'indirizzo della sorgente intervallo delle categorie (il testo che potete vedere sull'asse X è un grafico categoria). Per un grafico XY, la casella di testo contiene l'intervallo sorgente delle didascalie dati che sono visualizzate per i punti dei dati. Per ridurre la finestra di dialogo mentre selezionate l'intervallo dati in Calc, fate clic sul pulsante <emph>Seleziona un'area dati</emph>.</ahelp>" +msgstr "<ahelp hid=\".\" visibility=\"hidden\">Mostra l'indirizzo della sorgente intervallo delle categorie (il testo che puoi vedere sull'asse X è un grafico categoria). Per un grafico XY, la casella di testo contiene l'intervallo sorgente delle didascalie dati che sono visualizzate per i punti dei dati. Per ridurre la finestra di dialogo mentre selezioni l'intervallo dati in Calc, fai clic sul pulsante <emph>Seleziona un'area dati</emph>.</ahelp>" #: wiz_data_series.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/it/helpcontent2/source/text/schart.po libreoffice-5.1.2~rc2/translations/source/it/helpcontent2/source/text/schart.po --- libreoffice-5.1.1~rc2/translations/source/it/helpcontent2/source/text/schart.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/it/helpcontent2/source/text/schart.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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:12+0000\n" +"PO-Revision-Date: 2016-02-25 13:23+0000\n" "Last-Translator: Valter Mura <valtermura@gmail.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: it\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1453407128.000000\n" +"X-POOTLE-MTIME: 1456406612.000000\n" #: main0000.xhp msgctxt "" @@ -97,7 +97,7 @@ "par_id76601\n" "help.text" msgid "<ahelp hid=\".\" visibility=\"hidden\">Creates a chart in the current document. To use a continuous range of cells as the data source for your chart, click inside the cell range, and then choose this command. Alternatively, select some cells and choose this command to create a chart of the selected cells.</ahelp>" -msgstr "<ahelp hid=\".\" visibility=\"hidden\">Crea un grafico nel documento corrente. Per usare un intervallo di celle contigue come sorgente dati per il vostro grafico, fate clic all'interno dell'intervallo di celle e scegliete questo comando. In alternativa, selezionate alcune celle e scegliete questo comando per creare un grafico dalle celle selezionate.</ahelp>" +msgstr "<ahelp hid=\".\" visibility=\"hidden\">Crea un grafico nel documento corrente. Per usare un intervallo di celle contigue come sorgente dati per il tuo grafico, fai clic all'interno dell'intervallo di celle e scegli questo comando. In alternativa, seleziona alcune celle e scegli questo comando per creare un grafico dalle celle selezionate.</ahelp>" #: main0000.xhp msgctxt "" @@ -657,7 +657,7 @@ "par_id0810200902300699\n" "help.text" msgid "<ahelp hid=\".\">Opens the Data Table dialog where you can edit the chart data.</ahelp>" -msgstr "<ahelp hid=\".\">Apre la finestra Tabella Dati dove potete modificare i dati del grafico.</ahelp>" +msgstr "<ahelp hid=\".\">Apre la finestra Tabella Dati dove si possono modificare i dati del grafico.</ahelp>" #: main0202.xhp msgctxt "" @@ -689,7 +689,7 @@ "par_id081020090230076\n" "help.text" msgid "<ahelp hid=\".\">To show or hide a legend, click Legend On/Off on the Formatting bar.</ahelp>" -msgstr "<ahelp hid=\".\">Per visualizzare o nascondere una legenda, fate clic su Mostra/Nascondi legenda nella barra di Formattazione.</ahelp>" +msgstr "<ahelp hid=\".\">Per visualizzare o nascondere una legenda, fare clic su Mostra/Nascondi legenda nella barra di Formattazione.</ahelp>" #: main0202.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/it/helpcontent2/source/text/shared/00.po libreoffice-5.1.2~rc2/translations/source/it/helpcontent2/source/text/shared/00.po --- libreoffice-5.1.1~rc2/translations/source/it/helpcontent2/source/text/shared/00.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/it/helpcontent2/source/text/shared/00.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "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:54+0000\n" +"PO-Revision-Date: 2016-03-18 13:16+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 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1453665281.000000\n" +"X-POOTLE-MTIME: 1458306974.000000\n" #: 00000001.xhp msgctxt "" @@ -49,7 +49,7 @@ "5\n" "help.text" msgid "<ahelp hid=\".\">Clicking <emph>Cancel</emph> closes a dialog without saving any changes made.</ahelp>" -msgstr "<ahelp hid=\".\">Facendo clic su <emph>Annulla</emph> potete chiudere una finestra di dialogo senza salvare le modifiche apportate.</ahelp>" +msgstr "<ahelp hid=\".\">Facendo clic su <emph>Annulla</emph> si può chiudere una finestra di dialogo senza salvare le modifiche fatte.</ahelp>" #: 00000001.xhp msgctxt "" @@ -234,7 +234,7 @@ "9\n" "help.text" msgid "<ahelp hid=\".\">Closes the dialog and saves all changes.</ahelp>" -msgstr "<ahelp hid=\".\">Questo pulsante consente di chiudere la finestra di dialogo e applicare le modifiche apportate</ahelp>" +msgstr "<ahelp hid=\".\">Chiude la finestra di dialogo e salva le modifiche fatte.</ahelp>" #: 00000001.xhp msgctxt "" @@ -288,7 +288,7 @@ "48\n" "help.text" msgid "<ahelp hid=\".\">Click the<emph> Shrink </emph>icon to reduce the dialog to the size of the input field. It is then easier to mark the required reference in the sheet. The icons then automatically convert to the <emph>Maximize</emph> icon. Click it to restore the dialog to its original size.</ahelp>" -msgstr "<ahelp hid=\".\">Fate clic sull'icona <emph>Zoom indietro</emph> per ridurre la finestra di dialogo alla dimensione di un campo di digitazione. In questo modo sarà più semplice contrassegnare il riferimento richiesto nel foglio. Le icone vengono quindi convertite automaticamente nell'icona <emph>Zoom avanti</emph>. Facendo clic su questa icona potete ripristinare la dimensione originale della finestra di dialogo.</ahelp>" +msgstr "<ahelp hid=\".\">Fare clic sull'icona <emph>Zoom indietro</emph> per ridurre la finestra di dialogo alla dimensione di un campo di digitazione. In questo modo sarà più semplice contrassegnare il riferimento richiesto nel foglio. Le icone vengono quindi convertite automaticamente nell'icona <emph>Zoom avanti</emph>. Facendo clic su quest'ultima si può ripristinare la dimensione originale della finestra di dialogo.</ahelp>" #: 00000001.xhp msgctxt "" @@ -4312,7 +4312,7 @@ "par_id3150129\n" "help.text" msgid "<ahelp hid=\".\">Enter the image resolution. Select the measurement units from the list box.</ahelp>" -msgstr "<ahelp hid=\".\">Inserite la risoluzione dell'immagine. Selezionate l'unità di misura dall'elenco.</ahelp>" +msgstr "<ahelp hid=\".\">Inserire la risoluzione dell'immagine. Selezionare l'unità di misura dall'elenco.</ahelp>" #: 00000200.xhp msgctxt "" @@ -4336,7 +4336,7 @@ "par_id435923952\n" "help.text" msgid "<ahelp hid=\".\" visibility=\"hidden\">Select the color depth from 8 bit grayscale or 24 bit true color.</ahelp>" -msgstr "<ahelp hid=\".\" visibility=\"hidden\">Selezionate la profondità colore in scala di grigio a 8 bit o in colori reali a 24 bit.</ahelp>" +msgstr "<ahelp hid=\".\" visibility=\"hidden\">Seleziona la profondità colore in scala di grigio a 8 bit o in colori reali a 24 bit.</ahelp>" #: 00000200.xhp msgctxt "" @@ -4352,7 +4352,7 @@ "par_id355152953\n" "help.text" msgid "<ahelp hid=\".\" visibility=\"hidden\">Sets the quality for the export. Choose from a low quality with minimal file size, up to a high quality and big file size</ahelp>" -msgstr "<ahelp hid=\".\" visibility=\"hidden\">Imposta la qualità per l'esportazione. Potete partire da una qualità bassa, con una dimensione di file minima, per arrivare a una qualità alta, con dimensione di file grande.</ahelp>" +msgstr "<ahelp hid=\".\" visibility=\"hidden\">Imposta la qualità per l'esportazione. Puoi partire da una qualità bassa, con una dimensione di file minima, per arrivare a una qualità alta, con dimensione di file grande.</ahelp>" #: 00000200.xhp msgctxt "" @@ -4424,7 +4424,7 @@ "par_id31456456938\n" "help.text" msgid "<ahelp hid=\".\" visibility=\"hidden\">Specifies whether to save the background of the picture as transparent. Only objects will be visible in the GIF image. Use the Color Replacer to set the transparent color in the picture.</ahelp>" -msgstr "<ahelp hid=\".\" visibility=\"hidden\">Specifica se salvare lo sfondo dell'immagine in modo trasparente. Nell'immagine GIF saranno visibili solo gli oggetti. Per impostare il colore trasparente all'interno dell'immagine utilizzate lo strumento Sostituzione colore.</ahelp>" +msgstr "<ahelp hid=\".\" visibility=\"hidden\">Specifica se salvare lo sfondo dell'immagine in modo trasparente. Nell'immagine GIF saranno visibili solo gli oggetti. Per impostare il colore trasparente all'interno dell'immagine utilizza lo strumento Sostituzione colore.</ahelp>" #: 00000200.xhp msgctxt "" @@ -4466,7 +4466,7 @@ "12\n" "help.text" msgid "<ahelp hid=\".\" visibility=\"hidden\">Compression is not available at this level. Select the Level 1 option if your PostScript printer does not offer the capabilities of Level 2.</ahelp>" -msgstr "<ahelp hid=\".\" visibility=\"hidden\">A questo livello la compressione non è disponibile. Selezionate l'opzione Livello 1 se la stampante PostScript utilizzata non offre le capacità di Livello 2.</ahelp>" +msgstr "<ahelp hid=\".\" visibility=\"hidden\">A questo livello la compressione non è disponibile. Seleziona l'opzione Livello 1 se la stampante PostScript utilizzata non offre le capacità di Livello 2.</ahelp>" #: 00000200.xhp msgctxt "" @@ -4475,7 +4475,7 @@ "14\n" "help.text" msgid "<ahelp hid=\".\" visibility=\"hidden\">Select the Level 2 option if your output device supports colored bitmaps, palette graphics and compressed graphics.</ahelp>" -msgstr "<ahelp hid=\".\" visibility=\"hidden\">Selezionate l'opzione Livello 2 se la periferica di output supporta bitmap a colori, immagini a tavolozza e immagini compresse.</ahelp>" +msgstr "<ahelp hid=\".\" visibility=\"hidden\">Seleziona l'opzione Livello 2 se la periferica di output supporta bitmap a colori, immagini a tavolozza e immagini compresse.</ahelp>" #: 00000200.xhp msgctxt "" @@ -4511,7 +4511,7 @@ "26\n" "help.text" msgid "<ahelp hid=\".\" visibility=\"hidden\">Specifies that you do not wish to use compression.</ahelp>" -msgstr "<ahelp hid=\".\" visibility=\"hidden\">Specifica che non desiderate utilizzare la compressione.</ahelp>" +msgstr "<ahelp hid=\".\" visibility=\"hidden\">Specifica che non vuoi utilizzare la compressione.</ahelp>" #: 00000200.xhp msgctxt "" @@ -13366,7 +13366,7 @@ "2\n" "help.text" msgid "Every <link href=\"text/shared/00/00000005.xhp#andocken\" name=\"docked\">docked</link> window has an icon to control the display properties of the window." -msgstr "Le finestre <link href=\"text/shared/00/00000005.xhp#andocken\" name=\"ancorate\">ancorate</link> dispongono di un simbolo che permette di controllarne le proprietà di visualizzazione." +msgstr "Le finestre <link href=\"text/shared/00/00000005.xhp#andocken\" name=\"ancorate\">ancorate</link> dispongono di un'icona che permette di controllarne le proprietà di visualizzazione." #: 01000000.xhp msgctxt "" @@ -13606,7 +13606,7 @@ "2\n" "help.text" msgid "<ahelp hid=\".\">The<emph> General </emph>tab page lists the general properties of the current theme.</ahelp>" -msgstr "<ahelp hid=\".\">La scheda <emph>Generale</emph>elenca le proprietà generali della categoria attiva.</ahelp>" +msgstr "<ahelp hid=\".\">La scheda <emph>Generale</emph> elenca le proprietà generali della categoria attiva.</ahelp>" #: 01050000.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/it/helpcontent2/source/text/shared/01.po libreoffice-5.1.2~rc2/translations/source/it/helpcontent2/source/text/shared/01.po --- libreoffice-5.1.1~rc2/translations/source/it/helpcontent2/source/text/shared/01.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/it/helpcontent2/source/text/shared/01.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "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-21 19:21+0000\n" +"PO-Revision-Date: 2016-03-28 17:41+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 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1456082473.000000\n" +"X-POOTLE-MTIME: 1459186917.000000\n" #: 01010000.xhp msgctxt "" @@ -58,7 +58,7 @@ "81\n" "help.text" msgid "<ahelp hid=\".\">If you want to create a document from a template, choose <emph>New - Templates.</emph></ahelp>" -msgstr "<ahelp hid=\".\">Se volete creare un documento da un modello, scegliete <emph>Nuovo - Modelli</emph>.</ahelp>" +msgstr "<ahelp hid=\".\">Se si vuole creare un documento da un modello, scegliere <emph>Nuovo - Modelli</emph>.</ahelp>" #: 01010000.xhp msgctxt "" @@ -490,7 +490,7 @@ "par_idN10AB6\n" "help.text" msgid "<ahelp hid=\".\" visibility=\"hidden\">Opens the Labels dialog where you can set the options for your labels, and then creates a new text document for the labels ($[officename] Writer).</ahelp>" -msgstr "<ahelp hid=\".\" visibility=\"hidden\">Apre la finestra di dialogo Etichette, in cui potete impostare le opzioni per le vostre etichette, e crea un nuovo documento di testo per le etichette ($[officename] Writer).</ahelp>" +msgstr "<ahelp hid=\".\" visibility=\"hidden\">Apre la finestra di dialogo Etichette, in cui puoi impostare le opzioni per le tue etichette, e crea un nuovo documento di testo per le etichette ($[officename] Writer).</ahelp>" #: 01010000.xhp msgctxt "" @@ -498,7 +498,7 @@ "par_idN10ACD\n" "help.text" msgid "<ahelp hid=\".\" visibility=\"hidden\">Opens the Business Cards dialog where you can set the options for your business cards, and then creates a new text document ($[officename] Writer).</ahelp>" -msgstr "<ahelp hid=\".\" visibility=\"hidden\">Apre la finestra di dialogo Biglietti da visita, in cui potete impostare le opzioni per i vostri biglietti da visita, e crea un nuovo documento di testo ($[officename] Writer).</ahelp>" +msgstr "<ahelp hid=\".\" visibility=\"hidden\">Apre la finestra di dialogo Biglietti da visita, in cui puoi impostare le opzioni per i tuoi biglietti da visita, e crea un nuovo documento di testo ($[officename] Writer).</ahelp>" #: 01010000.xhp msgctxt "" @@ -594,7 +594,7 @@ "6\n" "help.text" msgid "<ahelp hid=\".\">Categories are shown in the box on the left side of the<emph> Templates and Documents</emph> dialog. Click a category to display the files associated with that category in the <emph>Title </emph>box.</ahelp>" -msgstr "<ahelp hid=\".\">Le categorie sono elencate nella casella a sinistra della finestra di dialogo <emph>Modelli e documenti</emph>. Fate clic su una categoria per visualizzare i file associati a tale categoria nella casella <emph>Titolo</emph>.</ahelp>" +msgstr "<ahelp hid=\".\">Le categorie sono elencate nella casella a sinistra della finestra di dialogo <emph>Modelli e documenti</emph>. Fare clic su una categoria per visualizzare i file associati a tale categoria nella casella <emph>Titolo</emph>.</ahelp>" #: 01010100.xhp msgctxt "" @@ -708,7 +708,7 @@ "10\n" "help.text" msgid "<ahelp hid=\"HID_TEMPLATEDLG_TB_PRINT\">Allows you to preview the template or document, as well as view the document properties.</ahelp> To preview the template or document, click the <emph>Preview</emph> icon at the top of the Preview box on the right side of the dialog. To view the properties of the document, click the <emph>Document Properties</emph> icon at the top of the Preview box." -msgstr "<ahelp hid=\"HID_TEMPLATEDLG_TB_PRINT\">Consente di visualizzare un'anteprima del modello di documento o del documento, nonché di esaminarne le proprietà.</ahelp> Per visualizzare un'anteprima del modello di documento o del documento, fate clic sul simbolo <emph>Anteprima</emph> in cima alla casella di anteprima a destra della finestra di dialogo. Per visualizzare le proprietà del documento, fate clic sul simbolo <emph>Proprietà documento</emph> in cima alla casella di anteprima." +msgstr "<ahelp hid=\"HID_TEMPLATEDLG_TB_PRINT\">Consente di visualizzare un'anteprima del modello di documento o del documento, nonché di esaminarne le proprietà.</ahelp> Per visualizzare un'anteprima del modello di documento o del documento, fate clic sull'icona <emph>Anteprima</emph> in cima alla casella di anteprima a destra della finestra di dialogo. Per visualizzare le proprietà del documento, fate clic sull'icona <emph>Proprietà documento</emph> in cima alla casella di anteprima." #: 01010100.xhp msgctxt "" @@ -1616,7 +1616,7 @@ "2\n" "help.text" msgid "<ahelp hid=\".\">Select the size of your business card from a number of pre-defined size formats, or a size format that you specify on the <emph>Format </emph>tab.</ahelp>" -msgstr "<ahelp hid=\".\">Selezionate la dimensione del biglietto da visita tra una serie di formati predefiniti, oppure un formato personalizzato specificato nella scheda <emph>Formato</emph>.</ahelp>" +msgstr "<ahelp hid=\".\">Selezionare la dimensione del biglietto da visita tra una serie di formati predefiniti, oppure un formato personalizzato specificato nella scheda <emph>Formato</emph>.</ahelp>" #: 01010301.xhp msgctxt "" @@ -1750,7 +1750,7 @@ "2\n" "help.text" msgid "<ahelp hid=\".\" visibility=\"visible\">Define the appearance of your business cards.</ahelp>" -msgstr "<ahelp hid=\".\" visibility=\"visible\">Potete definire l'aspetto dei vostri biglietti da visita.</ahelp>" +msgstr "<ahelp hid=\".\" visibility=\"visible\">È possibile definire l'aspetto dei propri biglietti da visita.</ahelp>" #: 01010302.xhp msgctxt "" @@ -1821,7 +1821,7 @@ "2\n" "help.text" msgid "<ahelp hid=\".\">Contains personal contact information for business cards. Business card layouts are selected on the <emph>Business Cards</emph> tab.</ahelp>" -msgstr "<ahelp hid=\".\">Contiene dati personali per biglietti da visita. I layout per i biglietti da visita possono essere selezionati nella scheda <emph>Biglietti da visita</emph>.</ahelp>" +msgstr "<ahelp hid=\".\">Contiene dati personali di contatto per i biglietti da visita. I layout per i biglietti da visita possono essere selezionati nella scheda <emph>Biglietti da visita</emph>.</ahelp>" #: 01010303.xhp msgctxt "" @@ -2911,7 +2911,7 @@ "par_id3153820\n" "help.text" msgid "<ahelp hid=\".\">Opens a dialog where you can set up connection to various types of servers, including WebDAV, FTP, SSH, Windows Share and CMIS.</ahelp>" -msgstr "<ahelp hid=\".\">Apre una finestra di dialogo in cui potete impostare i collegamenti ai vari tipi di server, incluso WebDAV, FTP, SSH, Windows Share e CMIS.</ahelp>" +msgstr "<ahelp hid=\".\">Apre una finestra di dialogo in cui si possono impostare i collegamenti ai vari tipi di server, incluso WebDAV, FTP, SSH, Windows Share e CMIS.</ahelp>" #: 01070000.xhp msgctxt "" @@ -3976,7 +3976,7 @@ "par_idN106AE\n" "help.text" msgid "<ahelp hid=\".\">Select to allow this document to be opened in read-only mode only.</ahelp>" -msgstr "<ahelp hid=\".\">Selezionate questa opzione per permettere l'apertura del documento in sola lettura.</ahelp>" +msgstr "<ahelp hid=\".\">Selezionare questa opzione per permettere l'apertura del documento in sola lettura.</ahelp>" #: 01100600.xhp msgctxt "" @@ -4000,7 +4000,7 @@ "par_idN106B8\n" "help.text" msgid "<ahelp hid=\".\">Select to enable recording changes. This is the same as <emph>Edit - Track Changes - Record Changes</emph>.</ahelp>" -msgstr "<ahelp hid=\".\">Selezionate questa opzione per abilitare la registrazione delle modifiche. Otterrete lo stesso effetto con <emph>Modifica - Traccia le modifiche - Registra le modifiche</emph>.</ahelp>" +msgstr "<ahelp hid=\".\">Selezionare questa opzione per abilitare la registrazione delle modifiche. Si ottiene lo stesso effetto con <emph>Modifica - Traccia le modifiche - Registra le modifiche</emph>.</ahelp>" #: 01100600.xhp msgctxt "" @@ -4540,7 +4540,7 @@ "par_id6\n" "help.text" msgid "<ahelp hid=\".\" visibility=\"hidden\">Enable this option to print text that is marked as hidden.</ahelp>" -msgstr "<ahelp hid=\".\" visibility=\"hidden\">Abilitate questa opzione per stampare il testo contrassegnato come nascosto.</ahelp>" +msgstr "<ahelp hid=\".\" visibility=\"hidden\">Abilita questa opzione per stampare il testo contrassegnato come nascosto.</ahelp>" #: 01130000.xhp msgctxt "" @@ -4548,7 +4548,7 @@ "par_id8\n" "help.text" msgid "<ahelp hid=\".\" visibility=\"hidden\">Enable this option to print text placeholders. Disable this option to leave the text placeholders blank in the printout.</ahelp>" -msgstr "<ahelp hid=\".\" visibility=\"hidden\">Abilitate questa opzione per stampare i segnaposto di testo. Disabilitatela per lasciare vuoti i segnaposto nella stampa.</ahelp>" +msgstr "<ahelp hid=\".\" visibility=\"hidden\">Abilita questa opzione per stampare i segnaposto di testo. Disabilitala per lasciare vuoti i segnaposto nella stampa.</ahelp>" #: 01130000.xhp msgctxt "" @@ -4572,7 +4572,7 @@ "par_id14\n" "help.text" msgid "<ahelp hid=\".\" visibility=\"hidden\">If this option is enabled automatically inserted blank pages are printed. This is best if you are printing double-sided. For example, in a book, a \"chapter\" paragraph style has been set to always start with an odd numbered page. If the previous chapter ends on an odd page, %PRODUCTNAME inserts an even numbered blank page. This option controls whether to print that even numbered page.</ahelp>" -msgstr "<ahelp hid=\".\" visibility=\"hidden\">Se questa opzione è abilitata, le pagine vuote inserite automaticamente vengono stampate. Si tratta dell'impostazione corretta per la stampa fronte/retro. Esempio: In un libro, uno stile di paragrafo è impostato in modo da iniziare sempre con una pagina dispari. Il capitolo precedente termina con una pagina dispari. %PRODUCTNAME inserisce una pagina vuota con il numero pari. Questa opzione determina se quella pagina pari deve essere esportata.</ahelp>" +msgstr "<ahelp hid=\".\" visibility=\"hidden\">Se questa opzione è abilitata, le pagine vuote inserite automaticamente vengono stampate. Si tratta dell'impostazione corretta per la stampa fronte/retro. Esempio: in un libro, lo stile di paragrafo di un \"capitolo\" è impostato in modo da iniziare sempre con una pagina dispari. Il capitolo precedente termina con una pagina dispari. %PRODUCTNAME inserisce una pagina vuota con il numero pari. Questa opzione determina se quella pagina pari deve essere esportata.</ahelp>" #: 01130000.xhp msgctxt "" @@ -4696,7 +4696,7 @@ "28\n" "help.text" msgid "<ahelp hid=\".\" visibility=\"hidden\">To print a range of pages, use a format like 3-6. To print single pages, use a format like 7;9;11. You can print a combination of page ranges and single pages, by using a format like 3-6;8;10;12.</ahelp>" -msgstr "<ahelp hid=\".\" visibility=\"hidden\">Per stampare un intervallo di pagine, utilizzate un formato come questo: 3-6. Per stampare pagine singole, utilizzate un formato come questo: 7;9;11. Potete stampare una combinazione di intervalli e di pagine singole, utilizzando un formato come questo: 3-6;8;10;12.</ahelp>" +msgstr "<ahelp hid=\".\" visibility=\"hidden\">Per stampare un intervallo di pagine, utilizza un formato come questo: 3-6. Per stampare pagine singole, utilizza un formato come questo: 7;9;11. Puoi stampare una combinazione di intervalli e di pagine singole, utilizzando un formato come questo: 3-6;8;10;12.</ahelp>" #: 01130000.xhp msgctxt "" @@ -4713,7 +4713,7 @@ "par_id38\n" "help.text" msgid "<ahelp hid=\".\" visibility=\"hidden\">Check to not rely on the printer to create collated copies but create a print job for each copy instead.</ahelp>" -msgstr "<ahelp hid=\".\" visibility=\"hidden\">Spuntate l'opzione affinché la fascicolazione non dipenda dalla stampante, ma sia creato un lavoro di stampa per ciascuna copia.</ahelp>" +msgstr "<ahelp hid=\".\" visibility=\"hidden\">Spunta l'opzione affinché la fascicolazione non dipenda dalla stampante, ma sia creato un lavoro di stampa per ciascuna copia.</ahelp>" #: 01130000.xhp msgctxt "" @@ -4721,7 +4721,7 @@ "par_id40\n" "help.text" msgid "<ahelp hid=\".\" visibility=\"hidden\">Check to print pages in reverse order.</ahelp>" -msgstr "<ahelp hid=\".\" visibility=\"hidden\">Spuntate l'opzione per stampare le pagine in ordine inverso.</ahelp>" +msgstr "<ahelp hid=\".\" visibility=\"hidden\">Spunta l'opzione per stampare le pagine in ordine inverso.</ahelp>" #: 01130000.xhp msgctxt "" @@ -4730,7 +4730,7 @@ "34\n" "help.text" msgid "<ahelp hid=\".\" visibility=\"hidden\">Enter the number of copies that you want to print.</ahelp>" -msgstr "<ahelp hid=\".\" visibility=\"hidden\">Inserite il numero di copie da stampare.</ahelp>" +msgstr "<ahelp hid=\".\" visibility=\"hidden\">Inserisci il numero di copie da stampare.</ahelp>" #: 01130000.xhp msgctxt "" @@ -4756,7 +4756,7 @@ "par_id42\n" "help.text" msgid "<ahelp hid=\".\" visibility=\"hidden\">Show/Hide detailed information of the selected printer.</ahelp>" -msgstr "<ahelp hid=\".\" visibility=\"hidden\">Mostra/Nasconde informazioni dettagliate della stampante selezionata.</ahelp>" +msgstr "<ahelp hid=\".\" visibility=\"hidden\">Mostra/nasconde informazioni dettagliate della stampante selezionata.</ahelp>" #: 01130000.xhp msgctxt "" @@ -4765,7 +4765,7 @@ "4\n" "help.text" msgid "<ahelp hid=\".\" visibility=\"hidden\">The list box shows the installed printers. Click the printer to use for the current print job. Click the Printer details button to see some information about the selected printer. Click the Properties button to change some of the printer properties.</ahelp>" -msgstr "<ahelp hid=\".\" visibility=\"hidden\">La casella di riepilogo mostra le stampanti installate. Fate clic sulla stampante che desiderate utilizzare per il lavoro di stampa corrente. Fate clic sul pulsante Dettagli della stampante per visualizzare informazioni sulla stampante selezionata. Fate clic sul pulsante Proprietà per modificare le proprietà della stampante.</ahelp>" +msgstr "<ahelp hid=\".\" visibility=\"hidden\">La casella di riepilogo mostra le stampanti installate. Fai clic sulla stampante che desideri utilizzare per il lavoro di stampa corrente. Fai clic sul pulsante Dettagli della stampante per visualizzare informazioni sulla stampante selezionata. Fai clic sul pulsante Proprietà per modificare le proprietà della stampante.</ahelp>" #: 01130000.xhp msgctxt "" @@ -4781,7 +4781,7 @@ "par_id46\n" "help.text" msgid "<ahelp hid=\".\" visibility=\"hidden\">Select the Brochure option to print the document in brochure format.</ahelp>" -msgstr "<ahelp hid=\".\" visibility=\"hidden\">Selezionate l'opzione Dépliant per stampare il documento in questo formato.</ahelp>" +msgstr "<ahelp hid=\".\" visibility=\"hidden\">Seleziona l'opzione Dépliant per stampare il documento in questo formato.</ahelp>" #: 01130000.xhp msgctxt "" @@ -4789,7 +4789,7 @@ "par_id48\n" "help.text" msgid "<ahelp hid=\".\" visibility=\"hidden\">Select which pages of a brochure to print.</ahelp>" -msgstr "<ahelp hid=\".\" visibility=\"hidden\">Selezionate quali pagine del dépliant debbano essere stampate.</ahelp>" +msgstr "<ahelp hid=\".\" visibility=\"hidden\">Seleziona quali pagine del dépliant debbano essere stampate.</ahelp>" #: 01130000.xhp msgctxt "" @@ -4797,7 +4797,7 @@ "par_id0818200904102910\n" "help.text" msgid "<ahelp hid=\".\" visibility=\"hidden\">For brochure printing, you can select a left-to-right order of pages or a right-to-left order.</ahelp>" -msgstr "<ahelp hid=\".\" visibility=\"hidden\">Per la stampa di un dépliant, potete selezionare l'ordine delle pagine da sinistra a destra o da destra a sinistra.</ahelp>" +msgstr "<ahelp hid=\".\" visibility=\"hidden\">Per la stampa di un dépliant, puoi selezionare l'ordine delle pagine da sinistra a destra o da destra a sinistra.</ahelp>" #: 01130000.xhp msgctxt "" @@ -4805,7 +4805,7 @@ "par_id50\n" "help.text" msgid "<ahelp hid=\".\" visibility=\"hidden\">Check to draw a border around each page.</ahelp>" -msgstr "<ahelp hid=\".\" visibility=\"hidden\">Spuntate l'opzione per disegnare un bordo intorno a ogni pagina.</ahelp>" +msgstr "<ahelp hid=\".\" visibility=\"hidden\">Spunta l'opzione per disegnare un bordo intorno a ogni pagina.</ahelp>" #: 01130000.xhp msgctxt "" @@ -4813,7 +4813,7 @@ "par_id52\n" "help.text" msgid "<ahelp hid=\".\" visibility=\"hidden\">Select order in which pages are to be printed.</ahelp>" -msgstr "<ahelp hid=\".\" visibility=\"hidden\">Selezionate l'ordine in cui le pagine devono essere stampate.</ahelp>" +msgstr "<ahelp hid=\".\" visibility=\"hidden\">Seleziona l'ordine in cui le pagine devono essere stampate.</ahelp>" #: 01130000.xhp msgctxt "" @@ -4821,7 +4821,7 @@ "par_id54\n" "help.text" msgid "<ahelp hid=\".\" visibility=\"hidden\">Select the orientation of the paper.</ahelp>" -msgstr "<ahelp hid=\".\" visibility=\"hidden\">Selezionate l'orientamento della carta.</ahelp>" +msgstr "<ahelp hid=\".\" visibility=\"hidden\">Seleziona l'orientamento della carta.</ahelp>" #: 01130000.xhp msgctxt "" @@ -4829,7 +4829,7 @@ "par_id56\n" "help.text" msgid "<ahelp hid=\".\" visibility=\"hidden\">Select margin between the printed pages and paper edge.</ahelp>" -msgstr "<ahelp hid=\".\" visibility=\"hidden\">Selezionate il margine tra le pagine stampate e il bordo del foglio.</ahelp>" +msgstr "<ahelp hid=\".\" visibility=\"hidden\">Seleziona il margine tra le pagine stampate e il bordo del foglio.</ahelp>" #: 01130000.xhp msgctxt "" @@ -4837,7 +4837,7 @@ "par_id58\n" "help.text" msgid "<ahelp hid=\".\" visibility=\"hidden\">Select margin between individual pages on each sheet of paper.</ahelp>" -msgstr "<ahelp hid=\".\" visibility=\"hidden\">Selezionate il margine tra le singole pagine su ciascun foglio di carta.</ahelp>" +msgstr "<ahelp hid=\".\" visibility=\"hidden\">Seleziona il margine tra le singole pagine su ciascun foglio di carta.</ahelp>" #: 01130000.xhp msgctxt "" @@ -4845,7 +4845,7 @@ "par_id60\n" "help.text" msgid "<ahelp hid=\".\" visibility=\"hidden\">Select number of rows.</ahelp>" -msgstr "<ahelp hid=\".\" visibility=\"hidden\">Selezionate il numero di righe.</ahelp>" +msgstr "<ahelp hid=\".\" visibility=\"hidden\">Seleziona il numero di righe.</ahelp>" #: 01130000.xhp msgctxt "" @@ -4853,7 +4853,7 @@ "par_id62\n" "help.text" msgid "<ahelp hid=\".\" visibility=\"hidden\">Select number of columns.</ahelp>" -msgstr "<ahelp hid=\".\" visibility=\"hidden\">Selezionate il numero di colonne.</ahelp>" +msgstr "<ahelp hid=\".\" visibility=\"hidden\">Seleziona il numero di colonne.</ahelp>" #: 01130000.xhp msgctxt "" @@ -4861,7 +4861,7 @@ "par_id64\n" "help.text" msgid "<ahelp hid=\".\" visibility=\"hidden\">Select how many pages to print per sheet of paper.</ahelp>" -msgstr "<ahelp hid=\".\" visibility=\"hidden\">Selezionate quante pagine stampare per foglio.</ahelp>" +msgstr "<ahelp hid=\".\" visibility=\"hidden\">Seleziona quante pagine stampare per foglio.</ahelp>" #: 01130000.xhp msgctxt "" @@ -4869,7 +4869,7 @@ "par_id66\n" "help.text" msgid "<ahelp hid=\".\" visibility=\"hidden\">Print multiple pages per sheet of paper.</ahelp>" -msgstr "<ahelp hid=\".\" visibility=\"hidden\">Stampate più pagine per foglio.</ahelp>" +msgstr "<ahelp hid=\".\" visibility=\"hidden\">Stampa più pagine per foglio.</ahelp>" #: 01130000.xhp msgctxt "" @@ -4877,7 +4877,7 @@ "par_id68\n" "help.text" msgid "<ahelp hid=\".\" visibility=\"hidden\">Select which parts of the document should be printed.</ahelp>" -msgstr "<ahelp hid=\".\" visibility=\"hidden\">Selezionate le parti del documento da stampare.</ahelp>" +msgstr "<ahelp hid=\".\" visibility=\"hidden\">Seleziona le parti del documento da stampare.</ahelp>" #: 01130000.xhp msgctxt "" @@ -4885,7 +4885,7 @@ "par_id70\n" "help.text" msgid "<ahelp hid=\".\" visibility=\"hidden\">Select how many slides to print per page.</ahelp>" -msgstr "<ahelp hid=\".\" visibility=\"hidden\">Selezionate quante diapositive stampare per pagina.</ahelp>" +msgstr "<ahelp hid=\".\" visibility=\"hidden\">Seleziona quante diapositive stampare per pagina.</ahelp>" #: 01130000.xhp msgctxt "" @@ -4893,7 +4893,7 @@ "par_id72\n" "help.text" msgid "<ahelp hid=\".\" visibility=\"hidden\">Specify how to arrange slides on the printed page.</ahelp>" -msgstr "<ahelp hid=\".\" visibility=\"hidden\">Specificate come disporre le diapositive nella pagina da stampare.</ahelp>" +msgstr "<ahelp hid=\".\" visibility=\"hidden\">Specifica come disporre le diapositive nella pagina da stampare.</ahelp>" #: 01130000.xhp msgctxt "" @@ -4949,7 +4949,7 @@ "par_id86\n" "help.text" msgid "<ahelp hid=\".\" visibility=\"hidden\">Specify how to scale slides in the printout.</ahelp>" -msgstr "<ahelp hid=\".\" visibility=\"hidden\">Specificate come scalare le diapositive nella stampa.</ahelp>" +msgstr "<ahelp hid=\".\" visibility=\"hidden\">Specifica come scalare le diapositive nella stampa.</ahelp>" #: 01130000.xhp msgctxt "" @@ -5284,7 +5284,7 @@ "par_id4546342\n" "help.text" msgid "<ahelp hid=\".\" visibility=\"hidden\">Opens a new window in your default e-mail program with the current document as an attachment. The OpenDocument file format is used.</ahelp>" -msgstr "<ahelp hid=\".\" visibility=\"hidden\">Apre un nuovo messaggio nel vostro programma di posta elettronica e allega ad esso il documento corrente. Il file sarà inviato in formato OpenDocument.</ahelp>" +msgstr "<ahelp hid=\".\" visibility=\"hidden\">Apre un nuovo messaggio nel tuo programma di posta elettronica e allega ad esso il documento corrente. Il file sarà inviato in formato OpenDocument.</ahelp>" #: 01160000.xhp msgctxt "" @@ -5292,7 +5292,7 @@ "par_id6845301\n" "help.text" msgid "<ahelp hid=\".\" visibility=\"hidden\">Opens a new window in your default e-mail program with the current document as an attachment. The Microsoft file format is used.</ahelp>" -msgstr "<ahelp hid=\".\" visibility=\"hidden\">Apre un nuovo messaggio nel vostro programma di posta elettronica e allega ad esso il documento corrente. Il file sarà inviato in formato Microsoft Office.</ahelp>" +msgstr "<ahelp hid=\".\" visibility=\"hidden\">Apre un nuovo messaggio nel tuo programma di posta elettronica e allega ad esso il documento corrente. Il file sarà inviato in formato Microsoft Office.</ahelp>" #: 01160000.xhp msgctxt "" @@ -5308,7 +5308,7 @@ "par_id5917844\n" "help.text" msgid "<ahelp hid=\".\">Opens a new window in your default e-mail program with the current document as an attachment. The OpenDocument file format is used.</ahelp>" -msgstr "<ahelp hid=\".\">Apre una nuova finestra nel vostro programma e-mail predefinito con il documento corrente come allegato. Viene utilizzato il formato di file OpenDocument.</ahelp>" +msgstr "<ahelp hid=\".\">Apre una nuova finestra nel proprio programma di posta elettronica predefinito con il documento corrente come allegato. Viene utilizzato il formato di file OpenDocument.</ahelp>" #: 01160000.xhp msgctxt "" @@ -5324,7 +5324,7 @@ "par_id5759453\n" "help.text" msgid "<ahelp hid=\".\">Opens a new window in your default e-mail program with the current document as an attachment. The Microsoft Excel file format is used.</ahelp>" -msgstr "<ahelp hid=\".\">Apre una nuova finestra nel vostro programma e-mail predefinito con il documento corrente come allegato. Viene utilizzato il formato di file di Microsoft Excel.</ahelp>" +msgstr "<ahelp hid=\".\">Apre una nuova finestra nel proprio programma di posta elettronica predefinito con il documento corrente come allegato. Viene utilizzato il formato di file di Microsoft Excel.</ahelp>" #: 01160000.xhp msgctxt "" @@ -5340,7 +5340,7 @@ "par_id7829218\n" "help.text" msgid "<ahelp hid=\".\">Opens a new window in your default e-mail program with the current document as an attachment. The OpenDocument file format is used.</ahelp>" -msgstr "<ahelp hid=\".\">Apre una nuova finestra nel vostro programma e-mail predefinito con il documento corrente come allegato. Viene utilizzato il formato di file OpenDocument.</ahelp>" +msgstr "<ahelp hid=\".\">Apre una nuova finestra nel proprio programma di posta elettronica predefinito con il documento corrente come allegato. Viene utilizzato il formato di file OpenDocument.</ahelp>" #: 01160000.xhp msgctxt "" @@ -5356,7 +5356,7 @@ "par_id8319650\n" "help.text" msgid "<ahelp hid=\".\">Opens a new window in your default e-mail program with the current document as an attachment. The Microsoft PowerPoint file format is used.</ahelp>" -msgstr "<ahelp hid=\".\">Apre una nuova finestra nel vostro programma e-mail predefinito con il documento corrente come allegato. Viene utilizzato il formato di file di Microsoft PowerPoint.</ahelp>" +msgstr "<ahelp hid=\".\">Apre una nuova finestra nel proprio programma di posta elettronica predefinito con il documento corrente come allegato. Viene utilizzato il formato di file di Microsoft PowerPoint.</ahelp>" #: 01160000.xhp msgctxt "" @@ -5372,7 +5372,7 @@ "par_id9085055\n" "help.text" msgid "<ahelp hid=\".\">Opens a new window in your default e-mail program with the current document as an attachment. The OpenDocument file format is used.</ahelp>" -msgstr "<ahelp hid=\".\">Apre una nuova finestra nel vostro programma e-mail predefinito con il documento corrente come allegato. Viene utilizzato il formato di file OpenDocument.</ahelp>" +msgstr "<ahelp hid=\".\">Apre una nuova finestra nel proprio programma di posta elettronica predefinito con il documento corrente come allegato. Viene utilizzato il formato di file OpenDocument.</ahelp>" #: 01160000.xhp msgctxt "" @@ -5388,7 +5388,7 @@ "par_id5421918\n" "help.text" msgid "<ahelp hid=\".\">Opens a new window in your default e-mail program with the current document as an attachment. The Microsoft Word file format is used.</ahelp>" -msgstr "<ahelp hid=\".\">Apre una nuova finestra nel vostro programma e-mail predefinito con il documento corrente come allegato. Viene utilizzato il formato di file di Microsoft Word.</ahelp>" +msgstr "<ahelp hid=\".\">Apre una nuova finestra nel proprio programma di posta elettronica predefinito con il documento corrente come allegato. Viene utilizzato il formato di file di Microsoft Word.</ahelp>" #: 01160000.xhp msgctxt "" @@ -5572,7 +5572,7 @@ "2\n" "help.text" msgid "<ahelp hid=\".\">Closes all $[officename] programs and prompts you to save your changes.</ahelp> <switchinline select=\"sys\"><caseinline select=\"MAC\">This command does not exist on Mac OS X systems.</caseinline><defaultinline/></switchinline>" -msgstr "<ahelp hid=\".\">Chiude tutti i programmi $[officename] e chiede di salvare le vostre modifiche.</ahelp> <switchinline select=\"sys\"><caseinline select=\"MAC\">Questo comando non esiste nei sistemi operativi Mac OS X.</caseinline><defaultinline/></switchinline>" +msgstr "<ahelp hid=\".\">Chiude tutti i programmi $[officename] e chiede di salvare le modifiche.</ahelp> <switchinline select=\"sys\"><caseinline select=\"MAC\">Questo comando non esiste nei sistemi operativi Mac OS X.</caseinline><defaultinline/></switchinline>" #: 01170000.xhp msgctxt "" @@ -5855,7 +5855,7 @@ "5\n" "help.text" msgid "<ahelp hid=\".\">Lists the most recently opened files. To open a file in the list, click its name.</ahelp>" -msgstr "<ahelp hid=\".\">Elenca i file aperti più di recente. Per aprire un file nell'elenco, fate clic sul relativo nome.</ahelp>" +msgstr "<ahelp hid=\".\">Elenca i file aperti più di recente. Per aprire un file nell'elenco, fare clic sul suo nome.</ahelp>" #: 01990000.xhp msgctxt "" @@ -5951,7 +5951,7 @@ "4\n" "help.text" msgid "If you change the content of a record in a database table that has not been saved, and then use the<emph> Undo</emph> command, the record is erased." -msgstr "Per l'elaborazione di tabelle database osservate quanto descritto di seguito. Dopo aver modificato il contenuto di un campo di dati di un record di dati già salvato in una tabella, potete rifiutare la modifica utilizzando il simbolo <emph>Annulla</emph>. Se modificate il contenuto di campo di un record di dati, che non avete ancora salvato, richiamando la funzione 'Annulla' non viene annullata solo l'ultima modifica, ma l'intera procedura di \"digitazione di un nuovo record di dati\", ovvero viene cancellato l'intero record di dati." +msgstr "Se modificate il contenuto di campo di un record di dati non ancora salvato, richiamando il comando <emph>Annulla</emph> viene cancellato il record di dati." #: 02010000.xhp msgctxt "" @@ -6765,7 +6765,7 @@ "par_id00001\n" "help.text" msgid "<ahelp hid=\".\" visibility=\"hidden\">Type the text to search in the current document. Press Enter to search the text.</ahelp>" -msgstr "<ahelp hid=\".\" visibility=\"hidden\">Digitate il testo da cercare nel documento attivo. Premete Invio per iniziare la ricerca.</ahelp>" +msgstr "<ahelp hid=\".\" visibility=\"hidden\">Digita il testo da cercare nel documento attivo. Premi Invio per iniziare la ricerca.</ahelp>" #: 02100000.xhp msgctxt "" @@ -6773,7 +6773,7 @@ "par_id00002\n" "help.text" msgid "<ahelp hid=\".\" visibility=\"hidden\">Click to search the next occurrence in downward direction.</ahelp>" -msgstr "<ahelp hid=\".\" visibility=\"hidden\">Fate clic per cercare l'occorrenza successiva verso il basso.</ahelp>" +msgstr "<ahelp hid=\".\" visibility=\"hidden\">Fai clic per cercare l'occorrenza successiva verso il basso.</ahelp>" #: 02100000.xhp msgctxt "" @@ -6781,7 +6781,7 @@ "par_id00003\n" "help.text" msgid "<ahelp hid=\".\" visibility=\"hidden\">Click to search the next occurrence in upward direction.</ahelp>" -msgstr "<ahelp hid=\".\" visibility=\"hidden\">Fate clic per cercare l'occorrenza successiva verso l'alto.</ahelp>" +msgstr "<ahelp hid=\".\" visibility=\"hidden\">Fai clic per cercare l'occorrenza successiva verso l'alto.</ahelp>" #: 02100000.xhp msgctxt "" @@ -6966,7 +6966,7 @@ "par_id8876918\n" "help.text" msgid "<ahelp hid=\".\" visibility=\"hidden\">Searches for text formatted with the style that you specify. Select this checkbox, and then select a style from the Search for list. To specify a replacement style, select a style from the Replace with list.</ahelp>" -msgstr "<ahelp hid=\".\" visibility=\"hidden\">Cerca il testo formattato con lo stile di formato specificato. Selezionate questa casella di controllo e quindi scegliete uno stile di formato nell'elenco Cerca. Per specificare uno stile di formato sostitutivo, selezionatelo dall'elenco Sostituisci con.</ahelp>" +msgstr "<ahelp hid=\".\" visibility=\"hidden\">Cerca il testo formattato con lo stile di formato specificato. Seleziona questa casella di controllo e quindi scegli uno stile di formato nell'elenco Cerca. Per specificare uno stile di formato sostitutivo, selezionalo dall'elenco Sostituisci con.</ahelp>" #: 02100000.xhp msgctxt "" @@ -7016,7 +7016,7 @@ "par_id0302200901464150\n" "help.text" msgid "<ahelp hid=\".\">In Writer, you can select to include the comment texts in your searches.</ahelp>" -msgstr "<ahelp hid=\".\">In Writer potete scegliere di includere i testi dei commenti nelle vostre ricerche.</ahelp>" +msgstr "<ahelp hid=\".\">In Writer è possibile scegliere di includere i testi dei commenti nelle proprie ricerche.</ahelp>" #: 02100000.xhp msgctxt "" @@ -7096,7 +7096,7 @@ "par_id31454242785\n" "help.text" msgid "<ahelp hid=\".\" visibility=\"hidden\">Finds and selects all instances of the text or the format that you are searching for in the document (only in Writer and Calc documents).</ahelp>" -msgstr "<ahelp hid=\".\" visibility=\"hidden\">Trova e seleziona tutte le istanze del testo o del formato che state ricercando nel documento (solo nei documenti Writer e Calc).</ahelp>" +msgstr "<ahelp hid=\".\" visibility=\"hidden\">Trova e seleziona tutte le istanze del testo o del formato che stai ricercando nel documento (solo nei documenti Writer e Calc).</ahelp>" #: 02100000.xhp msgctxt "" @@ -7132,7 +7132,7 @@ "71\n" "help.text" msgid "<ahelp hid=\".\">Replaces all of the occurrences of the text or format that you want to replace.</ahelp><switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Repeat this command until all replacements on your slide have been made.</caseinline></switchinline>" -msgstr "<ahelp hid=\".\">Sostituisce tutte le occorrenze del testo o del formato specificato.</ahelp><switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Ripetete questo comando per tutte le sostituzioni da eseguire nella diapositiva.</caseinline></switchinline>" +msgstr "<ahelp hid=\".\">Sostituisce tutte le occorrenze del testo o del formato specificato.</ahelp><switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Ripetere questo comando per tutte le sostituzioni da eseguire nella diapositiva.</caseinline></switchinline>" #: 02100000.xhp msgctxt "" @@ -7202,7 +7202,7 @@ "par_id1334269\n" "help.text" msgid "<ahelp hid=\".\" visibility=\"hidden\">Click in the Search for or the Replace with box, and then click this button to remove the search criteria based on formats.</ahelp>" -msgstr "<ahelp hid=\".\" visibility=\"hidden\">Fate clic sul pulsante Cerca o Sostituisci con casella, poi fate clic su questo pulsante per rimuovere il criterio di ricerca basato sui formati.</ahelp>" +msgstr "<ahelp hid=\".\" visibility=\"hidden\">Fai clic sul pulsante Cerca o Sostituisci con casella, poi fai clic su questo pulsante per rimuovere il criterio di ricerca basato sui formati.</ahelp>" #: 02100000.xhp msgctxt "" @@ -7220,7 +7220,7 @@ "139\n" "help.text" msgid "<ahelp hid=\".\" visibility=\"hidden\">Shows more or fewer search options. Click this button again to hide the extended search options.</ahelp>" -msgstr "<ahelp hid=\".\" visibility=\"hidden\">Mostra più o meno opzioni di ricerca. Fate nuovamente clic su questo pulsante per nascondere le opzioni aggiuntive di ricerca.</ahelp>" +msgstr "<ahelp hid=\".\" visibility=\"hidden\">Mostra più o meno opzioni di ricerca. Fai nuovamente clic su questo pulsante per nascondere le opzioni aggiuntive di ricerca.</ahelp>" #: 02100000.xhp msgctxt "" @@ -7246,7 +7246,7 @@ "par_id6719870\n" "help.text" msgid "<ahelp hid=\".\" visibility=\"hidden\">Searches for the characters that you specify in formulas and in fixed (not calculated) values. For example, you could look for formulas that contain 'SUM'.</ahelp>" -msgstr "<ahelp hid=\".\" visibility=\"hidden\">Cerca i caratteri specificati nelle formule e nei valori fissi (non calcolati). Ad esempio, potreste cercare le formule che contengono la parola 'SOMMA'.</ahelp>" +msgstr "<ahelp hid=\".\" visibility=\"hidden\">Cerca i caratteri specificati nelle formule e nei valori fissi (non calcolati). Ad esempio, potresti cercare le formule che contengono la parola 'SOMMA'.</ahelp>" #: 02100000.xhp msgctxt "" @@ -7427,7 +7427,7 @@ "bm_id3146765\n" "help.text" msgid "<bookmark_value>regular expressions; list of</bookmark_value> <bookmark_value>lists;regular expressions</bookmark_value> <bookmark_value>replacing;tab stops (regular expressions)</bookmark_value> <bookmark_value>tab stops;regular expressions</bookmark_value> <bookmark_value>concatenation, see ampersand symbol</bookmark_value> <bookmark_value>ampersand symbol, see also operators</bookmark_value>" -msgstr "<bookmark_value>Espressioni regolari; elenco di</bookmark_value><bookmark_value>Elenco;espressioni regolari</bookmark_value><bookmark_value>Sostituire;tabulazioni (espressioni regolari)</bookmark_value><bookmark_value>Tabulazione;espressioni regolari</bookmark_value><bookmark_value>Concatenazione, vedere simbolo &</bookmark_value><bookmark_value>&, simbolo;vedere anche Operatore</bookmark_value>" +msgstr "<bookmark_value>Espressione regolare; elenco</bookmark_value><bookmark_value>Elenco;espressioni regolari</bookmark_value><bookmark_value>Sostituire;tabulazioni (espressioni regolari)</bookmark_value><bookmark_value>Tabulazione;espressioni regolari</bookmark_value><bookmark_value>Concatenazione, vedere simbolo &</bookmark_value><bookmark_value>&, simbolo; vedere anche Operatore</bookmark_value>" #: 02100001.xhp msgctxt "" @@ -11086,7 +11086,7 @@ "par_id5057222\n" "help.text" msgid "<ahelp hid=\".\">Enter a description for the hotspot.</ahelp>" -msgstr "<ahelp hid=\".\">Inserite una descrizione per l'area attiva.</ahelp>" +msgstr "<ahelp hid=\".\">Inserire una descrizione per l'area attiva.</ahelp>" #: 02230000.xhp msgctxt "" @@ -12158,7 +12158,7 @@ "par_id4441663\n" "help.text" msgid "<ahelp hid=\".\" visibility=\"hidden\">Select the range of cells that you want to use as a filter.</ahelp>" -msgstr "<ahelp hid=\".\" visibility=\"hidden\">Selezionate l'area di celle che desiderate usare come filtro.</ahelp>" +msgstr "<ahelp hid=\".\" visibility=\"hidden\">Seleziona l'area di celle da usare come filtro.</ahelp>" #: 02230402.xhp msgctxt "" @@ -12378,7 +12378,7 @@ "21\n" "help.text" msgid "<ahelp hid=\".\" visibility=\"hidden\">Lists the available tables in the current database. Click a name in the list to display the records for that table.</ahelp>" -msgstr "<ahelp hid=\".\" visibility=\"hidden\">Elenca le tabelle disponibili nel database attivo. Per visualizzare i record di quella tabella fate clic su un nome dell'elenco.</ahelp>" +msgstr "<ahelp hid=\".\" visibility=\"hidden\">Elenca le tabelle disponibili nel database attivo. Per visualizzare i record di quella tabella fai clic su un nome dell'elenco.</ahelp>" #: 02250000.xhp msgctxt "" @@ -12423,7 +12423,7 @@ "31\n" "help.text" msgid "<ahelp hid=\".\" visibility=\"hidden\">Type the number of the record that you want to display, and then press Enter.</ahelp>" -msgstr "<ahelp hid=\".\" visibility=\"hidden\">Inserite il numero del record che volete visualizzare e premete Invio.</ahelp>" +msgstr "<ahelp hid=\".\" visibility=\"hidden\">Inserisci il numero del record che vuoi visualizzare e premi Invio.</ahelp>" #: 02250000.xhp msgctxt "" @@ -12450,7 +12450,7 @@ "7\n" "help.text" msgid "<ahelp hid=\".\" visibility=\"hidden\">Select the type of record that you want to create. $[officename] inserts a number in the <emph>Type</emph> column of the record that corresponds to the type that you select here.</ahelp>" -msgstr "<ahelp hid=\".\" visibility=\"hidden\">Selezionate il tipo di record che desiderate creare. $[officename] inserisce un numero nella colonna del record <emph>Tipo</emph> che corrisponde al tipo selezionato qui.</ahelp>" +msgstr "<ahelp hid=\".\" visibility=\"hidden\">Seleziona il tipo di record da creare. $[officename] inserisce un numero nella colonna del record <emph>Tipo</emph> che corrisponde al tipo selezionato qui.</ahelp>" #: 02250000.xhp msgctxt "" @@ -12459,7 +12459,7 @@ "32\n" "help.text" msgid "<ahelp hid=\".\" visibility=\"hidden\">Enter a short name for the record. The short name appears in the <emph>Identifier</emph> column in the list of records.</ahelp>" -msgstr "<ahelp hid=\".\" visibility=\"hidden\">Digitate un nome breve per il record. Esso appare nella colonna <emph>Identificatore</emph> nell'elenco dei record.</ahelp>" +msgstr "<ahelp hid=\".\" visibility=\"hidden\">Digita un nome breve per il record. Esso appare nella colonna <emph>Identificatore</emph> nell'elenco dei record.</ahelp>" #: 02250000.xhp msgctxt "" @@ -12468,7 +12468,7 @@ "8\n" "help.text" msgid "<ahelp hid=\".\" visibility=\"hidden\">Enter additional information for the selected record. If you want, you can also enter the information in the corresponding field in the table.</ahelp>" -msgstr "<ahelp hid=\".\" visibility=\"hidden\">Digitate le informazioni aggiuntive per il record selezionato. Potete anche, se lo desiderate, digitare l'informazione nel campo corrispondente della tabella.</ahelp>" +msgstr "<ahelp hid=\".\" visibility=\"hidden\">Digita le informazioni aggiuntive per il record selezionato. Puoi anche, se vuoi, digitare l'informazione nel campo corrispondente della tabella.</ahelp>" #: 02250000.xhp msgctxt "" @@ -12540,7 +12540,7 @@ "30\n" "help.text" msgid "<ahelp hid=\".\">Use the <emph>Standard Filter</emph> to refine and to combine <emph>AutoFilter </emph>search options.</ahelp>" -msgstr "<ahelp hid=\".\">Usate il <emph>Filtro standard</emph> per affinare e combinare le opzioni di ricerca <emph>Filtro automatico </emph>.</ahelp>" +msgstr "<ahelp hid=\".\">Usare il <emph>Filtro standard</emph> per affinare e combinare le opzioni di ricerca <emph>Filtro automatico </emph>.</ahelp>" #: 02250000.xhp msgctxt "" @@ -12549,7 +12549,7 @@ "16\n" "help.text" msgid "<ahelp hid=\".\">To display all of the records in a table, click the <emph>Reset Filter</emph> icon.</ahelp>" -msgstr "<ahelp hid=\".\">Per visualizzare tutti i record di una tabella fate clic sull'icona <emph>Azzera filtro</emph>.</ahelp>" +msgstr "<ahelp hid=\".\">Per visualizzare tutti i record di una tabella fare clic sull'icona <emph>Azzera filtro</emph>.</ahelp>" #: 02250000.xhp msgctxt "" @@ -12639,7 +12639,7 @@ "52\n" "help.text" msgid "<ahelp hid=\".\" visibility=\"hidden\">Lets you choose a different data source for your bibliography.</ahelp>" -msgstr "<ahelp hid=\".\" visibility=\"hidden\">Vi consente di scegliere una sorgente dati diversa per la bibliografia.</ahelp>" +msgstr "<ahelp hid=\".\" visibility=\"hidden\">Ti consente di scegliere una sorgente dati diversa per la bibliografia.</ahelp>" #: 02250000.xhp msgctxt "" @@ -12848,7 +12848,7 @@ "par_id1993774\n" "help.text" msgid "<ahelp hid=\".\">In columns view layout you see pages in a given number of columns side by side. Enter the number of columns.</ahelp>" -msgstr "<ahelp hid=\".\">Nel layout vista colonne potete visualizzare le pagine in un dato numero di colonne affiancate. Digitate il numero di colonne.</ahelp>" +msgstr "<ahelp hid=\".\">Nel layout vista colonne si possono visualizzare le pagine nel numero di colonne affiancate specificate. Digitare il numero di colonne.</ahelp>" #: 03010000.xhp msgctxt "" @@ -12864,7 +12864,7 @@ "par_id2355113\n" "help.text" msgid "<ahelp hid=\".\">In book mode view layout you see two pages side by side as in an open book. The first page is a right page with an odd page number.</ahelp>" -msgstr "<ahelp hid=\".\">In modalità libro potete vedere due pagine affiancate come in un libro aperto. La prima pagina è una pagina destra con un numero di pagina dispari.</ahelp>" +msgstr "<ahelp hid=\".\">In modalità libro si possono vedere due pagine affiancate come in un libro aperto. La prima pagina è una pagina destra con un numero di pagina dispari.</ahelp>" #: 03020000.xhp msgctxt "" @@ -13036,7 +13036,7 @@ "par_id3148983\n" "help.text" msgid "<ahelp hid=\".\">Shows or hides the menus and toolbars in Writer or Calc. To exit the full screen mode, click the <emph>Full Screen On/Off</emph> button or press the Esc key.</ahelp>" -msgstr "<ahelp hid=\".\">Mostra o nasconde i menu e le barre degli strumenti in Writer o Calc. Per uscire dalla modalità a schermo intero, fate clic sul pulsante <emph>Schermo intero sì/no</emph> o premete il tasto Esc.</ahelp>" +msgstr "<ahelp hid=\".\">Mostra o nasconde i menu e le barre degli strumenti in Writer o Calc. Per uscire dalla modalità a schermo intero, fare clic sul pulsante <emph>Schermo intero sì/no</emph> o premere il tasto Esc.</ahelp>" #: 03110000.xhp msgctxt "" @@ -13235,7 +13235,7 @@ "par_id3149748\n" "help.text" msgid "<ahelp hid=\".\">Opens a submenu to show and hide toolbars.</ahelp> A toolbar contains icons and options that let you quickly access $[officename] commands." -msgstr "<ahelp hid=\".\">Apre un sottomenu per mostrare o nascondere le barre degli strumenti.</ahelp> Le barre degli strumenti contengono icone e opzioni che vi permettono di accedere velocemente ai comandi di $[officename]." +msgstr "<ahelp hid=\".\">Apre un sottomenu per mostrare o nascondere le barre degli strumenti.</ahelp> Le barre degli strumenti contengono icone e opzioni che permettono di accedere velocemente ai comandi di $[officename]." #: 03990000.xhp msgctxt "" @@ -13267,7 +13267,7 @@ "par_id1886654\n" "help.text" msgid "<ahelp hid=\".\">Choose <item type=\"menuitem\">View - Toolbars - Reset</item> to reset the toolbars to their default context sensitive behavior. Now some toolbars will be shown automatically, dependent on the context.</ahelp>" -msgstr "<ahelp hid=\".\">Scegliete <item type=\"menuitem\">Visualizza - Barre degli strumenti - Ripristina</item> per ripristinare la sensibilità al contesto predefinito delle barre degli strumenti. Adesso alcune barre degli strumenti verranno mostrate automaticamente, a seconda del contesto.</ahelp>" +msgstr "<ahelp hid=\".\">Scegliere <item type=\"menuitem\">Visualizza - Barre degli strumenti - Ripristina</item> per ripristinare la sensibilità al contesto predefinito delle barre degli strumenti. Adesso alcune barre degli strumenti verranno mostrate automaticamente, a seconda del contesto.</ahelp>" #: 04050000.xhp msgctxt "" @@ -13397,7 +13397,7 @@ "par_id1857051\n" "help.text" msgid "<ahelp hid=\".\">Choose a command to delete the current comment, or all comments from the same author as the current comment, or all comments in the document.</ahelp>" -msgstr "<ahelp hid=\".\">Scegliete un comando per cancellare il commento corrente, o tutti i commenti dello stesso autore del commento corrente, o tutti i commenti nel documento.</ahelp>" +msgstr "<ahelp hid=\".\">Scegliere un comando per cancellare il commento corrente, o tutti i commenti dello stesso autore del commento corrente, o tutti i commenti nel documento.</ahelp>" #: 04050000.xhp msgctxt "" @@ -13413,7 +13413,7 @@ "par_id0804200803435883\n" "help.text" msgid "<ahelp hid=\".\">Use <item type=\"menuitem\">View - Comments</item> to show or hide all comments (not available in Calc).</ahelp>" -msgstr "<ahelp hid=\".\">Utilizzate <item type=\"menuitem\">Visualizza - Commenti</item> per mostrare o nascondere tutti i commenti (non disponibile in Calc).</ahelp>" +msgstr "<ahelp hid=\".\">Utilizzare <item type=\"menuitem\">Visualizza - Commenti</item> per mostrare o nascondere tutti i commenti (non disponibile in Calc).</ahelp>" #: 04050000.xhp msgctxt "" @@ -13862,7 +13862,7 @@ "2\n" "help.text" msgid "<ahelp hid=\".\">Inserts an object into your document. For movies and sounds, use <emph>Insert - Media - Audio or Video</emph> instead.</ahelp>" -msgstr "<ahelp hid=\".\">Inserisce un oggetto nel documento. Per i filmati e i suoni, usate invece <emph>Inserisci - Media - Audio o video</emph>.</ahelp>" +msgstr "<ahelp hid=\".\">Inserisce un oggetto nel documento. Per i filmati e i suoni, usare invece <emph>Inserisci - Media - Audio o video</emph>.</ahelp>" #: 04150000.xhp msgctxt "" @@ -14100,7 +14100,7 @@ "par_id6636555\n" "help.text" msgid "<ahelp hid=\".\">Enable this checkbox to insert the OLE object as a link to the original file. If this checkbox is not enabled, the OLE object will be embedded into your document.</ahelp>" -msgstr "<ahelp hid=\".\">Selezionate questa casella per inserire l'oggetto OLE come collegamento al file originale. Se questa casella non è selezionata, l'oggetto OLE sarà incorporato nel vostro documento.</ahelp>" +msgstr "<ahelp hid=\".\">Selezionare questa casella per inserire l'oggetto OLE come collegamento al file originale. Se questa casella non è selezionata, l'oggetto OLE sarà incorporato nel documento.</ahelp>" #: 04150200.xhp msgctxt "" @@ -14415,7 +14415,7 @@ "2\n" "help.text" msgid "<ahelp hid=\".\">Select the source for a picture that you want to insert.</ahelp>" -msgstr "<ahelp hid=\".\">Selezionate la sorgente dell'immagine che volete inserire.</ahelp>" +msgstr "<ahelp hid=\".\">Selezionare la sorgente dell'immagine da inserire.</ahelp>" #: 04990000.xhp msgctxt "" @@ -18941,7 +18941,7 @@ "2\n" "help.text" msgid "<ahelp hid=\".\">Set the typographic options for cells or paragraphs in Asian language files. To enable Asian language support, choose <emph>Language Settings - Languages</emph> in the Options dialog box, and then select the <emph>Enabled</emph> box in the <emph>Asian language support</emph> area.</ahelp> The Asian typography options are ignored in HTML documents." -msgstr "<ahelp hid=\".\">Imposta le opzioni tipografiche per le celle o i paragrafi di file in lingue asiatiche. Per abilitare il supporto delle lingue asiatiche, scegliete <emph>Impostazioni della lingua - Lingue</emph> nella finestra di dialogo Opzioni e selezionate la casella di controllo <emph>Abilitato</emph> nell'area <emph>Supporto lingue asiatiche</emph>.</ahelp> Nei documenti HTML, le opzioni tipografiche per le lingue asiatiche vengono ignorate." +msgstr "<ahelp hid=\".\">Imposta le opzioni tipografiche per le celle o i paragrafi di file in lingue asiatiche. Per abilitare il supporto delle lingue asiatiche, scegliere <emph>Impostazioni della lingua - Lingue</emph> nella finestra di dialogo Opzioni e selezionare la casella di controllo <emph>Abilitato</emph> nell'area <emph>Supporto lingue asiatiche</emph>.</ahelp> Nei documenti HTML, le opzioni tipografiche per le lingue asiatiche vengono ignorate." #: 05020700.xhp msgctxt "" @@ -20528,7 +20528,7 @@ "35\n" "help.text" msgid "<ahelp hid=\".\" visibility=\"hidden\">Click a color. Click No Fill to remove a background or highlighting color. Click Automatic to reset a font color.</ahelp>" -msgstr "<ahelp hid=\".\" visibility=\"hidden\">Selezionate un colore. Fate clic su Trasparente per rimuovere il colore di sfondo o l'evidenziazione. Fate clic su Automatico per ripristinare il colore carattere.</ahelp>" +msgstr "<ahelp hid=\".\" visibility=\"hidden\">Seleziona un colore. Fai clic su Trasparente per rimuovere il colore di sfondo o l'evidenziazione. Fai clic su Automatico per ripristinare il colore carattere.</ahelp>" #: 05030700.xhp msgctxt "" @@ -20785,7 +20785,7 @@ "2\n" "help.text" msgid "<ahelp hid=\".\">Trims or scales the selected graphic. You can also restore the graphic to its original size.</ahelp>" -msgstr "<ahelp hid=\".\">Permette di tagliare, ingrandire o ridurre l'immagine selezionata. Potete inoltre ripristinare la dimensione originale dell'immagine.</ahelp>" +msgstr "<ahelp hid=\".\">Permette di tagliare, ingrandire o ridurre l'immagine selezionata. È possibile inoltre ripristinare la dimensione originale dell'immagine.</ahelp>" #: 05030800.xhp msgctxt "" @@ -21522,7 +21522,7 @@ "par_id0522200809473732\n" "help.text" msgid "<ahelp hid=\".\" visibility=\"hidden\">Select the Paragraph Style that you want to use as a reference for lining up the text on the selected Page style. The height of the font that is specified in the reference style sets the spacing of the vertical page grid. </ahelp>" -msgstr "<ahelp hid=\".\" visibility=\"hidden\">Selezionate lo stile di paragrafo che volete utilizzare come riferimento per allineare il testo sullo stile di pagina scelto. L'altezza del tipo di carattere specificata nello stile di riferimento imposta la spaziatura della griglia verticale della pagina. </ahelp>" +msgstr "<ahelp hid=\".\" visibility=\"hidden\">Seleziona lo stile di paragrafo da utilizzare come riferimento per allineare il testo sullo stile di pagina scelto. L'altezza del tipo di carattere specificata nello stile di riferimento imposta la spaziatura della griglia verticale della pagina. </ahelp>" #: 05040200.xhp msgctxt "" @@ -22073,7 +22073,7 @@ "par_id0609200910261473\n" "help.text" msgid "<ahelp hid=\".\" visibility=\"hidden\">Add or edit header text.</ahelp>" -msgstr "<ahelp hid=\".\" visibility=\"hidden\">Aggiunge o modifica il testo dell'intestazione.</ahelp>" +msgstr "<ahelp hid=\".\" visibility=\"hidden\">Aggiungi o modifica il testo dell'intestazione.</ahelp>" #: 05040300.xhp msgctxt "" @@ -22391,7 +22391,7 @@ "par_id0609200910255518\n" "help.text" msgid "<ahelp hid=\".\" visibility=\"hidden\">Add or edit footer text.</ahelp>" -msgstr "<ahelp hid=\".\" visibility=\"hidden\">Aggiunge o modifica il testo del piè di pagina.</ahelp>" +msgstr "<ahelp hid=\".\" visibility=\"hidden\">Aggiungi o modifica il testo del piè di pagina.</ahelp>" #: 05040400.xhp msgctxt "" @@ -24297,7 +24297,7 @@ "par_id3140354\n" "help.text" msgid "<ahelp hid=\".\">Assigns a title and a description to the selected object. These are accessible for accessibility tools and as alternative tags when you export the document.</ahelp>" -msgstr "<ahelp hid=\".\">Assegna un titolo e una descrizione all'oggetto selezionato. Questi saranno disponibili agli strumenti di accesso facilitato e come tag alternativi quando esporterete il documento.</ahelp>" +msgstr "<ahelp hid=\".\">Assegna un titolo e una descrizione all'oggetto selezionato. Questi saranno disponibili agli strumenti di accesso facilitato e come tag alternativi quando si esporterà il documento.</ahelp>" #: 05190100.xhp msgctxt "" @@ -24313,7 +24313,7 @@ "par_id1283608\n" "help.text" msgid "<ahelp hid=\".\">Enter a title text. This short name is visible as an alternative tag in HTML format. Accessibility tools can read this text.</ahelp>" -msgstr "<ahelp hid=\".\">Inserite un titolo. Questo sarà visibile come tag alternativo nel formato HTML e gli strumenti di accesso facilitato saranno in grado di leggerlo.</ahelp>" +msgstr "<ahelp hid=\".\">Inserire un titolo. Questo sarà visibile come tag alternativo nel formato HTML e gli strumenti di accesso facilitato saranno in grado di leggerlo.</ahelp>" #: 05190100.xhp msgctxt "" @@ -24329,7 +24329,7 @@ "par_id693685\n" "help.text" msgid "<ahelp hid=\".\">Enter a description text. The long description text can be entered to describe a complex object or group of objects to users with screen reader software. The description is visible as an alternative tag for accessibility tools.</ahelp>" -msgstr "<ahelp hid=\".\">Inserite una descrizione. Utilizzate la descrizione estesa per descrivere un oggetto complesso o un gruppo di oggetti, che saranno leggibili anche dagli strumenti di accesso facilitato.</ahelp>" +msgstr "<ahelp hid=\".\">Inserire una descrizione. Utilizzare la descrizione estesa per descrivere un oggetto complesso o un gruppo di oggetti, che saranno leggibili anche dagli strumenti di accesso facilitato.</ahelp>" #: 05200000.xhp msgctxt "" @@ -24870,7 +24870,7 @@ "20\n" "help.text" msgid "<ahelp hid=\".\">Enter a name.</ahelp>" -msgstr "<ahelp hid=\".\">Inserite un nome.</ahelp>" +msgstr "<ahelp hid=\".\">Inserire un nome.</ahelp>" #: 05200200.xhp msgctxt "" @@ -24968,7 +24968,7 @@ "6\n" "help.text" msgid "Lets you organize the current list of arrow styles." -msgstr "Indicate il nuovo nome del simbolo delle estremità di linea nel campo di testo superiore oppure scegliete un simbolo predefinito dalla casella di riepilogo sottostante." +msgstr "Vi permette di organizzare l'elenco corrente delle estremità di linea." #: 05200300.xhp msgctxt "" @@ -24986,7 +24986,7 @@ "8\n" "help.text" msgid "<ahelp hid=\"cui/ui/lineendstabpage/EDT_NAME\">Displays the name of the selected arrow style.</ahelp>" -msgstr "<ahelp hid=\"cui/ui/lineendstabpage/EDT_NAME\">Digitate nel campo di testo un nome per il simbolo dell´estremità di linea.</ahelp>" +msgstr "<ahelp hid=\"cui/ui/lineendstabpage/EDT_NAME\">Visualizza il nome dell´estremità di linea.</ahelp>" #: 05200300.xhp msgctxt "" @@ -26608,7 +26608,7 @@ "2\n" "help.text" msgid "<ahelp hid=\".\">Set the transparency options for the fill that you apply to the selected object.</ahelp>" -msgstr "<ahelp hid=\".\">Impostate le opzioni di trasparenza per il riempimento che volete applicare all'oggetto selezionato.</ahelp>" +msgstr "<ahelp hid=\".\">Impostare le opzioni di trasparenza per il riempimento da applicare all'oggetto selezionato.</ahelp>" #: 05210700.xhp msgctxt "" @@ -28538,7 +28538,7 @@ "53\n" "help.text" msgid "This <emph>Fontwork</emph> dialog is only available for Fontwork in old Writer text documents that were created prior to OpenOffice.org 2.0. You must first call <emph>Tools - Customize</emph> to add a menu command or an icon to open this dialog." -msgstr "Questa finestra di dialogo <emph>Fontwork</emph> è disponibile solo per i documenti di testo creati con Writer prima di OpenOffice.org 2.0. Per aggiungere un comando di menu o un simbolo per l'apertura di questa finestra di dialogo dovete prima scegliere <emph>Strumenti - Personalizza</emph>." +msgstr "Questa finestra di dialogo <emph>Fontwork</emph> è disponibile solo per i documenti di testo creati con Writer prima di OpenOffice.org 2.0. Per aggiungere un comando di menu o un'icona per l'apertura di questa finestra di dialogo dovete prima scegliere <emph>Strumenti - Personalizza</emph>." #: 05280000.xhp msgctxt "" @@ -30460,7 +30460,7 @@ "par_idN10AD7\n" "help.text" msgid "<ahelp hid=\".\">Reduces the apparent size of the font so that the contents of the cell fit into the current cell width. You cannot apply this command to a cell that contains line breaks.</ahelp>" -msgstr "<ahelp hid=\".\">Riduce le dimensioni apparenti del tipo di carattere utilizzato, in modo che il contenuto della cella si adatti alla larghezza della cella. Non potete applicare questo comando a una cella contenente interruzioni di riga.</ahelp>" +msgstr "<ahelp hid=\".\">Riduce le dimensioni apparenti del tipo di carattere utilizzato, in modo che il contenuto della cella si adatti alla larghezza della cella. Non è possibile applicare questo comando a una cella contenente interruzioni di riga.</ahelp>" #: 05340400.xhp msgctxt "" @@ -30547,7 +30547,7 @@ "par_id7812433001\n" "help.text" msgid "<ahelp hid=\".\" visibility=\"hidden\">Select database records. Drag-and-drop rows or cells to the document to insert contents. Drag-and-drop column headers to insert fields.</ahelp>" -msgstr "<ahelp hid=\".\" visibility=\"hidden\">Selezionate i record del database. Trascinate righe o celle nel documento per inserire il contenuto. Trascinate le intestazioni delle colonne per inserire campi.</ahelp>" +msgstr "<ahelp hid=\".\" visibility=\"hidden\">Seleziona i record del database. Trascina righe o celle nel documento per inserire il contenuto. Trascina le intestazioni delle colonne per inserire campi.</ahelp>" #: 05340400.xhp msgctxt "" @@ -30814,7 +30814,7 @@ "40\n" "help.text" msgid "<ahelp hid=\".\">Type the number of the record that you want to display, and then press Enter.</ahelp>" -msgstr "<ahelp hid=\".\">Inserite il numero del record che volete visualizzare e premete Invio.</ahelp>" +msgstr "<ahelp hid=\".\">Inserire il numero del record da visualizzare e premere Invio.</ahelp>" #: 05340400.xhp msgctxt "" @@ -31025,7 +31025,7 @@ "3\n" "help.text" msgid "This command can be activated only when you select the <link href=\"text/shared/02/07070000.xhp\" name=\"Edit\">Edit</link> icon on the Table Data bar or Standard bar." -msgstr "Questo comando può essere selezionato solo se nella barra del database o nella barra standard avete selezionato il simbolo <link href=\"text/shared/02/07070000.xhp\" name=\"Modifica dati\">Modifica dati</link>." +msgstr "Questo comando può essere selezionato solo se nella barra del database o nella barra standard avete selezionato l'icona <link href=\"text/shared/02/07070000.xhp\" name=\"Modifica dati\">Modifica dati</link>." #: 05340405.xhp msgctxt "" @@ -31086,7 +31086,7 @@ "2\n" "help.text" msgid "<ahelp hid=\".\">Hides the selected column(s). To display hidden columns, right-click any column header, and then choose <emph>Show Columns</emph>.</ahelp>" -msgstr "<ahelp hid=\".\">Nasconde la colonna o le colonne selezionate. Per visualizzare le colonne nascoste, fate clic con il pulsante destro del mouse su un'intestazione e scegliete <emph>Mostra colonne</emph>.</ahelp>" +msgstr "<ahelp hid=\".\">Nasconde la colonna o le colonne selezionate. Per visualizzare le colonne nascoste, fare clic col pulsante destro del mouse su un'intestazione e scegliere <emph>Mostra colonne</emph>.</ahelp>" #: 05340600.xhp msgctxt "" @@ -31112,7 +31112,7 @@ "2\n" "help.text" msgid "<ahelp hid=\".\">Displays hidden columns. Choose the column that you want to display from the list, or click <emph>All </emph>to display all of the hidden columns.</ahelp>" -msgstr "<ahelp hid=\".\">Visualizza le colonne nascoste. Scegliete la colonna da visualizzare dall'elenco, oppure fate clic su <emph>Tutto</emph> per visualizzare tutte le colonne nascoste.</ahelp>" +msgstr "<ahelp hid=\".\">Visualizza le colonne nascoste. Scegliere la colonna da visualizzare dall'elenco, oppure fare clic su <emph>Tutto</emph> per visualizzare tutte le colonne nascoste.</ahelp>" #: 05350000.xhp msgctxt "" @@ -32933,7 +32933,7 @@ "par_id1022200801354366\n" "help.text" msgid "<ahelp hid=\".\">Enable <emph>Check grammar</emph> to work first on all spellcheck errors, then on all grammar errors.</ahelp>" -msgstr "<ahelp hid=\".\">Abilitate <emph>Controllo grammaticale</emph> per visualizzare prima tutti gli errori ortografici, poi quelli grammaticali.</ahelp>" +msgstr "<ahelp hid=\".\">Abilitare <emph>Controllo grammaticale</emph> per visualizzare prima tutti gli errori ortografici, poi quelli grammaticali.</ahelp>" #: 06010000.xhp msgctxt "" @@ -32951,7 +32951,7 @@ "7\n" "help.text" msgid "<ahelp hid=\".\">Displays the sentence with the misspelled word highlighted. Edit the word or the sentence, or click one of the suggestions in the text box below.</ahelp>" -msgstr "<ahelp hid=\".\">Visualizza la frase evidenziando la parola errata. Modificate la parola o la frase, oppure scegliete uno dei suggerimenti proposti nella casella di testo.</ahelp>" +msgstr "<ahelp hid=\".\">Visualizza la frase evidenziando la parola errata. Modificare la parola o la frase, oppure scegliere uno dei suggerimenti proposti nella casella di testo.</ahelp>" #: 06010000.xhp msgctxt "" @@ -33145,7 +33145,7 @@ "par_idN10854\n" "help.text" msgid "<ahelp hid=\".\">Click to undo the last change in the current sentence. Click again to undo the previous change in the same sentence.</ahelp>" -msgstr "<ahelp hid=\".\">Fate clic per annullare l'ultima modifica nella frase corrente. Fate di nuovo clic per annullare la modifica precedente nella stessa frase.</ahelp>" +msgstr "<ahelp hid=\".\">Fare clic per annullare l'ultima modifica nella frase corrente. Fare di nuovo clic per annullare la modifica precedente nella stessa frase.</ahelp>" #: 06010000.xhp msgctxt "" @@ -33203,7 +33203,7 @@ "par_idN1056C\n" "help.text" msgid "<ahelp hid=\".\">Opens a submenu where you can choose language specific commands.</ahelp>" -msgstr "<ahelp hid=\".\">Apre un sottomenu in cui potete scegliere comandi specifici per la lingua.</ahelp>" +msgstr "<ahelp hid=\".\">Apre un sottomenu in cui si possono scegliere comandi specifici per la lingua.</ahelp>" #: 06010500.xhp msgctxt "" @@ -33219,7 +33219,7 @@ "par_id1507309\n" "help.text" msgid "<ahelp hid=\".\">Opens a submenu. Choose a language for the selected text. <br/>Choose None to exclude the selected text from spellchecking and hyphenation.<br/>Choose More to open a dialog with more options.</ahelp>" -msgstr "<ahelp hid=\".\">Apre un sottomenu in cui potete scegliere la lingua per il testo selezionato. <br/>Scegliete Nessuna per escludere il testo selezionato dal controllo ortografico e dalla sillabazione. <br/>Scegliete Altro per aprire una finestra con più opzioni.</ahelp>" +msgstr "<ahelp hid=\".\">Apre un sottomenu in cui si può scegliere la lingua per il testo selezionato. <br/>Scegliere 'Nessuna' per escludere il testo selezionato dal controllo ortografico e dalla sillabazione. <br/>Scegliere 'Altro' per aprire una finestra con più opzioni.</ahelp>" #: 06010500.xhp msgctxt "" @@ -33235,7 +33235,7 @@ "par_id3928952\n" "help.text" msgid "<ahelp hid=\".\">Opens a submenu. Choose a language for the current paragraph. <br/>Choose None to exclude the current paragraph from spellchecking and hyphenation.<br/>Choose More to open a dialog with more options.</ahelp>" -msgstr "<ahelp hid=\".\">Apre un sottomenu in cui potete scegliere la lingua per il paragrafo selezionato. <br/>Scegliete Nessuna per escludere il paragrafo selezionato dal controllo ortografico e dalla sillabazione. <br/>Scegliete Altro per aprire una finestra con più opzioni.</ahelp>" +msgstr "<ahelp hid=\".\">Apre un sottomenu in cui si può scegliere la lingua per il paragrafo selezionato. <br/>Scegliere 'Nessuna' per escludere il paragrafo selezionato dal controllo ortografico e dalla sillabazione. <br/>Scegliere 'Altro' per aprire una finestra con più opzioni.</ahelp>" #: 06010500.xhp msgctxt "" @@ -33251,7 +33251,7 @@ "par_id5735953\n" "help.text" msgid "<ahelp hid=\".\">Opens a submenu. Choose a language for all text. <br/>Choose None to exclude all text from spellchecking and hyphenation.<br/>Choose More to open a dialog with more options.</ahelp>" -msgstr "<ahelp hid=\".\">Apre un sottomenu in cui potete scegliere la lingua per tutto il testo. <br/>Scegliete Nessuna per escludere tutto il testo dal controllo ortografico e dalla sillabazione. <br/>Scegliete Altro per aprire una finestra con più opzioni.</ahelp>" +msgstr "<ahelp hid=\".\">Apre un sottomenu in cui si può scegliere la lingua per tutto il testo. <br/>Scegliere 'Nessuna' per escludere tutto il testo dal controllo ortografico e dalla sillabazione. <br/>Scegliere 'Altro' per aprire una finestra con più opzioni.</ahelp>" #: 06010500.xhp msgctxt "" @@ -33363,7 +33363,7 @@ "par_idN10576\n" "help.text" msgid "<ahelp hid=\".\">Select the conversion direction.</ahelp>" -msgstr "<ahelp hid=\".\">Selezionate la direzione della conversione.</ahelp>" +msgstr "<ahelp hid=\".\">Selezionare la direzione della conversione.</ahelp>" #: 06010600.xhp msgctxt "" @@ -33379,7 +33379,7 @@ "par_idN1057D\n" "help.text" msgid "<ahelp hid=\".\">Converts traditional Chinese text characters to simplified Chinese text characters. Click <emph>OK</emph> to convert the selected text. If no text is selected, the whole document is converted.</ahelp>" -msgstr "Converte i caratteri dal cinese tradizionale al cinese semplificato.<ahelp hid=\".\">. Fate clic su <emph>OK</emph> per convertire il testo selezionato. Se il testo non è selezionato, viene convertito l'intero documento.</ahelp>" +msgstr "<ahelp hid=\".\">Converte i caratteri dal cinese tradizionale al cinese semplificato. Fare clic su <emph>OK</emph> per convertire il testo selezionato. Se il testo non è selezionato, viene convertito l'intero documento.</ahelp>" #: 06010600.xhp msgctxt "" @@ -33395,7 +33395,7 @@ "par_idN10584\n" "help.text" msgid "<ahelp hid=\".\">Converts simplified Chinese text characters to traditional Chinese text characters. Click <emph>OK</emph> to convert the selected text. If no text is selected, the whole document is converted.</ahelp>" -msgstr "<ahelp hid=\".\">Converte i caratteri dal cinese semplificato al cinese tradizionale. Fate clic su <emph>OK</emph> per convertire il testo selezionato. Se il testo non è selezionato, viene convertito l'intero documento.</ahelp>" +msgstr "<ahelp hid=\".\">Converte i caratteri dal cinese semplificato al cinese tradizionale. Fare clic su <emph>OK</emph> per convertire il testo selezionato. Se il testo non è selezionato, viene convertito l'intero documento.</ahelp>" #: 06010600.xhp msgctxt "" @@ -33443,7 +33443,7 @@ "par_idN105A0\n" "help.text" msgid "<ahelp hid=\".\">Opens the <link href=\"text/shared/01/06010601.xhp\">Edit Dictionary</link> dialog where you can edit the list of conversion terms.</ahelp>" -msgstr "<ahelp hid=\".\">Apre la finestra di dialogo <link href=\"text/shared/01/06010601.xhp\">Modifica dizionario</link> in cui potete modificare l'elenco dei termini usati per la conversione.</ahelp>" +msgstr "<ahelp hid=\".\">Apre la finestra di dialogo <link href=\"text/shared/01/06010601.xhp\">Modifica dizionario</link> in cui si può modificare l'elenco dei termini usati per la conversione.</ahelp>" #: 06010601.xhp msgctxt "" @@ -33475,7 +33475,7 @@ "par_idN10541\n" "help.text" msgid "<ahelp hid=\".\">Edit the <link href=\"text/shared/01/06010600.xhp\">Chinese conversion</link> terms.</ahelp>" -msgstr "<ahelp hid=\".\">Modificate i termini per la <link href=\"text/shared/01/06010600.xhp\">Conversione in cinese</link>.</ahelp>" +msgstr "<ahelp hid=\".\">Modificare i termini per la <link href=\"text/shared/01/06010600.xhp\">Conversione in cinese</link>.</ahelp>" #: 06010601.xhp msgctxt "" @@ -33547,7 +33547,7 @@ "par_idN10582\n" "help.text" msgid "<ahelp hid=\".\">Enter the text that you want to replace with the Mapping term.</ahelp>" -msgstr "<ahelp hid=\".\">Digitate il testo da sostituire con il termine mappato.</ahelp>" +msgstr "<ahelp hid=\".\">Digitare il testo da sostituire con il termine mappato.</ahelp>" #: 06010601.xhp msgctxt "" @@ -33563,7 +33563,7 @@ "par_idN10589\n" "help.text" msgid "<ahelp hid=\".\">Enter the text that you want to replace the Term with.</ahelp>" -msgstr "<ahelp hid=\".\">Digitate il testo con cui volete sostituire il termine.</ahelp>" +msgstr "<ahelp hid=\".\">Digitare il testo con cui sostituire il termine.</ahelp>" #: 06010601.xhp msgctxt "" @@ -33680,7 +33680,7 @@ "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 @@ "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 -Nru libreoffice-5.1.1~rc2/translations/source/it/helpcontent2/source/text/shared/02.po libreoffice-5.1.2~rc2/translations/source/it/helpcontent2/source/text/shared/02.po --- libreoffice-5.1.1~rc2/translations/source/it/helpcontent2/source/text/shared/02.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/it/helpcontent2/source/text/shared/02.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "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" +"PO-Revision-Date: 2016-03-18 13:46+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 @@ "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: 1458308815.000000\n" #: 01110000.xhp msgctxt "" @@ -4132,7 +4132,7 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 "" @@ -9410,7 +9410,7 @@ "13\n" "help.text" msgid "You can use the <link href=\"text/shared/02/01171100.xhp\" name=\"Wizards On/Off\"><emph>Wizards On/Off</emph></link> icon to keep the wizard from starting automatically." -msgstr "Potete utilizzare il simbolo <link href=\"text/shared/02/01171100.xhp\" name=\"Procedura guidata sì/no\"><emph>Procedura guidata sì/no</emph></link> per evitare l'avvio automatico della procedura guidata." +msgstr "Potete utilizzare l'icona <link href=\"text/shared/02/01171100.xhp\" name=\"Procedura guidata sì/no\"><emph>Procedura guidata sì/no</emph></link> per evitare l'avvio automatico della procedura guidata." #: 01170801.xhp msgctxt "" @@ -9559,7 +9559,7 @@ "21\n" "help.text" msgid "You can use the <link href=\"text/shared/02/01171100.xhp\" name=\"Wizards On/Off\"><emph>Wizards On/Off</emph></link> icon to keep the wizard from starting automatically." -msgstr "Potete utilizzare il simbolo <link href=\"text/shared/02/01171100.xhp\" name=\"Procedura guidata sì/no\"><emph>Procedura guidata sì/no</emph></link> per evitare l'avvio automatico della procedura guidata." +msgstr "Potete utilizzare l'icona <link href=\"text/shared/02/01171100.xhp\" name=\"Procedura guidata sì/no\"><emph>Procedura guidata sì/no</emph></link> per evitare l'avvio automatico della procedura guidata." #: 01170900.xhp msgctxt "" @@ -10712,7 +10712,7 @@ "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 "" @@ -10872,7 +10872,7 @@ "2\n" "help.text" msgid "<variable id=\"zeichenhintergrundtext\"><ahelp hid=\".uno:BackColor\">Applies the current highlight color to the background of a text selection. If no text is selected, click the <emph>Highlighting</emph> icon, select the text that you want to highlight, and then click the <emph>Highlighting</emph> icon again. To change the highlight color, click the arrow next to the <emph>Highlighting</emph> icon, and then click the color that you want.</ahelp></variable>" -msgstr "<variable id=\"zeichenhintergrundtext\"><ahelp hid=\".uno:BackColor\">Applica il colore di evidenziazione selezionato allo sfondo del testo selezionato. Se non è selezionato un testo, fate clic sul simbolo <emph>Sfondo caratteri</emph>, selezionate il testo da evidenziare e fate clic nuovamente sul simbolo <emph>Sfondo caratteri</emph>. Per cambiare il colore di evidenziazione, fate clic sulla freccia vicino al simbolo <emph>Sfondo caratteri</emph> e quindi sul colore desiderato.</ahelp></variable>" +msgstr "<variable id=\"zeichenhintergrundtext\"><ahelp hid=\".uno:BackColor\">Applica il colore di evidenziazione selezionato allo sfondo del testo selezionato. Se non è selezionato un testo, fate clic sull'icona <emph>Evidenziazione</emph>, selezionate il testo da evidenziare e fate nuovamente clic sull'icona. Per cambiare il colore di evidenziazione, fate clic sulla freccia vicino all'icona <emph>Evidenziazione</emph> e quindi sul colore desiderato.</ahelp></variable>" #: 02160000.xhp msgctxt "" @@ -10989,7 +10989,7 @@ "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 "" @@ -11145,7 +11145,7 @@ "3\n" "help.text" msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\"></caseinline><defaultinline>This object can be the border of a text frame, a graphic or a table. The icon will only be visible if a graphic, table, object or frame has been selected.</defaultinline></switchinline>" -msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\"></caseinline><defaultinline>Tale oggetto può essere il bordo di una cornice di testo, un'immagine o una tabella. Questo simbolo è visibile solo se avete selezionato un'immagine, una tabella, un oggetto o una cornice.</defaultinline></switchinline>" +msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\"></caseinline><defaultinline>Tale oggetto può essere il bordo di una cornice di testo, un'immagine o una tabella. Questa icona è visibile solo se avete selezionato un'immagine, una tabella, un oggetto o una cornice.</defaultinline></switchinline>" #: 03130000.xhp msgctxt "" @@ -11597,7 +11597,7 @@ "4\n" "help.text" msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">The<emph> Demote One Level </emph>icon is on the <emph>Bullets and Numbering</emph> bar, which appears when the cursor is positioned on a numbering or bullets item. </caseinline><caseinline select=\"IMPRESS\">The <emph>Demote </emph>icon is on the <emph>Text Formatting</emph> bar, which appears when working in the outline view. </caseinline></switchinline>" -msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Il simbolo <emph>Un livello inferiore</emph> si trova sulla barra <emph>Elenchi puntati e numerati</emph>, che appare quando posizionate il cursore su un elenco puntato o numerato. </caseinline><caseinline select=\"IMPRESS\">Il simbolo <emph>Un livello inferiore</emph> si trova nella barra <emph>Formattazione del testo</emph>, che compare quando lavorate nella vista struttura. </caseinline></switchinline>" +msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">L'icona <emph>Un livello inferiore</emph> si trova sulla barra <emph>Elenchi puntati e numerati</emph>, che appare quando posizionate il cursore su un elenco puntato o numerato. </caseinline><caseinline select=\"IMPRESS\">L'icona <emph>Un livello più basso</emph> si trova nella barra <emph>Formattazione del testo</emph>, che compare quando lavorate nella vista struttura. </caseinline></switchinline>" #: 06050000.xhp msgctxt "" @@ -11649,7 +11649,7 @@ "4\n" "help.text" msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">The<emph> Promote One Level </emph>icon is on the <emph>Bullets and Numbering</emph> bar, which appears when the cursor is positioned on a numbering or bullets item. </caseinline><caseinline select=\"IMPRESS\">The<emph> Promote </emph>icon is on the <emph>Text Formatting</emph> bar, which appears when working in the outline view. </caseinline></switchinline>" -msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Il simbolo <emph>Un livello superiore</emph> compare nella barra <emph>Elenchi puntati e numerati</emph>, che viene visualizzata quando il cursore si trova in un elenco puntato o numerato.</caseinline><caseinline select=\"IMPRESS\">Il simbolo <emph>Un livello superiore</emph> compare nella barra <emph>Formattazione del testo</emph>, che viene visualizzata quando è attiva la vista struttura.</caseinline></switchinline>" +msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">L'icona <emph>Un livello superiore</emph> compare nella barra <emph>Elenchi puntati e numerati</emph>, che viene visualizzata quando il cursore si trova in un elenco puntato o numerato.</caseinline><caseinline select=\"IMPRESS\">L'icona <emph>Un livello più alto</emph> compare nella barra <emph>Formattazione del testo</emph>, che viene visualizzata quando è attiva la vista struttura.</caseinline></switchinline>" #: 06060000.xhp msgctxt "" @@ -11701,7 +11701,7 @@ "5\n" "help.text" msgid "If you have numbered paragraphs and click the<emph> Move Up </emph>icon, the numbers will be adjusted to the current order. <switchinline select=\"appl\"><caseinline select=\"WRITER\">The <emph>Move Up </emph>icon is only visible when the cursor is positioned in a bulleted or numbered list.</caseinline></switchinline><switchinline select=\"appl\"><caseinline select=\"IMPRESS\">The <emph>Move Up </emph>icon appears on the <emph>Text Formatting</emph> Bar when you use the outline view.</caseinline></switchinline>" -msgstr "Se i paragrafi sono numerati e fate clic sul simbolo <emph>Sposta verso l'alto</emph>, i numeri vengono adattati alla nuova disposizione. <switchinline select=\"appl\"><caseinline select=\"WRITER\">Il simbolo <emph>Sposta verso l'alto</emph> compare solo quando il cursore si trova in un elenco puntato o numerato.</caseinline></switchinline><switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Il simbolo <emph>Sposta verso l'alto</emph> compare nella barra <emph>Formattazione del testo</emph> quando è attiva la vista struttura.</caseinline></switchinline>" +msgstr "Se i paragrafi sono numerati e fate clic sull'icona <emph>Sposta verso l'alto</emph>, i numeri vengono adattati alla nuova disposizione. <switchinline select=\"appl\"><caseinline select=\"WRITER\">L'icona <emph>Sposta verso l'alto</emph> compare solo quando il cursore si trova in un elenco puntato o numerato.</caseinline></switchinline><switchinline select=\"appl\"><caseinline select=\"IMPRESS\">L'icona <emph>Sposta verso l'alto</emph> compare nella barra <emph>Formattazione del testo</emph> quando è attiva la vista struttura.</caseinline></switchinline>" #: 06100000.xhp msgctxt "" @@ -11762,7 +11762,7 @@ "5\n" "help.text" msgid "If you have numbered paragraphs and click the<emph> Move Down </emph>icon, the numbers will be adjusted to the current order. <switchinline select=\"appl\"><caseinline select=\"WRITER\">The <emph>Move Down </emph>icon is only visible when the cursor is positioned in a bulleted or numbered list. </caseinline></switchinline><switchinline select=\"appl\"><caseinline select=\"IMPRESS\">The <emph>Move Down </emph>icon appears on the <emph>Text Formatting</emph> Bar when you use the outline view. </caseinline></switchinline>" -msgstr "Se i paragrafi sono numerati e fate clic sul simbolo <emph>Sposta in basso</emph>, i numeri vengono adattati alla nuova disposizione. <switchinline select=\"appl\"><caseinline select=\"WRITER\">Il simbolo <emph>Sposta in basso</emph> compare solo quando il cursore si trova in un elenco puntato o numerato. </caseinline></switchinline><switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Il simbolo <emph>Sposta in basso</emph> compare nella barra <emph>Formattazione del testo</emph> quando è attiva la vista struttura.</caseinline></switchinline>" +msgstr "Se i paragrafi sono numerati e fate clic sull'icona <emph>Sposta in basso</emph>, i numeri vengono adattati alla nuova disposizione. <switchinline select=\"appl\"><caseinline select=\"WRITER\">L'icona <emph>Sposta in basso</emph> compare solo quando il cursore si trova in un elenco puntato o numerato. </caseinline></switchinline><switchinline select=\"appl\"><caseinline select=\"IMPRESS\">L'icona <emph>Sposta in basso</emph> compare nella barra <emph>Formattazione del testo</emph> quando è attiva la vista struttura.</caseinline></switchinline>" #: 06110000.xhp msgctxt "" @@ -11893,7 +11893,7 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 "" @@ -13694,7 +13694,7 @@ "2\n" "help.text" msgid "<ahelp hid=\".uno:SbaBrwInsert\"><variable id=\"datenintext\">Inserts all fields of the marked record into the current document at the cursor position.</variable></ahelp> The icon is only visible if the current document is a text document or a spreadsheet." -msgstr "<ahelp hid=\".uno:SbaBrwInsert\"><variable id=\"datenintext\">Inserisce tutti i campi del record selezionato nella posizione del cursore nel documento.</variable></ahelp> Questo simbolo è visibile solo se è aperto un documento di testo o un foglio elettronico." +msgstr "<ahelp hid=\".uno:SbaBrwInsert\"><variable id=\"datenintext\">Inserisce tutti i campi del record selezionato nella posizione del cursore nel documento.</variable></ahelp> Quest'icona è visibile solo se è aperto un documento di testo o un foglio elettronico." #: 12070000.xhp msgctxt "" @@ -13720,7 +13720,7 @@ "4\n" "help.text" msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">In the data source browser, select the record that you want to insert into the document and then click the <emph>Data to Text</emph> icon. The record is inserted in the document at the cursor position, with the contents of each individual field of the record copied to a table column. You can also select multiple records and transfer them into the document by clicking the <emph>Data to Text </emph>icon. Each individual record is then written to a new row.</caseinline></switchinline>" -msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Nel browser delle sorgenti dati, selezionate il record che volete inserire nel documento e fate clic sul simbolo <emph>Dati in testo...</emph>. Il record viene inserito nella posizione del cursore e i dati contenuti nei singoli campi vengono copiati in una colonna. In alternativa, potete scegliere più record e trasferirli nel documento facendo clic sul simbolo <emph>Dati in testo...</emph>. Ogni record viene scritto in una nuova riga.</caseinline></switchinline>" +msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Nel browser delle sorgenti dati, selezionate il record che volete inserire nel documento e fate clic sull'icona <emph>Dati in testo...</emph>. Il record viene inserito nella posizione del cursore e i dati contenuti nei singoli campi vengono copiati in una colonna. In alternativa, potete scegliere più record e trasferirli nel documento facendo clic sull'icona <emph>Dati in testo...</emph>. Ogni record viene scritto in una nuova riga.</caseinline></switchinline>" #: 12070000.xhp msgctxt "" @@ -14307,7 +14307,7 @@ "2\n" "help.text" msgid "<ahelp hid=\".uno:DataSourceBrowser/InsertContent\">Updates the contents of the existing database fields by the marked records.</ahelp> The <emph>Data to Fields </emph>icon is only available if the current document is a text document." -msgstr "<ahelp hid=\".uno:DataSourceBrowser/InsertContent\">Aggiorna il contenuto dei campi esistenti del database in base ai record contrassegnati.</ahelp> Il simbolo <emph>Dati in campi</emph> è visibile solo se è aperto un documento di testo." +msgstr "<ahelp hid=\".uno:DataSourceBrowser/InsertContent\">Aggiorna il contenuto dei campi esistenti del database in base ai record contrassegnati.</ahelp> L'icona <emph>Dati in campi</emph> è visibile solo se è aperto un documento di testo." #: 12080000.xhp msgctxt "" @@ -16383,7 +16383,7 @@ "2\n" "help.text" msgid "<ahelp hid=\".uno:SbaExecuteSql\">Runs the SQL query and displays the query result.</ahelp> The <emph>Run Query</emph> function does not save the query." -msgstr "<ahelp hid=\".uno:SbaExecuteSql\" visibility=\"visible\">Esegue e visualizza il risultato della ricerca.</ahelp> Un clic sul simbolo <emph>Esegui</emph> consente di eseguire una ricerca SQL e di visualizzarne il risultato. La ricerca non viene però ancora salvata." +msgstr "<ahelp hid=\".uno:SbaExecuteSql\">Esegue e visualizza il risultato della ricerca SQL.</ahelp> La funzione <emph>Esegui ricerca</emph> non salva la ricerca." #: 14010000.xhp msgctxt "" @@ -16712,7 +16712,7 @@ "2\n" "help.text" msgid "<ahelp visibility=\"visible\" hid=\".uno:DBViewFunctions\">Displays the \"Function\" row in the lower part of the design view of the <link href=\"text/shared/explorer/database/02010100.xhp\" name=\"Query Design\">Query Design</link> window.</ahelp>" -msgstr "<ahelp visibility=\"visible\" hid=\".uno:DBViewFunctions\">Se il simbolo è attivato, nella parte inferiore della <link href=\"text/shared/explorer/database/02010100.xhp\" name=\"Struttura ricerca\">Struttura ricerca</link> viene visualizzata una riga \"Funzione\".</ahelp>" +msgstr "<ahelp visibility=\"visible\" hid=\".uno:DBViewFunctions\">Se l'icona è attivata, nella parte inferiore della <link href=\"text/shared/explorer/database/02010100.xhp\" name=\"Struttura ricerca\">Struttura ricerca</link> viene visualizzata una riga \"Funzione\".</ahelp>" #: 14040000.xhp msgctxt "" @@ -16755,7 +16755,7 @@ "2\n" "help.text" msgid "<ahelp hid=\".\">Displays the \"Table\" row in the lower part of the <link href=\"text/shared/explorer/database/02010100.xhp\" name=\"Query Design\">Query Design</link>.</ahelp>" -msgstr "<ahelp hid=\".\">Se il simbolo è attivato, nella parte inferiore della <link href=\"text/shared/explorer/database/02010100.xhp\" name=\"Struttura ricerca\">Struttura ricerca</link> viene visualizzata una riga \"Tabella\".</ahelp>" +msgstr "<ahelp hid=\".\">Se l'icona è attivata, nella parte inferiore della <link href=\"text/shared/explorer/database/02010100.xhp\" name=\"Struttura ricerca\">Struttura ricerca</link> viene visualizzata una riga \"Tabella\".</ahelp>" #: 14050000.xhp msgctxt "" @@ -16798,7 +16798,7 @@ "2\n" "help.text" msgid "<ahelp visibility=\"visible\" hid=\".uno:DBViewAliases\">Displays the \"Alias\" row in the lower part of the <link href=\"text/shared/explorer/database/02010100.xhp\" name=\"Query Design\">Query Design</link>.</ahelp>" -msgstr "<ahelp visibility=\"visible\" hid=\".uno:DBViewAliases\">Se il simbolo è attivato, nella parte inferiore della <link href=\"text/shared/explorer/database/02010100.xhp\" name=\"Struttura ricerca\">Struttura ricerca</link> viene visualizzata una riga \"Alias\".</ahelp>" +msgstr "<ahelp visibility=\"visible\" hid=\".uno:DBViewAliases\">Se l'icona è attivata, nella parte inferiore della <link href=\"text/shared/explorer/database/02010100.xhp\" name=\"Struttura ricerca\">Struttura ricerca</link> viene visualizzata una riga \"Alias\".</ahelp>" #: 14060000.xhp msgctxt "" @@ -16849,7 +16849,7 @@ "2\n" "help.text" msgid "<ahelp hid=\".uno:DBDistinctValues\">Expands the created select statement of the <link href=\"text/shared/explorer/database/02010100.xhp\" name=\"SQL Query\">SQL Query</link> in the current column by the parameter DISTINCT.</ahelp> The consequence is that identical values occurring multiple times are listed only once." -msgstr "<ahelp hid=\".uno:DBDistinctValues\">Se il simbolo è selezionato, l'indicazione di selezione della <link href=\"text/shared/explorer/database/02010100.xhp\" name=\"ricerca SQL\">ricerca SQL</link> viene estesa alla colonna attiva con il parametro DISTINCT.</ahelp> Di conseguenza, lo stesso valore che si presenta più volte viene elencato una sola volta." +msgstr "<ahelp hid=\".uno:DBDistinctValues\">Se l'icona è selezionata, l'indicazione di selezione della <link href=\"text/shared/explorer/database/02010100.xhp\" name=\"ricerca SQL\">ricerca SQL</link> viene estesa alla colonna attiva con il parametro DISTINCT.</ahelp> Di conseguenza, lo stesso valore che si presenta più volte viene elencato una sola volta." #: 14070000.xhp msgctxt "" @@ -17002,7 +17002,7 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 "" @@ -18934,7 +18934,7 @@ "par_id3156040\n" "help.text" msgid "Expands the created select statement of the SQL Query in the current column by the parameter DISTINCT. The consequence is that identical values occurring multiple times are listed only once." -msgstr "Se il simbolo è selezionato, l'indicazione di selezione della ricerca SQL viene estesa alla colonna attiva con il parametro DISTINCT. Di conseguenza, lo stesso valore che si presenta più volte viene elencato una sola volta." +msgstr "Se l'icona è selezionata, l'indicazione di selezione della ricerca SQL viene estesa alla colonna attiva con il parametro DISTINCT. Di conseguenza, lo stesso valore che si presenta più volte viene elencato una sola volta." #: querypropdlg.xhp msgctxt "" @@ -18974,7 +18974,7 @@ "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 @@ "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 @@ "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 @@ "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 -Nru libreoffice-5.1.1~rc2/translations/source/it/helpcontent2/source/text/shared/04.po libreoffice-5.1.2~rc2/translations/source/it/helpcontent2/source/text/shared/04.po --- libreoffice-5.1.1~rc2/translations/source/it/helpcontent2/source/text/shared/04.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/it/helpcontent2/source/text/shared/04.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "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-09-19 16:44+0000\n" +"PO-Revision-Date: 2016-03-18 13:49+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 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1442681073.000000\n" +"X-POOTLE-MTIME: 1458308947.000000\n" #: 01010000.xhp msgctxt "" @@ -434,7 +434,7 @@ "154\n" "help.text" msgid "Opens the list of the control field currently selected in a dialog. These shortcut keys apply not only to combo boxes but also to icon buttons with pop-up menus. Close an opened list by pressing the Escape key." -msgstr "Apre l'elenco del campo di controllo correntemente selezionato in un dialogo. Questa combinazione di tasti è valida sia per le caselle combinate che per i pulsanti simbolo in un menu a comparsa. Il tasto Esc consente di richiudere l'elenco aperto." +msgstr "Apre l'elenco del campo di controllo correntemente selezionato in un dialogo. Questa combinazione di tasti è valida sia per le caselle combinate, sia per i pulsanti icona in un menu a comparsa. Il tasto Esc consente di chiudere un elenco aperto." #: 01010000.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/it/helpcontent2/source/text/shared/05.po libreoffice-5.1.2~rc2/translations/source/it/helpcontent2/source/text/shared/05.po --- libreoffice-5.1.1~rc2/translations/source/it/helpcontent2/source/text/shared/05.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/it/helpcontent2/source/text/shared/05.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "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-09-19 16:45+0000\n" +"PO-Revision-Date: 2016-03-18 13:49+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 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1442681146.000000\n" +"X-POOTLE-MTIME: 1458308959.000000\n" #: 00000001.xhp msgctxt "" @@ -239,7 +239,7 @@ "12\n" "help.text" msgid "The \"Tip\" icon points out tips for working with the program in a more efficient manner." -msgstr "Il simbolo \"Suggerimento\" indica un consiglio per un uso più efficiente del programma." +msgstr "L'icona \"Suggerimento\" indica un consiglio per un uso più efficiente del programma." #: 00000100.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/it/helpcontent2/source/text/shared/autopi.po libreoffice-5.1.2~rc2/translations/source/it/helpcontent2/source/text/shared/autopi.po --- libreoffice-5.1.1~rc2/translations/source/it/helpcontent2/source/text/shared/autopi.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/it/helpcontent2/source/text/shared/autopi.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "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" +"PO-Revision-Date: 2016-03-18 13: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 @@ "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: 1458309008.000000\n" #: 01000000.xhp msgctxt "" @@ -270,7 +270,7 @@ "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 @@ "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 @@ "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 @@ "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 "" @@ -7843,7 +7843,7 @@ "26\n" "help.text" msgid "<ahelp hid=\"HID_DLGCONVERT_CBBACK\">If the current document is a $[officename] Calc document or template, you can call up the Euro Converter using the corresponding icon in the Tools bar.</ahelp> This icon is hidden by default. To display the Euro Converter icon, click the arrow at the end of the Tools bar, select the <emph>Visible Buttons</emph> command and activate the <emph>Euro Converter</emph> icon." -msgstr "<ahelp hid=\"HID_DLGCONVERT_CBBACK\">Se il documento attivo è un foglio elettronico o un modello di $[officename] Calc, potete richiamare il Convertitore Euro utilizzando il relativo simbolo nella barra degli strumenti.</ahelp> Per impostazione predefinita, questa icona è nascosta. Per visualizzare l'icona del Convertitore Euro, fate clic sulla freccia al termine della barra degli strumenti, selezionate il comando <emph>Pulsanti visibili</emph> e attivate l'icona <emph>Convertitore Euro</emph>." +msgstr "<ahelp hid=\"HID_DLGCONVERT_CBBACK\">Se il documento attivo è un foglio elettronico o un modello di $[officename] Calc, potete richiamare il Convertitore Euro utilizzando la relativa icona nella barra degli strumenti.</ahelp> Per impostazione predefinita, quest'icona è nascosta. Per visualizzare l'icona del Convertitore Euro, fate clic sulla freccia al termine della barra degli strumenti, selezionate il comando <emph>Pulsanti visibili</emph> e attivate l'icona <emph>Convertitore Euro</emph>." #: 01150000.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/it/helpcontent2/source/text/shared/explorer/database.po libreoffice-5.1.2~rc2/translations/source/it/helpcontent2/source/text/shared/explorer/database.po --- libreoffice-5.1.1~rc2/translations/source/it/helpcontent2/source/text/shared/explorer/database.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/it/helpcontent2/source/text/shared/explorer/database.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "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:58+0100\n" -"PO-Revision-Date: 2016-01-04 12:10+0000\n" +"PO-Revision-Date: 2016-03-18 13: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 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1451909407.000000\n" +"X-POOTLE-MTIME: 1458309040.000000\n" #: 02000000.xhp msgctxt "" @@ -4357,7 +4357,7 @@ "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 "Scegliendo <emph>Strumenti - Relazioni</emph>, si apre una finestra che presenta tutte le relazioni esistenti tra le tabelle del database attivo. Se non è stata definita alcuna relazione, o se volete correlare tra loro altre tabelle del database, fate clic sul simbolo <emph>Aggiungi tabelle</emph>. Si apre la finestra di dialogo <link href=\"text/shared/02/14020100.xhp\" name=\"Aggiungi tabelle\">Aggiungi tabelle</link>, in cui potete selezionare le tabelle desiderate." +msgstr "Scegliendo <emph>Strumenti - Relazioni</emph>, si apre una finestra che presenta tutte le relazioni esistenti tra le tabelle del database attivo. Se non è stata definita alcuna relazione, o se volete correlare tra loro altre tabelle del database, fate clic sull'icona <emph>Aggiungi tabelle</emph>. Si apre la finestra di dialogo <link href=\"text/shared/02/14020100.xhp\" name=\"Aggiungi tabelle\">Aggiungi tabelle</link>, in cui potete selezionare le tabelle desiderate." #: 05020000.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/it/helpcontent2/source/text/shared/guide.po libreoffice-5.1.2~rc2/translations/source/it/helpcontent2/source/text/shared/guide.po --- libreoffice-5.1.1~rc2/translations/source/it/helpcontent2/source/text/shared/guide.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/it/helpcontent2/source/text/shared/guide.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "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:58+0100\n" -"PO-Revision-Date: 2016-01-24 16:58+0000\n" +"PO-Revision-Date: 2016-03-18 13:55+0000\n" "Last-Translator: Valter Mura <valtermura@gmail.com>\n" "Language-Team: Italian <l10n@it.libreoffice.org>\n" "Language: it\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1453654738.000000\n" +"X-POOTLE-MTIME: 1458309355.000000\n" #: aaa_start.xhp msgctxt "" @@ -2773,7 +2773,7 @@ "12\n" "help.text" msgid "To select the format in which the clipboard contents will be pasted, click the arrow next to the <emph>Paste</emph> icon on the Standard bar, or choose <emph>Edit - Paste Special</emph>, then select the proper format." -msgstr "Per selezionare il formato in cui verrà incollato il contenuto degli Appunti, fate clic sulla freccia vicino al simbolo <emph>Incolla</emph> nella barra standard, oppure scegliete <emph>Modifica - Incolla speciale</emph> e selezionate il formato corretto." +msgstr "Per selezionare il formato in cui verrà incollato il contenuto degli Appunti, fate clic sulla freccia vicino all'icona <emph>Incolla</emph> nella barra standard, oppure scegliete <emph>Modifica - Incolla speciale</emph> e selezionate il formato corretto." #: copytext2application.xhp msgctxt "" @@ -5338,7 +5338,7 @@ "par_id7953123\n" "help.text" msgid "Example: Think about someone who wants to camouflage his identity to be a sender from your bank. He can easily get a certificate using a false name, then send you any signed e-mail pretending he is working for your bank. You will get that e-mail, and the e-mail or the document within has the \"valid signed\" icon." -msgstr "Esempio: Si ipotizzi che un utente malintenzionato voglia assumere l'identità di un mittente della vostra banca. Potrà senza grandi difficoltà ottenere un certificato usando un falso nome e inviarvi un messaggio di posta elettronica firmato in cui sostiene di lavorare per la vostra banca. Voi riceverete il messaggio e il messaggio, o il documento che contiene, saranno contrassegnati con il simbolo \"firma valida\"." +msgstr "Esempio: si ipotizzi che un utente malintenzionato voglia assumere l'identità di un mittente della vostra banca. Potrà senza grandi difficoltà ottenere un certificato usando un falso nome e inviarvi un messaggio di posta elettronica firmato in cui sostiene di lavorare per la vostra banca. Voi riceverete il messaggio e il messaggio, o il documento che contiene, saranno contrassegnati con l'icona \"firma valida\"." #: digital_signatures.xhp msgctxt "" @@ -7592,7 +7592,7 @@ "par_idN106EB\n" "help.text" msgid "Click the arrow icon at the end of the <emph>Standard</emph> bar. In the drop-down menu, choose <emph>Customize</emph>." -msgstr "Fate clic sul simbolo freccia all'estremità della <emph>barra standard</emph>. Nel menu a discesa, scegliete <emph>Personalizza</emph>." +msgstr "Fate clic sull'icona freccia all'estremità della <emph>barra standard</emph>. Nel menu a discesa, scegliete <emph>Personalizza</emph>." #: fax.xhp msgctxt "" @@ -14478,7 +14478,7 @@ "6\n" "help.text" msgid "Open a category by clicking on the plus sign. If you only want to view the entries in a certain category, select the category and click the <emph>Content View</emph> icon. Until you click the icon again, only the objects of this category will be displayed." -msgstr "Per aprire una categoria fate clic sul segno più posto accanto alla voce. Se vi interessano solo le voci di questa categoria, selezionate la categoria e fate clic sul simbolo <emph>Commuta la vista del contenuto</emph>. In questo modo vi appariranno solo gli oggetti della categoria fino a che non fate di nuovo clic sul simbolo." +msgstr "Per aprire una categoria fate clic sul segno più posto accanto alla voce. Se vi interessano solo le voci di questa categoria, selezionate la categoria e fate clic sull'icona <emph>Commuta la vista del contenuto</emph>. In questo modo vi appariranno solo gli oggetti della categoria fino a che non fate di nuovo clic sull'icona." #: navigator.xhp msgctxt "" @@ -14683,7 +14683,7 @@ "31\n" "help.text" msgid "If the cursor is located within a numbered or bulleted list, you can turn off automatic numbers or bullets for the current paragraph or selected paragraphs by clicking the <emph>Bullets On/Off </emph>icon on the <emph>Text Formatting</emph> bar." -msgstr "Se il cursore è posizionato nell'elenco puntato o numerato, facendo clic sul simbolo <emph>Elenco puntato sì/no</emph> nella barra <emph>Formattazione del testo</emph> potete disattivare l'elenco puntato o numerato automatico per il paragrafo attivo o per i paragrafi selezionati." +msgstr "Se il cursore è posizionato nell'elenco puntato o numerato, facendo clic sull'icona <emph>Elenco puntato sì/no</emph> nella barra <emph>Formattazione del testo</emph> potete disattivare l'elenco puntato o numerato automatico per il paragrafo attivo o per i paragrafi selezionati." #: numbering_stop.xhp msgctxt "" @@ -15121,7 +15121,7 @@ "par_idN10743\n" "help.text" msgid "Contents that are stored on the clipboard can be pasted into your document using different formats. In %PRODUCTNAME you can choose how to paste the contents using a dialog or a drop-down icon." -msgstr "Il contenuto degli Appunti può essere incollato nel documento in diversi formati. In %PRODUCTNAME potete scegliere di incollare questo contenuto mediante una finestra di dialogo o un simbolo di rilascio." +msgstr "Il contenuto degli Appunti può essere incollato nel documento in diversi formati. In %PRODUCTNAME potete scegliere di incollare questo contenuto mediante una finestra di dialogo o un'icona di rilascio." #: pasting.xhp msgctxt "" @@ -15169,7 +15169,7 @@ "par_idN1075B\n" "help.text" msgid "If you do not like the result, click the <emph>Undo</emph> icon and then paste again with another option." -msgstr "Se il risultato non è soddisfacente, fate clic sul simbolo <emph>Annulla</emph> e ripetete l'operazione con un'opzione diversa." +msgstr "Se il risultato non è soddisfacente, fate clic sull'icona <emph>Annulla</emph> e ripetete l'operazione con un'opzione diversa." #: pasting.xhp msgctxt "" @@ -16584,7 +16584,7 @@ "4\n" "help.text" msgid "When you insert a rectangle or a callout box using the drawing functions and activate the <emph>Points</emph> icon on the <emph>Drawing</emph> toolbar, you see a small frame at the upper left corner of the object. The frame indicates the amount by which the corners are rounded. When the frame is positioned at the top left corner, no rounding occurs. When the frame is positioned on the handle centered at the top of the object, the corners are rounded as much as possible. You adjust the degree of rounding by moving the frame between these two positions." -msgstr "Quando inserite un rettangolo o una legenda utilizzando le funzioni di disegno e attivate il simbolo <emph>Punti</emph> nella barra di <emph>Disegno</emph>, nell'angolo superiore sinistro dell'oggetto appare una piccola cornice. La cornice indica il grado di arrotondamento degli angoli. Se la cornice si trova nell'angolo superiore sinistro, non viene applicato alcun arrotondamento. Se la cornice si trova sulla maniglia al centro del bordo superiore dell'oggetto, gli angoli sono arrotondati il più possibile. Per regolare il grado di arrotondamento, spostate la cornice tra queste due posizioni." +msgstr "Quando inserite un rettangolo o una legenda utilizzando le funzioni di disegno e attivate l'icona <emph>Punti</emph> nella barra di <emph>Disegno</emph>, nell'angolo superiore sinistro dell'oggetto appare una piccola cornice. La cornice indica il grado di arrotondamento degli angoli. Se la cornice si trova nell'angolo superiore sinistro, non viene applicato alcun arrotondamento. Se la cornice si trova sulla maniglia al centro del bordo superiore dell'oggetto, gli angoli sono arrotondati il più possibile. Per regolare il grado di arrotondamento, spostate la cornice tra queste due posizioni." #: round_corner.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/it/helpcontent2/source/text/shared/optionen.po libreoffice-5.1.2~rc2/translations/source/it/helpcontent2/source/text/shared/optionen.po --- libreoffice-5.1.1~rc2/translations/source/it/helpcontent2/source/text/shared/optionen.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/it/helpcontent2/source/text/shared/optionen.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "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-21 13:01+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 @@ "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: 1458565266.000000\n" #: 01000000.xhp msgctxt "" @@ -5953,7 +5953,7 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 "" @@ -11854,7 +11854,7 @@ "38\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/13150000.xhp\" name=\"Snap to Page Margins\"><emph>Snap to Page Margins</emph></link></caseinline><caseinline select=\"DRAW\"><link href=\"text/simpress/02/13150000.xhp\" name=\"Snap to Page Margins\"><emph>Snap to Page Margins</emph></link></caseinline><defaultinline><emph>Snap to Page Margins</emph></defaultinline></switchinline> icon in the <emph>Options</emph> bar." -msgstr "Nelle presentazioni o nei disegni, questa funzione è accessibile anche con il simbolo <switchinline select=\"appl\"><caseinline select=\"IMPRESS\"><link href=\"text/simpress/02/13150000.xhp\" name=\"Cattura ai bordi pagina\"><emph>Cattura ai bordi pagina</emph></link></caseinline><caseinline select=\"DRAW\"><link href=\"text/simpress/02/13150000.xhp\" name=\"Cattura ai bordi pagina\"><emph>Cattura ai bordi pagina</emph></link></caseinline><defaultinline><emph>Cattura ai bordi pagina</emph></defaultinline></switchinline> disponibile nella barra <emph>Opzioni</emph>." +msgstr "Nelle presentazioni o nei disegni, questa funzione è accessibile anche con l'icona <switchinline select=\"appl\"><caseinline select=\"IMPRESS\"><link href=\"text/simpress/02/13150000.xhp\" name=\"Cattura ai bordi pagina\"><emph>Cattura ai bordi pagina</emph></link></caseinline><caseinline select=\"DRAW\"><link href=\"text/simpress/02/13150000.xhp\" name=\"Cattura ai bordi pagina\"><emph>Cattura ai bordi pagina</emph></link></caseinline><defaultinline><emph>Cattura ai bordi pagina</emph></defaultinline></switchinline> disponibile nella barra <emph>Opzioni</emph>." #: 01070300.xhp msgctxt "" @@ -12426,7 +12426,7 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 -Nru libreoffice-5.1.1~rc2/translations/source/it/helpcontent2/source/text/shared.po libreoffice-5.1.2~rc2/translations/source/it/helpcontent2/source/text/shared.po --- libreoffice-5.1.1~rc2/translations/source/it/helpcontent2/source/text/shared.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/it/helpcontent2/source/text/shared.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "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 18:28+0000\n" +"PO-Revision-Date: 2016-03-18 13:15+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 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1453660132.000000\n" +"X-POOTLE-MTIME: 1458306947.000000\n" #: 3dsettings_toolbar.xhp msgctxt "" @@ -142,7 +142,7 @@ "par_idN10617\n" "help.text" msgid "<ahelp hid=\".\">Select an extrusion depth.</ahelp>" -msgstr "<ahelp hid=\".\">Selezionate una profondità di estrusione.</ahelp>" +msgstr "<ahelp hid=\".\">Selezionare una profondità di estrusione.</ahelp>" #: 3dsettings_toolbar.xhp msgctxt "" @@ -150,7 +150,7 @@ "par_idN10632\n" "help.text" msgid "<ahelp hid=\".\">Enter an extrusion depth.</ahelp>" -msgstr "<ahelp hid=\".\">Inserite una profondità di estrusione.</ahelp>" +msgstr "<ahelp hid=\".\">Inserire una profondità di estrusione.</ahelp>" #: 3dsettings_toolbar.xhp msgctxt "" @@ -174,7 +174,7 @@ "par_idN10667\n" "help.text" msgid "<ahelp hid=\".\">Select a direction.</ahelp>" -msgstr "<ahelp hid=\".\">Selezionate una direzione.</ahelp>" +msgstr "<ahelp hid=\".\">Selezionare una direzione.</ahelp>" #: 3dsettings_toolbar.xhp msgctxt "" @@ -182,7 +182,7 @@ "par_idN10698\n" "help.text" msgid "<ahelp hid=\".\">Select a perspective or parallel extrusion method.</ahelp>" -msgstr "<ahelp hid=\".\">Selezionate una prospettiva o un metodo di estrusione parallela.</ahelp>" +msgstr "<ahelp hid=\".\">Selezionare una prospettiva o un metodo di estrusione parallela.</ahelp>" #: 3dsettings_toolbar.xhp msgctxt "" @@ -206,7 +206,7 @@ "par_idN106C6\n" "help.text" msgid "<ahelp hid=\".\">Select a lighting direction.</ahelp>" -msgstr "<ahelp hid=\".\">Selezionate una direzione di illuminazione.</ahelp>" +msgstr "<ahelp hid=\".\">Selezionare una direzione di illuminazione.</ahelp>" #: 3dsettings_toolbar.xhp msgctxt "" @@ -214,7 +214,7 @@ "par_idN106E1\n" "help.text" msgid "<ahelp hid=\".\">Select a lighting intensity.</ahelp>" -msgstr "<ahelp hid=\".\">Selezionate un'intensità di illuminazione.</ahelp>" +msgstr "<ahelp hid=\".\">Selezionare un'intensità di illuminazione.</ahelp>" #: 3dsettings_toolbar.xhp msgctxt "" @@ -238,7 +238,7 @@ "par_idN10717\n" "help.text" msgid "<ahelp hid=\".\">Select a surface material or a wireframe display.</ahelp>" -msgstr "<ahelp hid=\".\">Selezionate un materiale per la superficie o una visualizzazione wireframe.</ahelp>" +msgstr "<ahelp hid=\".\">Selezionare un materiale per la superficie o una visualizzazione wireframe.</ahelp>" #: 3dsettings_toolbar.xhp msgctxt "" @@ -294,7 +294,7 @@ "par_idN10571\n" "help.text" msgid "<ahelp hid=\".\">Opens the Fontwork Gallery where you can select another preview. Click OK to apply the new set of properties to your Fontwork object.</ahelp>" -msgstr "<ahelp hid=\".\">Apre la Galleria fontwork, in cui potete selezionare un'anteprima differente. Fate clic su OK per applicare il nuovo insieme di proprietà all'oggetto fontwork.</ahelp>" +msgstr "<ahelp hid=\".\">Apre la Galleria fontwork, in cui si può selezionare un'anteprima differente. Fare clic su OK per applicare il nuovo insieme di proprietà all'oggetto fontwork.</ahelp>" #: fontwork_toolbar.xhp msgctxt "" @@ -310,7 +310,7 @@ "par_idN1058C\n" "help.text" msgid "<ahelp hid=\".\">Opens the Fontwork Shape toolbar. Click a shape to apply the shape to all selected Fontwork objects.</ahelp>" -msgstr "<ahelp hid=\".\">Apre la barra degli strumenti Forma fontwork. Fate clic su una forma per applicarla a tutti gli oggetti fontwork selezionati.</ahelp>" +msgstr "<ahelp hid=\".\">Apre la barra degli strumenti Forma fontwork. Fare clic su una forma per applicarla a tutti gli oggetti fontwork selezionati.</ahelp>" #: fontwork_toolbar.xhp msgctxt "" @@ -350,7 +350,7 @@ "par_idN105DC\n" "help.text" msgid "<ahelp hid=\".\">Click to apply the alignment to the selected Fontwork objects.</ahelp>" -msgstr "<ahelp hid=\".\">Fate clic per applicare l'allineamento agli oggetti fontwork selezionati.</ahelp>" +msgstr "<ahelp hid=\".\">Fare clic per applicare l'allineamento agli oggetti fontwork selezionati.</ahelp>" #: fontwork_toolbar.xhp msgctxt "" @@ -374,7 +374,7 @@ "par_idN1060E\n" "help.text" msgid "<ahelp hid=\".\">Click to apply the character spacing to the selected Fontwork objects.</ahelp>" -msgstr "<ahelp hid=\".\">Fate clic per applicare lo spazio tra i caratteri agli oggetti Fontwork selezionati.</ahelp>" +msgstr "<ahelp hid=\".\">Fare clic per applicare lo spazio tra i caratteri agli oggetti Fontwork selezionati.</ahelp>" #: fontwork_toolbar.xhp msgctxt "" @@ -390,7 +390,7 @@ "par_idN10621\n" "help.text" msgid "<ahelp hid=\".\">Opens the Fontwork Character Spacing dialog where you can enter a new character spacing value.</ahelp>" -msgstr "<ahelp hid=\".\">Apre la finestra di dialogo Spaziatura caratteri fontwork, in cui potete inserire un nuovo valore per la distanza tra i caratteri.</ahelp>" +msgstr "<ahelp hid=\".\">Apre la finestra di dialogo Spaziatura caratteri fontwork, in cui si può inserire un nuovo valore per la distanza tra i caratteri.</ahelp>" #: fontwork_toolbar.xhp msgctxt "" @@ -406,7 +406,7 @@ "par_idN1063C\n" "help.text" msgid "<ahelp hid=\".\">Enter the Fontwork character spacing value.</ahelp>" -msgstr "<ahelp hid=\".\">Inserite un valore per lo spazio tra i caratteri fontwork.</ahelp>" +msgstr "<ahelp hid=\".\">Inserire un valore per lo spazio tra i caratteri fontwork.</ahelp>" #: fontwork_toolbar.xhp msgctxt "" @@ -550,7 +550,7 @@ "par_id2783898\n" "help.text" msgid "<ahelp hid=\".\">Enable an Internet connection for %PRODUCTNAME. If you need a Proxy, check the %PRODUCTNAME Proxy settings in <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Internet. Then choose Check for Updates to check for the availability of a newer version of your office suite.</ahelp>" -msgstr "<ahelp hid=\".\">Abilita una connessione Internet per %PRODUCTNAME. Se usate un proxy, controllate le impostazioni proxy di %PRODUCTNAME in <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferenze</caseinline><defaultinline>Strumenti - Opzioni</defaultinline></switchinline> - Internet. Scegliete poi \"Controlla aggiornamenti\" per verificare la disponibilità di una versione più recente della vostra suite per ufficio.</ahelp>" +msgstr "<ahelp hid=\".\">Abilita una connessione Internet per %PRODUCTNAME. Se si usa un proxy, controllare le impostazioni proxy di %PRODUCTNAME in <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferenze</caseinline><defaultinline>Strumenti - Opzioni</defaultinline></switchinline> - Internet. Scegliere poi \"Controlla aggiornamenti\" per verificare la disponibilità di una versione più recente della propria suite per ufficio.</ahelp>" #: main0108.xhp msgctxt "" @@ -691,7 +691,7 @@ "par_idN10901\n" "help.text" msgid "<ahelp hid=\".\">Inserts a spreadsheet as an OLE object. Enter or paste data into the cells, then click outside the object to return to Impress.</ahelp>" -msgstr "<ahelp hid=\".\">Inserisce un foglio elettronico come oggetto OLE. Digitate o incollate i dati nelle celle, quindi fate clic al di fuori dell'oggetto per tornare a Impress.</ahelp>" +msgstr "<ahelp hid=\".\">Inserisce un foglio elettronico come oggetto OLE. Digitare o incollare i dati nelle celle, quindi fare clic al di fuori dell'oggetto per tornare a Impress.</ahelp>" #: main0201.xhp msgctxt "" @@ -787,7 +787,7 @@ "par_id3154252\n" "help.text" msgid "<ahelp hid=\".\">The <emph>Table</emph> Bar contains functions you need when working with tables. It appears when you move the cursor into a table.</ahelp>" -msgstr "<ahelp hid=\".\">La Barra <emph>tabella</emph> contiene funzioni necessarie quando lavorate con le tabelle. Appare quando spostate il cursore in una tabella.</ahelp>" +msgstr "<ahelp hid=\".\">La barra <emph>Tabella</emph> contiene funzioni necessarie quando si lavora con le tabelle, e appare quando si sposta il cursore in una tabella.</ahelp>" #: main0204.xhp msgctxt "" @@ -898,7 +898,7 @@ "10\n" "help.text" msgid "<ahelp hid=\".\">Use the Table Data bar to control the data view. </ahelp>" -msgstr "<ahelp hid=\".\">La barra Dati tabella vi permette di controllare la visualizzazione dei dati. </ahelp>" +msgstr "<ahelp hid=\".\">La barra Dati tabella permette di controllare la visualizzazione dei dati. </ahelp>" #: main0212.xhp msgctxt "" @@ -907,7 +907,7 @@ "12\n" "help.text" msgid "The filtered data view is active until you change or cancel the sorting or filtering criteria. If a filter is active, the <emph>Apply Filter</emph> icon on the <emph>Table Data</emph> bar is activated." -msgstr "La vista dati filtrata rimane attiva finché non scegliete di cambiare o annullare i criteri di ordinamento o di filtro. Se attivate un filtro, viene attivato il simbolo <emph>Record di dati filtrati</emph> nella barra <emph>Dati tabella</emph>." +msgstr "La vista dati filtrata rimane attiva finché non scegliete di cambiare o annullare i criteri di ordinamento o di filtro. Se attivate un filtro, viene attivata l'icona <emph>Record di dati filtrati</emph> nella barra <emph>Dati tabella</emph>." #: main0212.xhp msgctxt "" @@ -973,7 +973,7 @@ "par_idN1078F\n" "help.text" msgid "<ahelp hid=\".\">Starts the Mail Merge Wizard to create form letters.</ahelp>" -msgstr "<ahelp hid=\".\">Avvia la Stampa guidata in serie che vi permette di creare stampe in serie.</ahelp>" +msgstr "<ahelp hid=\".\">Avvia la Stampa guidata in serie che permette di creare stampe in serie.</ahelp>" #: main0213.xhp msgctxt "" @@ -1051,7 +1051,7 @@ "23\n" "help.text" msgid "The current sort order or filter is saved with the current document. If a filter is set, the <emph>Apply Filter</emph> icon on the <emph>Navigation</emph> bar is activated. Sorting and filtering features in the document can also be configured in the <emph>Form Properties</emph> dialog. (Choose <emph>Form Properties - Data</emph> - properties <link href=\"text/shared/02/01170203.xhp\" name=\"Sort\"><emph>Sort</emph></link> and <link href=\"text/shared/02/01170203.xhp\" name=\"Filter\"><emph>Filter</emph></link>)." -msgstr "L'ordinamento o il filtro attivo viene salvato con il documento. Se è impostato un filtro, nella <emph>barra di navigazione</emph> il simbolo <emph>Applica filtro</emph> è attivato. Le opzioni di ordinamento e filtro nel documento possono essere configurate anche nella finestra di dialogo <emph>Proprietà formulario</emph> (scegliete <emph>Proprietà formulario - Dati</emph> - proprietà <link href=\"text/shared/02/01170203.xhp\" name=\"Ordina\"><emph>Ordina</emph></link> e <link href=\"text/shared/02/01170203.xhp\" name=\"Filtro\"><emph>Filtro</emph></link>)." +msgstr "L'ordinamento o il filtro attivo viene salvato con il documento. Se è impostato un filtro, nella <emph>barra di navigazione</emph> l'icona <emph>Applica filtro</emph> è attivata. Le opzioni di ordinamento e filtro nel documento possono essere configurate anche nella finestra di dialogo <emph>Proprietà formulario</emph> (scegliete <emph>Proprietà formulario - Dati</emph> - proprietà <link href=\"text/shared/02/01170203.xhp\" name=\"Ordina\"><emph>Ordina</emph></link> e <link href=\"text/shared/02/01170203.xhp\" name=\"Filtro\"><emph>Filtro</emph></link>)." #: main0213.xhp msgctxt "" @@ -1330,7 +1330,7 @@ "2\n" "help.text" msgid "<ahelp hid=\".\">When creating or editing an SQL query, use the icons in the <emph>Query Design</emph> Bar to control the display of data.</ahelp>" -msgstr "<ahelp hid=\".\">Quando create o modificate una ricerca SQL, potete utilizzare le icone della barra <emph>Struttura ricerca</emph> per controllare la visualizzazione dei dati.</ahelp>" +msgstr "<ahelp hid=\".\">Quando si crea o si modifica una ricerca SQL, è possibile utilizzare le icone della barra <emph>Struttura ricerca</emph> per controllare la visualizzazione dei dati.</ahelp>" #: main0214.xhp msgctxt "" @@ -1525,7 +1525,7 @@ "43\n" "help.text" msgid "The <link href=\"text/shared/01/05270000.xhp\" name=\"Edit Points\"><emph>Edit Points</emph></link> icon allows you to activate or deactivate the edit mode for Bézier objects. In the edit mode, individual points of the drawing object can be selected." -msgstr "Con il simbolo <link href=\"text/shared/01/05270000.xhp\" name=\"Modifica punti\"><emph>Modifica punti</emph></link> attivate e disattivate il modo di modifica degli oggetti di Bézier. Nel modo di modifica potete selezionare singoli punti dell'oggetto di disegno." +msgstr "Con l'icona <link href=\"text/shared/01/05270000.xhp\" name=\"Modifica punti\"><emph>Modifica punti</emph></link> attivate e disattivate il modo di modifica degli oggetti di Bézier. Nel modo di modifica potete selezionare singoli punti dell'oggetto di disegno." #: main0227.xhp msgctxt "" @@ -1648,7 +1648,7 @@ "56\n" "help.text" msgid "<ahelp hid=\".uno:BezierDelete\">Use the <emph>Delete Points</emph> icon to delete one or several selected points. If you wish to select several points click the appropriate points while holding down the Shift key.</ahelp>" -msgstr "<ahelp hid=\".uno:BezierDelete\">Con il simbolo <emph>Elimina punti</emph> potete eliminare uno o più punti selezionati. Per selezionare più punti, fateci clic sopra tenendo premuto il tasto Maiusc.</ahelp>" +msgstr "<ahelp hid=\".uno:BezierDelete\">Con l'icona <emph>Elimina punti</emph> potete eliminare uno o più punti selezionati. Per selezionare più punti, fateci clic sopra tenendo premuto il tasto Maiusc.</ahelp>" #: main0227.xhp msgctxt "" @@ -1727,7 +1727,7 @@ "63\n" "help.text" msgid "<ahelp hid=\".uno:BezierConvert\">Converts a curve into a straight line or converts a straight line into a curve.</ahelp> If you select a single point, the curve before the point will be converted. If two points are selected, the curve between both points will be converted. If you select more than two points, each time you click this icon, a different portion of the curve will be converted. If necessary, round points are converted into corner points and corner points are converted into round points." -msgstr "<ahelp hid=\".uno:BezierConvert\">Converte una curva in una retta o converte una retta in una curva.</ahelp> Selezionando un solo punto, verrà convertita la curva prima del punto. Selezionando due punti, verrà convertita la curva situata tra i due punti. Selezionando più di due punti, ad ogni clic su questo simbolo verrà convertita una parte diversa della curva. Se necessario, i punti circolari verranno convertiti in angoli e viceversa." +msgstr "<ahelp hid=\".uno:BezierConvert\">Converte una curva in una retta o converte una retta in una curva.</ahelp> Selezionando un solo punto, verrà convertita la curva prima del punto. Selezionando due punti, verrà convertita la curva situata tra i due punti. Selezionando più di due punti, ad ogni clic su questa icona verrà convertita una parte diversa della curva. Se necessario, i punti circolari verranno convertiti in angoli e viceversa." #: main0227.xhp msgctxt "" @@ -1911,7 +1911,7 @@ "38\n" "help.text" msgid "<ahelp hid=\".uno:BezierEliminatePoints\">Marks the current point or the selected points for deletion.</ahelp> This happens in the event that the point is located on a straight line. If you convert a curve or a polygon with the <emph>Convert to Curve </emph>icon into a straight line or you change a curve with the mouse so that a point lies on the straight line, it is removed. The angle from which the point reduction is to take place <switchinline select=\"appl\"><caseinline select=\"DRAW\">can be set by choosing <link href=\"text/shared/optionen/01070300.xhp\" name=\"Drawing - Grid\"><emph>%PRODUCTNAME Draw - Grid</emph></link> in the Options dialog box</caseinline><caseinline select=\"IMPRESS\">can be set by choosing <link href=\"text/shared/optionen/01070300.xhp\" name=\"Presentation - Grid\"><emph>%PRODUCTNAME Impress - Grid</emph></link> in the Options dialog box</caseinline><defaultinline>is 15° by default.</defaultinline></switchinline>" -msgstr "<ahelp hid=\".uno:BezierEliminatePoints\">Contrassegna il punto attivo o i punti selezionati per l'eliminazione.</ahelp> Questa marcatura viene eseguita se il punto si trova su una linea retta. Se convertite una curva o un poligono in una retta usando il simbolo <emph>Converti in curva</emph>, o se modificate una curva con il mouse in modo che un punto si trovi sulla retta, il punto viene rimosso. L'angolo a partire dal quale dovrà avvenire la riduzione del punto <switchinline select=\"appl\"><caseinline select=\"DRAW\">può essere impostato scegliendo <link href=\"text/shared/optionen/01070300.xhp\" name=\"Disegno - Griglia\"><emph>%PRODUCTNAME Draw - Griglia</emph></link> nella finestra di dialogo Opzioni</caseinline><caseinline select=\"IMPRESS\">può essere impostato scegliendo <link href=\"text/shared/optionen/01070300.xhp\" name=\"Presentazione - Griglia\"><emph>%PRODUCTNAME Impress - Griglia</emph></link> nella finestra di dialogo Opzioni</caseinline><defaultinline>ha la misura predefinita di 15°.</defaultinline></switchinline>" +msgstr "<ahelp hid=\".uno:BezierEliminatePoints\">Contrassegna il punto attivo o i punti selezionati per l'eliminazione.</ahelp> Questa marcatura viene eseguita se il punto si trova su una linea retta. Se convertite una curva o un poligono in una retta usando l'icona <emph>Converti in curva</emph>, o se modificate una curva con il mouse in modo che un punto si trovi sulla retta, il punto viene rimosso. L'angolo a partire dal quale dovrà avvenire la riduzione del punto <switchinline select=\"appl\"><caseinline select=\"DRAW\">può essere impostato scegliendo <link href=\"text/shared/optionen/01070300.xhp\" name=\"Disegno - Griglia\"><emph>%PRODUCTNAME Draw - Griglia</emph></link> nella finestra di dialogo Opzioni</caseinline><caseinline select=\"IMPRESS\">può essere impostato scegliendo <link href=\"text/shared/optionen/01070300.xhp\" name=\"Presentazione - Griglia\"><emph>%PRODUCTNAME Impress - Griglia</emph></link> nella finestra di dialogo Opzioni</caseinline><defaultinline>ha la misura predefinita di 15°.</defaultinline></switchinline>" #: main0227.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/it/helpcontent2/source/text/simpress/01.po libreoffice-5.1.2~rc2/translations/source/it/helpcontent2/source/text/simpress/01.po --- libreoffice-5.1.1~rc2/translations/source/it/helpcontent2/source/text/simpress/01.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/it/helpcontent2/source/text/simpress/01.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "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-21 11:10+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 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1456053058.000000\n" +"X-POOTLE-MTIME: 1457803597.000000\n" #: 01170000.xhp msgctxt "" @@ -824,7 +824,7 @@ "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 "" @@ -1590,7 +1590,7 @@ "par_id3257545\n" "help.text" msgid "<ahelp hid=\".\" visibility=\"hidden\">Opens a file dialog to select a picture. The picture will be scaled and inserted on the background of the current slide master. Use Format - Slide/Page - Background to remove the picture.</ahelp>" -msgstr "<ahelp hid=\".\" visibility=\"hidden\">Apre una finestra di dialogo per la selezione di un'immagine. L'immagine verrà ridimensionata e inserita nello sfondo della diapositiva master corrente. Utilizzate Formato - Diapositiva/Pagina - Sfondo per rimuovere l'immagine.</ahelp>" +msgstr "<ahelp hid=\".\" visibility=\"hidden\">Apre una finestra di dialogo per la selezione di un'immagine. L'immagine verrà ridimensionata e inserita nello sfondo della diapositiva master corrente. Utilizza Formato - Diapositiva/Pagina - Sfondo per rimuovere l'immagine.</ahelp>" #: 03090000.xhp msgctxt "" @@ -1880,7 +1880,7 @@ "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 "" @@ -1888,7 +1888,7 @@ "par_id4941557\n" "help.text" msgid "<ahelp hid=\".\" visibility=\"hidden\">Inserts a new slide master into the document. Double-click the new slide master on the Slides pane to apply it to all slides.</ahelp>" -msgstr "<ahelp hid=\".\" visibility=\"hidden\">Inserisce una nuova diapositiva schema nel documento. Fate doppio clic sulla nuova diapositiva schema nel pannello Diapositive per applicarla a tutte le diapositive.</ahelp>" +msgstr "<ahelp hid=\".\" visibility=\"hidden\">Inserisce una nuova diapositiva schema nel documento. Fai doppio clic sulla nuova diapositiva schema nel pannello Diapositive per applicarla a tutte le diapositive.</ahelp>" #: 03150100.xhp msgctxt "" @@ -1896,7 +1896,7 @@ "par_id9961851\n" "help.text" msgid "<ahelp hid=\".\" visibility=\"hidden\">Select a slide master and click this icon to remove the slide master from the document.</ahelp>" -msgstr "<ahelp hid=\".\" visibility=\"hidden\">Selezionate una diapositiva schema e fate clic su questa icona per rimuovere la diapositiva schema dal documento.</ahelp>" +msgstr "<ahelp hid=\".\" visibility=\"hidden\">Seleziona una diapositiva schema e fai clic su questa icona per rimuovere la diapositiva schema dal documento.</ahelp>" #: 03150100.xhp msgctxt "" @@ -1904,7 +1904,7 @@ "par_id4526200\n" "help.text" msgid "<ahelp hid=\".\" visibility=\"hidden\">Select a slide master and click this icon to rename the slide master.</ahelp>" -msgstr "<ahelp hid=\".\" visibility=\"hidden\">Selezionate una diapositiva schema e fate clic su questa icona per rinominare la diapositiva schema.</ahelp>" +msgstr "<ahelp hid=\".\" visibility=\"hidden\">Seleziona una diapositiva schema e fai clic su questa icona per rinominare la diapositiva schema.</ahelp>" #: 03150100.xhp msgctxt "" @@ -1944,7 +1944,7 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 "" @@ -9114,7 +9114,7 @@ "par_idN107B4\n" "help.text" msgid "<ahelp hid=\".\" visibility=\"hidden\">Opens the Layouts tab page, where you apply a slide design to the selected slide or slides.</ahelp>" -msgstr "<ahelp hid=\".\" visibility=\"hidden\">Apre la scheda Layout, in cui potete applicare una struttura di diapositiva alle diapositive selezionate.</ahelp>" +msgstr "<ahelp hid=\".\" visibility=\"hidden\">Apre la scheda Layout, in cui puoi applicare una struttura di diapositiva alle diapositive selezionate.</ahelp>" #: taskpanel.xhp msgctxt "" @@ -9122,7 +9122,7 @@ "par_idN107CB\n" "help.text" msgid "<ahelp hid=\".\" visibility=\"hidden\">Click to apply a slide design to all selected slides. Right-click for a submenu.</ahelp>" -msgstr "<ahelp hid=\".\" visibility=\"hidden\">Fate clic per applicare una struttura a tutte le diapositive selezionate. Fate clic col pulsante destro del mouse per aprire un sottomenu.</ahelp>" +msgstr "<ahelp hid=\".\" visibility=\"hidden\">Fai clic per applicare una struttura a tutte le diapositive selezionate. Fai clic col pulsante destro del mouse per aprire un sottomenu.</ahelp>" #: taskpanel.xhp msgctxt "" @@ -9130,7 +9130,7 @@ "par_idN1080E\n" "help.text" msgid "<ahelp hid=\".\" visibility=\"hidden\">Opens the Custom Animation tab page, where you apply effects to the selected objects on a slide.</ahelp>" -msgstr "<ahelp hid=\".\" visibility=\"hidden\">Apre la scheda Animazione personalizzata, in cui potete applicare gli effetti agli oggetti selezionati di una diapositiva.</ahelp>" +msgstr "<ahelp hid=\".\" visibility=\"hidden\">Apre la scheda Animazione personalizzata, in cui puoi applicare gli effetti agli oggetti selezionati di una diapositiva.</ahelp>" #: taskpanel.xhp msgctxt "" @@ -9138,7 +9138,7 @@ "par_idN10839\n" "help.text" msgid "<ahelp hid=\".\" visibility=\"hidden\">Opens the Slide Transition tab page, where you apply transition effects to the selected slides.</ahelp>" -msgstr "<ahelp hid=\".\" visibility=\"hidden\">Apre la scheda Cambio diapositiva, in cui potete applicare gli effetti di transizione alle diapositive selezionate.</ahelp>" +msgstr "<ahelp hid=\".\" visibility=\"hidden\">Apre la scheda Cambio diapositiva, in cui puoi applicare gli effetti di transizione alle diapositive selezionate.</ahelp>" #: taskpanel.xhp msgctxt "" @@ -9146,4 +9146,4 @@ "par_id0916200812240344\n" "help.text" msgid "<ahelp hid=\".\" visibility=\"hidden\">Opens the Table Design. Double-click a preview to insert a new table.</ahelp>" -msgstr "<ahelp hid=\".\" visibility=\"hidden\">Apre la Struttura tabella. Fate doppio clic su un'anteprima per inserire una tabella.</ahelp>" +msgstr "<ahelp hid=\".\" visibility=\"hidden\">Apre la Struttura tabella. Fai doppio clic su un'anteprima per inserire una tabella.</ahelp>" diff -Nru libreoffice-5.1.1~rc2/translations/source/it/helpcontent2/source/text/simpress/02.po libreoffice-5.1.2~rc2/translations/source/it/helpcontent2/source/text/simpress/02.po --- libreoffice-5.1.1~rc2/translations/source/it/helpcontent2/source/text/simpress/02.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/it/helpcontent2/source/text/simpress/02.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "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-21 13: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 @@ "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: 1458565337.000000\n" #: 04010000.xhp msgctxt "" @@ -117,7 +117,7 @@ "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 @@ "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 "" @@ -4927,7 +4927,7 @@ "2\n" "help.text" msgid "<ahelp visibility=\"visible\" hid=\".uno:OutlineCollapseAll\">Hides all of the headings of the slides in the current slide show except for the titles of the slides. Hidden headings are indicated by a black line in front of a slide title. To show the headings, click the <link href=\"text/simpress/02/11070000.xhp\" name=\"All Levels\"><emph>All Levels</emph></link> icon.</ahelp>" -msgstr "<ahelp visibility=\"visible\" hid=\".uno:OutlineCollapseAll\">Nasconde tutte le intestazioni delle diapositive nella presentazione, ad eccezione dei titoli delle diapositive. La presenza di intestazioni nascoste è indicata da una linea nera davanti al titolo della diapositiva. Per visualizzare le intestazioni, fate clic sul simbolo <link href=\"text/simpress/02/11070000.xhp\" name=\"Tutti i livelli\"><emph>Tutti i livelli</emph></link>.</ahelp>" +msgstr "<ahelp visibility=\"visible\" hid=\".uno:OutlineCollapseAll\">Nasconde tutte le intestazioni delle diapositive nella presentazione, ad eccezione dei titoli delle diapositive. La presenza di intestazioni nascoste è indicata da una linea nera davanti al titolo della diapositiva. Per visualizzare le intestazioni, fate clic sull'icona <link href=\"text/simpress/02/11070000.xhp\" name=\"Tutti i livelli\"><emph>Tutti i livelli</emph></link>.</ahelp>" #: 11060000.xhp msgctxt "" @@ -5029,7 +5029,7 @@ "2\n" "help.text" msgid "<ahelp visibility=\"visible\" hid=\".uno:OutlineCollapse\">Hides the subheadings of a selected heading. Hidden subheadings are indicated by a black line in front of a heading. To show the lower level headings, click the <link href=\"text/simpress/02/11090000.xhp\" name=\"Show Subpoints\"><emph>Show Subpoints</emph></link> icon.</ahelp>" -msgstr "<ahelp visibility=\"visible\" hid=\".uno:OutlineCollapse\">Nasconde le intestazioni secondarie dell'intestazione selezionata. La presenza di intestazioni secondarie nascoste è indicata da una linea nera davanti all'intestazione. Per visualizzare le intestazioni di livello inferiore, fate clic sul simbolo <link href=\"text/simpress/02/11090000.xhp\" name=\"Mostra sottoparagrafi\"><emph>Mostra sottoparagrafi</emph></link>.</ahelp>" +msgstr "<ahelp visibility=\"visible\" hid=\".uno:OutlineCollapse\">Nasconde le intestazioni secondarie dell'intestazione selezionata. La presenza di intestazioni secondarie nascoste è indicata da una linea nera davanti all'intestazione. Per visualizzare le intestazioni di livello inferiore, fate clic sull'icona <link href=\"text/simpress/02/11090000.xhp\" name=\"Mostra sottoparagrafi\"><emph>Mostra sottoparagrafi</emph></link>.</ahelp>" #: 11080000.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/it/helpcontent2/source/text/simpress/guide.po libreoffice-5.1.2~rc2/translations/source/it/helpcontent2/source/text/simpress/guide.po --- libreoffice-5.1.1~rc2/translations/source/it/helpcontent2/source/text/simpress/guide.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/it/helpcontent2/source/text/simpress/guide.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "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-21 13: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 @@ "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: 1458565366.000000\n" #: 3d_create.xhp msgctxt "" @@ -985,7 +985,7 @@ "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 "" @@ -3388,7 +3388,7 @@ "63\n" "help.text" msgid "On the <emph>Edit Points</emph> Bar, click the<emph> Close Bézier</emph> icon." -msgstr "Nella barra <emph>Modifica punti</emph>, fate clic sul simbolo <emph>Chiudi Bézier</emph>." +msgstr "Nella barra <emph>Modifica punti</emph>, fate clic sull'icona <emph>Chiudi Bézier</emph>." #: line_edit.xhp msgctxt "" @@ -4060,7 +4060,7 @@ "4\n" "help.text" msgid "Click the plus sign next to the icon for the presentation file, and then select the slide(s) that you want to insert." -msgstr "Fate clic sul segno più vicino al simbolo del file della presentazione e selezionate le diapositive da inserire." +msgstr "Fate clic sul segno più vicino all'icona del file della presentazione e selezionate le diapositive da inserire." #: page_copy.xhp msgctxt "" @@ -5081,7 +5081,7 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 -Nru libreoffice-5.1.1~rc2/translations/source/it/helpcontent2/source/text/simpress.po libreoffice-5.1.2~rc2/translations/source/it/helpcontent2/source/text/simpress.po --- libreoffice-5.1.1~rc2/translations/source/it/helpcontent2/source/text/simpress.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/it/helpcontent2/source/text/simpress.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 -Nru libreoffice-5.1.1~rc2/translations/source/it/helpcontent2/source/text/smath/01.po libreoffice-5.1.2~rc2/translations/source/it/helpcontent2/source/text/smath/01.po --- libreoffice-5.1.1~rc2/translations/source/it/helpcontent2/source/text/smath/01.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/it/helpcontent2/source/text/smath/01.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "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-21 13:40+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 @@ "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: 1458567652.000000\n" #: 02080000.xhp msgctxt "" @@ -347,7 +347,7 @@ "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 "" @@ -1878,7 +1878,7 @@ "36\n" "help.text" msgid "The following is a list of the available operators. An icon next to the operator name indicates that it can be accessed through the Elements window (choose <emph>View - Elements</emph>) or through the context menu of the <emph>Commands</emph> window." -msgstr "Qui di seguito viene visualizzato l'elenco completo degli operatori. Il simbolo vicino al nome dell'operatore indica che può essere selezionato tramite la finestra Elementi (<emph>Visualizza - Elementi</emph>) o dal menu contestuale della finestra <emph>Comandi</emph>." +msgstr "Qui di seguito viene visualizzato l'elenco completo degli operatori. L'icona vicino al nome dell'operatore indica che può essere selezionato tramite la finestra Elementi (<emph>Visualizza - Elementi</emph>) o dal menu contestuale della finestra <emph>Comandi</emph>." #: 03090300.xhp msgctxt "" @@ -2322,7 +2322,7 @@ "3\n" "help.text" msgid "The following is a list of all functions that appear in the <emph>Elements</emph> window. The icon next to the function indicates that it can be accessed through the Elements window (menu View - Elements) or through the context menu of the <emph>Commands</emph> window." -msgstr "Qui di seguito viene visualizzato l'elenco completo delle funzioni presenti nella finestra <emph>Elementi</emph>. Il simbolo vicino al nome della funzione indica che può essere selezionata tramite la finestra Elementi (<emph>Visualizza - Elementi</emph>) o dal menu contestuale della finestra <emph>Comandi</emph>." +msgstr "Qui di seguito viene visualizzato l'elenco completo delle funzioni presenti nella finestra <emph>Elementi</emph>. L'icona vicino al nome della funzione indica che può essere selezionata tramite la finestra Elementi (menu Visualizza - Elementi) o dal menu contestuale della finestra <emph>Comandi</emph>." #: 03090400.xhp msgctxt "" @@ -2461,7 +2461,7 @@ "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 "" @@ -4828,7 +4828,7 @@ "26\n" "help.text" msgid "<ahelp hid=\"HID_SMA_MATRIX\">This icon inserts a matrix with four placeholders.</ahelp> You can also type <emph>matrix{<?>#<?>##<?>#<?>}</emph> directly in the <emph>Commands</emph> window. The position of an element inside this diagram is indicated by two coordinates; the first specifies the line number and the second the column number. You can expand this matrix in any direction in the <emph>Commands</emph> window by adding characters." -msgstr "<ahelp hid=\"HID_SMA_MATRIX\">Questo simbolo inserisce una matrice con quattro segnaposto.</ahelp> Potete anche digitare <emph>matrix{<?>#<?>##<?>#<?>}</emph> direttamente nella finestra <emph>Comandi</emph>. La posizione degli elementi all'interno di questo diagramma è indicata da due coordinate; la prima specifica il numero di riga, la seconda il numero di colonna. Potete anche espandere la matrice in qualunque direzione nella finestra <emph>Comandi</emph> aggiungendovi dei caratteri." +msgstr "<ahelp hid=\"HID_SMA_MATRIX\">Questa icona consente di inserire una matrice con quattro segnaposti.</ahelp> Potete anche digitare <emph>matrix{<?>#<?>##<?>#<?>}</emph> direttamente nella finestra <emph>Comandi</emph>. La posizione degli elementi all'interno di questo diagramma è indicata da due coordinate; la prima specifica il numero di riga, la seconda il numero di colonna. Potete anche espandere la matrice in qualunque direzione nella finestra <emph>Comandi</emph> aggiungendovi dei caratteri." #: 03090700.xhp msgctxt "" @@ -4854,7 +4854,7 @@ "22\n" "help.text" msgid "<ahelp hid=\"HID_SMA_BLANK\">This icon inserts a gap or space between placeholders.</ahelp> You can also type <emph>~</emph> directly in the <emph>Commands</emph> window. The command must appear to the left or right of a symbol, variable, number or complete command." -msgstr "<ahelp hid=\"HID_SMA_BLANK\">L'icona consente di inserire uno spazio normale con un segnaposto.</ahelp> Per inserire manualmente la formattazione, digitate una tilde <emph>~</emph> nella finestra <emph>Comandi</emph>. Tuttavia questa operazione ha un senso solo se a sinistra o a destra del simbolo si trova una variabile, un numero oppure un comando completo." +msgstr "<ahelp hid=\"HID_SMA_BLANK\">Questa icona consente di inserire uno spazio normale con un segnaposto.</ahelp> Per inserire manualmente la formattazione, digitate una tilde <emph>~</emph> nella finestra <emph>Comandi</emph>. Tuttavia questa operazione ha un senso solo se a sinistra o a destra del simbolo si trova una variabile, un numero oppure un comando completo." #: 03090700.xhp msgctxt "" @@ -11312,7 +11312,7 @@ "10\n" "help.text" msgid "<ahelp hid=\"HID_SMA_WP\">This icon inserts a Weierstrass p-function symbol.</ahelp> Command for the <emph>Commands</emph> window: <emph>wp</emph>" -msgstr "<ahelp hid=\"HID_SMA_WP\">Questo simbolo inserisce il simbolo della funzione p di Weierstrass.</ahelp> Il comando corrispondente utilizzabile dalla finestra <emph>Comandi</emph> è <emph>wp</emph>" +msgstr "<ahelp hid=\"HID_SMA_WP\">Questa icona consente di inserire il simbolo della funzione p di Weierstrass.</ahelp> Il comando corrispondente utilizzabile dalla finestra <emph>Comandi</emph> è <emph>wp</emph>" #: 03091600.xhp msgctxt "" @@ -11338,7 +11338,7 @@ "61\n" "help.text" msgid "<ahelp hid=\"HID_SMA_LEFTARROW\">This icon inserts a left arrow.</ahelp> Command for the <emph>Commands</emph> window: <emph>leftarrow</emph>" -msgstr "<ahelp hid=\"HID_SMA_LEFTARROW\">Questo simbolo inserisce una freccia a sinistra.</ahelp> Il comando corrispondente utilizzabile dalla finestra <emph>Comandi</emph> è <emph>leftarrow</emph>" +msgstr "<ahelp hid=\"HID_SMA_LEFTARROW\">Questa icona consente di inserire una freccia a sinistra.</ahelp> Il comando corrispondente utilizzabile dalla finestra <emph>Comandi</emph> è <emph>leftarrow</emph>" #: 03091600.xhp msgctxt "" @@ -11364,7 +11364,7 @@ "63\n" "help.text" msgid "<ahelp hid=\"HID_SMA_RIGHTARROW\">This icon inserts a right arrow.</ahelp> Command for the <emph>Commands</emph> window: <emph>rightarrow</emph>" -msgstr "<ahelp hid=\"HID_SMA_RIGHTARROW\">Questo simbolo inserisce una freccia a destra.</ahelp> Il comando corrispondente utilizzabile dalla finestra <emph>Comandi</emph> è <emph>rightarrow</emph>" +msgstr "<ahelp hid=\"HID_SMA_RIGHTARROW\">Questa icona consente di inserire una freccia a destra.</ahelp> Il comando corrispondente utilizzabile dalla finestra <emph>Comandi</emph> è <emph>rightarrow</emph>" #: 03091600.xhp msgctxt "" @@ -11390,7 +11390,7 @@ "65\n" "help.text" msgid "<ahelp hid=\"HID_SMA_UPARROW\">This icon inserts an up arrow.</ahelp> Command for the <emph>Commands</emph> window: <emph>uparrow</emph>" -msgstr "<ahelp hid=\"HID_SMA_UPARROW\">Questo simbolo inserisce una freccia in alto.</ahelp> Il comando corrispondente utilizzabile dalla finestra <emph>Comandi</emph> è <emph>uparrow</emph>" +msgstr "<ahelp hid=\"HID_SMA_UPARROW\">Questa icona consente di inserire una freccia in alto.</ahelp> Il comando corrispondente utilizzabile dalla finestra <emph>Comandi</emph> è <emph>uparrow</emph>" #: 03091600.xhp msgctxt "" @@ -11416,7 +11416,7 @@ "67\n" "help.text" msgid "<ahelp hid=\"HID_SMA_DOWNARROW\">This icon inserts a down arrow.</ahelp> Command for the <emph>Commands</emph> window: <emph>downarrow</emph>" -msgstr "<ahelp hid=\"HID_SMA_DOWNARROW\">Questo simbolo inserisce una freccia in basso.</ahelp> Il comando corrispondente utilizzabile dalla finestra <emph>Comandi</emph> è <emph>downarrow</emph>" +msgstr "<ahelp hid=\"HID_SMA_DOWNARROW\">Questa icona consente di inserire una freccia in basso.</ahelp> Il comando corrispondente utilizzabile dalla finestra <emph>Comandi</emph> è <emph>downarrow</emph>" #: 03091600.xhp msgctxt "" @@ -11442,7 +11442,7 @@ "11\n" "help.text" msgid "<ahelp hid=\"HID_SMA_DOTSLOW\">This icon inserts an ellipsis (three low horizontal dots).</ahelp> Command for the <emph>Commands</emph> window: <emph>dotslow</emph>" -msgstr "<ahelp hid=\"HID_SMA_DOTSLOW\">Questo simbolo inserisce tre punti orizzontali allineati in basso.</ahelp> Il comando corrispondente utilizzabile dalla finestra <emph>Comandi</emph> è <emph>dotslow</emph>" +msgstr "<ahelp hid=\"HID_SMA_DOTSLOW\">Questa icona consente di inserire tre punti orizzontali allineati in basso.</ahelp> Il comando corrispondente utilizzabile dalla finestra <emph>Comandi</emph> è <emph>dotslow</emph>" #: 03091600.xhp msgctxt "" @@ -11468,7 +11468,7 @@ "12\n" "help.text" msgid "<ahelp hid=\"HID_SMA_DOTSAXIS\">This icon inserts an axis-ellipsis (three vertically centered horizontal dots).</ahelp> Command for the <emph>Commands</emph> window: <emph>dotsaxis</emph>" -msgstr "<ahelp hid=\"HID_SMA_DOTSAXIS\">Questo simbolo inserisce tre punti orizzontali centrati verticalmente.</ahelp> Il comando corrispondente utilizzabile dalla finestra <emph>Comandi</emph> è <emph>dotsaxis</emph>" +msgstr "<ahelp hid=\"HID_SMA_DOTSAXIS\">Questa icona consente di inserire tre punti orizzontali centrati verticalmente.</ahelp> Il comando corrispondente utilizzabile dalla finestra <emph>Comandi</emph> è <emph>dotsaxis</emph>" #: 03091600.xhp msgctxt "" @@ -11494,7 +11494,7 @@ "13\n" "help.text" msgid "<ahelp hid=\"HID_SMA_DOTSVERT\">This icon inserts a vertical ellipsis (three vertical dots).</ahelp> Command for the <emph>Commands</emph> window: <emph>dotsvert</emph>" -msgstr "<ahelp hid=\"HID_SMA_DOTSVERT\">Questo simbolo inserisce tre punti verticali.</ahelp> Il comando corrispondente utilizzabile dalla finestra <emph>Comandi</emph> è <emph>dotsvert</emph>" +msgstr "<ahelp hid=\"HID_SMA_DOTSVERT\">Questa icona consente di inserire tre punti verticali.</ahelp> Il comando corrispondente utilizzabile dalla finestra <emph>Comandi</emph> è <emph>dotsvert</emph>" #: 03091600.xhp msgctxt "" @@ -11520,7 +11520,7 @@ "14\n" "help.text" msgid "<ahelp hid=\"HID_SMA_DOTSUP\">This icon inserts an upward diagonal ellipsis (three dots on the diagonal from the bottom left to the top right)</ahelp>Command for the <emph>Commands</emph> window: <emph>dotsup</emph> or <emph>dotsdiag</emph>" -msgstr "<ahelp hid=\"HID_SMA_DOTSUP\">Questo simbolo inserisce tre punti in diagonale disposti dal basso a sinistra verso l'alto a destra.</ahelp> Il comando corrispondente utilizzabile dalla finestra <emph>Comandi</emph> è <emph>dotsup</emph> o <emph>dotsdiag</emph>" +msgstr "<ahelp hid=\"HID_SMA_DOTSUP\">Questa icona consente di inserire tre punti in diagonale disposti dal basso a sinistra verso l'alto a destra.</ahelp> Il comando corrispondente utilizzabile dalla finestra <emph>Comandi</emph> è <emph>dotsup</emph> o <emph>dotsdiag</emph>" #: 03091600.xhp msgctxt "" @@ -11546,7 +11546,7 @@ "15\n" "help.text" msgid "<ahelp hid=\"HID_SMA_DOTSDOWN\">This icon inserts a downward diagonal ellipsis (three dots on the diagonal from upper left to lower right).</ahelp> Command for the <emph>Commands</emph> window: <emph>dotsdown</emph>" -msgstr "<ahelp hid=\"HID_SMA_DOTSDOWN\">Questo simbolo inserisce tre punti in diagonale disposti dall'alto a sinistra verso il basso a destra.</ahelp> Il comando corrispondente utilizzabile dalla finestra <emph>Comandi</emph> è <emph>dotsdown</emph>" +msgstr "<ahelp hid=\"HID_SMA_DOTSDOWN\">Questa icona consente di inserire tre punti in diagonale disposti dall'alto a sinistra verso il basso a destra.</ahelp> Il comando corrispondente utilizzabile dalla finestra <emph>Comandi</emph> è <emph>dotsdown</emph>" #: 03091600.xhp msgctxt "" @@ -13188,7 +13188,7 @@ "6\n" "help.text" msgid "To add a symbol to a symbol set, select a font in the <emph>Font</emph> box, and then click a symbol in symbols pane. In the <emph>Symbol</emph> box, type a name for the symbol. In the <emph>Symbol set</emph> list box, select a symbol set, or type a new name to create a new symbol set. The right preview pane displays the symbol that you selected. Click <emph>Add</emph> and then <emph>OK</emph>." -msgstr "Per aggiungere un simbolo a un gruppo, selezionate un tipo di carattere dalla casella di riepilogo <emph>Tipo di carattere</emph> e fate clic sul simbolo desiderato nell'elenco dei simboli. Nella casella <emph>Simbolo</emph>, digitate un nome per il simbolo. Nella casella di riepilogo <emph>Simboli</emph>, selezionate un gruppo o digitate un nome per crearne uno nuovo. Il simbolo selezionato viene visualizzato nella finestra di anteprima di destra. Fate clic su <emph>Aggiungi</emph> e quindi su <emph>OK</emph>." +msgstr "Per aggiungere un simbolo a un gruppo, selezionate un tipo di carattere dalla casella di riepilogo <emph>Tipo di carattere</emph> e fate clic sul simbolo desiderato nell'elenco dei simboli. Nella casella <emph>Simbolo</emph>, digitate un nome per il simbolo. Nella casella di riepilogo <emph>Gruppo di simboli</emph>, selezionate un gruppo o digitate un nome per crearne uno nuovo. Il simbolo selezionato viene visualizzato nella finestra di anteprima di destra. Fate clic su <emph>Aggiungi</emph> e quindi su <emph>OK</emph>." #: 06010100.xhp msgctxt "" @@ -13206,7 +13206,7 @@ "21\n" "help.text" msgid "To change the name of a symbol, select the old name in the <emph>Old symbol</emph> list box. Then enter the new name in the <emph>Symbol</emph> box. Check whether the desired character is in the preview window before you click the <emph>Modify</emph> button. Click <emph>OK</emph>." -msgstr "Per cambiare il nome di un simbolo, selezionatelo nella casella di riepilogo <emph>Simbolo precedente</emph>. Inserite quindi il nuovo nome nella casella <emph>Icona</emph>. Prima di fare clic sul pulsante <emph>Modifica</emph>, controllate che la finestra di anteprima mostri il carattere desiderato. Fate clic su <emph>OK</emph>." +msgstr "Per cambiare il nome di un simbolo, selezionatelo nella casella di riepilogo <emph>Simbolo precedente</emph>. Inserite quindi il nuovo nome nella casella <emph>Simbolo</emph>. Prima di fare clic sul pulsante <emph>Modifica</emph>, controllate che la finestra di anteprima mostri il carattere desiderato. Fate clic su <emph>OK</emph>." #: 06010100.xhp msgctxt "" @@ -13242,7 +13242,7 @@ "22\n" "help.text" msgid "To create a new symbol set, type a name for it in the <emph>Symbol set</emph> list box and add at least one symbol. Click <emph>OK</emph> to close the dialog. The new symbol set is now available under the new name." -msgstr "Per creare un nuovo gruppo di simboli, digitate un nome per il gruppo nella casella di riepilogo <emph>Simboli</emph> e aggiungete almeno un simbolo. Fate clic su <emph>OK</emph> per chiudere la finestra di dialogo. Il nuovo gruppo di simboli sarà ora disponibile con il nuovo nome." +msgstr "Per creare un nuovo gruppo di simboli, digitate un nome per il gruppo nella casella di riepilogo <emph>Gruppo di simboli</emph> e aggiungete almeno un simbolo. Fate clic su <emph>OK</emph> per chiudere la finestra di dialogo. Il nuovo gruppo di simboli sarà ora disponibile con il nuovo nome." #: 06010100.xhp msgctxt "" @@ -13314,7 +13314,7 @@ "13\n" "help.text" msgid "<ahelp hid=\"modules/smath/ui/symdefinedialog/add\">Click this button to add the symbol shown in the right preview window to the current symbol set.</ahelp> It will be saved under the name displayed in the <emph>Symbol</emph> list box. You must specify a name under <emph>Symbol</emph> or <emph>Symbol Set</emph> to be able to use this button. Names cannot be used more than once." -msgstr "<ahelp hid=\"modules/smath/ui/symdefinedialog/add\">Fate clic su questo pulsante per aggiungere il simbolo visualizzato nella finestra di anteprima di destra al gruppo di simboli attivo.</ahelp> Il simbolo verrà salvato con il nome visualizzato nella casella di riepilogo <emph>Simbolo</emph>. Per usare questo pulsante, dovete specificare un nome nel campo <emph>Simbolo</emph> o <emph>Simboli</emph>. I nomi devono essere esclusivi." +msgstr "<ahelp hid=\"modules/smath/ui/symdefinedialog/add\">Fate clic su questo pulsante per aggiungere il simbolo visualizzato nella finestra di anteprima di destra al gruppo di simboli attivo.</ahelp> Il simbolo verrà salvato con il nome visualizzato nella casella di riepilogo <emph>Simbolo</emph>. Per usare questo pulsante, dovete specificare un nome nel campo <emph>Simbolo</emph> o <emph>Gruppo di simboli</emph>. I nomi devono essere esclusivi." #: 06010100.xhp msgctxt "" @@ -13350,7 +13350,7 @@ "27\n" "help.text" msgid "As an example, to transfer the large ALPHA from the \"Greek\" set to the \"Special\" set, select the old set (Greek) and then the ALPHA symbol using the two top list boxes. The symbol appears in the left preview window. In the <emph>Symbol set</emph> list box, select the \"Special\" set. Click <emph>Modify</emph> and then <emph>OK</emph>. The ALPHA symbol is now only in the \"Special\" symbol set." -msgstr "Ad esempio, per trasferire la ALPHA grande dal gruppo \"Greco\" a quello \"Speciale\", selezionate il vecchio gruppo (Greco) e quindi il simbolo ALPHA usando le due caselle di riepilogo superiori. Il simbolo appare nella finestra di anteprima di sinistra. Nella casella di riepilogo <emph>Simboli</emph>, selezionate il gruppo \"Speciale\". Fate clic su <emph>Modifica</emph> e quindi su <emph>OK</emph>. Il simbolo ALPHA si troverà ora nel gruppo di simboli \"Speciale\"." +msgstr "Ad esempio, per trasferire la ALFA grande dal gruppo \"Greco\" a quello \"Speciale\", selezionate il vecchio gruppo (Greco) e quindi il simbolo ALFA usando le due caselle di riepilogo superiori. Il simbolo appare nella finestra di anteprima di sinistra. Nella casella di riepilogo <emph>Simboli</emph>, selezionate il gruppo \"Speciale\". Fate clic su <emph>Modifica</emph> e quindi su <emph>OK</emph>. Il simbolo ALFA si troverà ora nel gruppo di simboli \"Speciale\"." #: 06010100.xhp msgctxt "" @@ -13368,7 +13368,7 @@ "17\n" "help.text" msgid "<ahelp hid=\"modules/smath/ui/symdefinedialog/delete\">Click to remove the symbol shown in the left preview window from the current symbol set.</ahelp> There will be no security query. Deleting the last remaining symbol of a symbol set also deletes the symbol set." -msgstr "<ahelp hid=\"modules/smath/ui/symdefinedialog/delete\">Fate clic su questo pulsante per rimuovere il simbolo visualizzato nella finestra di anteprima di sinistra dal gruppo di simboli attivo.</ahelp> Non verrà presentata nessuna richiesta di conferma. Eliminando l'ultimo simbolo di un gruppo viene eliminato anche il gruppo di simboli." +msgstr "<ahelp hid=\"modules/smath/ui/symdefinedialog/delete\">Fate clic su questo pulsante per rimuovere il simbolo visualizzato nella finestra di anteprima di sinistra dal gruppo di simboli attivo.</ahelp> Non verrà presentata alcuna richiesta di conferma. Eliminando l'ultimo simbolo di un gruppo viene eliminato anche il gruppo di simboli." #: 06010100.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/it/helpcontent2/source/text/smath/02.po libreoffice-5.1.2~rc2/translations/source/it/helpcontent2/source/text/smath/02.po --- libreoffice-5.1.1~rc2/translations/source/it/helpcontent2/source/text/smath/02.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/it/helpcontent2/source/text/smath/02.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,17 +3,18 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2013-11-20 13:02+0100\n" -"PO-Revision-Date: 2011-04-25 09:46+0200\n" -"Last-Translator: Valter <valtermura@gmail.com>\n" +"POT-Creation-Date: 2015-04-22 23:39+0200\n" +"PO-Revision-Date: 2016-03-21 13:41+0000\n" +"Last-Translator: Valter Mura <valtermura@gmail.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: it\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: 1458567707.000000\n" #: 03010000.xhp msgctxt "" @@ -47,7 +48,7 @@ "2\n" "help.text" msgid "<variable id=\"cursor\"><ahelp hid=\"SID_FORMULACURSOR\">Use this icon on the Tools bar to turn the Formula Cursor on or off.</ahelp> The part of the formula where the cursor is positioned in the <emph>Commands</emph> window is marked with a thin border when the formula cursor is active.</variable>" -msgstr "<variable id=\"cursor\"><ahelp hid=\"SID_FORMULACURSOR\">Questo simbolo della barra degli strumenti permette di attivare o disattivare il cursore di formula.</ahelp> La parte della formula in cui è posizionato il cursore nella finestra <emph>Comandi</emph> appare riquadrata da un bordo sottile quando il cursore di formula è attivo.</variable>" +msgstr "<variable id=\"cursor\"><ahelp hid=\"SID_FORMULACURSOR\">Questa icona della barra degli strumenti permette di attivare o disattivare il cursore di formula.</ahelp> La parte della formula in cui è posizionato il cursore nella finestra <emph>Comandi</emph> appare riquadrata da un bordo sottile quando il cursore di formula è attivo.</variable>" #: 03010000.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/it/helpcontent2/source/text/swriter/01.po libreoffice-5.1.2~rc2/translations/source/it/helpcontent2/source/text/swriter/01.po --- libreoffice-5.1.1~rc2/translations/source/it/helpcontent2/source/text/swriter/01.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/it/helpcontent2/source/text/swriter/01.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "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-21 13:45+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 @@ "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" "X-Project-Style: openoffice\n" -"X-POOTLE-MTIME: 1453664994.000000\n" +"X-POOTLE-MTIME: 1458567922.000000\n" #: 01120000.xhp msgctxt "" @@ -71,7 +71,7 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 "" @@ -1517,7 +1517,7 @@ "4\n" "help.text" msgid "The entries largely correspond to those in the <link href=\"text/swriter/01/02110000.xhp\" name=\"Navigator\">Navigator</link> selection box. You can also select other jump destinations. An example are the reminders, which you can set with the <emph>Set Reminder</emph> icon in the Navigator. You can select an object from among the following options on the <emph>Navigation</emph> toolbar: table, text frame, graphics, OLE object, page, headings, reminder, drawing object, control field, section, bookmark, selection, footnote, note, index entry, table formula, wrong table formula." -msgstr "Le voci corrispondono a quelle che compaiono nella casella di elezione del <link href=\"text/swriter/01/02110000.xhp\" name=\"Navigatore\">Navigatore</link>. Potete anche selezionare altri luoghi di destinazione, ad esempio il contrassegno che potete impostare con il simbolo <emph>Imposta contrassegno</emph> nel Navigatore. Nella <emph>barra di navigazione</emph> possono essere selezionate le seguenti opzioni: Tabella, Cornice, Immagine, Oggetto OLE, Pagina, Intestazione, Contrassegno, Oggetto disegno, Campo di controllo, Sezione, Segnalibro, Selezione, Nota a piè di pagina, Nota, Voce di indice oppure (errata) Formula tabella." +msgstr "Le voci corrispondono a quelle che compaiono nella casella di elezione del <link href=\"text/swriter/01/02110000.xhp\" name=\"Navigatore\">Navigatore</link>. Potete anche selezionare altri luoghi di destinazione, ad esempio il contrassegno che potete impostare con l'icona <emph>Imposta contrassegno</emph> nel Navigatore. Nella <emph>barra di navigazione</emph> possono essere selezionate le seguenti opzioni: Tabella, Cornice, Immagine, Oggetto OLE, Pagina, Intestazione, Contrassegno, Oggetto disegno, Campo di controllo, Sezione, Segnalibro, Selezione, Nota a piè di pagina, Nota, Voce di indice oppure Formula tabella errata." #: 02110100.xhp msgctxt "" @@ -1553,7 +1553,7 @@ "7\n" "help.text" msgid "<ahelp hid=\"HID_NAVI_VS\">Click the icon for the type of objects you want to browse through. Then click one of the \"Previous Object\" or \"Next Object\" arrow buttons. The names of these buttons indicate the type of object you have selected. The text cursor is placed on whichever object you have selected.</ahelp>" -msgstr "<ahelp hid=\"HID_NAVI_VS\">Fate clic sul simbolo corrispondente all'oggetto in base al quale volete sfogliare il documento. Quindi, fate clic su uno dei pulsanti frecce \"Oggetto precedente\" oppure \"Oggetto successivo\" che vi indicherà che tipo di oggetto avete selezionato. Il cursore si posizionerà automaticamente sull'oggetto selezionato.</ahelp>" +msgstr "<ahelp hid=\"HID_NAVI_VS\">Fate clic sull'icona corrispondente all'oggetto in base al quale volete sfogliare il documento. Quindi, fate clic su uno dei pulsanti frecce \"Oggetto precedente\" oppure \"Oggetto successivo\" che vi indicherà che tipo di oggetto avete selezionato. Il cursore si posizionerà automaticamente sull'oggetto selezionato.</ahelp>" #: 02110100.xhp msgctxt "" @@ -1596,7 +1596,7 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 "" @@ -13315,7 +13315,7 @@ "26\n" "help.text" msgid "Commented lines start with #." -msgstr "Le righe commentate devono iniziare con un simbolo di cancelletto (#)." +msgstr "Le righe commentate devono iniziare col simbolo di cancelletto (#)." #: 04120250.xhp msgctxt "" @@ -15462,7 +15462,7 @@ "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 @@ "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 @@ "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 "" @@ -21817,7 +21817,7 @@ "par_id3148391\n" "help.text" msgid "<ahelp hid=\".\">Use the Styles and Formatting deck of the Sidebar to apply, create, edit, and remove formatting styles. Double-click an entry to apply the style.</ahelp>" -msgstr "<ahelp hid=\".\">L'area Stili e formattazione della barra laterale vi permette di applicare, creare, modificare, aggiungere e rimuovere gli stili di formato. Fate doppio clic su una voce per applicare lo stile.</ahelp>" +msgstr "<ahelp hid=\".\">L'area Stili e formattazione della barra laterale permette di applicare, creare, modificare, aggiungere e rimuovere gli stili di formato. Fare doppio clic su una voce per applicare lo stile.</ahelp>" #: 05140000.xhp msgctxt "" @@ -21825,7 +21825,7 @@ "par_id0122200903183687\n" "help.text" msgid "<ahelp hid=\".\" visibility=\"hidden\">Choose Edit Paragraph Style in the context menu of a paragraph to edit the style of all paragraphs of the same style.</ahelp>" -msgstr "<ahelp hid=\".\" visibility=\"hidden\">Scegliete Modifica stile di paragrafo nel menu di contesto di un paragrafo per modificare lo stile di tutti i paragrafi che presentano lo stesso stile.</ahelp>" +msgstr "<ahelp hid=\".\" visibility=\"hidden\">Scegli Modifica stile di paragrafo nel menu di contesto di un paragrafo per modificare lo stile di tutti i paragrafi che presentano lo stesso stile.</ahelp>" #: 05140000.xhp msgctxt "" @@ -26019,7 +26019,7 @@ "par_idN10558\n" "help.text" msgid "<ahelp hid=\".\">Opens a submenu to edit the properties of the selected object.</ahelp>" -msgstr "<ahelp hid=\".\">Apre un sottomenu in cui potete modificare le proprietà dell'oggetto selezionato.</ahelp>" +msgstr "<ahelp hid=\".\">Apre un sottomenu in cui si possono modificare le proprietà dell'oggetto selezionato.</ahelp>" #: format_object.xhp msgctxt "" @@ -26075,7 +26075,7 @@ "par_idN10559\n" "help.text" msgid "<ahelp hid=\".\">Starts the Mail Merge Wizard to create form letters or send e-mail messages to many recipients.</ahelp>" -msgstr "<ahelp hid=\".\">Avvia la Stampa guidata in serie, con cui potete creare lettere o messaggi e-mail da inviare a molti destinatari.</ahelp>" +msgstr "<ahelp hid=\".\">Avvia la Stampa guidata in serie, con cui si possono creare lettere o messaggi di posta elettronica da inviare a molti destinatari.</ahelp>" #: mailmerge00.xhp msgctxt "" @@ -26163,7 +26163,7 @@ "par_idN10568\n" "help.text" msgid "<ahelp hid=\".\">Select an existing Writer document to use as the base for the mail merge document.</ahelp>" -msgstr "<ahelp hid=\".\">Selezionate un documento di Writer esistente da usare come base per la stampa in serie.</ahelp>" +msgstr "<ahelp hid=\".\">Selezionare un documento di Writer esistente da usare come base per la stampa in serie.</ahelp>" #: mailmerge01.xhp msgctxt "" @@ -26179,7 +26179,7 @@ "par_idN1056F\n" "help.text" msgid "<ahelp hid=\".\">Locate the Writer document that you want to use, and then click <emph>Open</emph>.</ahelp>" -msgstr "<ahelp hid=\".\">Individuate il documento di Writer da utilizzare e fate clic su <emph>Apri</emph>.</ahelp>" +msgstr "<ahelp hid=\".\">Individuare il documento di Writer da utilizzare e fare clic su <emph>Apri</emph>.</ahelp>" #: mailmerge01.xhp msgctxt "" @@ -26195,7 +26195,7 @@ "par_idN10576\n" "help.text" msgid "<ahelp hid=\".\">Select the template that you want to create your mail merge document with.</ahelp>" -msgstr "<ahelp hid=\".\">Selezionate il modello da utilizzare per la creazione della stampa in serie.</ahelp>" +msgstr "<ahelp hid=\".\">Selezionare il modello da utilizzare per la creazione della stampa in serie.</ahelp>" #: mailmerge01.xhp msgctxt "" @@ -26227,7 +26227,7 @@ "par_idN10588\n" "help.text" msgid "<ahelp hid=\".\">Use an existing mail merge document as the base for a new mail merge document.</ahelp>" -msgstr "<ahelp hid=\".\">Potete usare un documento già esistente come base per una nuova stampa in serie.</ahelp>" +msgstr "<ahelp hid=\".\">È possibile usare un documento già esistente come base per una nuova stampa in serie.</ahelp>" #: mailmerge01.xhp msgctxt "" @@ -26235,7 +26235,7 @@ "par_idN106F6\n" "help.text" msgid "<ahelp hid=\".\">Select the document.</ahelp>" -msgstr "<ahelp hid=\".\">Selezionate il documento.</ahelp>" +msgstr "<ahelp hid=\".\">Selezionare il documento.</ahelp>" #: mailmerge01.xhp msgctxt "" @@ -26299,7 +26299,7 @@ "par_idN10561\n" "help.text" msgid "<ahelp hid=\".\">Creates mail merge documents that you can send as an e-mail message or an e-mail attachment.</ahelp>" -msgstr "<ahelp hid=\".\">Crea documenti per la stampa in serie che potete inviare come messaggio di posta elettronica o come allegato.</ahelp>" +msgstr "<ahelp hid=\".\">Crea documenti per la stampa in serie che si possono inviare come messaggio di posta elettronica o come allegato.</ahelp>" #: mailmerge02.xhp msgctxt "" @@ -26363,7 +26363,7 @@ "par_idN1056C\n" "help.text" msgid "<ahelp hid=\".\">Opens the <link href=\"text/swriter/01/mm_seladdlis.xhp\">Select Address List</link> dialog, where you can choose a data source for the addresses, add new addresses, or type in a new address list.</ahelp>" -msgstr "<ahelp hid=\".\">Apre la finestra di dialogo <link href=\"text/swriter/01/mm_seladdlis.xhp\">Seleziona elenco di indirizzi</link>, in cui potete scegliere una sorgente dati per gli indirizzi o inserire direttamente un nuovo elenco.</ahelp>" +msgstr "<ahelp hid=\".\">Apre la finestra di dialogo <link href=\"text/swriter/01/mm_seladdlis.xhp\">Seleziona elenco di indirizzi</link>, in cui si può scegliere una sorgente dati per gli indirizzi o inserire direttamente un nuovo elenco.</ahelp>" #: mailmerge03.xhp msgctxt "" @@ -26395,7 +26395,7 @@ "par_idN10584\n" "help.text" msgid "<ahelp hid=\".\">Select the address block layout that you want to use.</ahelp>" -msgstr "<ahelp hid=\".\">Selezionate il layout da utilizzare per il blocco di indirizzi.</ahelp>" +msgstr "<ahelp hid=\".\">Selezionare il layout da utilizzare per il blocco di indirizzi.</ahelp>" #: mailmerge03.xhp msgctxt "" @@ -26459,7 +26459,7 @@ "par_idN105B5\n" "help.text" msgid "<ahelp hid=\".\">Use the browse buttons to preview the information from the previous or next data record.</ahelp>" -msgstr "<ahelp hid=\".\">Usate i pulsanti di navigazione per visualizzare in anteprima il record di dati precedente o successivo.</ahelp>" +msgstr "<ahelp hid=\".\">Usare i pulsanti di navigazione per visualizzare in anteprima il record di dati precedente o successivo.</ahelp>" #: mailmerge03.xhp msgctxt "" @@ -26523,7 +26523,7 @@ "par_idN10561\n" "help.text" msgid "<ahelp hid=\".\">Adds a personalized salutation to the mail merge document. To use the default salutation, clear this check box.</ahelp>" -msgstr "<ahelp hid=\".\">Aggiunge una formula di saluto personalizzata al documento da stampare in serie. Per usare la formula di saluto predefinita, deselezionate questa casella di controllo.</ahelp>" +msgstr "<ahelp hid=\".\">Aggiunge una formula di saluto personalizzata al documento da stampare in serie. Per usare la formula di saluto predefinita, deselezionare questa casella di controllo.</ahelp>" #: mailmerge04.xhp msgctxt "" @@ -26539,7 +26539,7 @@ "par_idN10568\n" "help.text" msgid "<ahelp hid=\".\">Select the personalized greeting for a female recipient.</ahelp>" -msgstr "<ahelp hid=\".\">Selezionate la formula di saluto personalizzata in versione femminile.</ahelp>" +msgstr "<ahelp hid=\".\">Selezionare la formula di saluto personalizzata in versione femminile.</ahelp>" #: mailmerge04.xhp msgctxt "" @@ -26571,7 +26571,7 @@ "par_idN10584\n" "help.text" msgid "<ahelp hid=\".\">Select the personalized greeting for a male recipient.</ahelp>" -msgstr "<ahelp hid=\".\">Selezionate la formula di saluto personalizzata in versione maschile.</ahelp>" +msgstr "<ahelp hid=\".\">Selezionare la formula di saluto personalizzata in versione maschile.</ahelp>" #: mailmerge04.xhp msgctxt "" @@ -26603,7 +26603,7 @@ "par_idN105A0\n" "help.text" msgid "<ahelp hid=\".\">Select the field name of the address database field that contains the gender information.</ahelp>" -msgstr "<ahelp hid=\".\">Selezionate il nome del campo del database degli indirizzi che contiene le informazioni di genere.</ahelp>" +msgstr "<ahelp hid=\".\">Selezionare il nome del campo del database degli indirizzi che contiene le informazioni di genere.</ahelp>" #: mailmerge04.xhp msgctxt "" @@ -26619,7 +26619,7 @@ "par_idN105A7\n" "help.text" msgid "<ahelp hid=\".\">Select the field value that indicates the gender of the recipient.</ahelp>" -msgstr "<ahelp hid=\".\">Selezionate il valore del campo che indica il sesso del destinatario.</ahelp>" +msgstr "<ahelp hid=\".\">Selezionare il valore del campo che indica il sesso del destinatario.</ahelp>" #: mailmerge04.xhp msgctxt "" @@ -26635,7 +26635,7 @@ "par_idN105AE\n" "help.text" msgid "<ahelp hid=\".\">Select the default salutation that is used when you do not specify a personalized salutation.</ahelp>" -msgstr "<ahelp hid=\".\">Selezionate la formula di saluto predefinita da utilizzare quando non viene specificata una formula personalizzata.</ahelp>" +msgstr "<ahelp hid=\".\">Selezionare la formula di saluto predefinita da utilizzare quando non viene specificata una formula personalizzata.</ahelp>" #: mailmerge04.xhp msgctxt "" @@ -26683,7 +26683,7 @@ "par_idN105D1\n" "help.text" msgid "<ahelp hid=\".\">Use the browse buttons to preview the information from the previous or next data record.</ahelp>" -msgstr "<ahelp hid=\".\">Usate i pulsanti di navigazione per visualizzare in anteprima il record di dati precedente o successivo.</ahelp>" +msgstr "<ahelp hid=\".\">Usare i pulsanti di navigazione per visualizzare in anteprima il record di dati precedente o successivo.</ahelp>" #: mailmerge04.xhp msgctxt "" @@ -26747,7 +26747,7 @@ "par_idN10561\n" "help.text" msgid "<ahelp hid=\".\">Enter the amount of space to leave between the left edge of the page and the left edge of the address block.</ahelp>" -msgstr "<ahelp hid=\".\">Specificate lo spazio da lasciare tra il bordo sinistro della pagina e il bordo sinistro del blocco di indirizzi.</ahelp>" +msgstr "<ahelp hid=\".\">Specificare lo spazio da lasciare tra il bordo sinistro della pagina e il bordo sinistro del blocco di indirizzi.</ahelp>" #: mailmerge05.xhp msgctxt "" @@ -26763,7 +26763,7 @@ "par_idN10568\n" "help.text" msgid "<ahelp hid=\".\">Enter the amount of space to leave between the top edge of the page and the top edge of the address block.</ahelp>" -msgstr "<ahelp hid=\".\">Specificate lo spazio da lasciare tra il bordo superiore della pagina e il bordo superiore del blocco di indirizzi.</ahelp>" +msgstr "<ahelp hid=\".\">Specificare lo spazio da lasciare tra il bordo superiore della pagina e il bordo superiore del blocco di indirizzi.</ahelp>" #: mailmerge05.xhp msgctxt "" @@ -26811,7 +26811,7 @@ "par_idN1057D\n" "help.text" msgid "<ahelp hid=\".\">Select a magnification for the print preview.</ahelp>" -msgstr "<ahelp hid=\".\">Selezionate un ingrandimento per l'anteprima di stampa.</ahelp>" +msgstr "<ahelp hid=\".\">Selezionare un ingrandimento per l'anteprima di stampa.</ahelp>" #: mailmerge05.xhp msgctxt "" @@ -26867,7 +26867,7 @@ "par_idN1055A\n" "help.text" msgid "<ahelp hid=\".\">Enter the address record number of a recipient to preview the mail merge document for the recipient.</ahelp>" -msgstr "<ahelp hid=\".\">Inserite il numero di record dell'indirizzo di un destinatario per visualizzare in anteprima il documento risultante per quella persona.</ahelp>" +msgstr "<ahelp hid=\".\">Inserire il numero di record dell'indirizzo di un destinatario per visualizzare in anteprima il documento risultante per quella persona.</ahelp>" #: mailmerge06.xhp msgctxt "" @@ -26875,7 +26875,7 @@ "par_idN10604\n" "help.text" msgid "<ahelp hid=\".\">Use the browse buttons to scroll through the address records.</ahelp>" -msgstr "<ahelp hid=\".\">Usate i pulsanti di navigazione per scorrere tra i record degli indirizzi.</ahelp>" +msgstr "<ahelp hid=\".\">Usare i pulsanti di navigazione per scorrere tra i record degli indirizzi.</ahelp>" #: mailmerge06.xhp msgctxt "" @@ -26907,7 +26907,7 @@ "par_idN10568\n" "help.text" msgid "<ahelp hid=\".\">Minimizes the wizard so that you can edit the main mail merge document for all recipients.</ahelp> To return to the wizard, click the <emph>Return to Mail Merge Wizard</emph> button." -msgstr "<ahelp hid=\".\">Riduce la finestra della procedura guidata per consentirvi di modificare il documento principale per tutti i destinatari.</ahelp> Per tornare alla procedura guidata, fate clic sul pulsante <emph>Torna alla Stampa guidata in serie</emph>." +msgstr "<ahelp hid=\".\">Riduce la finestra della procedura guidata per consentire di modificare il documento principale per tutti i destinatari.</ahelp> Per tornare alla procedura guidata, fate clic sul pulsante <emph>Torna alla Stampa guidata in serie</emph>." #: mailmerge06.xhp msgctxt "" @@ -26963,7 +26963,7 @@ "par_idN1055D\n" "help.text" msgid "<ahelp hid=\".\">Minimizes the wizard so that you can edit the mail merge document for a single recipient.</ahelp> After you made your changes, click the <emph>Return to Mail Merge Wizard</emph> button." -msgstr "<ahelp hid=\".\">Riduce la finestra della procedura guidata per consentirvi di modificare il documento per un singolo destinatario.</ahelp> Una volta apportate le modifiche, fate clic sul pulsante <emph>Torna alla Stampa guidata in serie</emph>." +msgstr "<ahelp hid=\".\">Riduce la finestra della procedura guidata per consentire di modificare il documento per un singolo destinatario.</ahelp> Una volta apportate le modifiche, fate clic sul pulsante <emph>Torna alla Stampa guidata in serie</emph>." #: mailmerge07.xhp msgctxt "" @@ -26979,7 +26979,7 @@ "par_idN105FE\n" "help.text" msgid "<ahelp hid=\".\">Enter the text that you want to search for in the merged document, for example, the name of a recipient.</ahelp>" -msgstr "<ahelp hid=\".\">Inserite il testo che volete cercare nel documento composto, ad esempio il nome di un destinatario.</ahelp>" +msgstr "<ahelp hid=\".\">Inserire il testo da cercare nel documento composto, ad esempio il nome di un destinatario.</ahelp>" #: mailmerge07.xhp msgctxt "" @@ -26995,7 +26995,7 @@ "par_idN10568\n" "help.text" msgid "<ahelp hid=\".\">Click to start the search.</ahelp>" -msgstr "<ahelp hid=\".\">Fate clic per iniziare la ricerca.</ahelp>" +msgstr "<ahelp hid=\".\">Fare clic per iniziare la ricerca.</ahelp>" #: mailmerge07.xhp msgctxt "" @@ -27195,7 +27195,7 @@ "par_idN106E1\n" "help.text" msgid "<ahelp hid=\".\">Enter the number of the first record to include in the mail merge.</ahelp>" -msgstr "<ahelp hid=\".\">Inserite il numero del primo record da includere nella stampa in serie.</ahelp>" +msgstr "<ahelp hid=\".\">Inserire il numero del primo record da includere nella stampa in serie.</ahelp>" #: mailmerge08.xhp msgctxt "" @@ -27211,7 +27211,7 @@ "par_idN105A6\n" "help.text" msgid "<ahelp hid=\".\">Enter the number of the last record to include in the mail merge.</ahelp>" -msgstr "<ahelp hid=\".\">Inserite il numero dell'ultimo record da includere nella stampa in serie.</ahelp>" +msgstr "<ahelp hid=\".\">Inserire il numero dell'ultimo record da includere nella stampa in serie.</ahelp>" #: mailmerge08.xhp msgctxt "" @@ -27259,7 +27259,7 @@ "par_idN105BB\n" "help.text" msgid "<ahelp hid=\".\">Select the printer.</ahelp>" -msgstr "<ahelp hid=\".\">Selezionate la stampante.</ahelp>" +msgstr "<ahelp hid=\".\">Selezionare la stampante.</ahelp>" #: mailmerge08.xhp msgctxt "" @@ -27323,7 +27323,7 @@ "par_idN105E5\n" "help.text" msgid "<ahelp hid=\".\">Sends the output as e-mail messages to all recipients.</ahelp>" -msgstr "<ahelp hid=\".\">Invia i documenti composti come messaggi e-mail a tutti i destinatari.</ahelp>" +msgstr "<ahelp hid=\".\">Invia i documenti composti come messaggi di posta elettronica a tutti i destinatari.</ahelp>" #: mailmerge08.xhp msgctxt "" @@ -27339,7 +27339,7 @@ "par_idN105EC\n" "help.text" msgid "<ahelp hid=\".\">Select the database field that contains the e-mail address of the recipient.</ahelp>" -msgstr "<ahelp hid=\".\">Selezionate il campo del database che contiene l'indirizzo e-mail del destinatario.</ahelp>" +msgstr "<ahelp hid=\".\">Selezionare il campo del database che contiene l'indirizzo di posta elettronica del destinatario.</ahelp>" #: mailmerge08.xhp msgctxt "" @@ -27355,7 +27355,7 @@ "par_idN105F3\n" "help.text" msgid "<ahelp hid=\".\">Opens the <link href=\"text/swriter/01/mm_copyto.xhp\">Copy To</link> dialog where you can specify one or more CC or BCC addresses.</ahelp>" -msgstr "<ahelp hid=\".\">Apre la finestra di dialogo <link href=\"text/swriter/01/mm_copyto.xhp\">Copia in</link>, in cui potete specificare uno o più indirizzi CC o BCC.</ahelp>" +msgstr "<ahelp hid=\".\">Apre la finestra di dialogo <link href=\"text/swriter/01/mm_copyto.xhp\">Copia in</link>, in cui è possibile specificare uno o più indirizzi CC o BCC.</ahelp>" #: mailmerge08.xhp msgctxt "" @@ -27371,7 +27371,7 @@ "par_idN10604\n" "help.text" msgid "<ahelp hid=\".\">Enter the subject line for the e-mail messages.</ahelp>" -msgstr "<ahelp hid=\".\">Digitate l'oggetto per i messaggi e-mail.</ahelp>" +msgstr "<ahelp hid=\".\">Digitare l'oggetto per i messaggi di posta elettronica.</ahelp>" #: mailmerge08.xhp msgctxt "" @@ -27387,7 +27387,7 @@ "par_idN1060B\n" "help.text" msgid "<ahelp hid=\".\">Select the mail format for the e-mail messages.</ahelp>" -msgstr "<ahelp hid=\".\">Selezionate il formato per i messaggi e-mail.</ahelp>" +msgstr "<ahelp hid=\".\">Selezionare il formato per i messaggi di posta elettronica.</ahelp>" #: mailmerge08.xhp msgctxt "" @@ -27411,7 +27411,7 @@ "par_idN10615\n" "help.text" msgid "<ahelp hid=\".\">Opens the <link href=\"text/swriter/01/mm_emabod.xhp\">E-Mail Message</link> dialog where you can enter the e-mail message for the mail merge files that are sent as attachments.</ahelp>" -msgstr "<ahelp hid=\".\">Apre la finestra di dialogo <link href=\"text/swriter/01/mm_emabod.xhp\">Messaggio e-mail</link>, in cui potete digitare il messaggio e-mail per i file della stampa in serie da inviare come allegati.</ahelp>" +msgstr "<ahelp hid=\".\">Apre la finestra di dialogo <link href=\"text/swriter/01/mm_emabod.xhp\">Messaggio di posta elettronica</link>, in cui si può digitare il messaggio di posta elettronica per i file della stampa in serie da inviare come allegati.</ahelp>" #: mailmerge08.xhp msgctxt "" @@ -27443,7 +27443,7 @@ "par_idN10631\n" "help.text" msgid "<ahelp hid=\".\">Select to send e-mails to all recipients.</ahelp>" -msgstr "<ahelp hid=\".\">Selezionate questa opzione per inviare il messaggio e-mail a tutti i destinatari.</ahelp>" +msgstr "<ahelp hid=\".\">Selezionare questa opzione per inviare il messaggio di posta elettronica a tutti i destinatari.</ahelp>" #: mailmerge08.xhp msgctxt "" @@ -27459,7 +27459,7 @@ "par_idN10646\n" "help.text" msgid "<ahelp hid=\".\">Click to start sending e-mails.</ahelp>" -msgstr "<ahelp hid=\".\">Fate clic qui per inviare i messaggi e-mail.</ahelp>" +msgstr "<ahelp hid=\".\">Fare clic qui per inviare i messaggi di posta elettronica.</ahelp>" #: mailmerge08.xhp msgctxt "" @@ -27507,7 +27507,7 @@ "par_idN10552\n" "help.text" msgid "<ahelp hid=\".\">Enter the recipients of e-mail copies, separated by a semicolon (;).</ahelp>" -msgstr "<ahelp hid=\".\">Specificate i destinatari delle copie dei messaggi e-mail, separati da un punto e virgola (;).</ahelp>" +msgstr "<ahelp hid=\".\">Specificare i destinatari delle copie dei messaggi di posta elettronica, separati da un punto e virgola (;).</ahelp>" #: mm_copyto.xhp msgctxt "" @@ -27523,7 +27523,7 @@ "par_idN10559\n" "help.text" msgid "<ahelp hid=\".\">Enter the recipients of e-mail blind copies, separated by a semicolon (;).</ahelp>" -msgstr "<ahelp hid=\".\">Specificate i destinatari delle copie nascoste dei messaggi e-mail, separati da un punto e virgola (;).</ahelp>" +msgstr "<ahelp hid=\".\">Specificare i destinatari delle copie nascoste dei messaggi di posta elettronica, separati da un punto e virgola (;).</ahelp>" #: mm_cusaddfie.xhp msgctxt "" @@ -27563,7 +27563,7 @@ "par_idN1056D\n" "help.text" msgid "<ahelp hid=\".\">Select a field and drag the field to the other list.</ahelp>" -msgstr "<ahelp hid=\".\">Selezionate un campo e trascinatelo sull'altro elenco.</ahelp>" +msgstr "<ahelp hid=\".\">Selezionare un campo e trascinarlo sull'altro elenco.</ahelp>" #: mm_cusaddfie.xhp msgctxt "" @@ -27579,7 +27579,7 @@ "par_idN10574\n" "help.text" msgid "<ahelp hid=\".\">Adds the selected field from the Address Elements list to the other list. You can add the same field more than once.</ahelp>" -msgstr "<ahelp hid=\".\">Aggiunge il campo selezionato nell'elenco \"Elementi dell'indirizzo\" all'altro elenco. Potete aggiungere più volte lo stesso campo.</ahelp>" +msgstr "<ahelp hid=\".\">Aggiunge il campo selezionato nell'elenco \"Elementi dell'indirizzo\" all'altro elenco. Si può aggiungere più volte lo stesso campo.</ahelp>" #: mm_cusaddfie.xhp msgctxt "" @@ -27611,7 +27611,7 @@ "par_idN10582\n" "help.text" msgid "<ahelp hid=\".\">Arrange the fields by drag-and-drop or use the arrow buttons.</ahelp>" -msgstr "<ahelp hid=\".\">Disponete i campi nel modo desiderato usando il metodo Drag&Drop o i pulsanti a freccia.</ahelp>" +msgstr "<ahelp hid=\".\">Disporre i campi nel modo desiderato usando il metodo Drag&Drop o i pulsanti a freccia.</ahelp>" #: mm_cusaddfie.xhp msgctxt "" @@ -27643,7 +27643,7 @@ "par_idN10590\n" "help.text" msgid "<ahelp hid=\".\">Select an item in the list and click an arrow button to move the item.</ahelp>" -msgstr "<ahelp hid=\".\">Selezionate una voce nell'elenco e fate clic su un pulsante a freccia per spostarla.</ahelp>" +msgstr "<ahelp hid=\".\">Selezionare una voce nell'elenco e fare clic su un pulsante a freccia per spostarla.</ahelp>" #: mm_cusaddlis.xhp msgctxt "" @@ -27683,7 +27683,7 @@ "par_idN10555\n" "help.text" msgid "<ahelp hid=\".\">Select the fields that you want to move, delete, or rename.</ahelp>" -msgstr "<ahelp hid=\".\">Selezionate i campi da spostare, da eliminare o da rinominare.</ahelp>" +msgstr "<ahelp hid=\".\">Selezionare i campi da spostare, da eliminare o da rinominare.</ahelp>" #: mm_cusaddlis.xhp msgctxt "" @@ -27771,7 +27771,7 @@ "par_idN10555\n" "help.text" msgid "<ahelp hid=\".\">Select a field and drag the field to the other list.</ahelp>" -msgstr "<ahelp hid=\".\">Selezionate un campo e trascinatelo sull'altro elenco.</ahelp>" +msgstr "<ahelp hid=\".\">Selezionare un campo e trascinarlo sull'altro elenco.</ahelp>" #: mm_cusgrelin.xhp msgctxt "" @@ -27787,7 +27787,7 @@ "par_idN1055C\n" "help.text" msgid "<ahelp hid=\".\">Adds the selected field from the list of salutation elements to the other list. You can add a field more than once.</ahelp>" -msgstr "<ahelp hid=\".\">Aggiunge il campo selezionato nell'elenco degli elementi di saluto all'altro elenco. Potete aggiungere più volte lo stesso campo.</ahelp>" +msgstr "<ahelp hid=\".\">Aggiunge il campo selezionato nell'elenco degli elementi di saluto all'altro elenco. Si può aggiungere più volte lo stesso campo.</ahelp>" #: mm_cusgrelin.xhp msgctxt "" @@ -27819,7 +27819,7 @@ "par_idN1056A\n" "help.text" msgid "<ahelp hid=\".\">Arrange the fields by drag-and-drop or use the arrow buttons.</ahelp>" -msgstr "<ahelp hid=\".\">Disponete i campi nel modo desiderato usando il metodo Drag&Drop o i pulsanti a freccia.</ahelp>" +msgstr "<ahelp hid=\".\">Disporre i campi nel modo desiderato usando il metodo Drag&Drop o i pulsanti a freccia.</ahelp>" #: mm_cusgrelin.xhp msgctxt "" @@ -27835,7 +27835,7 @@ "par_idN10571\n" "help.text" msgid "<ahelp hid=\".\">Select a value from the list for the salutation and the punctuation mark fields.</ahelp>" -msgstr "<ahelp hid=\".\">Selezionate un valore per la formula di saluto e per i segni di punteggiatura.</ahelp>" +msgstr "<ahelp hid=\".\">Selezionare un valore per la formula di saluto e per i segni di punteggiatura.</ahelp>" #: mm_cusgrelin.xhp msgctxt "" @@ -27867,7 +27867,7 @@ "par_idN1057F\n" "help.text" msgid "<ahelp hid=\".\">Select an item in the list and click an arrow button to move the item.</ahelp>" -msgstr "<ahelp hid=\".\">Selezionate una voce nell'elenco e fate clic su un pulsante a freccia per spostarla.</ahelp>" +msgstr "<ahelp hid=\".\">Selezionare una voce nell'elenco e fare clic su un pulsante a freccia per spostarla.</ahelp>" #: mm_emabod.xhp msgctxt "" @@ -27923,7 +27923,7 @@ "par_idN1055F\n" "help.text" msgid "<ahelp hid=\".\">Adds a personalized salutation. To use the default salutation, clear this check box.</ahelp>" -msgstr "<ahelp hid=\".\">Aggiunge una formula di saluto personalizzata. Per usare la formula di saluto predefinita, deselezionate questa casella di controllo.</ahelp>" +msgstr "<ahelp hid=\".\">Aggiunge una formula di saluto personalizzata. Per usare la formula di saluto predefinita, deselezionare questa casella di controllo.</ahelp>" #: mm_emabod.xhp msgctxt "" @@ -27939,7 +27939,7 @@ "par_idN10566\n" "help.text" msgid "<ahelp hid=\".\">Select the personalized greeting for a female recipient.</ahelp>" -msgstr "<ahelp hid=\".\">Selezionate la formula di saluto personalizzata in versione femminile.</ahelp>" +msgstr "<ahelp hid=\".\">Selezionare la formula di saluto personalizzata in versione femminile.</ahelp>" #: mm_emabod.xhp msgctxt "" @@ -27971,7 +27971,7 @@ "par_idN10582\n" "help.text" msgid "<ahelp hid=\".\">Select the personalized greeting for a male recipient.</ahelp>" -msgstr "<ahelp hid=\".\">Selezionate la formula di saluto personalizzata in versione maschile.</ahelp>" +msgstr "<ahelp hid=\".\">Selezionare la formula di saluto personalizzata in versione maschile.</ahelp>" #: mm_emabod.xhp msgctxt "" @@ -28003,7 +28003,7 @@ "par_idN1059E\n" "help.text" msgid "<ahelp hid=\".\">Select the field name of the address database field that contains the gender information.</ahelp>" -msgstr "<ahelp hid=\".\">Selezionate il nome del campo del database degli indirizzi che contiene le informazioni di genere.</ahelp>" +msgstr "<ahelp hid=\".\">Selezionare il nome del campo del database degli indirizzi che contiene le informazioni di genere.</ahelp>" #: mm_emabod.xhp msgctxt "" @@ -28019,7 +28019,7 @@ "par_idN105A5\n" "help.text" msgid "<ahelp hid=\".\">Select the field value that indicates the gender of the recipient.</ahelp>" -msgstr "<ahelp hid=\".\">Selezionate il valore del campo che indica il sesso del destinatario.</ahelp>" +msgstr "<ahelp hid=\".\">Selezionare il valore del campo che indica il sesso del destinatario.</ahelp>" #: mm_emabod.xhp msgctxt "" @@ -28035,7 +28035,7 @@ "par_idN105AC\n" "help.text" msgid "<ahelp hid=\".\">Select the default greeting to use if a personalized salutation cannot be created.</ahelp>" -msgstr "<ahelp hid=\".\">Selezionate la formula di saluto predefinita da utilizzare se non è possibile creare una formula personalizzata.</ahelp>" +msgstr "<ahelp hid=\".\">Selezionare la formula di saluto predefinita da utilizzare se non è possibile creare una formula personalizzata.</ahelp>" #: mm_emabod.xhp msgctxt "" @@ -28051,7 +28051,7 @@ "par_idN105B3\n" "help.text" msgid "<ahelp hid=\".\">Enter the main text of the e-mail.</ahelp>" -msgstr "<ahelp hid=\".\">Digitate il testo principale del messaggio.</ahelp>" +msgstr "<ahelp hid=\".\">Digitare il testo principale del messaggio.</ahelp>" #: mm_finent.xhp msgctxt "" @@ -28091,7 +28091,7 @@ "par_idN10552\n" "help.text" msgid "<ahelp hid=\".\">Enter the search term.</ahelp>" -msgstr "<ahelp hid=\".\">Digitate il termine cercato.</ahelp>" +msgstr "<ahelp hid=\".\">Digitare il termine cercato.</ahelp>" #: mm_finent.xhp msgctxt "" @@ -28227,7 +28227,7 @@ "par_idN1056D\n" "help.text" msgid "<ahelp hid=\".\">Select an address field and drag the field to the other list.</ahelp>" -msgstr "<ahelp hid=\".\">Selezionate un campo dell'indirizzo e trascinatelo sull'altro elenco.</ahelp>" +msgstr "<ahelp hid=\".\">Selezionare un campo dell'indirizzo e trascinatelo sull'altro elenco.</ahelp>" #: mm_newaddblo.xhp msgctxt "" @@ -28275,7 +28275,7 @@ "par_idN10582\n" "help.text" msgid "<ahelp hid=\".\">Arrange the fields with drag-and-drop or use the arrow buttons.</ahelp>" -msgstr "<ahelp hid=\".\">Disponete i campi nel modo desiderato usando il metodo Drag&Drop o i pulsanti a freccia.</ahelp>" +msgstr "<ahelp hid=\".\">Disporre i campi nel modo desiderato usando il metodo Drag&Drop o i pulsanti a freccia.</ahelp>" #: mm_newaddblo.xhp msgctxt "" @@ -28307,7 +28307,7 @@ "par_idN10590\n" "help.text" msgid "<ahelp hid=\".\">Select an item in the list and click an arrow button to move the entry.</ahelp>" -msgstr "<ahelp hid=\".\">Selezionate una voce nell'elenco e fate clic su un pulsante a freccia per spostarla.</ahelp>" +msgstr "<ahelp hid=\".\">Selezionare una voce nell'elenco e fare clic su un pulsante a freccia per spostarla.</ahelp>" #: mm_newaddlis.xhp msgctxt "" @@ -28347,7 +28347,7 @@ "par_idN1055B\n" "help.text" msgid "<ahelp hid=\".\">Enter or edit the field contents for each mail merge recipient.</ahelp>" -msgstr "<ahelp hid=\".\">Potete inserire o modificare il contenuto dei campi per ogni destinatario della stampa in serie.</ahelp>" +msgstr "<ahelp hid=\".\">È possibile inserire o modificare il contenuto dei campi per ogni destinatario della stampa in serie.</ahelp>" #: mm_newaddlis.xhp msgctxt "" @@ -28363,7 +28363,7 @@ "par_idN10574\n" "help.text" msgid "<ahelp hid=\".\">Click the buttons to navigate through the records or enter a record number to display a record.</ahelp>" -msgstr "<ahelp hid=\".\">Fate clic sui pulsanti per scorrere tra i record, oppure inserite un numero per visualizzare il record corrispondente.</ahelp>" +msgstr "<ahelp hid=\".\">Fare clic sui pulsanti per scorrere tra i record, oppure inserire un numero per visualizzare il record corrispondente.</ahelp>" #: mm_newaddlis.xhp msgctxt "" @@ -28411,7 +28411,7 @@ "par_idN10589\n" "help.text" msgid "<ahelp hid=\".\">Opens the <link href=\"text/swriter/01/mm_finent.xhp\">Find Entry</link> dialog. You can leave the dialog open while you edit the entries.</ahelp>" -msgstr "<ahelp hid=\".\">Apre la finestra di dialogo <link href=\"text/swriter/01/mm_finent.xhp\">Trova elemento</link>. Durante la modifica degli elementi potete lasciare aperta la finestra di dialogo.</ahelp>" +msgstr "<ahelp hid=\".\">Apre la finestra di dialogo <link href=\"text/swriter/01/mm_finent.xhp\">Trova elemento</link>. Durante la modifica degli elementi si può lasciare aperta la finestra di dialogo.</ahelp>" #: mm_newaddlis.xhp msgctxt "" @@ -28427,7 +28427,7 @@ "par_idN1059E\n" "help.text" msgid "<ahelp hid=\".\">Opens the <link href=\"text/swriter/01/mm_cusaddlis.xhp\">Customize Address List</link> dialog where you can rearrange, rename, add, and delete fields.</ahelp>" -msgstr "<ahelp hid=\".\">Apre la finestra di dialogo <link href=\"text/swriter/01/mm_cusaddlis.xhp\">Personalizza elenco di indirizzi</link>, in cui potete ridisporre, rinominare, aggiungere ed eliminare i campi.</ahelp>" +msgstr "<ahelp hid=\".\">Apre la finestra di dialogo <link href=\"text/swriter/01/mm_cusaddlis.xhp\">Personalizza elenco di indirizzi</link>, in cui si possono ridisporre, rinominare, aggiungere ed eliminare i campi.</ahelp>" #: mm_seladdblo.xhp msgctxt "" @@ -28467,7 +28467,7 @@ "par_idN10552\n" "help.text" msgid "<ahelp hid=\".\">Select the block in the list that you want to use for mail merge addresses, and click <emph>OK</emph>.</ahelp>" -msgstr "<ahelp hid=\".\">Selezionate nell'elenco il blocco da usare per gli indirizzi della stampa in serie e fate clic su <emph>OK</emph>.</ahelp>" +msgstr "<ahelp hid=\".\">Selezionare nell'elenco il blocco da usare per gli indirizzi della stampa in serie e fare clic su <emph>OK</emph>.</ahelp>" #: mm_seladdblo.xhp msgctxt "" @@ -28523,7 +28523,7 @@ "par_idN10651\n" "help.text" msgid "<ahelp hid=\".\">Enter the country/region string that shall not be printed.</ahelp>" -msgstr "<ahelp hid=\".\">Inserite la stringa del paese o della regione che non dovrà essere stampata.</ahelp>" +msgstr "<ahelp hid=\".\">Inserire la stringa del paese o della regione che non dovrà essere stampata.</ahelp>" #: mm_seladdblo.xhp msgctxt "" @@ -28539,7 +28539,7 @@ "par_idN1056E\n" "help.text" msgid "<ahelp hid=\".\">Opens the <link href=\"text/swriter/01/mm_newaddblo.xhp\">New Address Block</link> dialog where you can define a new address block layout.</ahelp>" -msgstr "<ahelp hid=\".\">Apre la finestra di dialogo <link href=\"text/swriter/01/mm_newaddblo.xhp\">Nuovo blocco di indirizzi</link>, in cui potete definire un nuovo layout per il blocco di indirizzi.</ahelp>" +msgstr "<ahelp hid=\".\">Apre la finestra di dialogo <link href=\"text/swriter/01/mm_newaddblo.xhp\">Nuovo blocco di indirizzi</link>, in cui si può definire un nuovo layout per il blocco di indirizzi.</ahelp>" #: mm_seladdblo.xhp msgctxt "" @@ -28555,7 +28555,7 @@ "par_idN10583\n" "help.text" msgid "<ahelp hid=\".\">Opens the <link href=\"text/swriter/01/mm_newaddblo.xhp\">New Address Block</link> dialog where you can edit the selected address block layout.</ahelp>" -msgstr "<ahelp hid=\".\">Apre la finestra di dialogo <link href=\"text/swriter/01/mm_newaddblo.xhp\">Nuovo blocco di indirizzi</link>, in cui potete modificare il layout del blocco di indirizzi selezionato.</ahelp>" +msgstr "<ahelp hid=\".\">Apre la finestra di dialogo <link href=\"text/swriter/01/mm_newaddblo.xhp\">Nuovo blocco di indirizzi</link>, in cui si può modificare il layout del blocco di indirizzi selezionato.</ahelp>" #: mm_seladdblo.xhp msgctxt "" @@ -28611,7 +28611,7 @@ "par_idN1055E\n" "help.text" msgid "<ahelp hid=\".\">Select the database file that contains the addresses that you want to use as an address list.</ahelp> If the file contains more than one table, the <link href=\"text/swriter/01/mm_seltab.xhp\">Select Table</link> dialog opens." -msgstr "<ahelp hid=\".\">Selezionate il file di database che contiene gli indirizzi da utilizzare come elenco di indirizzi.</ahelp> Se il file contiene più tabelle, si apre la finestra di dialogo <link href=\"text/swriter/01/mm_seltab.xhp\">Seleziona tabella</link>." +msgstr "<ahelp hid=\".\">Selezionare il file di database che contiene gli indirizzi da utilizzare come elenco di indirizzi.</ahelp> Se il file contiene più tabelle, si apre la finestra di dialogo <link href=\"text/swriter/01/mm_seltab.xhp\">Seleziona tabella</link>." #: mm_seladdlis.xhp msgctxt "" @@ -28627,7 +28627,7 @@ "par_idN10589\n" "help.text" msgid "<ahelp hid=\".\">Opens the <link href=\"text/swriter/01/mm_newaddlis.xhp\">New Address List</link> dialog, where you can create a new address list.</ahelp>" -msgstr "<ahelp hid=\".\">Apre la finestra di dialogo <link href=\"text/swriter/01/mm_newaddlis.xhp\">Nuovo elenco di indirizzi</link>, in cui potete creare un nuovo elenco di indirizzi.</ahelp>" +msgstr "<ahelp hid=\".\">Apre la finestra di dialogo <link href=\"text/swriter/01/mm_newaddlis.xhp\">Nuovo elenco di indirizzi</link>, in cui si può creare un nuovo elenco di indirizzi.</ahelp>" #: mm_seladdlis.xhp msgctxt "" @@ -28643,7 +28643,7 @@ "par_idN1059E\n" "help.text" msgid "<ahelp hid=\".\">Opens the <link href=\"text/shared/02/12090100.xhp\">Standard Filter</link> dialog , where you can apply filters to the address list to display the recipients that you want to see.</ahelp>" -msgstr "<ahelp hid=\".\">Apre la finestra di dialogo <link href=\"text/shared/02/12090100.xhp\">Filtro standard</link>, in cui potete applicare dei filtri all'elenco di indirizzi in modo da visualizzare solo determinati destinatari.</ahelp>" +msgstr "<ahelp hid=\".\">Apre la finestra di dialogo <link href=\"text/shared/02/12090100.xhp\">Filtro standard</link>, in cui si possono applicare dei filtri all'elenco di indirizzi in modo da visualizzare solo determinati destinatari.</ahelp>" #: mm_seladdlis.xhp msgctxt "" @@ -28659,7 +28659,7 @@ "par_idN105B3\n" "help.text" msgid "<ahelp hid=\".\">Opens the <link href=\"text/swriter/01/mm_newaddlis.xhp\">New Address List</link> dialog, where you can edit the selected address list.</ahelp>" -msgstr "<ahelp hid=\".\">Apre la finestra di dialogo <link href=\"text/swriter/01/mm_newaddlis.xhp\">Nuovo elenco di indirizzi</link>, in cui potete modificare l'elenco di indirizzi selezionato.</ahelp>" +msgstr "<ahelp hid=\".\">Apre la finestra di dialogo <link href=\"text/swriter/01/mm_newaddlis.xhp\">Nuovo elenco di indirizzi</link>, in cui si può modificare l'elenco di indirizzi selezionato.</ahelp>" #: mm_seladdlis.xhp msgctxt "" @@ -28675,7 +28675,7 @@ "par_idN105C8\n" "help.text" msgid "<ahelp hid=\".\">Opens the <link href=\"text/swriter/01/mm_seltab.xhp\">Select Table</link> dialog, where you can select another table to use for mail merge.</ahelp>" -msgstr "<ahelp hid=\".\">Apre la finestra di dialogo <link href=\"text/swriter/01/mm_seltab.xhp\">Seleziona tabella</link>, in cui potete selezionare un'altra tabella da utilizzare per la stampa in serie.</ahelp>" +msgstr "<ahelp hid=\".\">Apre la finestra di dialogo <link href=\"text/swriter/01/mm_seltab.xhp\">Seleziona tabella</link>, in cui si può selezionare un'altra tabella da utilizzare per la stampa in serie.</ahelp>" #: mm_seltab.xhp msgctxt "" @@ -28699,7 +28699,7 @@ "par_idN10546\n" "help.text" msgid "<ahelp hid=\".\">Select the table that you want to use for <link href=\"text/swriter/01/mm_seladdlis.xhp\">mail merge</link> addresses.</ahelp>" -msgstr "<ahelp hid=\".\">Selezionate la tabella da utilizzare per gli indirizzi nella <link href=\"text/swriter/01/mm_seladdlis.xhp\">stampa in serie</link>.</ahelp>" +msgstr "<ahelp hid=\".\">Selezionare la tabella da utilizzare per gli indirizzi nella <link href=\"text/swriter/01/mm_seladdlis.xhp\">stampa in serie</link>.</ahelp>" #: mm_seltab.xhp msgctxt "" @@ -28739,7 +28739,7 @@ "par_id2962126\n" "help.text" msgid "<ahelp hid=\".\">Choose the selection mode from the submenu: normal selection mode, or block selection mode.</ahelp>" -msgstr "<ahelp hid=\".\">Scegliete il modo selezione dal sottomenu: normale o blocco.</ahelp>" +msgstr "<ahelp hid=\".\">Scegliere il modo selezione dal sottomenu: normale o blocco.</ahelp>" #: selection_mode.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/it/helpcontent2/source/text/swriter/02.po libreoffice-5.1.2~rc2/translations/source/it/helpcontent2/source/text/swriter/02.po --- libreoffice-5.1.1~rc2/translations/source/it/helpcontent2/source/text/swriter/02.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/it/helpcontent2/source/text/swriter/02.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "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:59+0000\n" +"PO-Revision-Date: 2016-03-21 13:48+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 @@ "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" "X-Project-Style: openoffice\n" -"X-POOTLE-MTIME: 1453409948.000000\n" +"X-POOTLE-MTIME: 1458568084.000000\n" #: 02110000.xhp msgctxt "" @@ -203,7 +203,7 @@ "2\n" "help.text" msgid "<ahelp hid=\".uno:InsertRows\">Inserts one or more rows in the table, below the selection. You can insert more than one row by opening the dialog (choose <emph>Table - Insert - Rows</emph>), or by selecting more than one row before clicking the icon.</ahelp> The second method inserts rows of the same height as the originally selected rows." -msgstr "<ahelp hid=\".uno:InsertRows\">Inserisce una o più righe nella tabella, sotto la selezione. Per inserire più righe, aprite la finestra di dialogo (scegliendo <emph>Tabella - Inserisci - Riga</emph>), oppure selezionate più righe prima di fare clic sul simbolo.</ahelp> Questo secondo metodo inserisce righe della stessa altezza di quelle selezionate originariamente." +msgstr "<ahelp hid=\".uno:InsertRows\">Inserisce una o più righe nella tabella, sotto la selezione. Per inserire più righe, aprite la finestra di dialogo (menu <emph>Tabella - Inserisci - Riga</emph>), oppure selezionate più righe prima di fare clic sull'icona.</ahelp> Questo secondo metodo inserisce righe della stessa altezza di quelle selezionate originariamente." #: 04090000.xhp msgctxt "" @@ -254,7 +254,7 @@ "2\n" "help.text" msgid "<ahelp hid=\".uno:InsertColumns\">Inserts one or more columns into the table, after the selection. You can insert several columns at the same time by opening the dialog (choose <emph>Table - Insert - Columns</emph>), or by selecting several columns before clicking the icon.</ahelp> If the latter method is used, the columns inserted will have the same relative width as the selected columns." -msgstr "<ahelp hid=\".uno:InsertColumns\">Inserisce una o più colonne nella tabella, sotto la selezione. Per inserire più colonne con un'unica operazione, aprite la finestra di dialogo (scegliendo <emph>Tabella - Inserisci - Colonne</emph>), oppure selezionate più colonne prima di fare clic sul simbolo.</ahelp> Se usate questo secondo metodo, le colonne inserite avranno la stessa larghezza relativa di quelle selezionate." +msgstr "<ahelp hid=\".uno:InsertColumns\">Inserisce una o più colonne nella tabella, sotto la selezione. Per inserire più colonne con un'unica operazione, aprite la finestra di dialogo (menu <emph>Tabella - Inserisci - Colonne</emph>), oppure selezionate più colonne prima di fare clic sull'icona.</ahelp> Se usate questo secondo metodo, le colonne inserite avranno la stessa larghezza relativa di quelle selezionate." #: 04100000.xhp msgctxt "" @@ -1066,7 +1066,7 @@ "5\n" "help.text" msgid "After clicking the <emph>Multiple Pages Preview</emph> icon, the<emph> Multiple pages</emph> dialog opens. Use the two spin buttons to set the number of pages to be displayed." -msgstr "Facendo clic sul simbolo <emph>Anteprima a più pagine</emph>, si apre la finestra di dialogo <emph>Più pagine</emph>. Utilizzando i due pulsanti di selezione visualizzati potete stabilire il numero delle pagine da visualizzare." +msgstr "Facendo clic sull'icona <emph>Anteprima a più pagine</emph>, si apre la finestra di dialogo <emph>Più pagine</emph>. Utilizzando i due pulsanti di selezione visualizzati potete stabilire il numero delle pagine da visualizzare." #: 10070000.xhp msgctxt "" @@ -1111,7 +1111,7 @@ "10\n" "help.text" msgid "The settings you choose in the dialog can also be set using the mouse: Click the arrow next to the <emph>Multiple Pages Preview</emph> icon. Now move the mouse over the desired number of rows and columns." -msgstr "Le impostazioni disponibili nella finestra di dialogo possono essere applicate anche con il mouse: fate clic sulla freccia vicina al simbolo<emph>Anteprima a più pagine</emph>. Ora spostate il mouse sul numero desiderato di righe e colonne." +msgstr "Le impostazioni disponibili nella finestra di dialogo possono essere applicate anche con il mouse: fate clic sulla freccia vicina all'icona <emph>Anteprima a più pagine</emph>. Ora spostate il mouse sul numero desiderato di righe e colonne." #: 10080000.xhp msgctxt "" @@ -3388,7 +3388,7 @@ "2\n" "help.text" msgid "<ahelp hid=\".\" visibility=\"hidden\">Click to open the Fields dialog. Click the arrow next to the icon to open a submenu.</ahelp> Click to open the <link href=\"text/swriter/01/04090000.xhp\">Fields</link> dialog. Click the arrow next to the icon to open a submenu." -msgstr "<ahelp hid=\".\" visibility=\"hidden\">Fate clic per aprire la finestra di dialogo Comandi di campo. Fate clic sulla freccia vicina all'icona per aprire un sottomenu.</ahelp> Fate clic per aprire la finestra di dialogo <link href=\"text/swriter/01/04090000.xhp\">Comandi di campo</link>. Fate clic sulla freccia vicina all'icona per aprire un sottomenu." +msgstr "<ahelp hid=\".\" visibility=\"hidden\">Fai clic per aprire la finestra di dialogo Comandi di campo. Fai clic sulla freccia vicina all'icona per aprire un sottomenu.</ahelp> Fate clic per aprire la finestra di dialogo <link href=\"text/swriter/01/04090000.xhp\">Comandi di campo</link>. Fate clic sulla freccia vicina all'icona per aprire un sottomenu." #: 18030000.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/it/helpcontent2/source/text/swriter/guide.po libreoffice-5.1.2~rc2/translations/source/it/helpcontent2/source/text/swriter/guide.po --- libreoffice-5.1.1~rc2/translations/source/it/helpcontent2/source/text/swriter/guide.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/it/helpcontent2/source/text/swriter/guide.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "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:58+0100\n" -"PO-Revision-Date: 2016-01-24 19:31+0000\n" +"PO-Revision-Date: 2016-03-21 13:55+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 @@ "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" "X-Project-Style: openoffice\n" -"X-POOTLE-MTIME: 1453663863.000000\n" +"X-POOTLE-MTIME: 1458568539.000000\n" #: anchor_object.xhp msgctxt "" @@ -2041,7 +2041,7 @@ "par_id7253028\n" "help.text" msgid "Click the left icon to clear all lines. This removes all outer borders and all inner lines." -msgstr "Fate clic sul simbolo più a sinistra per cancellare tutte le linee. Questa operazione rimuove tutti i bordi esterni e le linee interne." +msgstr "Fate clic sull'icona a sinistra per cancellare tutte le linee. Questa operazione rimuove tutti i bordi esterni e le linee interne." #: borders.xhp msgctxt "" @@ -2057,7 +2057,7 @@ "par_id7276833\n" "help.text" msgid "Click the rightmost icon to set an outer border. The inner lines are not changed." -msgstr "Fate clic sul simbolo più a destra per impostare un bordo esterno. Le linee interne non vengono modificate." +msgstr "Fate clic sull'icona più a destra per impostare un bordo esterno. Le linee interne non vengono modificate." #: borders.xhp msgctxt "" @@ -9341,7 +9341,7 @@ "8\n" "help.text" msgid "Press the right arrow key until the <emph>Section</emph> icon is selected." -msgstr "Premete la freccia a destra finché non viene selezionato il simbolo <emph>Sezione</emph>." +msgstr "Premete la freccia a destra finché non viene selezionata l'icona <emph>Sezione</emph>." #: keyboard.xhp msgctxt "" @@ -9395,7 +9395,7 @@ "21\n" "help.text" msgid "Press the right arrow key until the <emph>Table</emph> icon is selected." -msgstr "Premete la freccia a destra finché non viene selezionato il simbolo <emph>Tabella</emph>." +msgstr "Premete la freccia a destra finché non viene selezionata l'icona <emph>Tabella</emph>." #: keyboard.xhp msgctxt "" @@ -15409,7 +15409,7 @@ "par_id3156246\n" "help.text" msgid "Rest the mouse pointer over the column dividing line until the pointer becomes a separator icon, and then drag the line to a new location." -msgstr "Posizionate il puntatore del mouse sulla linea di divisione tra le colonne finché non compare il simbolo di separazione, e quindi trascinate la linea in una nuova posizione." +msgstr "Posizionate il puntatore del mouse sulla linea di divisione tra le colonne finché non compare l'icona di separazione, quindi trascinate la linea in una nuova posizione." #: table_sizing.xhp msgctxt "" @@ -15417,7 +15417,7 @@ "par_id3145390\n" "help.text" msgid "Rest the mouse pointer over the column dividing line on the ruler until the pointer becomes a separator icon, and then drag the line to a new location." -msgstr "Posizionate il puntatore del mouse sulla linea di divisione tra le colonne situata sul righello finché non compare il simbolo di separazione, e trascinate la linea in una nuova posizione." +msgstr "Posizionate il puntatore del mouse sulla linea di divisione tra le colonne situata sul righello finché non compare l'icona di separazione, quindi trascinate la linea in una nuova posizione." #: table_sizing.xhp msgctxt "" @@ -17415,7 +17415,7 @@ "tit\n" "help.text" msgid "Adding Bullets" -msgstr "Aggiungere un simbolo a un paragrafo" +msgstr "Aggiungere punti elenco" #: using_numbered_lists.xhp msgctxt "" @@ -17432,7 +17432,7 @@ "6\n" "help.text" msgid "<variable id=\"using_numbered_lists\"><link href=\"text/swriter/guide/using_numbered_lists.xhp\" name=\"Adding Bullets\">Adding Bullets</link></variable>" -msgstr "<variable id=\"using_numbered_lists\"><link href=\"text/swriter/guide/using_numbered_lists.xhp\" name=\"Aggiungere un simbolo a un paragrafo\">Aggiungere un simbolo a un paragrafo</link></variable>" +msgstr "<variable id=\"using_numbered_lists\"><link href=\"text/swriter/guide/using_numbered_lists.xhp\" name=\"Aggiungere punti elenco\">Aggiungere punti elenco</link></variable>" #: using_numbered_lists.xhp msgctxt "" @@ -17467,7 +17467,7 @@ "17\n" "help.text" msgid "To remove bullets, select the bulleted paragraphs, and then click the <emph>Bullets On/Off</emph> icon on the <emph>Formatting</emph> Bar." -msgstr "Per rimuovere i punti, selezionate i paragrafi puntati e fate clic sul simbolo <emph>Elenco puntato sì/no</emph> nella barra <emph>Formattazione</emph>." +msgstr "Per rimuovere i punti elenco, selezionate i paragrafi puntati e fate clic sull'icona <emph>Elenco puntato sì/no</emph> nella barra <emph>Formattazione</emph>." #: using_numbered_lists.xhp msgctxt "" @@ -17494,7 +17494,7 @@ "14\n" "help.text" msgid "For example, to change the bulleting symbol, click the <item type=\"menuitem\">Options</item> tab, click the browse button (<item type=\"menuitem\">...</item>) next to <item type=\"menuitem\">Character</item>, and then select a special character. You can also click the <item type=\"menuitem\">Image</item> tab, and then click a symbol style in the <item type=\"menuitem\">Selection</item> area." -msgstr "Ad esempio, per cambiare il simbolo che precede i paragrafi dell'elenco puntato, fate clic sulla scheda <item type=\"menuitem\">Opzioni</item>, quindi sul pulsante con i tre puntini (<item type=\"menuitem\">...</item>) accanto a <item type=\"menuitem\">Carattere</item> e selezionate un carattere speciale. Potete anche fare clic sulla scheda <item type=\"menuitem\">Immagini</item> e scegliere lo stile di simbolo nell'area <item type=\"menuitem\">Selezione</item>." +msgstr "Ad esempio, per cambiare il simbolo di elenco puntato, fate clic sulla scheda <item type=\"menuitem\">Opzioni</item>, quindi sul pulsante con i tre puntini (<item type=\"menuitem\">...</item>) accanto a <item type=\"menuitem\">Carattere</item> e selezionate un carattere speciale. Potete anche fare clic sulla scheda <item type=\"menuitem\">Immagini</item> e scegliere lo stile di simbolo nell'area <item type=\"menuitem\">Selezione</item>." #: using_numbered_lists2.xhp msgctxt "" @@ -17545,7 +17545,7 @@ "24\n" "help.text" msgid "On the <item type=\"menuitem\">Formatting</item> Bar, click the <item type=\"menuitem\">Numbering On/Off</item> icon <image id=\"img_id3153125\" src=\"cmd/sc_defaultnumbering.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3153125\">Icon</alt></image>." -msgstr "Nella barra <item type=\"menuitem\">Formattazione</item>, fate clic due volte sul simbolo <item type=\"menuitem\">Elenco numerato on/off</item> <image id=\"img_id3153125\" src=\"cmd/sc_defaultnumbering.png\" width=\"5.64mm\" height=\"5.64mm\"><alt id=\"alt_id3153125\">Icona</alt></image>." +msgstr "Nella barra <item type=\"menuitem\">Formattazione</item>, fate clic due volte sull'icona <item type=\"menuitem\">Elenco numerato on/off</item> <image id=\"img_id3153125\" src=\"cmd/sc_defaultnumbering.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3153125\">Icona</alt></image>." #: using_numbered_lists2.xhp msgctxt "" @@ -17563,7 +17563,7 @@ "25\n" "help.text" msgid "To remove numbering, select the numbered paragraphs, and then click the <emph>Numbering On/Off</emph> icon on the <emph>Formatting</emph> Bar." -msgstr "Per rimuovere la numerazione, selezionate i paragrafi numerati e fate clic sul simbolo <emph>Numerazione sì/no</emph> nella barra <emph>Formattazione</emph>." +msgstr "Per rimuovere la numerazione, selezionate i paragrafi numerati e fate clic sull'icona <emph>Numerazione sì/no</emph> nella barra <emph>Formattazione</emph>." #: using_numbered_lists2.xhp msgctxt "" @@ -17632,7 +17632,7 @@ "33\n" "help.text" msgid "To apply numbering manually, click in the paragraph, and then click the <item type=\"menuitem\">Numbering On/Off</item> icon on the <item type=\"menuitem\">Formatting</item> Bar." -msgstr "Per applicare la numerazione manualmente, fate clic nel paragrafo e quindi sul simbolo <item type=\"menuitem\">Numerazione sì/no</item> nella barra <item type=\"menuitem\">Formattazione</item>." +msgstr "Per applicare la numerazione manualmente, fate clic nel paragrafo e quindi sull'icona <item type=\"menuitem\">Numerazione sì/no</item> nella barra <item type=\"menuitem\">Formattazione</item>." #: using_numbering.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/it/helpcontent2/source/text/swriter.po libreoffice-5.1.2~rc2/translations/source/it/helpcontent2/source/text/swriter.po --- libreoffice-5.1.1~rc2/translations/source/it/helpcontent2/source/text/swriter.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/it/helpcontent2/source/text/swriter.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 -Nru libreoffice-5.1.1~rc2/translations/source/it/svx/inc.po libreoffice-5.1.2~rc2/translations/source/it/svx/inc.po --- libreoffice-5.1.1~rc2/translations/source/it/svx/inc.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/it/svx/inc.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "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 @@ "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 "" diff -Nru libreoffice-5.1.1~rc2/translations/source/it/sw/source/ui/utlui.po libreoffice-5.1.2~rc2/translations/source/it/sw/source/ui/utlui.po --- libreoffice-5.1.1~rc2/translations/source/it/sw/source/ui/utlui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/it/sw/source/ui/utlui.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\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-29 16:07+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff -Nru libreoffice-5.1.1~rc2/translations/source/it/sw/uiconfig/swriter/ui.po libreoffice-5.1.2~rc2/translations/source/it/sw/uiconfig/swriter/ui.po --- libreoffice-5.1.1~rc2/translations/source/it/sw/uiconfig/swriter/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/it/sw/uiconfig/swriter/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 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-04 17:39+0000\n" +"PO-Revision-Date: 2016-03-16 13:34+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 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1451929188.000000\n" +"X-POOTLE-MTIME: 1458135246.000000\n" #: abstractdialog.ui msgctxt "" @@ -7965,7 +7965,7 @@ "title\n" "string.text" msgid "E-Mail Message" -msgstr "Messaggio e-mail" +msgstr "Messaggio di posta elettronica" #: mmmailbody.ui msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/ja/basic/source/classes.po libreoffice-5.1.2~rc2/translations/source/ja/basic/source/classes.po --- libreoffice-5.1.1~rc2/translations/source/ja/basic/source/classes.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ja/basic/source/classes.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\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 @@ "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 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/ja/helpcontent2/source/text/shared/00.po libreoffice-5.1.2~rc2/translations/source/ja/helpcontent2/source/text/shared/00.po --- libreoffice-5.1.1~rc2/translations/source/ja/helpcontent2/source/text/shared/00.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ja/helpcontent2/source/text/shared/00.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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 @@ "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 @@ msgstr "ODF 1.2 (æ‹¡å¼µ)" #: 00000021.xhp +#, fuzzy msgctxt "" "00000021.xhp\n" "par_id100120091238112\n" "help.text" msgid "-" -msgstr "" +msgstr "-" #: 00000021.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/ja/helpcontent2/source/text/shared/01.po libreoffice-5.1.2~rc2/translations/source/ja/helpcontent2/source/text/shared/01.po --- libreoffice-5.1.1~rc2/translations/source/ja/helpcontent2/source/text/shared/01.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ja/helpcontent2/source/text/shared/01.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\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 @@ "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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ msgstr "<emph>æ„味</emph>" #: 05020301.xhp +#, fuzzy msgctxt "" "05020301.xhp\n" "par_id3152801\n" "5\n" "help.text" msgid "#" -msgstr "" +msgstr "#" #: 05020301.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/ja/helpcontent2/source/text/shared/02.po libreoffice-5.1.2~rc2/translations/source/ja/helpcontent2/source/text/shared/02.po --- libreoffice-5.1.1~rc2/translations/source/ja/helpcontent2/source/text/shared/02.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ja/helpcontent2/source/text/shared/02.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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 @@ "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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/ja/sw/source/ui/utlui.po libreoffice-5.1.2~rc2/translations/source/ja/sw/source/ui/utlui.po --- libreoffice-5.1.1~rc2/translations/source/ja/sw/source/ui/utlui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ja/sw/source/ui/utlui.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\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-19 01:45+0200\n" +"POT-Creation-Date: 2016-03-29 16:07+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff -Nru libreoffice-5.1.1~rc2/translations/source/ja/sw/uiconfig/swriter/ui.po libreoffice-5.1.2~rc2/translations/source/ja/sw/uiconfig/swriter/ui.po --- libreoffice-5.1.1~rc2/translations/source/ja/sw/uiconfig/swriter/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ja/sw/uiconfig/swriter/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 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-20 22:46+0000\n" +"PO-Revision-Date: 2016-02-26 11:18+0000\n" "Last-Translator: baffclan <baffclan@yahoo.co.jp>\n" "Language-Team: none\n" "Language: ja\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1456008369.000000\n" +"X-POOTLE-MTIME: 1456485525.000000\n" #: abstractdialog.ui msgctxt "" @@ -14542,7 +14542,7 @@ "title\n" "string.text" msgid "Insert Index or Table of Contents" -msgstr "" +msgstr "目次ã¨ç´¢å¼•ã®æŒ¿å…¥" #: tocdialog.ui msgctxt "" @@ -14560,7 +14560,7 @@ "label\n" "string.text" msgid "Index or Table of Contents" -msgstr "" +msgstr "目次ã¨ç´¢å¼•" #: tocdialog.ui msgctxt "" @@ -15136,7 +15136,7 @@ "label\n" "string.text" msgid "Create Index or Table of Contents" -msgstr "" +msgstr "目次ã¨ç´¢å¼•ã®ä½œæˆ" #: tocindexpage.ui msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/ka/cui/uiconfig/ui.po libreoffice-5.1.2~rc2/translations/source/ka/cui/uiconfig/ui.po --- libreoffice-5.1.1~rc2/translations/source/ka/cui/uiconfig/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ka/cui/uiconfig/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 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 @@ "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 @@ 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 @@ 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 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/ka/dbaccess/uiconfig/ui.po libreoffice-5.1.2~rc2/translations/source/ka/dbaccess/uiconfig/ui.po --- libreoffice-5.1.1~rc2/translations/source/ka/dbaccess/uiconfig/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ka/dbaccess/uiconfig/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,15 +4,17 @@ "Project-Id-Version: PACKAGE VERSION\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 @@ 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 @@ msgstr "" #: queryfilterdialog.ui +#, fuzzy msgctxt "" "queryfilterdialog.ui\n" "cond1\n" "4\n" "stringlist.text" msgid ">" -msgstr "" +msgstr ">" #: queryfilterdialog.ui msgctxt "" @@ -3015,58 +3020,64 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/ka/extensions/uiconfig/sabpilot/ui.po libreoffice-5.1.2~rc2/translations/source/ka/extensions/uiconfig/sabpilot/ui.po --- libreoffice-5.1.1~rc2/translations/source/ka/extensions/uiconfig/sabpilot/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ka/extensions/uiconfig/sabpilot/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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 @@ "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 @@ msgstr "" #: gridfieldsselectionpage.ui +#, fuzzy msgctxt "" "gridfieldsselectionpage.ui\n" "fieldright\n" "label\n" "string.text" msgid "->" -msgstr "" +msgstr "->" #: gridfieldsselectionpage.ui msgctxt "" @@ -299,13 +300,14 @@ msgstr "" #: gridfieldsselectionpage.ui +#, fuzzy msgctxt "" "gridfieldsselectionpage.ui\n" "fieldleft\n" "label\n" "string.text" msgid "<-" -msgstr "" +msgstr "<-" #: gridfieldsselectionpage.ui msgctxt "" @@ -380,22 +382,24 @@ 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 @@ msgstr "" #: tableselectionpage.ui +#, fuzzy msgctxt "" "tableselectionpage.ui\n" "search\n" "label\n" "string.text" msgid "_..." -msgstr "" +msgstr "_..." #: tableselectionpage.ui msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/ka/formula/source/core/resource.po libreoffice-5.1.2~rc2/translations/source/ka/formula/source/core/resource.po --- libreoffice-5.1.1~rc2/translations/source/ka/formula/source/core/resource.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ka/formula/source/core/resource.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\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-29 16:07+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff -Nru libreoffice-5.1.1~rc2/translations/source/ka/helpcontent2/source/text/scalc/01.po libreoffice-5.1.2~rc2/translations/source/ka/helpcontent2/source/text/scalc/01.po --- libreoffice-5.1.1~rc2/translations/source/ka/helpcontent2/source/text/scalc/01.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ka/helpcontent2/source/text/scalc/01.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 @@ "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 @@ 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 @@ msgstr "ნáƒáƒ™áƒšáƒ”ბირვიდრე" #: 12090103.xhp +#, fuzzy msgctxt "" "12090103.xhp\n" "par_id3155335\n" "17\n" "help.text" msgid ">" -msgstr "" +msgstr ">" #: 12090103.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/ka/helpcontent2/source/text/scalc/05.po libreoffice-5.1.2~rc2/translations/source/ka/helpcontent2/source/text/scalc/05.po --- libreoffice-5.1.1~rc2/translations/source/ka/helpcontent2/source/text/scalc/05.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ka/helpcontent2/source/text/scalc/05.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 @@ "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 @@ msgstr "áƒáƒ®áƒ¡áƒœáƒ" #: 02140000.xhp +#, fuzzy msgctxt "" "02140000.xhp\n" "par_id1668467\n" "help.text" msgid "###" -msgstr "" +msgstr "###" #: 02140000.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/ka/helpcontent2/source/text/shared/00.po libreoffice-5.1.2~rc2/translations/source/ka/helpcontent2/source/text/shared/00.po --- libreoffice-5.1.1~rc2/translations/source/ka/helpcontent2/source/text/shared/00.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ka/helpcontent2/source/text/shared/00.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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 @@ "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 @@ msgstr "" #: 00000021.xhp +#, fuzzy msgctxt "" "00000021.xhp\n" "par_id100120091238112\n" "help.text" msgid "-" -msgstr "" +msgstr "-" #: 00000021.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/ka/helpcontent2/source/text/shared/01.po libreoffice-5.1.2~rc2/translations/source/ka/helpcontent2/source/text/shared/01.po --- libreoffice-5.1.1~rc2/translations/source/ka/helpcontent2/source/text/shared/01.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ka/helpcontent2/source/text/shared/01.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 @@ "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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/ka/helpcontent2/source/text/shared/02.po libreoffice-5.1.2~rc2/translations/source/ka/helpcontent2/source/text/shared/02.po --- libreoffice-5.1.1~rc2/translations/source/ka/helpcontent2/source/text/shared/02.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ka/helpcontent2/source/text/shared/02.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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 @@ "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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/ka/helpcontent2/source/text/shared/autopi.po libreoffice-5.1.2~rc2/translations/source/ka/helpcontent2/source/text/shared/autopi.po --- libreoffice-5.1.1~rc2/translations/source/ka/helpcontent2/source/text/shared/autopi.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ka/helpcontent2/source/text/shared/autopi.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 @@ "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 @@ 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 @@ 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 @@ msgstr "" #: 01090100.xhp +#, fuzzy msgctxt "" "01090100.xhp\n" "par_idN1074A\n" "help.text" msgid "^" -msgstr "" +msgstr "^" #: 01090100.xhp msgctxt "" @@ -4524,13 +4527,14 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/ka/helpcontent2/source/text/shared/explorer/database.po libreoffice-5.1.2~rc2/translations/source/ka/helpcontent2/source/text/shared/explorer/database.po --- libreoffice-5.1.1~rc2/translations/source/ka/helpcontent2/source/text/shared/explorer/database.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ka/helpcontent2/source/text/shared/explorer/database.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 @@ "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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ msgstr "" #: querywizard04.xhp +#, fuzzy msgctxt "" "querywizard04.xhp\n" "par_idN105F1\n" "help.text" msgid "-" -msgstr "" +msgstr "-" #: querywizard04.xhp msgctxt "" @@ -14505,12 +14511,13 @@ msgstr "" #: tablewizard02.xhp +#, fuzzy msgctxt "" "tablewizard02.xhp\n" "par_idN10574\n" "help.text" msgid "-" -msgstr "" +msgstr "-" #: tablewizard02.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/ka/helpcontent2/source/text/smath/01.po libreoffice-5.1.2~rc2/translations/source/ka/helpcontent2/source/text/smath/01.po --- libreoffice-5.1.1~rc2/translations/source/ka/helpcontent2/source/text/smath/01.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ka/helpcontent2/source/text/smath/01.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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 @@ "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 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/ka/helpcontent2/source/text/swriter/01.po libreoffice-5.1.2~rc2/translations/source/ka/helpcontent2/source/text/swriter/01.po --- libreoffice-5.1.1~rc2/translations/source/ka/helpcontent2/source/text/swriter/01.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ka/helpcontent2/source/text/swriter/01.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 @@ "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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/ka/helpcontent2/source/text/swriter/02.po libreoffice-5.1.2~rc2/translations/source/ka/helpcontent2/source/text/swriter/02.po --- libreoffice-5.1.1~rc2/translations/source/ka/helpcontent2/source/text/swriter/02.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ka/helpcontent2/source/text/swriter/02.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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 @@ "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 @@ msgstr "გáƒáƒ›áƒáƒ™áƒšáƒ”ბáƒ" #: 14020000.xhp +#, fuzzy msgctxt "" "14020000.xhp\n" "par_id3150087\n" "12\n" "help.text" msgid "-" -msgstr "" +msgstr "-" #: 14020000.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/ka/instsetoo_native/inc_openoffice/windows/msi_languages.po libreoffice-5.1.2~rc2/translations/source/ka/instsetoo_native/inc_openoffice/windows/msi_languages.po --- libreoffice-5.1.1~rc2/translations/source/ka/instsetoo_native/inc_openoffice/windows/msi_languages.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ka/instsetoo_native/inc_openoffice/windows/msi_languages.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\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-19 20:52+0200\n" +"POT-Creation-Date: 2016-03-29 16:07+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff -Nru libreoffice-5.1.1~rc2/translations/source/ka/librelogo/source/pythonpath.po libreoffice-5.1.2~rc2/translations/source/ka/librelogo/source/pythonpath.po --- libreoffice-5.1.1~rc2/translations/source/ka/librelogo/source/pythonpath.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ka/librelogo/source/pythonpath.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,18 +3,18 @@ msgstr "" "Project-Id-Version: LibO 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 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/ka/officecfg/registry/data/org/openoffice/Office.po libreoffice-5.1.2~rc2/translations/source/ka/officecfg/registry/data/org/openoffice/Office.po --- libreoffice-5.1.1~rc2/translations/source/ka/officecfg/registry/data/org/openoffice/Office.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ka/officecfg/registry/data/org/openoffice/Office.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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 @@ "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 @@ msgstr "" #: PresentationMinimizer.xcu +#, fuzzy msgctxt "" "PresentationMinimizer.xcu\n" "..PresentationMinimizer.Strings\n" "STR_FILESIZESEPARATOR\n" "value.text" msgid "." -msgstr "" +msgstr "." #: PresentationMinimizer.xcu msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/ka/reportdesign/uiconfig/dbreport/ui.po libreoffice-5.1.2~rc2/translations/source/ka/reportdesign/uiconfig/dbreport/ui.po --- libreoffice-5.1.1~rc2/translations/source/ka/reportdesign/uiconfig/dbreport/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ka/reportdesign/uiconfig/dbreport/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 @@ "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 @@ msgstr "" #: conditionwin.ui +#, fuzzy msgctxt "" "conditionwin.ui\n" "lhsButton\n" "label\n" "string.text" msgid "..." -msgstr "" +msgstr "..." #: conditionwin.ui msgctxt "" @@ -215,13 +216,14 @@ msgstr "" #: conditionwin.ui +#, fuzzy msgctxt "" "conditionwin.ui\n" "rhsButton\n" "label\n" "string.text" msgid "..." -msgstr "" +msgstr "..." #: conditionwin.ui msgctxt "" @@ -278,13 +280,14 @@ msgstr "" #: conditionwin.ui +#, fuzzy msgctxt "" "conditionwin.ui\n" "removeButton\n" "label\n" "string.text" msgid "-" -msgstr "" +msgstr "-" #: conditionwin.ui msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/ka/sc/source/ui/src.po libreoffice-5.1.2~rc2/translations/source/ka/sc/source/ui/src.po --- libreoffice-5.1.1~rc2/translations/source/ka/sc/source/ui/src.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ka/sc/source/ui/src.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 @@ "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 @@ msgstr "ტექსტის áƒáƒ¢áƒ áƒ˜áƒ‘უტები" #: globstr.src +#, fuzzy msgctxt "" "globstr.src\n" "RID_GLOBSTR\n" "STR_HFCMD_DELIMITER\n" "string.text" msgid "\\" -msgstr "" +msgstr "\\" #: globstr.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/ka/scaddins/source/analysis.po libreoffice-5.1.2~rc2/translations/source/ka/scaddins/source/analysis.po --- libreoffice-5.1.1~rc2/translations/source/ka/scaddins/source/analysis.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ka/scaddins/source/analysis.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-11-24 04:38-0500\n" +"POT-Creation-Date: 2016-03-29 16:07+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff -Nru libreoffice-5.1.1~rc2/translations/source/ka/sd/source/ui/app.po libreoffice-5.1.2~rc2/translations/source/ka/sd/source/ui/app.po --- libreoffice-5.1.1~rc2/translations/source/ka/sd/source/ui/app.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ka/sd/source/ui/app.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 @@ "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 @@ msgstr "<რიცხვი>" #: strings.src +#, fuzzy msgctxt "" "strings.src\n" "STR_FIELD_PLACEHOLDER_COUNT\n" "string.text" msgid "<count>" -msgstr "" +msgstr "<count>" #: strings.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/ka/sd/uiconfig/simpress/ui.po libreoffice-5.1.2~rc2/translations/source/ka/sd/uiconfig/simpress/ui.po --- libreoffice-5.1.1~rc2/translations/source/ka/sd/uiconfig/simpress/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ka/sd/uiconfig/simpress/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 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 @@ "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 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/ka/starmath/source.po libreoffice-5.1.2~rc2/translations/source/ka/starmath/source.po --- libreoffice-5.1.1~rc2/translations/source/ka/starmath/source.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ka/starmath/source.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\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-12 13:26+0200\n" +"POT-Creation-Date: 2016-03-29 16:07+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff -Nru libreoffice-5.1.1~rc2/translations/source/ka/sw/source/core/undo.po libreoffice-5.1.2~rc2/translations/source/ka/sw/source/core/undo.po --- libreoffice-5.1.1~rc2/translations/source/ka/sw/source/core/undo.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ka/sw/source/core/undo.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 @@ "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 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/ka/sw/source/ui/dbui.po libreoffice-5.1.2~rc2/translations/source/ka/sw/source/ui/dbui.po --- libreoffice-5.1.1~rc2/translations/source/ka/sw/source/ui/dbui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ka/sw/source/ui/dbui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 @@ "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 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/ka/sw/source/ui/index.po libreoffice-5.1.2~rc2/translations/source/ka/sw/source/ui/index.po --- libreoffice-5.1.1~rc2/translations/source/ka/sw/source/ui/index.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ka/sw/source/ui/index.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,17 +3,18 @@ msgstr "" "Project-Id-Version: PACKAGE 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 @@ 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 @@ msgstr "" #: cnttab.src +#, fuzzy msgctxt "" "cnttab.src\n" "STR_TOKEN_PAGE_NUMS\n" "string.text" msgid "#" -msgstr "" +msgstr "#" #: cnttab.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/ka/sw/source/ui/misc.po libreoffice-5.1.2~rc2/translations/source/ka/sw/source/ui/misc.po --- libreoffice-5.1.1~rc2/translations/source/ka/sw/source/ui/misc.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ka/sw/source/ui/misc.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 @@ "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 @@ msgstr "კáƒáƒ¢áƒ”გáƒáƒ áƒ˜áƒ˜áƒ¡ წáƒáƒ¨áƒšáƒ" #: glossary.src +#, fuzzy msgctxt "" "glossary.src\n" "STR_QUERY_DELETE_GROUP2\n" "string.text" msgid "?" -msgstr "" +msgstr "?" #: glossary.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/ka/sw/source/ui/utlui.po libreoffice-5.1.2~rc2/translations/source/ka/sw/source/ui/utlui.po --- libreoffice-5.1.1~rc2/translations/source/ka/sw/source/ui/utlui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ka/sw/source/ui/utlui.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE 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-20 11:58+0100\n" +"POT-Creation-Date: 2016-03-29 16:07+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff -Nru libreoffice-5.1.1~rc2/translations/source/ka/sw/uiconfig/swriter/ui.po libreoffice-5.1.2~rc2/translations/source/ka/sw/uiconfig/swriter/ui.po --- libreoffice-5.1.1~rc2/translations/source/ka/sw/uiconfig/swriter/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ka/sw/uiconfig/swriter/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 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 @@ "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 @@ msgstr "გáƒáƒ“áƒáƒáƒ™áƒáƒœáƒ•áƒ”რტე ცხრილი ტექსტáƒáƒ“" #: converttexttable.ui +#, fuzzy msgctxt "" "converttexttable.ui\n" "othered\n" "text\n" "string.text" msgid "," -msgstr "" +msgstr "," #: converttexttable.ui msgctxt "" @@ -2475,13 +2476,14 @@ msgstr "" #: createaddresslist.ui +#, fuzzy msgctxt "" "createaddresslist.ui\n" "PREV\n" "label\n" "string.text" msgid "<" -msgstr "" +msgstr "<" #: createaddresslist.ui msgctxt "" @@ -2493,13 +2495,14 @@ msgstr "" #: createaddresslist.ui +#, fuzzy msgctxt "" "createaddresslist.ui\n" "NEXT\n" "label\n" "string.text" msgid ">" -msgstr "" +msgstr ">" #: createaddresslist.ui msgctxt "" @@ -4392,13 +4395,14 @@ msgstr "შენიშვნáƒ" #: fldvarpage.ui +#, fuzzy msgctxt "" "fldvarpage.ui\n" "separator\n" "text\n" "string.text" msgid "." -msgstr "" +msgstr "." #: fldvarpage.ui msgctxt "" @@ -5352,22 +5356,24 @@ 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 @@ 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 @@ msgstr "" #: mmpreparepage.ui +#, fuzzy msgctxt "" "mmpreparepage.ui\n" "prev\n" "label\n" "string.text" msgid "<" -msgstr "" +msgstr "<" #: mmpreparepage.ui msgctxt "" @@ -8634,13 +8642,14 @@ msgstr "" #: mmpreparepage.ui +#, fuzzy msgctxt "" "mmpreparepage.ui\n" "next\n" "label\n" "string.text" msgid ">" -msgstr "" +msgstr ">" #: mmpreparepage.ui #, fuzzy @@ -9485,13 +9494,14 @@ msgstr "მდებáƒáƒ áƒ”áƒáƒ‘áƒ" #: optcaptionpage.ui +#, fuzzy msgctxt "" "optcaptionpage.ui\n" "numseparator\n" "text\n" "string.text" msgid ". " -msgstr "" +msgstr ". " #: optcaptionpage.ui msgctxt "" @@ -15545,40 +15555,44 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/ka/vcl/source/src.po libreoffice-5.1.2~rc2/translations/source/ka/vcl/source/src.po --- libreoffice-5.1.1~rc2/translations/source/ka/vcl/source/src.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ka/vcl/source/src.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 @@ "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 @@ 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 @@ 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 @@ 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 @@ msgstr "" #: units.src +#, fuzzy msgctxt "" "units.src\n" "SV_FUNIT_STRINGS\n" "°\n" "itemlist.text" msgid "°" -msgstr "" +msgstr "°" #: units.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/ka/wizards/source/formwizard.po libreoffice-5.1.2~rc2/translations/source/ka/wizards/source/formwizard.po --- libreoffice-5.1.1~rc2/translations/source/ka/wizards/source/formwizard.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ka/wizards/source/formwizard.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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 @@ "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 @@ msgstr "" #: dbwizres.src +#, fuzzy msgctxt "" "dbwizres.src\n" "RID_DB_TABLE_WIZARD_START + 22\n" "string.text" msgid "-" -msgstr "" +msgstr "-" #: dbwizres.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/kk/filter/source/config/fragments/filters.po libreoffice-5.1.2~rc2/translations/source/kk/filter/source/config/fragments/filters.po --- libreoffice-5.1.1~rc2/translations/source/kk/filter/source/config/fragments/filters.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/kk/filter/source/config/fragments/filters.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\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 @@ "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 @@ 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 @@ msgstr "PDF - Portable Document Format" #: writer_web_png_Export.xcu -#, fuzzy msgctxt "" "writer_web_png_Export.xcu\n" "writer_web_png_Export\n" diff -Nru libreoffice-5.1.1~rc2/translations/source/kk/formula/source/core/resource.po libreoffice-5.1.2~rc2/translations/source/kk/formula/source/core/resource.po --- libreoffice-5.1.1~rc2/translations/source/kk/formula/source/core/resource.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/kk/formula/source/core/resource.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\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-29 16:07+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff -Nru libreoffice-5.1.1~rc2/translations/source/kk/sfx2/uiconfig/ui.po libreoffice-5.1.2~rc2/translations/source/kk/sfx2/uiconfig/ui.po --- libreoffice-5.1.1~rc2/translations/source/kk/sfx2/uiconfig/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/kk/sfx2/uiconfig/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: LibO 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 @@ "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 @@ msgstr "Файлды а_шу" #: startcenter.ui -#, fuzzy msgctxt "" "startcenter.ui\n" "open_remote\n" diff -Nru libreoffice-5.1.1~rc2/translations/source/kk/sw/source/ui/utlui.po libreoffice-5.1.2~rc2/translations/source/kk/sw/source/ui/utlui.po --- libreoffice-5.1.1~rc2/translations/source/kk/sw/source/ui/utlui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/kk/sw/source/ui/utlui.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-11-24 04:38-0500\n" +"POT-Creation-Date: 2016-03-29 16:07+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff -Nru libreoffice-5.1.1~rc2/translations/source/kk/vcl/source/src.po libreoffice-5.1.2~rc2/translations/source/kk/vcl/source/src.po --- libreoffice-5.1.1~rc2/translations/source/kk/vcl/source/src.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/kk/vcl/source/src.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 @@ "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 @@ "SV_APP_CPUTHREADS\n" "string.text" msgid "CPU Threads: " -msgstr "" +msgstr "ОП процеÑтер Ñаны: " #: app.src msgctxt "" @@ -30,7 +30,7 @@ "SV_APP_OSVERSION\n" "string.text" msgid "OS Version: " -msgstr "" +msgstr "ОЖ нұÑқаÑÑ‹: " #: app.src msgctxt "" @@ -38,7 +38,7 @@ "SV_APP_UIRENDER\n" "string.text" msgid "UI Render: " -msgstr "" +msgstr "ПИ бейнеленуі: " #: app.src msgctxt "" @@ -46,7 +46,7 @@ "SV_APP_GL\n" "string.text" msgid "GL" -msgstr "" +msgstr "GL" #: app.src msgctxt "" @@ -54,7 +54,7 @@ "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 -Nru libreoffice-5.1.1~rc2/translations/source/km/dbaccess/uiconfig/ui.po libreoffice-5.1.2~rc2/translations/source/km/dbaccess/uiconfig/ui.po --- libreoffice-5.1.1~rc2/translations/source/km/dbaccess/uiconfig/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/km/dbaccess/uiconfig/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 @@ "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 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/km/extensions/uiconfig/sabpilot/ui.po libreoffice-5.1.2~rc2/translations/source/km/extensions/uiconfig/sabpilot/ui.po --- libreoffice-5.1.1~rc2/translations/source/km/extensions/uiconfig/sabpilot/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/km/extensions/uiconfig/sabpilot/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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 @@ "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 @@ msgstr "" #: gridfieldsselectionpage.ui +#, fuzzy msgctxt "" "gridfieldsselectionpage.ui\n" "fieldright\n" "label\n" "string.text" msgid "->" -msgstr "" +msgstr "->" #: gridfieldsselectionpage.ui msgctxt "" @@ -308,13 +309,14 @@ msgstr "" #: gridfieldsselectionpage.ui +#, fuzzy msgctxt "" "gridfieldsselectionpage.ui\n" "fieldleft\n" "label\n" "string.text" msgid "<-" -msgstr "" +msgstr "<-" #: gridfieldsselectionpage.ui msgctxt "" @@ -389,22 +391,24 @@ 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 @@ msgstr "" #: tableselectionpage.ui +#, fuzzy msgctxt "" "tableselectionpage.ui\n" "search\n" "label\n" "string.text" msgid "_..." -msgstr "" +msgstr "_..." #: tableselectionpage.ui msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/km/formula/source/core/resource.po libreoffice-5.1.2~rc2/translations/source/km/formula/source/core/resource.po --- libreoffice-5.1.1~rc2/translations/source/km/formula/source/core/resource.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/km/formula/source/core/resource.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\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-29 16:07+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff -Nru libreoffice-5.1.1~rc2/translations/source/km/reportdesign/uiconfig/dbreport/ui.po libreoffice-5.1.2~rc2/translations/source/km/reportdesign/uiconfig/dbreport/ui.po --- libreoffice-5.1.1~rc2/translations/source/km/reportdesign/uiconfig/dbreport/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/km/reportdesign/uiconfig/dbreport/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 @@ "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 @@ msgstr "" #: conditionwin.ui +#, fuzzy msgctxt "" "conditionwin.ui\n" "lhsButton\n" "label\n" "string.text" msgid "..." -msgstr "" +msgstr "..." #: conditionwin.ui msgctxt "" @@ -215,13 +216,14 @@ msgstr "" #: conditionwin.ui +#, fuzzy msgctxt "" "conditionwin.ui\n" "rhsButton\n" "label\n" "string.text" msgid "..." -msgstr "" +msgstr "..." #: conditionwin.ui msgctxt "" @@ -278,13 +280,14 @@ msgstr "" #: conditionwin.ui +#, fuzzy msgctxt "" "conditionwin.ui\n" "removeButton\n" "label\n" "string.text" msgid "-" -msgstr "" +msgstr "-" #: conditionwin.ui msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/km/scaddins/source/analysis.po libreoffice-5.1.2~rc2/translations/source/km/scaddins/source/analysis.po --- libreoffice-5.1.1~rc2/translations/source/km/scaddins/source/analysis.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/km/scaddins/source/analysis.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-11-24 04:38-0500\n" +"POT-Creation-Date: 2016-03-29 16:07+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff -Nru libreoffice-5.1.1~rc2/translations/source/km/sw/uiconfig/swriter/ui.po libreoffice-5.1.2~rc2/translations/source/km/sw/uiconfig/swriter/ui.po --- libreoffice-5.1.1~rc2/translations/source/km/sw/uiconfig/swriter/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/km/sw/uiconfig/swriter/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 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 @@ "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 @@ msgstr "" #: createaddresslist.ui +#, fuzzy msgctxt "" "createaddresslist.ui\n" "PREV\n" "label\n" "string.text" msgid "<" -msgstr "" +msgstr "<" #: createaddresslist.ui msgctxt "" @@ -2509,13 +2510,14 @@ msgstr "" #: createaddresslist.ui +#, fuzzy msgctxt "" "createaddresslist.ui\n" "NEXT\n" "label\n" "string.text" msgid ">" -msgstr "" +msgstr ">" #: createaddresslist.ui msgctxt "" @@ -8608,13 +8610,14 @@ msgstr "" #: mmpreparepage.ui +#, fuzzy msgctxt "" "mmpreparepage.ui\n" "prev\n" "label\n" "string.text" msgid "<" -msgstr "" +msgstr "<" #: mmpreparepage.ui msgctxt "" @@ -8626,13 +8629,14 @@ msgstr "" #: mmpreparepage.ui +#, fuzzy msgctxt "" "mmpreparepage.ui\n" "next\n" "label\n" "string.text" msgid ">" -msgstr "" +msgstr ">" #: mmpreparepage.ui #, fuzzy diff -Nru libreoffice-5.1.1~rc2/translations/source/kmr-Latn/cui/uiconfig/ui.po libreoffice-5.1.2~rc2/translations/source/kmr-Latn/cui/uiconfig/ui.po --- libreoffice-5.1.1~rc2/translations/source/kmr-Latn/cui/uiconfig/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/kmr-Latn/cui/uiconfig/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 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 @@ "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 @@ 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 @@ 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 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/kmr-Latn/dbaccess/uiconfig/ui.po libreoffice-5.1.2~rc2/translations/source/kmr-Latn/dbaccess/uiconfig/ui.po --- libreoffice-5.1.1~rc2/translations/source/kmr-Latn/dbaccess/uiconfig/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/kmr-Latn/dbaccess/uiconfig/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,17 +4,17 @@ "Project-Id-Version: LibO 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 @@ 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 @@ msgstr "" #: queryfilterdialog.ui +#, fuzzy msgctxt "" "queryfilterdialog.ui\n" "cond1\n" "4\n" "stringlist.text" msgid ">" -msgstr "" +msgstr ">" #: queryfilterdialog.ui msgctxt "" @@ -3017,58 +3020,64 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/kmr-Latn/extensions/uiconfig/sabpilot/ui.po libreoffice-5.1.2~rc2/translations/source/kmr-Latn/extensions/uiconfig/sabpilot/ui.po --- libreoffice-5.1.1~rc2/translations/source/kmr-Latn/extensions/uiconfig/sabpilot/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/kmr-Latn/extensions/uiconfig/sabpilot/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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 @@ "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 @@ msgstr "" #: gridfieldsselectionpage.ui +#, fuzzy msgctxt "" "gridfieldsselectionpage.ui\n" "fieldright\n" "label\n" "string.text" msgid "->" -msgstr "" +msgstr "->" #: gridfieldsselectionpage.ui msgctxt "" @@ -299,13 +300,14 @@ msgstr "" #: gridfieldsselectionpage.ui +#, fuzzy msgctxt "" "gridfieldsselectionpage.ui\n" "fieldleft\n" "label\n" "string.text" msgid "<-" -msgstr "" +msgstr "<-" #: gridfieldsselectionpage.ui msgctxt "" @@ -380,22 +382,24 @@ 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 @@ msgstr "" #: tableselectionpage.ui +#, fuzzy msgctxt "" "tableselectionpage.ui\n" "search\n" "label\n" "string.text" msgid "_..." -msgstr "" +msgstr "_..." #: tableselectionpage.ui msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/kmr-Latn/formula/source/core/resource.po libreoffice-5.1.2~rc2/translations/source/kmr-Latn/formula/source/core/resource.po --- libreoffice-5.1.1~rc2/translations/source/kmr-Latn/formula/source/core/resource.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/kmr-Latn/formula/source/core/resource.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\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-29 16:07+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff -Nru libreoffice-5.1.1~rc2/translations/source/kmr-Latn/instsetoo_native/inc_openoffice/windows/msi_languages.po libreoffice-5.1.2~rc2/translations/source/kmr-Latn/instsetoo_native/inc_openoffice/windows/msi_languages.po --- libreoffice-5.1.1~rc2/translations/source/kmr-Latn/instsetoo_native/inc_openoffice/windows/msi_languages.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/kmr-Latn/instsetoo_native/inc_openoffice/windows/msi_languages.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\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-19 20:52+0200\n" +"POT-Creation-Date: 2016-03-29 16:07+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff -Nru libreoffice-5.1.1~rc2/translations/source/kmr-Latn/librelogo/source/pythonpath.po libreoffice-5.1.2~rc2/translations/source/kmr-Latn/librelogo/source/pythonpath.po --- libreoffice-5.1.1~rc2/translations/source/kmr-Latn/librelogo/source/pythonpath.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/kmr-Latn/librelogo/source/pythonpath.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,18 +3,18 @@ msgstr "" "Project-Id-Version: LibO 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 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/kmr-Latn/officecfg/registry/data/org/openoffice/Office.po libreoffice-5.1.2~rc2/translations/source/kmr-Latn/officecfg/registry/data/org/openoffice/Office.po --- libreoffice-5.1.1~rc2/translations/source/kmr-Latn/officecfg/registry/data/org/openoffice/Office.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/kmr-Latn/officecfg/registry/data/org/openoffice/Office.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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 @@ "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 @@ msgstr "" #: PresentationMinimizer.xcu +#, fuzzy msgctxt "" "PresentationMinimizer.xcu\n" "..PresentationMinimizer.Strings\n" "STR_FILESIZESEPARATOR\n" "value.text" msgid "." -msgstr "" +msgstr "." #: PresentationMinimizer.xcu msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/kmr-Latn/reportdesign/uiconfig/dbreport/ui.po libreoffice-5.1.2~rc2/translations/source/kmr-Latn/reportdesign/uiconfig/dbreport/ui.po --- libreoffice-5.1.1~rc2/translations/source/kmr-Latn/reportdesign/uiconfig/dbreport/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/kmr-Latn/reportdesign/uiconfig/dbreport/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 @@ "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 @@ msgstr "" #: conditionwin.ui +#, fuzzy msgctxt "" "conditionwin.ui\n" "lhsButton\n" "label\n" "string.text" msgid "..." -msgstr "" +msgstr "..." #: conditionwin.ui msgctxt "" @@ -215,13 +216,14 @@ msgstr "" #: conditionwin.ui +#, fuzzy msgctxt "" "conditionwin.ui\n" "rhsButton\n" "label\n" "string.text" msgid "..." -msgstr "" +msgstr "..." #: conditionwin.ui msgctxt "" @@ -278,13 +280,14 @@ msgstr "" #: conditionwin.ui +#, fuzzy msgctxt "" "conditionwin.ui\n" "removeButton\n" "label\n" "string.text" msgid "-" -msgstr "" +msgstr "-" #: conditionwin.ui msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/kmr-Latn/sc/uiconfig/scalc/ui.po libreoffice-5.1.2~rc2/translations/source/kmr-Latn/sc/uiconfig/scalc/ui.po --- libreoffice-5.1.1~rc2/translations/source/kmr-Latn/sc/uiconfig/scalc/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/kmr-Latn/sc/uiconfig/scalc/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 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 @@ "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 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/kmr-Latn/scaddins/source/analysis.po libreoffice-5.1.2~rc2/translations/source/kmr-Latn/scaddins/source/analysis.po --- libreoffice-5.1.1~rc2/translations/source/kmr-Latn/scaddins/source/analysis.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/kmr-Latn/scaddins/source/analysis.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-11-24 04:38-0500\n" +"POT-Creation-Date: 2016-03-29 16:07+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff -Nru libreoffice-5.1.1~rc2/translations/source/kmr-Latn/sd/source/ui/app.po libreoffice-5.1.2~rc2/translations/source/kmr-Latn/sd/source/ui/app.po --- libreoffice-5.1.1~rc2/translations/source/kmr-Latn/sd/source/ui/app.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/kmr-Latn/sd/source/ui/app.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 @@ "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 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/kmr-Latn/sd/uiconfig/simpress/ui.po libreoffice-5.1.2~rc2/translations/source/kmr-Latn/sd/uiconfig/simpress/ui.po --- libreoffice-5.1.1~rc2/translations/source/kmr-Latn/sd/uiconfig/simpress/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/kmr-Latn/sd/uiconfig/simpress/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 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 @@ "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 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/kmr-Latn/starmath/source.po libreoffice-5.1.2~rc2/translations/source/kmr-Latn/starmath/source.po --- libreoffice-5.1.1~rc2/translations/source/kmr-Latn/starmath/source.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/kmr-Latn/starmath/source.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\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-12 13:26+0200\n" +"POT-Creation-Date: 2016-03-29 16:07+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff -Nru libreoffice-5.1.1~rc2/translations/source/kmr-Latn/sw/source/ui/dbui.po libreoffice-5.1.2~rc2/translations/source/kmr-Latn/sw/source/ui/dbui.po --- libreoffice-5.1.1~rc2/translations/source/kmr-Latn/sw/source/ui/dbui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/kmr-Latn/sw/source/ui/dbui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 @@ "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 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/kmr-Latn/sw/source/ui/index.po libreoffice-5.1.2~rc2/translations/source/kmr-Latn/sw/source/ui/index.po --- libreoffice-5.1.1~rc2/translations/source/kmr-Latn/sw/source/ui/index.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/kmr-Latn/sw/source/ui/index.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,17 +3,18 @@ msgstr "" "Project-Id-Version: PACKAGE 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 @@ 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 @@ msgstr "" #: cnttab.src +#, fuzzy msgctxt "" "cnttab.src\n" "STR_TOKEN_PAGE_NUMS\n" "string.text" msgid "#" -msgstr "" +msgstr "#" #: cnttab.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/kmr-Latn/sw/source/ui/utlui.po libreoffice-5.1.2~rc2/translations/source/kmr-Latn/sw/source/ui/utlui.po --- libreoffice-5.1.1~rc2/translations/source/kmr-Latn/sw/source/ui/utlui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/kmr-Latn/sw/source/ui/utlui.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE 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-20 11:58+0100\n" +"POT-Creation-Date: 2016-03-29 16:07+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff -Nru libreoffice-5.1.1~rc2/translations/source/kmr-Latn/sw/uiconfig/swriter/ui.po libreoffice-5.1.2~rc2/translations/source/kmr-Latn/sw/uiconfig/swriter/ui.po --- libreoffice-5.1.1~rc2/translations/source/kmr-Latn/sw/uiconfig/swriter/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/kmr-Latn/sw/uiconfig/swriter/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 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 @@ "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 @@ 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 @@ msgstr "" #: createaddresslist.ui +#, fuzzy msgctxt "" "createaddresslist.ui\n" "PREV\n" "label\n" "string.text" msgid "<" -msgstr "" +msgstr "<" #: createaddresslist.ui msgctxt "" @@ -2521,13 +2523,14 @@ msgstr "" #: createaddresslist.ui +#, fuzzy msgctxt "" "createaddresslist.ui\n" "NEXT\n" "label\n" "string.text" msgid ">" -msgstr "" +msgstr ">" #: createaddresslist.ui msgctxt "" @@ -4434,13 +4437,14 @@ msgstr "" #: fldvarpage.ui +#, fuzzy msgctxt "" "fldvarpage.ui\n" "separator\n" "text\n" "string.text" msgid "." -msgstr "" +msgstr "." #: fldvarpage.ui msgctxt "" @@ -5422,22 +5426,24 @@ 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 @@ 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 @@ 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 @@ msgstr "" #: mmpreparepage.ui +#, fuzzy msgctxt "" "mmpreparepage.ui\n" "prev\n" "label\n" "string.text" msgid "<" -msgstr "" +msgstr "<" #: mmpreparepage.ui msgctxt "" @@ -8726,13 +8735,14 @@ msgstr "" #: mmpreparepage.ui +#, fuzzy msgctxt "" "mmpreparepage.ui\n" "next\n" "label\n" "string.text" msgid ">" -msgstr "" +msgstr ">" #: mmpreparepage.ui #, fuzzy @@ -9580,13 +9590,14 @@ 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 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/kmr-Latn/vcl/source/src.po libreoffice-5.1.2~rc2/translations/source/kmr-Latn/vcl/source/src.po --- libreoffice-5.1.1~rc2/translations/source/kmr-Latn/vcl/source/src.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/kmr-Latn/vcl/source/src.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 @@ "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 @@ 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 @@ msgstr "" #: units.src +#, fuzzy msgctxt "" "units.src\n" "SV_FUNIT_STRINGS\n" "°\n" "itemlist.text" msgid "°" -msgstr "" +msgstr "°" #: units.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/kn/formula/source/core/resource.po libreoffice-5.1.2~rc2/translations/source/kn/formula/source/core/resource.po --- libreoffice-5.1.1~rc2/translations/source/kn/formula/source/core/resource.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/kn/formula/source/core/resource.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\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-29 16:07+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff -Nru libreoffice-5.1.1~rc2/translations/source/kn/sw/source/ui/dbui.po libreoffice-5.1.2~rc2/translations/source/kn/sw/source/ui/dbui.po --- libreoffice-5.1.1~rc2/translations/source/kn/sw/source/ui/dbui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/kn/sw/source/ui/dbui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,17 +4,17 @@ "Project-Id-Version: PACKAGE 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 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/kn/sw/source/ui/index.po libreoffice-5.1.2~rc2/translations/source/kn/sw/source/ui/index.po --- libreoffice-5.1.1~rc2/translations/source/kn/sw/source/ui/index.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/kn/sw/source/ui/index.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,16 +4,17 @@ "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 @@ 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 @@ msgstr "" #: cnttab.src +#, fuzzy msgctxt "" "cnttab.src\n" "STR_TOKEN_PAGE_NUMS\n" "string.text" msgid "#" -msgstr "" +msgstr "#" #: cnttab.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/kn/sw/source/uibase/dbui.po libreoffice-5.1.2~rc2/translations/source/kn/sw/source/uibase/dbui.po --- libreoffice-5.1.1~rc2/translations/source/kn/sw/source/uibase/dbui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/kn/sw/source/uibase/dbui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,17 +4,17 @@ "Project-Id-Version: PACKAGE 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 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/kn/sw/uiconfig/swriter/ui.po libreoffice-5.1.2~rc2/translations/source/kn/sw/uiconfig/swriter/ui.po --- libreoffice-5.1.1~rc2/translations/source/kn/sw/uiconfig/swriter/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/kn/sw/uiconfig/swriter/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 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 @@ "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 @@ msgstr "à²à²¨à³‚ ಇಲà³à²²" #: fldvarpage.ui +#, fuzzy msgctxt "" "fldvarpage.ui\n" "separator\n" "text\n" "string.text" msgid "." -msgstr "" +msgstr "." #: fldvarpage.ui msgctxt "" @@ -5424,22 +5425,24 @@ 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 @@ msgstr "" #: mmpreparepage.ui +#, fuzzy msgctxt "" "mmpreparepage.ui\n" "prev\n" "label\n" "string.text" msgid "<" -msgstr "" +msgstr "<" #: mmpreparepage.ui msgctxt "" @@ -8730,13 +8734,14 @@ msgstr "" #: mmpreparepage.ui +#, fuzzy msgctxt "" "mmpreparepage.ui\n" "next\n" "label\n" "string.text" msgid ">" -msgstr "" +msgstr ">" #: mmpreparepage.ui #, fuzzy @@ -15769,40 +15774,44 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/ko/dbaccess/uiconfig/ui.po libreoffice-5.1.2~rc2/translations/source/ko/dbaccess/uiconfig/ui.po --- libreoffice-5.1.1~rc2/translations/source/ko/dbaccess/uiconfig/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ko/dbaccess/uiconfig/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,15 +4,17 @@ "Project-Id-Version: PACKAGE VERSION\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 @@ 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 @@ msgstr "" #: queryfilterdialog.ui +#, fuzzy msgctxt "" "queryfilterdialog.ui\n" "cond1\n" "4\n" "stringlist.text" msgid ">" -msgstr "" +msgstr ">" #: queryfilterdialog.ui msgctxt "" @@ -3015,58 +3020,64 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/ko/extensions/uiconfig/sabpilot/ui.po libreoffice-5.1.2~rc2/translations/source/ko/extensions/uiconfig/sabpilot/ui.po --- libreoffice-5.1.1~rc2/translations/source/ko/extensions/uiconfig/sabpilot/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ko/extensions/uiconfig/sabpilot/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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 @@ "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 @@ msgstr "" #: gridfieldsselectionpage.ui +#, fuzzy msgctxt "" "gridfieldsselectionpage.ui\n" "fieldright\n" "label\n" "string.text" msgid "->" -msgstr "" +msgstr "->" #: gridfieldsselectionpage.ui msgctxt "" @@ -299,13 +300,14 @@ msgstr "" #: gridfieldsselectionpage.ui +#, fuzzy msgctxt "" "gridfieldsselectionpage.ui\n" "fieldleft\n" "label\n" "string.text" msgid "<-" -msgstr "" +msgstr "<-" #: gridfieldsselectionpage.ui msgctxt "" @@ -380,22 +382,24 @@ 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 @@ msgstr "" #: tableselectionpage.ui +#, fuzzy msgctxt "" "tableselectionpage.ui\n" "search\n" "label\n" "string.text" msgid "_..." -msgstr "" +msgstr "_..." #: tableselectionpage.ui msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/ko/formula/source/core/resource.po libreoffice-5.1.2~rc2/translations/source/ko/formula/source/core/resource.po --- libreoffice-5.1.1~rc2/translations/source/ko/formula/source/core/resource.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ko/formula/source/core/resource.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\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-29 16:07+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff -Nru libreoffice-5.1.1~rc2/translations/source/ko/helpcontent2/source/text/scalc/01.po libreoffice-5.1.2~rc2/translations/source/ko/helpcontent2/source/text/scalc/01.po --- libreoffice-5.1.1~rc2/translations/source/ko/helpcontent2/source/text/scalc/01.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ko/helpcontent2/source/text/scalc/01.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 @@ "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 @@ 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 @@ msgstr "미만" #: 12090103.xhp +#, fuzzy msgctxt "" "12090103.xhp\n" "par_id3155335\n" "17\n" "help.text" msgid ">" -msgstr "" +msgstr ">" #: 12090103.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/ko/helpcontent2/source/text/shared/00.po libreoffice-5.1.2~rc2/translations/source/ko/helpcontent2/source/text/shared/00.po --- libreoffice-5.1.1~rc2/translations/source/ko/helpcontent2/source/text/shared/00.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ko/helpcontent2/source/text/shared/00.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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 @@ "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 @@ msgstr "ODF 1.2 (확장)" #: 00000021.xhp +#, fuzzy msgctxt "" "00000021.xhp\n" "par_id100120091238112\n" "help.text" msgid "-" -msgstr "" +msgstr "-" #: 00000021.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/ko/helpcontent2/source/text/shared/01.po libreoffice-5.1.2~rc2/translations/source/ko/helpcontent2/source/text/shared/01.po --- libreoffice-5.1.1~rc2/translations/source/ko/helpcontent2/source/text/shared/01.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ko/helpcontent2/source/text/shared/01.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 @@ "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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ msgstr "설명" #: 05020301.xhp +#, fuzzy msgctxt "" "05020301.xhp\n" "par_id3152801\n" "5\n" "help.text" msgid "#" -msgstr "" +msgstr "#" #: 05020301.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/ko/helpcontent2/source/text/shared/02.po libreoffice-5.1.2~rc2/translations/source/ko/helpcontent2/source/text/shared/02.po --- libreoffice-5.1.1~rc2/translations/source/ko/helpcontent2/source/text/shared/02.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ko/helpcontent2/source/text/shared/02.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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 @@ "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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/ko/helpcontent2/source/text/shared/autopi.po libreoffice-5.1.2~rc2/translations/source/ko/helpcontent2/source/text/shared/autopi.po --- libreoffice-5.1.1~rc2/translations/source/ko/helpcontent2/source/text/shared/autopi.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ko/helpcontent2/source/text/shared/autopi.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 @@ "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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/ko/helpcontent2/source/text/shared/explorer/database.po libreoffice-5.1.2~rc2/translations/source/ko/helpcontent2/source/text/shared/explorer/database.po --- libreoffice-5.1.1~rc2/translations/source/ko/helpcontent2/source/text/shared/explorer/database.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ko/helpcontent2/source/text/shared/explorer/database.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 @@ "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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ msgstr "<ahelp hid=\".\">í•„ë“œ 정보를 편집하려면 필드를 ì„ íƒí•©ë‹ˆë‹¤.</ahelp>" #: tablewizard02.xhp +#, fuzzy msgctxt "" "tablewizard02.xhp\n" "par_idN10574\n" "help.text" msgid "-" -msgstr "" +msgstr "-" #: tablewizard02.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/ko/helpcontent2/source/text/swriter/01.po libreoffice-5.1.2~rc2/translations/source/ko/helpcontent2/source/text/swriter/01.po --- libreoffice-5.1.1~rc2/translations/source/ko/helpcontent2/source/text/swriter/01.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ko/helpcontent2/source/text/swriter/01.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 @@ "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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/ko/helpcontent2/source/text/swriter/02.po libreoffice-5.1.2~rc2/translations/source/ko/helpcontent2/source/text/swriter/02.po --- libreoffice-5.1.1~rc2/translations/source/ko/helpcontent2/source/text/swriter/02.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ko/helpcontent2/source/text/swriter/02.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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 @@ "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 @@ msgstr "뺄셈" #: 14020000.xhp +#, fuzzy msgctxt "" "14020000.xhp\n" "par_id3150087\n" "12\n" "help.text" msgid "-" -msgstr "" +msgstr "-" #: 14020000.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/ko/sw/source/ui/utlui.po libreoffice-5.1.2~rc2/translations/source/ko/sw/source/ui/utlui.po --- libreoffice-5.1.1~rc2/translations/source/ko/sw/source/ui/utlui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ko/sw/source/ui/utlui.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\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-12 13:26+0200\n" +"POT-Creation-Date: 2016-03-29 16:07+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff -Nru libreoffice-5.1.1~rc2/translations/source/kok/cui/uiconfig/ui.po libreoffice-5.1.2~rc2/translations/source/kok/cui/uiconfig/ui.po --- libreoffice-5.1.1~rc2/translations/source/kok/cui/uiconfig/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/kok/cui/uiconfig/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 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 @@ "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 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/kok/dbaccess/uiconfig/ui.po libreoffice-5.1.2~rc2/translations/source/kok/dbaccess/uiconfig/ui.po --- libreoffice-5.1.1~rc2/translations/source/kok/dbaccess/uiconfig/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/kok/dbaccess/uiconfig/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: LibO 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 @@ 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 @@ msgstr "" #: queryfilterdialog.ui +#, fuzzy msgctxt "" "queryfilterdialog.ui\n" "cond1\n" "4\n" "stringlist.text" msgid ">" -msgstr "" +msgstr ">" #: queryfilterdialog.ui msgctxt "" @@ -3016,58 +3019,64 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/kok/extensions/uiconfig/sabpilot/ui.po libreoffice-5.1.2~rc2/translations/source/kok/extensions/uiconfig/sabpilot/ui.po --- libreoffice-5.1.1~rc2/translations/source/kok/extensions/uiconfig/sabpilot/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/kok/extensions/uiconfig/sabpilot/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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 @@ "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 @@ msgstr "" #: gridfieldsselectionpage.ui +#, fuzzy msgctxt "" "gridfieldsselectionpage.ui\n" "fieldright\n" "label\n" "string.text" msgid "->" -msgstr "" +msgstr "->" #: gridfieldsselectionpage.ui msgctxt "" @@ -298,13 +299,14 @@ msgstr "" #: gridfieldsselectionpage.ui +#, fuzzy msgctxt "" "gridfieldsselectionpage.ui\n" "fieldleft\n" "label\n" "string.text" msgid "<-" -msgstr "" +msgstr "<-" #: gridfieldsselectionpage.ui msgctxt "" @@ -379,22 +381,24 @@ 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 @@ msgstr "" #: tableselectionpage.ui +#, fuzzy msgctxt "" "tableselectionpage.ui\n" "search\n" "label\n" "string.text" msgid "_..." -msgstr "" +msgstr "_..." #: tableselectionpage.ui msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/kok/formula/source/core/resource.po libreoffice-5.1.2~rc2/translations/source/kok/formula/source/core/resource.po --- libreoffice-5.1.1~rc2/translations/source/kok/formula/source/core/resource.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/kok/formula/source/core/resource.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\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-29 16:07+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff -Nru libreoffice-5.1.1~rc2/translations/source/kok/instsetoo_native/inc_openoffice/windows/msi_languages.po libreoffice-5.1.2~rc2/translations/source/kok/instsetoo_native/inc_openoffice/windows/msi_languages.po --- libreoffice-5.1.1~rc2/translations/source/kok/instsetoo_native/inc_openoffice/windows/msi_languages.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/kok/instsetoo_native/inc_openoffice/windows/msi_languages.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\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-19 20:52+0200\n" +"POT-Creation-Date: 2016-03-29 16:07+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff -Nru libreoffice-5.1.1~rc2/translations/source/kok/librelogo/source/pythonpath.po libreoffice-5.1.2~rc2/translations/source/kok/librelogo/source/pythonpath.po --- libreoffice-5.1.1~rc2/translations/source/kok/librelogo/source/pythonpath.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/kok/librelogo/source/pythonpath.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,17 +3,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: 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 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/kok/officecfg/registry/data/org/openoffice/Office.po libreoffice-5.1.2~rc2/translations/source/kok/officecfg/registry/data/org/openoffice/Office.po --- libreoffice-5.1.1~rc2/translations/source/kok/officecfg/registry/data/org/openoffice/Office.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/kok/officecfg/registry/data/org/openoffice/Office.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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 @@ "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 @@ msgstr "" #: PresentationMinimizer.xcu +#, fuzzy msgctxt "" "PresentationMinimizer.xcu\n" "..PresentationMinimizer.Strings\n" "STR_FILESIZESEPARATOR\n" "value.text" msgid "." -msgstr "" +msgstr "." #: PresentationMinimizer.xcu msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/kok/reportdesign/uiconfig/dbreport/ui.po libreoffice-5.1.2~rc2/translations/source/kok/reportdesign/uiconfig/dbreport/ui.po --- libreoffice-5.1.1~rc2/translations/source/kok/reportdesign/uiconfig/dbreport/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/kok/reportdesign/uiconfig/dbreport/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 @@ "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 @@ msgstr "" #: conditionwin.ui +#, fuzzy msgctxt "" "conditionwin.ui\n" "lhsButton\n" "label\n" "string.text" msgid "..." -msgstr "" +msgstr "..." #: conditionwin.ui msgctxt "" @@ -214,13 +215,14 @@ msgstr "" #: conditionwin.ui +#, fuzzy msgctxt "" "conditionwin.ui\n" "rhsButton\n" "label\n" "string.text" msgid "..." -msgstr "" +msgstr "..." #: conditionwin.ui msgctxt "" @@ -277,13 +279,14 @@ msgstr "" #: conditionwin.ui +#, fuzzy msgctxt "" "conditionwin.ui\n" "removeButton\n" "label\n" "string.text" msgid "-" -msgstr "" +msgstr "-" #: conditionwin.ui msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/kok/sc/uiconfig/scalc/ui.po libreoffice-5.1.2~rc2/translations/source/kok/sc/uiconfig/scalc/ui.po --- libreoffice-5.1.1~rc2/translations/source/kok/sc/uiconfig/scalc/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/kok/sc/uiconfig/scalc/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 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 @@ "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 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/kok/sd/uiconfig/simpress/ui.po libreoffice-5.1.2~rc2/translations/source/kok/sd/uiconfig/simpress/ui.po --- libreoffice-5.1.1~rc2/translations/source/kok/sd/uiconfig/simpress/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/kok/sd/uiconfig/simpress/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 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 @@ "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 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/kok/starmath/source.po libreoffice-5.1.2~rc2/translations/source/kok/starmath/source.po --- libreoffice-5.1.1~rc2/translations/source/kok/starmath/source.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/kok/starmath/source.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\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-12 13:26+0200\n" +"POT-Creation-Date: 2016-03-29 16:07+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff -Nru libreoffice-5.1.1~rc2/translations/source/kok/sw/source/ui/dbui.po libreoffice-5.1.2~rc2/translations/source/kok/sw/source/ui/dbui.po --- libreoffice-5.1.1~rc2/translations/source/kok/sw/source/ui/dbui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/kok/sw/source/ui/dbui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 @@ "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 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/kok/sw/source/ui/index.po libreoffice-5.1.2~rc2/translations/source/kok/sw/source/ui/index.po --- libreoffice-5.1.1~rc2/translations/source/kok/sw/source/ui/index.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/kok/sw/source/ui/index.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,16 +3,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-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 @@ 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 @@ msgstr "" #: cnttab.src +#, fuzzy msgctxt "" "cnttab.src\n" "STR_TOKEN_PAGE_NUMS\n" "string.text" msgid "#" -msgstr "" +msgstr "#" #: cnttab.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/kok/sw/source/ui/utlui.po libreoffice-5.1.2~rc2/translations/source/kok/sw/source/ui/utlui.po --- libreoffice-5.1.1~rc2/translations/source/kok/sw/source/ui/utlui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/kok/sw/source/ui/utlui.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE 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-20 11:58+0100\n" +"POT-Creation-Date: 2016-03-29 16:07+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff -Nru libreoffice-5.1.1~rc2/translations/source/kok/sw/uiconfig/swriter/ui.po libreoffice-5.1.2~rc2/translations/source/kok/sw/uiconfig/swriter/ui.po --- libreoffice-5.1.1~rc2/translations/source/kok/sw/uiconfig/swriter/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/kok/sw/uiconfig/swriter/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 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 @@ "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 @@ msgstr "कोषà¥à¤Ÿà¤• मजकà¥à¤°à¤¾à¤‚त रà¥à¤ªà¤¾à¤‚तरीत करात" #: converttexttable.ui +#, fuzzy msgctxt "" "converttexttable.ui\n" "othered\n" "text\n" "string.text" msgid "," -msgstr "" +msgstr "," #: converttexttable.ui msgctxt "" @@ -2504,13 +2505,14 @@ msgstr "" #: createaddresslist.ui +#, fuzzy msgctxt "" "createaddresslist.ui\n" "PREV\n" "label\n" "string.text" msgid "<" -msgstr "" +msgstr "<" #: createaddresslist.ui msgctxt "" @@ -2522,13 +2524,14 @@ msgstr "" #: createaddresslist.ui +#, fuzzy msgctxt "" "createaddresslist.ui\n" "NEXT\n" "label\n" "string.text" msgid ">" -msgstr "" +msgstr ">" #: createaddresslist.ui msgctxt "" @@ -4440,13 +4443,14 @@ msgstr "" #: fldvarpage.ui +#, fuzzy msgctxt "" "fldvarpage.ui\n" "separator\n" "text\n" "string.text" msgid "." -msgstr "" +msgstr "." #: fldvarpage.ui msgctxt "" @@ -5434,22 +5438,24 @@ 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 @@ 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 @@ 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 @@ msgstr "" #: mmpreparepage.ui +#, fuzzy msgctxt "" "mmpreparepage.ui\n" "prev\n" "label\n" "string.text" msgid "<" -msgstr "" +msgstr "<" #: mmpreparepage.ui msgctxt "" @@ -8738,13 +8747,14 @@ msgstr "" #: mmpreparepage.ui +#, fuzzy msgctxt "" "mmpreparepage.ui\n" "next\n" "label\n" "string.text" msgid ">" -msgstr "" +msgstr ">" #: mmpreparepage.ui #, fuzzy @@ -9592,13 +9602,14 @@ msgstr "सà¥à¤¥à¤¾à¤¨" #: optcaptionpage.ui +#, fuzzy msgctxt "" "optcaptionpage.ui\n" "numseparator\n" "text\n" "string.text" msgid ". " -msgstr "" +msgstr ". " #: optcaptionpage.ui #, fuzzy @@ -15728,40 +15739,44 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/kok/vcl/source/src.po libreoffice-5.1.2~rc2/translations/source/kok/vcl/source/src.po --- libreoffice-5.1.1~rc2/translations/source/kok/vcl/source/src.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/kok/vcl/source/src.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 @@ "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 @@ 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 @@ msgstr "" #: units.src +#, fuzzy msgctxt "" "units.src\n" "SV_FUNIT_STRINGS\n" "°\n" "itemlist.text" msgid "°" -msgstr "" +msgstr "°" #: units.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/ks/cui/uiconfig/ui.po libreoffice-5.1.2~rc2/translations/source/ks/cui/uiconfig/ui.po --- libreoffice-5.1.1~rc2/translations/source/ks/cui/uiconfig/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ks/cui/uiconfig/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 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 @@ "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 @@ 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 @@ 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 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/ks/dbaccess/uiconfig/ui.po libreoffice-5.1.2~rc2/translations/source/ks/dbaccess/uiconfig/ui.po --- libreoffice-5.1.1~rc2/translations/source/ks/dbaccess/uiconfig/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ks/dbaccess/uiconfig/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: LibO 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 @@ 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 @@ msgstr "" #: queryfilterdialog.ui +#, fuzzy msgctxt "" "queryfilterdialog.ui\n" "cond1\n" "4\n" "stringlist.text" msgid ">" -msgstr "" +msgstr ">" #: queryfilterdialog.ui msgctxt "" @@ -3016,58 +3019,64 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/ks/extensions/uiconfig/sabpilot/ui.po libreoffice-5.1.2~rc2/translations/source/ks/extensions/uiconfig/sabpilot/ui.po --- libreoffice-5.1.1~rc2/translations/source/ks/extensions/uiconfig/sabpilot/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ks/extensions/uiconfig/sabpilot/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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 @@ "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 @@ msgstr "" #: gridfieldsselectionpage.ui +#, fuzzy msgctxt "" "gridfieldsselectionpage.ui\n" "fieldright\n" "label\n" "string.text" msgid "->" -msgstr "" +msgstr "->" #: gridfieldsselectionpage.ui msgctxt "" @@ -298,13 +299,14 @@ msgstr "" #: gridfieldsselectionpage.ui +#, fuzzy msgctxt "" "gridfieldsselectionpage.ui\n" "fieldleft\n" "label\n" "string.text" msgid "<-" -msgstr "" +msgstr "<-" #: gridfieldsselectionpage.ui msgctxt "" @@ -379,22 +381,24 @@ 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 @@ msgstr "" #: tableselectionpage.ui +#, fuzzy msgctxt "" "tableselectionpage.ui\n" "search\n" "label\n" "string.text" msgid "_..." -msgstr "" +msgstr "_..." #: tableselectionpage.ui msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/ks/formula/source/core/resource.po libreoffice-5.1.2~rc2/translations/source/ks/formula/source/core/resource.po --- libreoffice-5.1.1~rc2/translations/source/ks/formula/source/core/resource.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ks/formula/source/core/resource.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\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-29 16:07+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff -Nru libreoffice-5.1.1~rc2/translations/source/ks/instsetoo_native/inc_openoffice/windows/msi_languages.po libreoffice-5.1.2~rc2/translations/source/ks/instsetoo_native/inc_openoffice/windows/msi_languages.po --- libreoffice-5.1.1~rc2/translations/source/ks/instsetoo_native/inc_openoffice/windows/msi_languages.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ks/instsetoo_native/inc_openoffice/windows/msi_languages.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\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-19 20:52+0200\n" +"POT-Creation-Date: 2016-03-29 16:07+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff -Nru libreoffice-5.1.1~rc2/translations/source/ks/librelogo/source/pythonpath.po libreoffice-5.1.2~rc2/translations/source/ks/librelogo/source/pythonpath.po --- libreoffice-5.1.1~rc2/translations/source/ks/librelogo/source/pythonpath.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ks/librelogo/source/pythonpath.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,17 +3,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: 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 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/ks/officecfg/registry/data/org/openoffice/Office.po libreoffice-5.1.2~rc2/translations/source/ks/officecfg/registry/data/org/openoffice/Office.po --- libreoffice-5.1.1~rc2/translations/source/ks/officecfg/registry/data/org/openoffice/Office.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ks/officecfg/registry/data/org/openoffice/Office.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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 @@ "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 @@ msgstr "" #: PresentationMinimizer.xcu +#, fuzzy msgctxt "" "PresentationMinimizer.xcu\n" "..PresentationMinimizer.Strings\n" "STR_FILESIZESEPARATOR\n" "value.text" msgid "." -msgstr "" +msgstr "." #: PresentationMinimizer.xcu msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/ks/reportdesign/uiconfig/dbreport/ui.po libreoffice-5.1.2~rc2/translations/source/ks/reportdesign/uiconfig/dbreport/ui.po --- libreoffice-5.1.1~rc2/translations/source/ks/reportdesign/uiconfig/dbreport/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ks/reportdesign/uiconfig/dbreport/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 @@ "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 @@ msgstr "" #: conditionwin.ui +#, fuzzy msgctxt "" "conditionwin.ui\n" "lhsButton\n" "label\n" "string.text" msgid "..." -msgstr "" +msgstr "..." #: conditionwin.ui msgctxt "" @@ -214,13 +215,14 @@ msgstr "" #: conditionwin.ui +#, fuzzy msgctxt "" "conditionwin.ui\n" "rhsButton\n" "label\n" "string.text" msgid "..." -msgstr "" +msgstr "..." #: conditionwin.ui msgctxt "" @@ -277,13 +279,14 @@ msgstr "" #: conditionwin.ui +#, fuzzy msgctxt "" "conditionwin.ui\n" "removeButton\n" "label\n" "string.text" msgid "-" -msgstr "" +msgstr "-" #: conditionwin.ui msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/ks/sc/uiconfig/scalc/ui.po libreoffice-5.1.2~rc2/translations/source/ks/sc/uiconfig/scalc/ui.po --- libreoffice-5.1.1~rc2/translations/source/ks/sc/uiconfig/scalc/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ks/sc/uiconfig/scalc/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 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 @@ "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 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/ks/sd/source/ui/app.po libreoffice-5.1.2~rc2/translations/source/ks/sd/source/ui/app.po --- libreoffice-5.1.1~rc2/translations/source/ks/sd/source/ui/app.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ks/sd/source/ui/app.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 @@ "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 @@ msgstr "<نمبر>" #: strings.src +#, fuzzy msgctxt "" "strings.src\n" "STR_FIELD_PLACEHOLDER_COUNT\n" "string.text" msgid "<count>" -msgstr "" +msgstr "<count>" #: strings.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/ks/sd/uiconfig/simpress/ui.po libreoffice-5.1.2~rc2/translations/source/ks/sd/uiconfig/simpress/ui.po --- libreoffice-5.1.1~rc2/translations/source/ks/sd/uiconfig/simpress/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ks/sd/uiconfig/simpress/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 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 @@ "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 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/ks/starmath/source.po libreoffice-5.1.2~rc2/translations/source/ks/starmath/source.po --- libreoffice-5.1.1~rc2/translations/source/ks/starmath/source.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ks/starmath/source.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\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-12 13:26+0200\n" +"POT-Creation-Date: 2016-03-29 16:07+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff -Nru libreoffice-5.1.1~rc2/translations/source/ks/sw/source/ui/dbui.po libreoffice-5.1.2~rc2/translations/source/ks/sw/source/ui/dbui.po --- libreoffice-5.1.1~rc2/translations/source/ks/sw/source/ui/dbui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ks/sw/source/ui/dbui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 @@ "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 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/ks/sw/source/ui/index.po libreoffice-5.1.2~rc2/translations/source/ks/sw/source/ui/index.po --- libreoffice-5.1.1~rc2/translations/source/ks/sw/source/ui/index.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ks/sw/source/ui/index.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,16 +3,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-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 @@ 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 @@ msgstr "" #: cnttab.src +#, fuzzy msgctxt "" "cnttab.src\n" "STR_TOKEN_PAGE_NUMS\n" "string.text" msgid "#" -msgstr "" +msgstr "#" #: cnttab.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/ks/sw/source/ui/utlui.po libreoffice-5.1.2~rc2/translations/source/ks/sw/source/ui/utlui.po --- libreoffice-5.1.1~rc2/translations/source/ks/sw/source/ui/utlui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ks/sw/source/ui/utlui.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE 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-20 11:58+0100\n" +"POT-Creation-Date: 2016-03-29 16:07+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff -Nru libreoffice-5.1.1~rc2/translations/source/ks/sw/uiconfig/swriter/ui.po libreoffice-5.1.2~rc2/translations/source/ks/sw/uiconfig/swriter/ui.po --- libreoffice-5.1.1~rc2/translations/source/ks/sw/uiconfig/swriter/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ks/sw/uiconfig/swriter/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 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 @@ "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 @@ msgstr "جدول متنمیں تبدیل کرو" #: converttexttable.ui +#, fuzzy msgctxt "" "converttexttable.ui\n" "othered\n" "text\n" "string.text" msgid "," -msgstr "" +msgstr "," #: converttexttable.ui msgctxt "" @@ -2502,13 +2503,14 @@ msgstr "" #: createaddresslist.ui +#, fuzzy msgctxt "" "createaddresslist.ui\n" "PREV\n" "label\n" "string.text" msgid "<" -msgstr "" +msgstr "<" #: createaddresslist.ui msgctxt "" @@ -2520,13 +2522,14 @@ msgstr "" #: createaddresslist.ui +#, fuzzy msgctxt "" "createaddresslist.ui\n" "NEXT\n" "label\n" "string.text" msgid ">" -msgstr "" +msgstr ">" #: createaddresslist.ui msgctxt "" @@ -4433,13 +4436,14 @@ msgstr "" #: fldvarpage.ui +#, fuzzy msgctxt "" "fldvarpage.ui\n" "separator\n" "text\n" "string.text" msgid "." -msgstr "" +msgstr "." #: fldvarpage.ui msgctxt "" @@ -5421,22 +5425,24 @@ 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 @@ 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 @@ 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 @@ msgstr "" #: mmpreparepage.ui +#, fuzzy msgctxt "" "mmpreparepage.ui\n" "prev\n" "label\n" "string.text" msgid "<" -msgstr "" +msgstr "<" #: mmpreparepage.ui msgctxt "" @@ -8723,13 +8732,14 @@ msgstr "" #: mmpreparepage.ui +#, fuzzy msgctxt "" "mmpreparepage.ui\n" "next\n" "label\n" "string.text" msgid ">" -msgstr "" +msgstr ">" #: mmpreparepage.ui #, fuzzy @@ -9577,13 +9587,14 @@ msgstr "مقام" #: optcaptionpage.ui +#, fuzzy msgctxt "" "optcaptionpage.ui\n" "numseparator\n" "text\n" "string.text" msgid ". " -msgstr "" +msgstr ". " #: optcaptionpage.ui #, fuzzy @@ -15701,40 +15712,44 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/ks/vcl/source/src.po libreoffice-5.1.2~rc2/translations/source/ks/vcl/source/src.po --- libreoffice-5.1.1~rc2/translations/source/ks/vcl/source/src.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ks/vcl/source/src.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 @@ "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 @@ 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 @@ msgstr "" #: units.src +#, fuzzy msgctxt "" "units.src\n" "SV_FUNIT_STRINGS\n" "°\n" "itemlist.text" msgid "°" -msgstr "" +msgstr "°" #: units.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/lo/cui/uiconfig/ui.po libreoffice-5.1.2~rc2/translations/source/lo/cui/uiconfig/ui.po --- libreoffice-5.1.1~rc2/translations/source/lo/cui/uiconfig/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/lo/cui/uiconfig/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 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 @@ "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 @@ 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 @@ 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 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/lo/dbaccess/uiconfig/ui.po libreoffice-5.1.2~rc2/translations/source/lo/dbaccess/uiconfig/ui.po --- libreoffice-5.1.1~rc2/translations/source/lo/dbaccess/uiconfig/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/lo/dbaccess/uiconfig/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,17 +4,17 @@ "Project-Id-Version: LibO 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 @@ 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 @@ msgstr "" #: queryfilterdialog.ui +#, fuzzy msgctxt "" "queryfilterdialog.ui\n" "cond1\n" "4\n" "stringlist.text" msgid ">" -msgstr "" +msgstr ">" #: queryfilterdialog.ui msgctxt "" @@ -3017,58 +3020,64 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/lo/extensions/uiconfig/sabpilot/ui.po libreoffice-5.1.2~rc2/translations/source/lo/extensions/uiconfig/sabpilot/ui.po --- libreoffice-5.1.1~rc2/translations/source/lo/extensions/uiconfig/sabpilot/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/lo/extensions/uiconfig/sabpilot/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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 @@ "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 @@ msgstr "" #: gridfieldsselectionpage.ui +#, fuzzy msgctxt "" "gridfieldsselectionpage.ui\n" "fieldright\n" "label\n" "string.text" msgid "->" -msgstr "" +msgstr "->" #: gridfieldsselectionpage.ui msgctxt "" @@ -299,13 +300,14 @@ msgstr "" #: gridfieldsselectionpage.ui +#, fuzzy msgctxt "" "gridfieldsselectionpage.ui\n" "fieldleft\n" "label\n" "string.text" msgid "<-" -msgstr "" +msgstr "<-" #: gridfieldsselectionpage.ui msgctxt "" @@ -380,22 +382,24 @@ 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 @@ msgstr "" #: tableselectionpage.ui +#, fuzzy msgctxt "" "tableselectionpage.ui\n" "search\n" "label\n" "string.text" msgid "_..." -msgstr "" +msgstr "_..." #: tableselectionpage.ui msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/lo/formula/source/core/resource.po libreoffice-5.1.2~rc2/translations/source/lo/formula/source/core/resource.po --- libreoffice-5.1.1~rc2/translations/source/lo/formula/source/core/resource.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/lo/formula/source/core/resource.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\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-29 16:07+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff -Nru libreoffice-5.1.1~rc2/translations/source/lo/librelogo/source/pythonpath.po libreoffice-5.1.2~rc2/translations/source/lo/librelogo/source/pythonpath.po --- libreoffice-5.1.1~rc2/translations/source/lo/librelogo/source/pythonpath.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/lo/librelogo/source/pythonpath.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,16 +3,18 @@ msgstr "" "Project-Id-Version: LibO 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 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/lo/officecfg/registry/data/org/openoffice/Office.po libreoffice-5.1.2~rc2/translations/source/lo/officecfg/registry/data/org/openoffice/Office.po --- libreoffice-5.1.1~rc2/translations/source/lo/officecfg/registry/data/org/openoffice/Office.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/lo/officecfg/registry/data/org/openoffice/Office.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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 @@ "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 @@ msgstr "" #: PresentationMinimizer.xcu +#, fuzzy msgctxt "" "PresentationMinimizer.xcu\n" "..PresentationMinimizer.Strings\n" "STR_FILESIZESEPARATOR\n" "value.text" msgid "." -msgstr "" +msgstr "." #: PresentationMinimizer.xcu msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/lo/reportdesign/uiconfig/dbreport/ui.po libreoffice-5.1.2~rc2/translations/source/lo/reportdesign/uiconfig/dbreport/ui.po --- libreoffice-5.1.1~rc2/translations/source/lo/reportdesign/uiconfig/dbreport/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/lo/reportdesign/uiconfig/dbreport/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 @@ "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 @@ msgstr "" #: conditionwin.ui +#, fuzzy msgctxt "" "conditionwin.ui\n" "lhsButton\n" "label\n" "string.text" msgid "..." -msgstr "" +msgstr "..." #: conditionwin.ui msgctxt "" @@ -215,13 +216,14 @@ msgstr "" #: conditionwin.ui +#, fuzzy msgctxt "" "conditionwin.ui\n" "rhsButton\n" "label\n" "string.text" msgid "..." -msgstr "" +msgstr "..." #: conditionwin.ui msgctxt "" @@ -278,13 +280,14 @@ msgstr "" #: conditionwin.ui +#, fuzzy msgctxt "" "conditionwin.ui\n" "removeButton\n" "label\n" "string.text" msgid "-" -msgstr "" +msgstr "-" #: conditionwin.ui msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/lo/sc/uiconfig/scalc/ui.po libreoffice-5.1.2~rc2/translations/source/lo/sc/uiconfig/scalc/ui.po --- libreoffice-5.1.1~rc2/translations/source/lo/sc/uiconfig/scalc/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/lo/sc/uiconfig/scalc/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 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 @@ "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 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/lo/sd/source/ui/app.po libreoffice-5.1.2~rc2/translations/source/lo/sd/source/ui/app.po --- libreoffice-5.1.1~rc2/translations/source/lo/sd/source/ui/app.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/lo/sd/source/ui/app.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 @@ "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 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/lo/sd/uiconfig/simpress/ui.po libreoffice-5.1.2~rc2/translations/source/lo/sd/uiconfig/simpress/ui.po --- libreoffice-5.1.1~rc2/translations/source/lo/sd/uiconfig/simpress/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/lo/sd/uiconfig/simpress/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 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 @@ "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 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/lo/starmath/source.po libreoffice-5.1.2~rc2/translations/source/lo/starmath/source.po --- libreoffice-5.1.1~rc2/translations/source/lo/starmath/source.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/lo/starmath/source.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\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-12 13:26+0200\n" +"POT-Creation-Date: 2016-03-29 16:07+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff -Nru libreoffice-5.1.1~rc2/translations/source/lo/sw/source/ui/dbui.po libreoffice-5.1.2~rc2/translations/source/lo/sw/source/ui/dbui.po --- libreoffice-5.1.1~rc2/translations/source/lo/sw/source/ui/dbui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/lo/sw/source/ui/dbui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 @@ "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 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/lo/sw/source/ui/index.po libreoffice-5.1.2~rc2/translations/source/lo/sw/source/ui/index.po --- libreoffice-5.1.1~rc2/translations/source/lo/sw/source/ui/index.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/lo/sw/source/ui/index.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,17 +3,18 @@ msgstr "" "Project-Id-Version: PACKAGE 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 @@ 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 @@ msgstr "" #: cnttab.src +#, fuzzy msgctxt "" "cnttab.src\n" "STR_TOKEN_PAGE_NUMS\n" "string.text" msgid "#" -msgstr "" +msgstr "#" #: cnttab.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/lo/sw/uiconfig/swriter/ui.po libreoffice-5.1.2~rc2/translations/source/lo/sw/uiconfig/swriter/ui.po --- libreoffice-5.1.1~rc2/translations/source/lo/sw/uiconfig/swriter/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/lo/sw/uiconfig/swriter/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 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 @@ "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 @@ msgstr "ປ່ຽນຕາຕະລາງເປັນຂà»à»‰àº„ວາມ" #: converttexttable.ui +#, fuzzy msgctxt "" "converttexttable.ui\n" "othered\n" "text\n" "string.text" msgid "," -msgstr "" +msgstr "," #: converttexttable.ui msgctxt "" @@ -2503,13 +2504,14 @@ msgstr "" #: createaddresslist.ui +#, fuzzy msgctxt "" "createaddresslist.ui\n" "PREV\n" "label\n" "string.text" msgid "<" -msgstr "" +msgstr "<" #: createaddresslist.ui msgctxt "" @@ -2521,13 +2523,14 @@ msgstr "" #: createaddresslist.ui +#, fuzzy msgctxt "" "createaddresslist.ui\n" "NEXT\n" "label\n" "string.text" msgid ">" -msgstr "" +msgstr ">" #: createaddresslist.ui msgctxt "" @@ -4434,13 +4437,14 @@ msgstr "" #: fldvarpage.ui +#, fuzzy msgctxt "" "fldvarpage.ui\n" "separator\n" "text\n" "string.text" msgid "." -msgstr "" +msgstr "." #: fldvarpage.ui msgctxt "" @@ -5422,22 +5426,24 @@ 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 @@ 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 @@ 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 @@ msgstr "" #: mmpreparepage.ui +#, fuzzy msgctxt "" "mmpreparepage.ui\n" "prev\n" "label\n" "string.text" msgid "<" -msgstr "" +msgstr "<" #: mmpreparepage.ui msgctxt "" @@ -8727,13 +8736,14 @@ msgstr "" #: mmpreparepage.ui +#, fuzzy msgctxt "" "mmpreparepage.ui\n" "next\n" "label\n" "string.text" msgid ">" -msgstr "" +msgstr ">" #: mmpreparepage.ui #, fuzzy @@ -9581,13 +9591,14 @@ msgstr "ຕà»à»ˆàº²à»à»œà»ˆàº‡" #: optcaptionpage.ui +#, fuzzy msgctxt "" "optcaptionpage.ui\n" "numseparator\n" "text\n" "string.text" msgid ". " -msgstr "" +msgstr ". " #: optcaptionpage.ui #, fuzzy @@ -15710,40 +15721,44 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/lo/vcl/source/src.po libreoffice-5.1.2~rc2/translations/source/lo/vcl/source/src.po --- libreoffice-5.1.1~rc2/translations/source/lo/vcl/source/src.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/lo/vcl/source/src.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 @@ "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 @@ 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 @@ msgstr "" #: units.src +#, fuzzy msgctxt "" "units.src\n" "SV_FUNIT_STRINGS\n" "°\n" "itemlist.text" msgid "°" -msgstr "" +msgstr "°" #: units.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/lt/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-5.1.2~rc2/translations/source/lt/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-5.1.1~rc2/translations/source/lt/officecfg/registry/data/org/openoffice/Office/UI.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/lt/officecfg/registry/data/org/openoffice/Office/UI.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\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 @@ "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 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/lt/sd/uiconfig/simpress/ui.po libreoffice-5.1.2~rc2/translations/source/lt/sd/uiconfig/simpress/ui.po --- libreoffice-5.1.1~rc2/translations/source/lt/sd/uiconfig/simpress/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/lt/sd/uiconfig/simpress/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: LibO 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 @@ "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 @@ msgstr ">>" #: definecustomslideshow.ui +#, fuzzy msgctxt "" "definecustomslideshow.ui\n" "remove\n" "label\n" "string.text" msgid "<<" -msgstr "" +msgstr "<<" #: dlgfield.ui msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/lt/sw/uiconfig/swriter/ui.po libreoffice-5.1.2~rc2/translations/source/lt/sw/uiconfig/swriter/ui.po --- libreoffice-5.1.1~rc2/translations/source/lt/sw/uiconfig/swriter/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/lt/sw/uiconfig/swriter/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 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 @@ "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 @@ msgstr "Paversti lentelÄ™ į tekstÄ…" #: converttexttable.ui +#, fuzzy msgctxt "" "converttexttable.ui\n" "othered\n" "text\n" "string.text" msgid "," -msgstr "" +msgstr "," #: converttexttable.ui msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/lv/cui/source/tabpages.po libreoffice-5.1.2~rc2/translations/source/lv/cui/source/tabpages.po --- libreoffice-5.1.1~rc2/translations/source/lv/cui/source/tabpages.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/lv/cui/source/tabpages.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "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 @@ "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 @@ "Letter\n" "itemlist.text" msgid "Letter" -msgstr "Letter" +msgstr "VÄ“stule" #: page.src msgctxt "" @@ -575,7 +575,7 @@ "Letter\n" "itemlist.text" msgid "Letter" -msgstr "Letter" +msgstr "VÄ“stule" #: page.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/lv/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-5.1.2~rc2/translations/source/lv/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-5.1.1~rc2/translations/source/lv/officecfg/registry/data/org/openoffice/Office/UI.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/lv/officecfg/registry/data/org/openoffice/Office/UI.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "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 @@ "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 @@ "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 -Nru libreoffice-5.1.1~rc2/translations/source/mai/cui/uiconfig/ui.po libreoffice-5.1.2~rc2/translations/source/mai/cui/uiconfig/ui.po --- libreoffice-5.1.1~rc2/translations/source/mai/cui/uiconfig/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/mai/cui/uiconfig/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 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 @@ "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 @@ 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 @@ 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 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/mai/dbaccess/uiconfig/ui.po libreoffice-5.1.2~rc2/translations/source/mai/dbaccess/uiconfig/ui.po --- libreoffice-5.1.1~rc2/translations/source/mai/dbaccess/uiconfig/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/mai/dbaccess/uiconfig/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: LibO 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 @@ 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 @@ msgstr "" #: queryfilterdialog.ui +#, fuzzy msgctxt "" "queryfilterdialog.ui\n" "cond1\n" "4\n" "stringlist.text" msgid ">" -msgstr "" +msgstr ">" #: queryfilterdialog.ui msgctxt "" @@ -3016,58 +3019,64 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/mai/extensions/uiconfig/sabpilot/ui.po libreoffice-5.1.2~rc2/translations/source/mai/extensions/uiconfig/sabpilot/ui.po --- libreoffice-5.1.1~rc2/translations/source/mai/extensions/uiconfig/sabpilot/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/mai/extensions/uiconfig/sabpilot/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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 @@ "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 @@ msgstr "" #: gridfieldsselectionpage.ui +#, fuzzy msgctxt "" "gridfieldsselectionpage.ui\n" "fieldright\n" "label\n" "string.text" msgid "->" -msgstr "" +msgstr "->" #: gridfieldsselectionpage.ui msgctxt "" @@ -298,13 +299,14 @@ msgstr "" #: gridfieldsselectionpage.ui +#, fuzzy msgctxt "" "gridfieldsselectionpage.ui\n" "fieldleft\n" "label\n" "string.text" msgid "<-" -msgstr "" +msgstr "<-" #: gridfieldsselectionpage.ui msgctxt "" @@ -379,22 +381,24 @@ 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 @@ msgstr "" #: tableselectionpage.ui +#, fuzzy msgctxt "" "tableselectionpage.ui\n" "search\n" "label\n" "string.text" msgid "_..." -msgstr "" +msgstr "_..." #: tableselectionpage.ui msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/mai/formula/source/core/resource.po libreoffice-5.1.2~rc2/translations/source/mai/formula/source/core/resource.po --- libreoffice-5.1.1~rc2/translations/source/mai/formula/source/core/resource.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/mai/formula/source/core/resource.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\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-29 16:07+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff -Nru libreoffice-5.1.1~rc2/translations/source/mai/librelogo/source/pythonpath.po libreoffice-5.1.2~rc2/translations/source/mai/librelogo/source/pythonpath.po --- libreoffice-5.1.1~rc2/translations/source/mai/librelogo/source/pythonpath.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/mai/librelogo/source/pythonpath.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,17 +3,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: 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 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/mai/officecfg/registry/data/org/openoffice/Office.po libreoffice-5.1.2~rc2/translations/source/mai/officecfg/registry/data/org/openoffice/Office.po --- libreoffice-5.1.1~rc2/translations/source/mai/officecfg/registry/data/org/openoffice/Office.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/mai/officecfg/registry/data/org/openoffice/Office.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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 @@ "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 @@ msgstr "" #: PresentationMinimizer.xcu +#, fuzzy msgctxt "" "PresentationMinimizer.xcu\n" "..PresentationMinimizer.Strings\n" "STR_FILESIZESEPARATOR\n" "value.text" msgid "." -msgstr "" +msgstr "." #: PresentationMinimizer.xcu msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/mai/reportdesign/uiconfig/dbreport/ui.po libreoffice-5.1.2~rc2/translations/source/mai/reportdesign/uiconfig/dbreport/ui.po --- libreoffice-5.1.1~rc2/translations/source/mai/reportdesign/uiconfig/dbreport/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/mai/reportdesign/uiconfig/dbreport/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 @@ "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 @@ msgstr "" #: conditionwin.ui +#, fuzzy msgctxt "" "conditionwin.ui\n" "lhsButton\n" "label\n" "string.text" msgid "..." -msgstr "" +msgstr "..." #: conditionwin.ui msgctxt "" @@ -214,13 +215,14 @@ msgstr "" #: conditionwin.ui +#, fuzzy msgctxt "" "conditionwin.ui\n" "rhsButton\n" "label\n" "string.text" msgid "..." -msgstr "" +msgstr "..." #: conditionwin.ui msgctxt "" @@ -277,13 +279,14 @@ msgstr "" #: conditionwin.ui +#, fuzzy msgctxt "" "conditionwin.ui\n" "removeButton\n" "label\n" "string.text" msgid "-" -msgstr "" +msgstr "-" #: conditionwin.ui msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/mai/sc/uiconfig/scalc/ui.po libreoffice-5.1.2~rc2/translations/source/mai/sc/uiconfig/scalc/ui.po --- libreoffice-5.1.1~rc2/translations/source/mai/sc/uiconfig/scalc/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/mai/sc/uiconfig/scalc/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 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 @@ "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 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/mai/sd/source/ui/app.po libreoffice-5.1.2~rc2/translations/source/mai/sd/source/ui/app.po --- libreoffice-5.1.1~rc2/translations/source/mai/sd/source/ui/app.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/mai/sd/source/ui/app.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 @@ "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 @@ msgstr "<संखà¥à¤¯à¤¾>" #: strings.src +#, fuzzy msgctxt "" "strings.src\n" "STR_FIELD_PLACEHOLDER_COUNT\n" "string.text" msgid "<count>" -msgstr "" +msgstr "<count>" #: strings.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/mai/sd/uiconfig/simpress/ui.po libreoffice-5.1.2~rc2/translations/source/mai/sd/uiconfig/simpress/ui.po --- libreoffice-5.1.1~rc2/translations/source/mai/sd/uiconfig/simpress/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/mai/sd/uiconfig/simpress/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 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 @@ "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 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/mai/starmath/source.po libreoffice-5.1.2~rc2/translations/source/mai/starmath/source.po --- libreoffice-5.1.1~rc2/translations/source/mai/starmath/source.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/mai/starmath/source.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\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-12 13:26+0200\n" +"POT-Creation-Date: 2016-03-29 16:07+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff -Nru libreoffice-5.1.1~rc2/translations/source/mai/sw/source/ui/dbui.po libreoffice-5.1.2~rc2/translations/source/mai/sw/source/ui/dbui.po --- libreoffice-5.1.1~rc2/translations/source/mai/sw/source/ui/dbui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/mai/sw/source/ui/dbui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 @@ "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 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/mai/sw/source/ui/index.po libreoffice-5.1.2~rc2/translations/source/mai/sw/source/ui/index.po --- libreoffice-5.1.1~rc2/translations/source/mai/sw/source/ui/index.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/mai/sw/source/ui/index.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,16 +3,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-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 @@ 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 @@ msgstr "" #: cnttab.src +#, fuzzy msgctxt "" "cnttab.src\n" "STR_TOKEN_PAGE_NUMS\n" "string.text" msgid "#" -msgstr "" +msgstr "#" #: cnttab.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/mai/sw/source/ui/utlui.po libreoffice-5.1.2~rc2/translations/source/mai/sw/source/ui/utlui.po --- libreoffice-5.1.1~rc2/translations/source/mai/sw/source/ui/utlui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/mai/sw/source/ui/utlui.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE 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-20 11:58+0100\n" +"POT-Creation-Date: 2016-03-29 16:07+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff -Nru libreoffice-5.1.1~rc2/translations/source/mai/sw/uiconfig/swriter/ui.po libreoffice-5.1.2~rc2/translations/source/mai/sw/uiconfig/swriter/ui.po --- libreoffice-5.1.1~rc2/translations/source/mai/sw/uiconfig/swriter/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/mai/sw/uiconfig/swriter/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 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 @@ "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 @@ msgstr "सारणीकेठपाठमे बदलू" #: converttexttable.ui +#, fuzzy msgctxt "" "converttexttable.ui\n" "othered\n" "text\n" "string.text" msgid "," -msgstr "" +msgstr "," #: converttexttable.ui msgctxt "" @@ -2502,13 +2503,14 @@ msgstr "" #: createaddresslist.ui +#, fuzzy msgctxt "" "createaddresslist.ui\n" "PREV\n" "label\n" "string.text" msgid "<" -msgstr "" +msgstr "<" #: createaddresslist.ui msgctxt "" @@ -2520,13 +2522,14 @@ msgstr "" #: createaddresslist.ui +#, fuzzy msgctxt "" "createaddresslist.ui\n" "NEXT\n" "label\n" "string.text" msgid ">" -msgstr "" +msgstr ">" #: createaddresslist.ui msgctxt "" @@ -4433,13 +4436,14 @@ msgstr "" #: fldvarpage.ui +#, fuzzy msgctxt "" "fldvarpage.ui\n" "separator\n" "text\n" "string.text" msgid "." -msgstr "" +msgstr "." #: fldvarpage.ui msgctxt "" @@ -5421,22 +5425,24 @@ 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 @@ 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 @@ 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 @@ msgstr "" #: mmpreparepage.ui +#, fuzzy msgctxt "" "mmpreparepage.ui\n" "prev\n" "label\n" "string.text" msgid "<" -msgstr "" +msgstr "<" #: mmpreparepage.ui msgctxt "" @@ -8723,13 +8732,14 @@ msgstr "" #: mmpreparepage.ui +#, fuzzy msgctxt "" "mmpreparepage.ui\n" "next\n" "label\n" "string.text" msgid ">" -msgstr "" +msgstr ">" #: mmpreparepage.ui #, fuzzy @@ -9577,13 +9587,14 @@ msgstr "सà¥à¤¥à¤¿à¤¤à¤¿" #: optcaptionpage.ui +#, fuzzy msgctxt "" "optcaptionpage.ui\n" "numseparator\n" "text\n" "string.text" msgid ". " -msgstr "" +msgstr ". " #: optcaptionpage.ui #, fuzzy @@ -15703,40 +15714,44 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/mai/vcl/source/src.po libreoffice-5.1.2~rc2/translations/source/mai/vcl/source/src.po --- libreoffice-5.1.1~rc2/translations/source/mai/vcl/source/src.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/mai/vcl/source/src.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 @@ "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 @@ 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 @@ msgstr "" #: units.src +#, fuzzy msgctxt "" "units.src\n" "SV_FUNIT_STRINGS\n" "°\n" "itemlist.text" msgid "°" -msgstr "" +msgstr "°" #: units.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/mk/cui/uiconfig/ui.po libreoffice-5.1.2~rc2/translations/source/mk/cui/uiconfig/ui.po --- libreoffice-5.1.1~rc2/translations/source/mk/cui/uiconfig/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/mk/cui/uiconfig/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 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 @@ "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 @@ 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 @@ 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 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/mk/dbaccess/uiconfig/ui.po libreoffice-5.1.2~rc2/translations/source/mk/dbaccess/uiconfig/ui.po --- libreoffice-5.1.1~rc2/translations/source/mk/dbaccess/uiconfig/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/mk/dbaccess/uiconfig/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,17 +4,17 @@ "Project-Id-Version: LibO 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 @@ 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 @@ msgstr "" #: queryfilterdialog.ui +#, fuzzy msgctxt "" "queryfilterdialog.ui\n" "cond1\n" "4\n" "stringlist.text" msgid ">" -msgstr "" +msgstr ">" #: queryfilterdialog.ui msgctxt "" @@ -3017,58 +3020,64 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/mk/extensions/uiconfig/sabpilot/ui.po libreoffice-5.1.2~rc2/translations/source/mk/extensions/uiconfig/sabpilot/ui.po --- libreoffice-5.1.1~rc2/translations/source/mk/extensions/uiconfig/sabpilot/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/mk/extensions/uiconfig/sabpilot/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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 @@ "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 @@ msgstr "" #: gridfieldsselectionpage.ui +#, fuzzy msgctxt "" "gridfieldsselectionpage.ui\n" "fieldright\n" "label\n" "string.text" msgid "->" -msgstr "" +msgstr "->" #: gridfieldsselectionpage.ui msgctxt "" @@ -299,13 +300,14 @@ msgstr "" #: gridfieldsselectionpage.ui +#, fuzzy msgctxt "" "gridfieldsselectionpage.ui\n" "fieldleft\n" "label\n" "string.text" msgid "<-" -msgstr "" +msgstr "<-" #: gridfieldsselectionpage.ui msgctxt "" @@ -380,22 +382,24 @@ 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 @@ msgstr "" #: tableselectionpage.ui +#, fuzzy msgctxt "" "tableselectionpage.ui\n" "search\n" "label\n" "string.text" msgid "_..." -msgstr "" +msgstr "_..." #: tableselectionpage.ui msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/mk/formula/source/core/resource.po libreoffice-5.1.2~rc2/translations/source/mk/formula/source/core/resource.po --- libreoffice-5.1.1~rc2/translations/source/mk/formula/source/core/resource.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/mk/formula/source/core/resource.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\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-29 16:07+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff -Nru libreoffice-5.1.1~rc2/translations/source/mk/helpcontent2/source/text/scalc/01.po libreoffice-5.1.2~rc2/translations/source/mk/helpcontent2/source/text/scalc/01.po --- libreoffice-5.1.1~rc2/translations/source/mk/helpcontent2/source/text/scalc/01.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/mk/helpcontent2/source/text/scalc/01.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 @@ "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 @@ 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 @@ msgstr "помало од" #: 12090103.xhp +#, fuzzy msgctxt "" "12090103.xhp\n" "par_id3155335\n" "17\n" "help.text" msgid ">" -msgstr "" +msgstr ">" #: 12090103.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/mk/helpcontent2/source/text/shared/00.po libreoffice-5.1.2~rc2/translations/source/mk/helpcontent2/source/text/shared/00.po --- libreoffice-5.1.1~rc2/translations/source/mk/helpcontent2/source/text/shared/00.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/mk/helpcontent2/source/text/shared/00.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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 @@ "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 @@ msgstr "" #: 00000021.xhp +#, fuzzy msgctxt "" "00000021.xhp\n" "par_id100120091238112\n" "help.text" msgid "-" -msgstr "" +msgstr "-" #: 00000021.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/mk/helpcontent2/source/text/shared/01.po libreoffice-5.1.2~rc2/translations/source/mk/helpcontent2/source/text/shared/01.po --- libreoffice-5.1.1~rc2/translations/source/mk/helpcontent2/source/text/shared/01.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/mk/helpcontent2/source/text/shared/01.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 @@ "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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ msgstr "Explanation" #: 05020301.xhp +#, fuzzy msgctxt "" "05020301.xhp\n" "par_id3152801\n" "5\n" "help.text" msgid "#" -msgstr "" +msgstr "#" #: 05020301.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/mk/helpcontent2/source/text/shared/02.po libreoffice-5.1.2~rc2/translations/source/mk/helpcontent2/source/text/shared/02.po --- libreoffice-5.1.1~rc2/translations/source/mk/helpcontent2/source/text/shared/02.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/mk/helpcontent2/source/text/shared/02.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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 @@ "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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/mk/helpcontent2/source/text/shared/autopi.po libreoffice-5.1.2~rc2/translations/source/mk/helpcontent2/source/text/shared/autopi.po --- libreoffice-5.1.1~rc2/translations/source/mk/helpcontent2/source/text/shared/autopi.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/mk/helpcontent2/source/text/shared/autopi.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 @@ "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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/mk/helpcontent2/source/text/shared/explorer/database.po libreoffice-5.1.2~rc2/translations/source/mk/helpcontent2/source/text/shared/explorer/database.po --- libreoffice-5.1.1~rc2/translations/source/mk/helpcontent2/source/text/shared/explorer/database.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/mk/helpcontent2/source/text/shared/explorer/database.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 @@ "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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/mk/helpcontent2/source/text/swriter/01.po libreoffice-5.1.2~rc2/translations/source/mk/helpcontent2/source/text/swriter/01.po --- libreoffice-5.1.1~rc2/translations/source/mk/helpcontent2/source/text/swriter/01.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/mk/helpcontent2/source/text/swriter/01.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 @@ "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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/mk/helpcontent2/source/text/swriter/02.po libreoffice-5.1.2~rc2/translations/source/mk/helpcontent2/source/text/swriter/02.po --- libreoffice-5.1.1~rc2/translations/source/mk/helpcontent2/source/text/swriter/02.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/mk/helpcontent2/source/text/swriter/02.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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 @@ "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 @@ msgstr "Одземање" #: 14020000.xhp +#, fuzzy msgctxt "" "14020000.xhp\n" "par_id3150087\n" "12\n" "help.text" msgid "-" -msgstr "" +msgstr "-" #: 14020000.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/mk/librelogo/source/pythonpath.po libreoffice-5.1.2~rc2/translations/source/mk/librelogo/source/pythonpath.po --- libreoffice-5.1.1~rc2/translations/source/mk/librelogo/source/pythonpath.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/mk/librelogo/source/pythonpath.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,16 +3,18 @@ msgstr "" "Project-Id-Version: LibO 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 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/mk/officecfg/registry/data/org/openoffice/Office.po libreoffice-5.1.2~rc2/translations/source/mk/officecfg/registry/data/org/openoffice/Office.po --- libreoffice-5.1.1~rc2/translations/source/mk/officecfg/registry/data/org/openoffice/Office.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/mk/officecfg/registry/data/org/openoffice/Office.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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 @@ "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 @@ msgstr "" #: PresentationMinimizer.xcu +#, fuzzy msgctxt "" "PresentationMinimizer.xcu\n" "..PresentationMinimizer.Strings\n" "STR_FILESIZESEPARATOR\n" "value.text" msgid "." -msgstr "" +msgstr "." #: PresentationMinimizer.xcu msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/mk/reportdesign/uiconfig/dbreport/ui.po libreoffice-5.1.2~rc2/translations/source/mk/reportdesign/uiconfig/dbreport/ui.po --- libreoffice-5.1.1~rc2/translations/source/mk/reportdesign/uiconfig/dbreport/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/mk/reportdesign/uiconfig/dbreport/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 @@ "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 @@ msgstr "" #: conditionwin.ui +#, fuzzy msgctxt "" "conditionwin.ui\n" "lhsButton\n" "label\n" "string.text" msgid "..." -msgstr "" +msgstr "..." #: conditionwin.ui msgctxt "" @@ -215,13 +216,14 @@ msgstr "" #: conditionwin.ui +#, fuzzy msgctxt "" "conditionwin.ui\n" "rhsButton\n" "label\n" "string.text" msgid "..." -msgstr "" +msgstr "..." #: conditionwin.ui msgctxt "" @@ -278,13 +280,14 @@ msgstr "" #: conditionwin.ui +#, fuzzy msgctxt "" "conditionwin.ui\n" "removeButton\n" "label\n" "string.text" msgid "-" -msgstr "" +msgstr "-" #: conditionwin.ui msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/mk/sc/uiconfig/scalc/ui.po libreoffice-5.1.2~rc2/translations/source/mk/sc/uiconfig/scalc/ui.po --- libreoffice-5.1.1~rc2/translations/source/mk/sc/uiconfig/scalc/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/mk/sc/uiconfig/scalc/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 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 @@ "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 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/mk/sd/source/ui/app.po libreoffice-5.1.2~rc2/translations/source/mk/sd/source/ui/app.po --- libreoffice-5.1.1~rc2/translations/source/mk/sd/source/ui/app.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/mk/sd/source/ui/app.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 @@ "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 @@ msgstr "<број>" #: strings.src +#, fuzzy msgctxt "" "strings.src\n" "STR_FIELD_PLACEHOLDER_COUNT\n" "string.text" msgid "<count>" -msgstr "" +msgstr "<count>" #: strings.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/mk/sd/uiconfig/simpress/ui.po libreoffice-5.1.2~rc2/translations/source/mk/sd/uiconfig/simpress/ui.po --- libreoffice-5.1.1~rc2/translations/source/mk/sd/uiconfig/simpress/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/mk/sd/uiconfig/simpress/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 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 @@ "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 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/mk/sw/source/ui/dbui.po libreoffice-5.1.2~rc2/translations/source/mk/sw/source/ui/dbui.po --- libreoffice-5.1.1~rc2/translations/source/mk/sw/source/ui/dbui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/mk/sw/source/ui/dbui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 @@ "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 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/mk/sw/source/ui/index.po libreoffice-5.1.2~rc2/translations/source/mk/sw/source/ui/index.po --- libreoffice-5.1.1~rc2/translations/source/mk/sw/source/ui/index.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/mk/sw/source/ui/index.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,17 +3,18 @@ msgstr "" "Project-Id-Version: PACKAGE 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 @@ 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 @@ msgstr "" #: cnttab.src +#, fuzzy msgctxt "" "cnttab.src\n" "STR_TOKEN_PAGE_NUMS\n" "string.text" msgid "#" -msgstr "" +msgstr "#" #: cnttab.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/mk/sw/source/ui/utlui.po libreoffice-5.1.2~rc2/translations/source/mk/sw/source/ui/utlui.po --- libreoffice-5.1.1~rc2/translations/source/mk/sw/source/ui/utlui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/mk/sw/source/ui/utlui.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE 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-20 11:58+0100\n" +"POT-Creation-Date: 2016-03-29 16:07+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff -Nru libreoffice-5.1.1~rc2/translations/source/mk/sw/uiconfig/swriter/ui.po libreoffice-5.1.2~rc2/translations/source/mk/sw/uiconfig/swriter/ui.po --- libreoffice-5.1.1~rc2/translations/source/mk/sw/uiconfig/swriter/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/mk/sw/uiconfig/swriter/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 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 @@ "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 @@ msgstr "Претворање табела во текÑÑ‚" #: converttexttable.ui +#, fuzzy msgctxt "" "converttexttable.ui\n" "othered\n" "text\n" "string.text" msgid "," -msgstr "" +msgstr "," #: converttexttable.ui msgctxt "" @@ -2503,13 +2504,14 @@ msgstr "" #: createaddresslist.ui +#, fuzzy msgctxt "" "createaddresslist.ui\n" "PREV\n" "label\n" "string.text" msgid "<" -msgstr "" +msgstr "<" #: createaddresslist.ui msgctxt "" @@ -2521,13 +2523,14 @@ msgstr "" #: createaddresslist.ui +#, fuzzy msgctxt "" "createaddresslist.ui\n" "NEXT\n" "label\n" "string.text" msgid ">" -msgstr "" +msgstr ">" #: createaddresslist.ui msgctxt "" @@ -4434,13 +4437,14 @@ msgstr "" #: fldvarpage.ui +#, fuzzy msgctxt "" "fldvarpage.ui\n" "separator\n" "text\n" "string.text" msgid "." -msgstr "" +msgstr "." #: fldvarpage.ui msgctxt "" @@ -5422,22 +5426,24 @@ 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 @@ 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 @@ 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 @@ msgstr "" #: mmpreparepage.ui +#, fuzzy msgctxt "" "mmpreparepage.ui\n" "prev\n" "label\n" "string.text" msgid "<" -msgstr "" +msgstr "<" #: mmpreparepage.ui msgctxt "" @@ -8726,13 +8735,14 @@ msgstr "" #: mmpreparepage.ui +#, fuzzy msgctxt "" "mmpreparepage.ui\n" "next\n" "label\n" "string.text" msgid ">" -msgstr "" +msgstr ">" #: mmpreparepage.ui #, fuzzy @@ -9580,13 +9590,14 @@ msgstr "Позиција" #: optcaptionpage.ui +#, fuzzy msgctxt "" "optcaptionpage.ui\n" "numseparator\n" "text\n" "string.text" msgid ". " -msgstr "" +msgstr ". " #: optcaptionpage.ui #, fuzzy @@ -15706,40 +15717,44 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/mk/vcl/source/src.po libreoffice-5.1.2~rc2/translations/source/mk/vcl/source/src.po --- libreoffice-5.1.1~rc2/translations/source/mk/vcl/source/src.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/mk/vcl/source/src.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 @@ "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 @@ 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 @@ msgstr "" #: units.src +#, fuzzy msgctxt "" "units.src\n" "SV_FUNIT_STRINGS\n" "°\n" "itemlist.text" msgid "°" -msgstr "" +msgstr "°" #: units.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/ml/cui/uiconfig/ui.po libreoffice-5.1.2~rc2/translations/source/ml/cui/uiconfig/ui.po --- libreoffice-5.1.1~rc2/translations/source/ml/cui/uiconfig/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ml/cui/uiconfig/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: LibO 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 @@ "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 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/ml/dbaccess/uiconfig/ui.po libreoffice-5.1.2~rc2/translations/source/ml/dbaccess/uiconfig/ui.po --- libreoffice-5.1.1~rc2/translations/source/ml/dbaccess/uiconfig/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ml/dbaccess/uiconfig/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\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 @@ "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 @@ 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 @@ msgstr "" #: queryfilterdialog.ui +#, fuzzy msgctxt "" "queryfilterdialog.ui\n" "cond1\n" "4\n" "stringlist.text" msgid ">" -msgstr "" +msgstr ">" #: queryfilterdialog.ui msgctxt "" @@ -3022,58 +3025,64 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/ml/extensions/uiconfig/sabpilot/ui.po libreoffice-5.1.2~rc2/translations/source/ml/extensions/uiconfig/sabpilot/ui.po --- libreoffice-5.1.1~rc2/translations/source/ml/extensions/uiconfig/sabpilot/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ml/extensions/uiconfig/sabpilot/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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 @@ "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 @@ msgstr "" #: gridfieldsselectionpage.ui +#, fuzzy msgctxt "" "gridfieldsselectionpage.ui\n" "fieldright\n" "label\n" "string.text" msgid "->" -msgstr "" +msgstr "->" #: gridfieldsselectionpage.ui msgctxt "" @@ -299,13 +300,14 @@ msgstr "" #: gridfieldsselectionpage.ui +#, fuzzy msgctxt "" "gridfieldsselectionpage.ui\n" "fieldleft\n" "label\n" "string.text" msgid "<-" -msgstr "" +msgstr "<-" #: gridfieldsselectionpage.ui msgctxt "" @@ -380,22 +382,24 @@ 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 @@ msgstr "" #: tableselectionpage.ui +#, fuzzy msgctxt "" "tableselectionpage.ui\n" "search\n" "label\n" "string.text" msgid "_..." -msgstr "" +msgstr "_..." #: tableselectionpage.ui msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/ml/instsetoo_native/inc_openoffice/windows/msi_languages.po libreoffice-5.1.2~rc2/translations/source/ml/instsetoo_native/inc_openoffice/windows/msi_languages.po --- libreoffice-5.1.1~rc2/translations/source/ml/instsetoo_native/inc_openoffice/windows/msi_languages.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ml/instsetoo_native/inc_openoffice/windows/msi_languages.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\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-27 00:46+0100\n" +"POT-Creation-Date: 2016-03-29 16:07+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff -Nru libreoffice-5.1.1~rc2/translations/source/ml/officecfg/registry/data/org/openoffice/Office.po libreoffice-5.1.2~rc2/translations/source/ml/officecfg/registry/data/org/openoffice/Office.po --- libreoffice-5.1.1~rc2/translations/source/ml/officecfg/registry/data/org/openoffice/Office.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ml/officecfg/registry/data/org/openoffice/Office.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "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 @@ "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 @@ msgstr "" #: PresentationMinimizer.xcu +#, fuzzy msgctxt "" "PresentationMinimizer.xcu\n" "..PresentationMinimizer.Strings\n" "STR_FILESIZESEPARATOR\n" "value.text" msgid "." -msgstr "" +msgstr "." #: PresentationMinimizer.xcu msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/ml/reportdesign/uiconfig/dbreport/ui.po libreoffice-5.1.2~rc2/translations/source/ml/reportdesign/uiconfig/dbreport/ui.po --- libreoffice-5.1.1~rc2/translations/source/ml/reportdesign/uiconfig/dbreport/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ml/reportdesign/uiconfig/dbreport/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\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 @@ "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 @@ msgstr "" #: conditionwin.ui +#, fuzzy msgctxt "" "conditionwin.ui\n" "lhsButton\n" "label\n" "string.text" msgid "..." -msgstr "" +msgstr "..." #: conditionwin.ui msgctxt "" @@ -215,13 +216,14 @@ msgstr "" #: conditionwin.ui +#, fuzzy msgctxt "" "conditionwin.ui\n" "rhsButton\n" "label\n" "string.text" msgid "..." -msgstr "" +msgstr "..." #: conditionwin.ui msgctxt "" @@ -278,13 +280,14 @@ msgstr "" #: conditionwin.ui +#, fuzzy msgctxt "" "conditionwin.ui\n" "removeButton\n" "label\n" "string.text" msgid "-" -msgstr "" +msgstr "-" #: conditionwin.ui msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/ml/starmath/source.po libreoffice-5.1.2~rc2/translations/source/ml/starmath/source.po --- libreoffice-5.1.1~rc2/translations/source/ml/starmath/source.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ml/starmath/source.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\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-12 13:26+0200\n" +"POT-Creation-Date: 2016-03-29 16:07+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff -Nru libreoffice-5.1.1~rc2/translations/source/ml/sw/source/ui/dbui.po libreoffice-5.1.2~rc2/translations/source/ml/sw/source/ui/dbui.po --- libreoffice-5.1.1~rc2/translations/source/ml/sw/source/ui/dbui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ml/sw/source/ui/dbui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\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 @@ "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 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/ml/sw/source/ui/index.po libreoffice-5.1.2~rc2/translations/source/ml/sw/source/ui/index.po --- libreoffice-5.1.1~rc2/translations/source/ml/sw/source/ui/index.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ml/sw/source/ui/index.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,18 +3,18 @@ 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 @@ 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 @@ msgstr "" #: cnttab.src +#, fuzzy msgctxt "" "cnttab.src\n" "STR_TOKEN_PAGE_NUMS\n" "string.text" msgid "#" -msgstr "" +msgstr "#" #: cnttab.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/ml/sw/source/ui/utlui.po libreoffice-5.1.2~rc2/translations/source/ml/sw/source/ui/utlui.po --- libreoffice-5.1.1~rc2/translations/source/ml/sw/source/ui/utlui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ml/sw/source/ui/utlui.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\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-27 00:46+0100\n" +"POT-Creation-Date: 2016-03-29 16:07+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff -Nru libreoffice-5.1.1~rc2/translations/source/ml/sw/uiconfig/swriter/ui.po libreoffice-5.1.2~rc2/translations/source/ml/sw/uiconfig/swriter/ui.po --- libreoffice-5.1.1~rc2/translations/source/ml/sw/uiconfig/swriter/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ml/sw/uiconfig/swriter/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: LibO 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 @@ "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 @@ msgstr "" #: createaddresslist.ui +#, fuzzy msgctxt "" "createaddresslist.ui\n" "PREV\n" "label\n" "string.text" msgid "<" -msgstr "" +msgstr "<" #: createaddresslist.ui msgctxt "" @@ -2496,13 +2497,14 @@ msgstr "" #: createaddresslist.ui +#, fuzzy msgctxt "" "createaddresslist.ui\n" "NEXT\n" "label\n" "string.text" msgid ">" -msgstr "" +msgstr ">" #: createaddresslist.ui msgctxt "" @@ -4394,13 +4396,14 @@ msgstr "à´’à´¨àµà´¨àµà´®à´¿à´²àµà´²" #: fldvarpage.ui +#, fuzzy msgctxt "" "fldvarpage.ui\n" "separator\n" "text\n" "string.text" msgid "." -msgstr "" +msgstr "." #: fldvarpage.ui msgctxt "" @@ -5353,22 +5356,24 @@ 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 @@ msgstr "" #: mmpreparepage.ui +#, fuzzy msgctxt "" "mmpreparepage.ui\n" "prev\n" "label\n" "string.text" msgid "<" -msgstr "" +msgstr "<" #: mmpreparepage.ui msgctxt "" @@ -8632,13 +8638,14 @@ msgstr "" #: mmpreparepage.ui +#, fuzzy msgctxt "" "mmpreparepage.ui\n" "next\n" "label\n" "string.text" msgid ">" -msgstr "" +msgstr ">" #: mmpreparepage.ui #, fuzzy @@ -15544,40 +15551,44 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/mn/cui/uiconfig/ui.po libreoffice-5.1.2~rc2/translations/source/mn/cui/uiconfig/ui.po --- libreoffice-5.1.1~rc2/translations/source/mn/cui/uiconfig/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/mn/cui/uiconfig/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: LibO 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 @@ "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 @@ 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 @@ 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 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/mn/dbaccess/uiconfig/ui.po libreoffice-5.1.2~rc2/translations/source/mn/dbaccess/uiconfig/ui.po --- libreoffice-5.1.1~rc2/translations/source/mn/dbaccess/uiconfig/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/mn/dbaccess/uiconfig/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,17 +4,17 @@ "Project-Id-Version: LibO 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 @@ 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 @@ msgstr "" #: queryfilterdialog.ui +#, fuzzy msgctxt "" "queryfilterdialog.ui\n" "cond1\n" "4\n" "stringlist.text" msgid ">" -msgstr "" +msgstr ">" #: queryfilterdialog.ui msgctxt "" @@ -3017,58 +3020,64 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/mn/extensions/uiconfig/sabpilot/ui.po libreoffice-5.1.2~rc2/translations/source/mn/extensions/uiconfig/sabpilot/ui.po --- libreoffice-5.1.1~rc2/translations/source/mn/extensions/uiconfig/sabpilot/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/mn/extensions/uiconfig/sabpilot/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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 @@ "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 @@ msgstr "" #: gridfieldsselectionpage.ui +#, fuzzy msgctxt "" "gridfieldsselectionpage.ui\n" "fieldright\n" "label\n" "string.text" msgid "->" -msgstr "" +msgstr "->" #: gridfieldsselectionpage.ui msgctxt "" @@ -299,13 +300,14 @@ msgstr "" #: gridfieldsselectionpage.ui +#, fuzzy msgctxt "" "gridfieldsselectionpage.ui\n" "fieldleft\n" "label\n" "string.text" msgid "<-" -msgstr "" +msgstr "<-" #: gridfieldsselectionpage.ui msgctxt "" @@ -380,22 +382,24 @@ 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 @@ msgstr "" #: tableselectionpage.ui +#, fuzzy msgctxt "" "tableselectionpage.ui\n" "search\n" "label\n" "string.text" msgid "_..." -msgstr "" +msgstr "_..." #: tableselectionpage.ui msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/mn/librelogo/source/pythonpath.po libreoffice-5.1.2~rc2/translations/source/mn/librelogo/source/pythonpath.po --- libreoffice-5.1.1~rc2/translations/source/mn/librelogo/source/pythonpath.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/mn/librelogo/source/pythonpath.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 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 @@ "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 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/mn/officecfg/registry/data/org/openoffice/Office.po libreoffice-5.1.2~rc2/translations/source/mn/officecfg/registry/data/org/openoffice/Office.po --- libreoffice-5.1.1~rc2/translations/source/mn/officecfg/registry/data/org/openoffice/Office.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/mn/officecfg/registry/data/org/openoffice/Office.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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 @@ "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 @@ msgstr "" #: PresentationMinimizer.xcu +#, fuzzy msgctxt "" "PresentationMinimizer.xcu\n" "..PresentationMinimizer.Strings\n" "STR_FILESIZESEPARATOR\n" "value.text" msgid "." -msgstr "" +msgstr "." #: PresentationMinimizer.xcu msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/mn/reportdesign/uiconfig/dbreport/ui.po libreoffice-5.1.2~rc2/translations/source/mn/reportdesign/uiconfig/dbreport/ui.po --- libreoffice-5.1.1~rc2/translations/source/mn/reportdesign/uiconfig/dbreport/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/mn/reportdesign/uiconfig/dbreport/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\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 @@ "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 @@ msgstr "" #: conditionwin.ui +#, fuzzy msgctxt "" "conditionwin.ui\n" "lhsButton\n" "label\n" "string.text" msgid "..." -msgstr "" +msgstr "..." #: conditionwin.ui msgctxt "" @@ -215,13 +216,14 @@ msgstr "" #: conditionwin.ui +#, fuzzy msgctxt "" "conditionwin.ui\n" "rhsButton\n" "label\n" "string.text" msgid "..." -msgstr "" +msgstr "..." #: conditionwin.ui msgctxt "" @@ -278,13 +280,14 @@ msgstr "" #: conditionwin.ui +#, fuzzy msgctxt "" "conditionwin.ui\n" "removeButton\n" "label\n" "string.text" msgid "-" -msgstr "" +msgstr "-" #: conditionwin.ui msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/mn/sc/uiconfig/scalc/ui.po libreoffice-5.1.2~rc2/translations/source/mn/sc/uiconfig/scalc/ui.po --- libreoffice-5.1.1~rc2/translations/source/mn/sc/uiconfig/scalc/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/mn/sc/uiconfig/scalc/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: LibO 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 @@ "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 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/mn/sd/uiconfig/simpress/ui.po libreoffice-5.1.2~rc2/translations/source/mn/sd/uiconfig/simpress/ui.po --- libreoffice-5.1.1~rc2/translations/source/mn/sd/uiconfig/simpress/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/mn/sd/uiconfig/simpress/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 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 @@ "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 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/mn/starmath/source.po libreoffice-5.1.2~rc2/translations/source/mn/starmath/source.po --- libreoffice-5.1.1~rc2/translations/source/mn/starmath/source.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/mn/starmath/source.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\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-12 13:26+0200\n" +"POT-Creation-Date: 2016-03-29 16:07+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff -Nru libreoffice-5.1.1~rc2/translations/source/mn/sw/source/ui/dbui.po libreoffice-5.1.2~rc2/translations/source/mn/sw/source/ui/dbui.po --- libreoffice-5.1.1~rc2/translations/source/mn/sw/source/ui/dbui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/mn/sw/source/ui/dbui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 @@ "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 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/mn/sw/source/ui/index.po libreoffice-5.1.2~rc2/translations/source/mn/sw/source/ui/index.po --- libreoffice-5.1.1~rc2/translations/source/mn/sw/source/ui/index.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/mn/sw/source/ui/index.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,17 +3,18 @@ msgstr "" "Project-Id-Version: PACKAGE 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 @@ 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 @@ msgstr "" #: cnttab.src +#, fuzzy msgctxt "" "cnttab.src\n" "STR_TOKEN_PAGE_NUMS\n" "string.text" msgid "#" -msgstr "" +msgstr "#" #: cnttab.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/mn/sw/source/ui/utlui.po libreoffice-5.1.2~rc2/translations/source/mn/sw/source/ui/utlui.po --- libreoffice-5.1.1~rc2/translations/source/mn/sw/source/ui/utlui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/mn/sw/source/ui/utlui.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\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-12 13:26+0200\n" +"POT-Creation-Date: 2016-03-29 16:07+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff -Nru libreoffice-5.1.1~rc2/translations/source/mn/sw/uiconfig/swriter/ui.po libreoffice-5.1.2~rc2/translations/source/mn/sw/uiconfig/swriter/ui.po --- libreoffice-5.1.1~rc2/translations/source/mn/sw/uiconfig/swriter/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/mn/sw/uiconfig/swriter/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 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 @@ "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 @@ msgstr "Ð¥Ò¯ÑнÑгтийг бичвÑÑ€ Ñ€Ò¯Ò¯ хөрвүүлÑÑ…" #: converttexttable.ui +#, fuzzy msgctxt "" "converttexttable.ui\n" "othered\n" "text\n" "string.text" msgid "," -msgstr "" +msgstr "," #: converttexttable.ui msgctxt "" @@ -2503,13 +2504,14 @@ msgstr "" #: createaddresslist.ui +#, fuzzy msgctxt "" "createaddresslist.ui\n" "PREV\n" "label\n" "string.text" msgid "<" -msgstr "" +msgstr "<" #: createaddresslist.ui msgctxt "" @@ -2521,13 +2523,14 @@ msgstr "" #: createaddresslist.ui +#, fuzzy msgctxt "" "createaddresslist.ui\n" "NEXT\n" "label\n" "string.text" msgid ">" -msgstr "" +msgstr ">" #: createaddresslist.ui msgctxt "" @@ -4434,13 +4437,14 @@ msgstr "" #: fldvarpage.ui +#, fuzzy msgctxt "" "fldvarpage.ui\n" "separator\n" "text\n" "string.text" msgid "." -msgstr "" +msgstr "." #: fldvarpage.ui msgctxt "" @@ -5422,22 +5426,24 @@ 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 @@ 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 @@ 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 @@ msgstr "" #: mmpreparepage.ui +#, fuzzy msgctxt "" "mmpreparepage.ui\n" "prev\n" "label\n" "string.text" msgid "<" -msgstr "" +msgstr "<" #: mmpreparepage.ui msgctxt "" @@ -8725,13 +8734,14 @@ msgstr "" #: mmpreparepage.ui +#, fuzzy msgctxt "" "mmpreparepage.ui\n" "next\n" "label\n" "string.text" msgid ">" -msgstr "" +msgstr ">" #: mmpreparepage.ui #, fuzzy @@ -9579,13 +9589,14 @@ msgstr " Байрлал" #: optcaptionpage.ui +#, fuzzy msgctxt "" "optcaptionpage.ui\n" "numseparator\n" "text\n" "string.text" msgid ". " -msgstr "" +msgstr ". " #: optcaptionpage.ui #, fuzzy @@ -15706,40 +15717,44 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/mn/swext/mediawiki/help.po libreoffice-5.1.2~rc2/translations/source/mn/swext/mediawiki/help.po --- libreoffice-5.1.1~rc2/translations/source/mn/swext/mediawiki/help.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/mn/swext/mediawiki/help.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\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 @@ "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 @@ "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 -Nru libreoffice-5.1.1~rc2/translations/source/mn/vcl/source/src.po libreoffice-5.1.2~rc2/translations/source/mn/vcl/source/src.po --- libreoffice-5.1.1~rc2/translations/source/mn/vcl/source/src.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/mn/vcl/source/src.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 @@ "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 @@ 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 @@ msgstr "" #: units.src +#, fuzzy msgctxt "" "units.src\n" "SV_FUNIT_STRINGS\n" "°\n" "itemlist.text" msgid "°" -msgstr "" +msgstr "°" #: units.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/mni/cui/uiconfig/ui.po libreoffice-5.1.2~rc2/translations/source/mni/cui/uiconfig/ui.po --- libreoffice-5.1.1~rc2/translations/source/mni/cui/uiconfig/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/mni/cui/uiconfig/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 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 @@ "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 @@ 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 @@ 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 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/mni/dbaccess/uiconfig/ui.po libreoffice-5.1.2~rc2/translations/source/mni/dbaccess/uiconfig/ui.po --- libreoffice-5.1.1~rc2/translations/source/mni/dbaccess/uiconfig/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/mni/dbaccess/uiconfig/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 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 @@ "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 @@ 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 @@ msgstr "" #: queryfilterdialog.ui +#, fuzzy msgctxt "" "queryfilterdialog.ui\n" "cond1\n" "4\n" "stringlist.text" msgid ">" -msgstr "" +msgstr ">" #: queryfilterdialog.ui msgctxt "" @@ -3037,58 +3040,64 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/mni/extensions/uiconfig/sabpilot/ui.po libreoffice-5.1.2~rc2/translations/source/mni/extensions/uiconfig/sabpilot/ui.po --- libreoffice-5.1.1~rc2/translations/source/mni/extensions/uiconfig/sabpilot/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/mni/extensions/uiconfig/sabpilot/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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 @@ "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 @@ msgstr "" #: gridfieldsselectionpage.ui +#, fuzzy msgctxt "" "gridfieldsselectionpage.ui\n" "fieldright\n" "label\n" "string.text" msgid "->" -msgstr "" +msgstr "->" #: gridfieldsselectionpage.ui msgctxt "" @@ -313,13 +314,14 @@ msgstr "" #: gridfieldsselectionpage.ui +#, fuzzy msgctxt "" "gridfieldsselectionpage.ui\n" "fieldleft\n" "label\n" "string.text" msgid "<-" -msgstr "" +msgstr "<-" #: gridfieldsselectionpage.ui msgctxt "" @@ -394,22 +396,24 @@ 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 @@ msgstr "" #: tableselectionpage.ui +#, fuzzy msgctxt "" "tableselectionpage.ui\n" "search\n" "label\n" "string.text" msgid "_..." -msgstr "" +msgstr "_..." #: tableselectionpage.ui msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/mni/formula/source/core/resource.po libreoffice-5.1.2~rc2/translations/source/mni/formula/source/core/resource.po --- libreoffice-5.1.1~rc2/translations/source/mni/formula/source/core/resource.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/mni/formula/source/core/resource.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\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-29 16:07+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff -Nru libreoffice-5.1.1~rc2/translations/source/mni/instsetoo_native/inc_openoffice/windows/msi_languages.po libreoffice-5.1.2~rc2/translations/source/mni/instsetoo_native/inc_openoffice/windows/msi_languages.po --- libreoffice-5.1.1~rc2/translations/source/mni/instsetoo_native/inc_openoffice/windows/msi_languages.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/mni/instsetoo_native/inc_openoffice/windows/msi_languages.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\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-19 20:52+0200\n" +"POT-Creation-Date: 2016-03-29 16:07+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff -Nru libreoffice-5.1.1~rc2/translations/source/mni/librelogo/source/pythonpath.po libreoffice-5.1.2~rc2/translations/source/mni/librelogo/source/pythonpath.po --- libreoffice-5.1.1~rc2/translations/source/mni/librelogo/source/pythonpath.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/mni/librelogo/source/pythonpath.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,17 +3,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: 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 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/mni/officecfg/registry/data/org/openoffice/Office.po libreoffice-5.1.2~rc2/translations/source/mni/officecfg/registry/data/org/openoffice/Office.po --- libreoffice-5.1.1~rc2/translations/source/mni/officecfg/registry/data/org/openoffice/Office.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/mni/officecfg/registry/data/org/openoffice/Office.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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 @@ "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 @@ msgstr "%OLE পোতà§à¦¶à¦•à¦¶à¦¿à¦‚গী মহà§à§Ž শিনà§à¦¦à§‹à¦•à¦ªà¦¾ গà§à¦°à¦¾à¦«à¦¿à¦•à§à¦¸ শেমগৎলি..." #: PresentationMinimizer.xcu +#, fuzzy msgctxt "" "PresentationMinimizer.xcu\n" "..PresentationMinimizer.Strings\n" "STR_FILESIZESEPARATOR\n" "value.text" msgid "." -msgstr "" +msgstr "." #: PresentationMinimizer.xcu msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/mni/reportdesign/uiconfig/dbreport/ui.po libreoffice-5.1.2~rc2/translations/source/mni/reportdesign/uiconfig/dbreport/ui.po --- libreoffice-5.1.1~rc2/translations/source/mni/reportdesign/uiconfig/dbreport/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/mni/reportdesign/uiconfig/dbreport/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 @@ "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 @@ msgstr "" #: conditionwin.ui +#, fuzzy msgctxt "" "conditionwin.ui\n" "lhsButton\n" "label\n" "string.text" msgid "..." -msgstr "" +msgstr "..." #: conditionwin.ui msgctxt "" @@ -214,13 +215,14 @@ msgstr "" #: conditionwin.ui +#, fuzzy msgctxt "" "conditionwin.ui\n" "rhsButton\n" "label\n" "string.text" msgid "..." -msgstr "" +msgstr "..." #: conditionwin.ui msgctxt "" @@ -277,13 +279,14 @@ msgstr "" #: conditionwin.ui +#, fuzzy msgctxt "" "conditionwin.ui\n" "removeButton\n" "label\n" "string.text" msgid "-" -msgstr "" +msgstr "-" #: conditionwin.ui msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/mni/sc/uiconfig/scalc/ui.po libreoffice-5.1.2~rc2/translations/source/mni/sc/uiconfig/scalc/ui.po --- libreoffice-5.1.1~rc2/translations/source/mni/sc/uiconfig/scalc/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/mni/sc/uiconfig/scalc/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 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 @@ "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 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/mni/sd/uiconfig/simpress/ui.po libreoffice-5.1.2~rc2/translations/source/mni/sd/uiconfig/simpress/ui.po --- libreoffice-5.1.1~rc2/translations/source/mni/sd/uiconfig/simpress/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/mni/sd/uiconfig/simpress/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 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 @@ "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 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/mni/starmath/source.po libreoffice-5.1.2~rc2/translations/source/mni/starmath/source.po --- libreoffice-5.1.1~rc2/translations/source/mni/starmath/source.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/mni/starmath/source.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\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-12 13:26+0200\n" +"POT-Creation-Date: 2016-03-29 16:07+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff -Nru libreoffice-5.1.1~rc2/translations/source/mni/sw/source/ui/dbui.po libreoffice-5.1.2~rc2/translations/source/mni/sw/source/ui/dbui.po --- libreoffice-5.1.1~rc2/translations/source/mni/sw/source/ui/dbui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/mni/sw/source/ui/dbui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 @@ "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 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/mni/sw/source/ui/index.po libreoffice-5.1.2~rc2/translations/source/mni/sw/source/ui/index.po --- libreoffice-5.1.1~rc2/translations/source/mni/sw/source/ui/index.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/mni/sw/source/ui/index.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,16 +3,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-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 @@ 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 @@ msgstr "" #: cnttab.src +#, fuzzy msgctxt "" "cnttab.src\n" "STR_TOKEN_PAGE_NUMS\n" "string.text" msgid "#" -msgstr "" +msgstr "#" #: cnttab.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/mni/sw/source/ui/utlui.po libreoffice-5.1.2~rc2/translations/source/mni/sw/source/ui/utlui.po --- libreoffice-5.1.1~rc2/translations/source/mni/sw/source/ui/utlui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/mni/sw/source/ui/utlui.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE 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-20 11:58+0100\n" +"POT-Creation-Date: 2016-03-29 16:07+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff -Nru libreoffice-5.1.1~rc2/translations/source/mni/sw/uiconfig/swriter/ui.po libreoffice-5.1.2~rc2/translations/source/mni/sw/uiconfig/swriter/ui.po --- libreoffice-5.1.1~rc2/translations/source/mni/sw/uiconfig/swriter/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/mni/sw/uiconfig/swriter/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 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 @@ "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 @@ msgstr "তেবল তেকà§à¦¸à¦¤à§à¦¤à¦¾ ওনà§à¦¥à§‹à¦•à¦‰" #: converttexttable.ui +#, fuzzy msgctxt "" "converttexttable.ui\n" "othered\n" "text\n" "string.text" msgid "," -msgstr "" +msgstr "," #: converttexttable.ui msgctxt "" @@ -2502,13 +2503,14 @@ msgstr "" #: createaddresslist.ui +#, fuzzy msgctxt "" "createaddresslist.ui\n" "PREV\n" "label\n" "string.text" msgid "<" -msgstr "" +msgstr "<" #: createaddresslist.ui msgctxt "" @@ -2520,13 +2522,14 @@ msgstr "" #: createaddresslist.ui +#, fuzzy msgctxt "" "createaddresslist.ui\n" "NEXT\n" "label\n" "string.text" msgid ">" -msgstr "" +msgstr ">" #: createaddresslist.ui msgctxt "" @@ -4433,13 +4436,14 @@ msgstr "" #: fldvarpage.ui +#, fuzzy msgctxt "" "fldvarpage.ui\n" "separator\n" "text\n" "string.text" msgid "." -msgstr "" +msgstr "." #: fldvarpage.ui msgctxt "" @@ -5421,22 +5425,24 @@ 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 @@ 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 @@ 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 @@ msgstr "" #: mmpreparepage.ui +#, fuzzy msgctxt "" "mmpreparepage.ui\n" "prev\n" "label\n" "string.text" msgid "<" -msgstr "" +msgstr "<" #: mmpreparepage.ui msgctxt "" @@ -8723,13 +8732,14 @@ msgstr "" #: mmpreparepage.ui +#, fuzzy msgctxt "" "mmpreparepage.ui\n" "next\n" "label\n" "string.text" msgid ">" -msgstr "" +msgstr ">" #: mmpreparepage.ui #, fuzzy @@ -9577,13 +9587,14 @@ msgstr "মফম" #: optcaptionpage.ui +#, fuzzy msgctxt "" "optcaptionpage.ui\n" "numseparator\n" "text\n" "string.text" msgid ". " -msgstr "" +msgstr ". " #: optcaptionpage.ui #, fuzzy @@ -15706,40 +15717,44 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/mni/vcl/source/src.po libreoffice-5.1.2~rc2/translations/source/mni/vcl/source/src.po --- libreoffice-5.1.1~rc2/translations/source/mni/vcl/source/src.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/mni/vcl/source/src.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 @@ "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 @@ msgstr "পিকà§à¦¸à§‡à¦²" #: units.src +#, fuzzy msgctxt "" "units.src\n" "SV_FUNIT_STRINGS\n" "°\n" "itemlist.text" msgid "°" -msgstr "" +msgstr "°" #: units.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/mr/dbaccess/uiconfig/ui.po libreoffice-5.1.2~rc2/translations/source/mr/dbaccess/uiconfig/ui.po --- libreoffice-5.1.1~rc2/translations/source/mr/dbaccess/uiconfig/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/mr/dbaccess/uiconfig/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "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 @@ "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 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/mr/extensions/uiconfig/sabpilot/ui.po libreoffice-5.1.2~rc2/translations/source/mr/extensions/uiconfig/sabpilot/ui.po --- libreoffice-5.1.1~rc2/translations/source/mr/extensions/uiconfig/sabpilot/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/mr/extensions/uiconfig/sabpilot/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "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 @@ "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 @@ msgstr "" #: gridfieldsselectionpage.ui +#, fuzzy msgctxt "" "gridfieldsselectionpage.ui\n" "fieldright\n" "label\n" "string.text" msgid "->" -msgstr "" +msgstr "->" #: gridfieldsselectionpage.ui msgctxt "" @@ -308,13 +309,14 @@ msgstr "" #: gridfieldsselectionpage.ui +#, fuzzy msgctxt "" "gridfieldsselectionpage.ui\n" "fieldleft\n" "label\n" "string.text" msgid "<-" -msgstr "" +msgstr "<-" #: gridfieldsselectionpage.ui msgctxt "" @@ -389,22 +391,24 @@ 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 @@ msgstr "" #: tableselectionpage.ui +#, fuzzy msgctxt "" "tableselectionpage.ui\n" "search\n" "label\n" "string.text" msgid "_..." -msgstr "" +msgstr "_..." #: tableselectionpage.ui msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/mr/instsetoo_native/inc_openoffice/windows/msi_languages.po libreoffice-5.1.2~rc2/translations/source/mr/instsetoo_native/inc_openoffice/windows/msi_languages.po --- libreoffice-5.1.1~rc2/translations/source/mr/instsetoo_native/inc_openoffice/windows/msi_languages.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/mr/instsetoo_native/inc_openoffice/windows/msi_languages.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\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-19 20:52+0200\n" +"POT-Creation-Date: 2016-03-29 16:07+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff -Nru libreoffice-5.1.1~rc2/translations/source/mr/officecfg/registry/data/org/openoffice/Office.po libreoffice-5.1.2~rc2/translations/source/mr/officecfg/registry/data/org/openoffice/Office.po --- libreoffice-5.1.1~rc2/translations/source/mr/officecfg/registry/data/org/openoffice/Office.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/mr/officecfg/registry/data/org/openoffice/Office.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "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 @@ "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 @@ msgstr "" #: PresentationMinimizer.xcu +#, fuzzy msgctxt "" "PresentationMinimizer.xcu\n" "..PresentationMinimizer.Strings\n" "STR_FILESIZESEPARATOR\n" "value.text" msgid "." -msgstr "" +msgstr "." #: PresentationMinimizer.xcu msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/mr/reportdesign/uiconfig/dbreport/ui.po libreoffice-5.1.2~rc2/translations/source/mr/reportdesign/uiconfig/dbreport/ui.po --- libreoffice-5.1.1~rc2/translations/source/mr/reportdesign/uiconfig/dbreport/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/mr/reportdesign/uiconfig/dbreport/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "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 @@ "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 @@ msgstr "" #: conditionwin.ui +#, fuzzy msgctxt "" "conditionwin.ui\n" "lhsButton\n" "label\n" "string.text" msgid "..." -msgstr "" +msgstr "..." #: conditionwin.ui msgctxt "" @@ -215,13 +216,14 @@ msgstr "" #: conditionwin.ui +#, fuzzy msgctxt "" "conditionwin.ui\n" "rhsButton\n" "label\n" "string.text" msgid "..." -msgstr "" +msgstr "..." #: conditionwin.ui msgctxt "" @@ -278,13 +280,14 @@ msgstr "" #: conditionwin.ui +#, fuzzy msgctxt "" "conditionwin.ui\n" "removeButton\n" "label\n" "string.text" msgid "-" -msgstr "" +msgstr "-" #: conditionwin.ui msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/mr/sw/source/ui/index.po libreoffice-5.1.2~rc2/translations/source/mr/sw/source/ui/index.po --- libreoffice-5.1.1~rc2/translations/source/mr/sw/source/ui/index.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/mr/sw/source/ui/index.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,18 +3,18 @@ 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 @@ 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 @@ msgstr "" #: cnttab.src +#, fuzzy msgctxt "" "cnttab.src\n" "STR_TOKEN_PAGE_NUMS\n" "string.text" msgid "#" -msgstr "" +msgstr "#" #: cnttab.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/mr/sw/uiconfig/swriter/ui.po libreoffice-5.1.2~rc2/translations/source/mr/sw/uiconfig/swriter/ui.po --- libreoffice-5.1.1~rc2/translations/source/mr/sw/uiconfig/swriter/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/mr/sw/uiconfig/swriter/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 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 @@ "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 @@ msgstr "|<" #: createaddresslist.ui +#, fuzzy msgctxt "" "createaddresslist.ui\n" "PREV\n" "label\n" "string.text" msgid "<" -msgstr "" +msgstr "<" #: createaddresslist.ui msgctxt "" @@ -2509,13 +2510,14 @@ msgstr ">|" #: createaddresslist.ui +#, fuzzy msgctxt "" "createaddresslist.ui\n" "NEXT\n" "label\n" "string.text" msgid ">" -msgstr "" +msgstr ">" #: createaddresslist.ui msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/mr/vcl/source/src.po libreoffice-5.1.2~rc2/translations/source/mr/vcl/source/src.po --- libreoffice-5.1.1~rc2/translations/source/mr/vcl/source/src.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/mr/vcl/source/src.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "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 @@ "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 @@ 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 @@ msgstr "" #: units.src +#, fuzzy msgctxt "" "units.src\n" "SV_FUNIT_STRINGS\n" "°\n" "itemlist.text" msgid "°" -msgstr "" +msgstr "°" #: units.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/my/cui/uiconfig/ui.po libreoffice-5.1.2~rc2/translations/source/my/cui/uiconfig/ui.po --- libreoffice-5.1.1~rc2/translations/source/my/cui/uiconfig/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/my/cui/uiconfig/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 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 @@ "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 @@ 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 @@ 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 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/my/dbaccess/uiconfig/ui.po libreoffice-5.1.2~rc2/translations/source/my/dbaccess/uiconfig/ui.po --- libreoffice-5.1.1~rc2/translations/source/my/dbaccess/uiconfig/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/my/dbaccess/uiconfig/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,15 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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 @@ 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 @@ msgstr "" #: queryfilterdialog.ui +#, fuzzy msgctxt "" "queryfilterdialog.ui\n" "cond1\n" "4\n" "stringlist.text" msgid ">" -msgstr "" +msgstr ">" #: queryfilterdialog.ui msgctxt "" @@ -3015,58 +3019,64 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/my/extensions/uiconfig/sabpilot/ui.po libreoffice-5.1.2~rc2/translations/source/my/extensions/uiconfig/sabpilot/ui.po --- libreoffice-5.1.1~rc2/translations/source/my/extensions/uiconfig/sabpilot/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/my/extensions/uiconfig/sabpilot/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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 @@ "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 @@ msgstr "" #: gridfieldsselectionpage.ui +#, fuzzy msgctxt "" "gridfieldsselectionpage.ui\n" "fieldright\n" "label\n" "string.text" msgid "->" -msgstr "" +msgstr "->" #: gridfieldsselectionpage.ui msgctxt "" @@ -298,13 +299,14 @@ msgstr "" #: gridfieldsselectionpage.ui +#, fuzzy msgctxt "" "gridfieldsselectionpage.ui\n" "fieldleft\n" "label\n" "string.text" msgid "<-" -msgstr "" +msgstr "<-" #: gridfieldsselectionpage.ui msgctxt "" @@ -379,22 +381,24 @@ 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 @@ msgstr "" #: tableselectionpage.ui +#, fuzzy msgctxt "" "tableselectionpage.ui\n" "search\n" "label\n" "string.text" msgid "_..." -msgstr "" +msgstr "_..." #: tableselectionpage.ui msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/my/formula/source/core/resource.po libreoffice-5.1.2~rc2/translations/source/my/formula/source/core/resource.po --- libreoffice-5.1.1~rc2/translations/source/my/formula/source/core/resource.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/my/formula/source/core/resource.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\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-29 16:07+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff -Nru libreoffice-5.1.1~rc2/translations/source/my/librelogo/source/pythonpath.po libreoffice-5.1.2~rc2/translations/source/my/librelogo/source/pythonpath.po --- libreoffice-5.1.1~rc2/translations/source/my/librelogo/source/pythonpath.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/my/librelogo/source/pythonpath.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,16 +3,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: 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 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/my/officecfg/registry/data/org/openoffice/Office.po libreoffice-5.1.2~rc2/translations/source/my/officecfg/registry/data/org/openoffice/Office.po --- libreoffice-5.1.1~rc2/translations/source/my/officecfg/registry/data/org/openoffice/Office.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/my/officecfg/registry/data/org/openoffice/Office.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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 @@ "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 @@ msgstr "" #: PresentationMinimizer.xcu +#, fuzzy msgctxt "" "PresentationMinimizer.xcu\n" "..PresentationMinimizer.Strings\n" "STR_FILESIZESEPARATOR\n" "value.text" msgid "." -msgstr "" +msgstr "." #: PresentationMinimizer.xcu msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/my/reportdesign/uiconfig/dbreport/ui.po libreoffice-5.1.2~rc2/translations/source/my/reportdesign/uiconfig/dbreport/ui.po --- libreoffice-5.1.1~rc2/translations/source/my/reportdesign/uiconfig/dbreport/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/my/reportdesign/uiconfig/dbreport/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 @@ "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 @@ msgstr "" #: conditionwin.ui +#, fuzzy msgctxt "" "conditionwin.ui\n" "lhsButton\n" "label\n" "string.text" msgid "..." -msgstr "" +msgstr "..." #: conditionwin.ui msgctxt "" @@ -214,13 +215,14 @@ msgstr "" #: conditionwin.ui +#, fuzzy msgctxt "" "conditionwin.ui\n" "rhsButton\n" "label\n" "string.text" msgid "..." -msgstr "" +msgstr "..." #: conditionwin.ui msgctxt "" @@ -277,13 +279,14 @@ msgstr "" #: conditionwin.ui +#, fuzzy msgctxt "" "conditionwin.ui\n" "removeButton\n" "label\n" "string.text" msgid "-" -msgstr "" +msgstr "-" #: conditionwin.ui msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/my/sc/source/ui/src.po libreoffice-5.1.2~rc2/translations/source/my/sc/source/ui/src.po --- libreoffice-5.1.1~rc2/translations/source/my/sc/source/ui/src.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/my/sc/source/ui/src.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 @@ "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 @@ msgstr "စာသားလုပ်ဆောင်နိုင်မှုများ" #: globstr.src +#, fuzzy msgctxt "" "globstr.src\n" "RID_GLOBSTR\n" "STR_HFCMD_DELIMITER\n" "string.text" msgid "\\" -msgstr "" +msgstr "\\" #: globstr.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/my/scaddins/source/analysis.po libreoffice-5.1.2~rc2/translations/source/my/scaddins/source/analysis.po --- libreoffice-5.1.1~rc2/translations/source/my/scaddins/source/analysis.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/my/scaddins/source/analysis.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-11-24 04:39-0500\n" +"POT-Creation-Date: 2016-03-29 16:07+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff -Nru libreoffice-5.1.1~rc2/translations/source/my/sd/uiconfig/simpress/ui.po libreoffice-5.1.2~rc2/translations/source/my/sd/uiconfig/simpress/ui.po --- libreoffice-5.1.1~rc2/translations/source/my/sd/uiconfig/simpress/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/my/sd/uiconfig/simpress/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 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 @@ "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 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/my/sw/source/core/undo.po libreoffice-5.1.2~rc2/translations/source/my/sw/source/core/undo.po --- libreoffice-5.1.1~rc2/translations/source/my/sw/source/core/undo.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/my/sw/source/core/undo.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 @@ "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 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/my/sw/source/ui/dbui.po libreoffice-5.1.2~rc2/translations/source/my/sw/source/ui/dbui.po --- libreoffice-5.1.1~rc2/translations/source/my/sw/source/ui/dbui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/my/sw/source/ui/dbui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 @@ "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 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/my/sw/source/ui/index.po libreoffice-5.1.2~rc2/translations/source/my/sw/source/ui/index.po --- libreoffice-5.1.1~rc2/translations/source/my/sw/source/ui/index.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/my/sw/source/ui/index.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,16 +3,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-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 @@ 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 @@ msgstr "" #: cnttab.src +#, fuzzy msgctxt "" "cnttab.src\n" "STR_TOKEN_PAGE_NUMS\n" "string.text" msgid "#" -msgstr "" +msgstr "#" #: cnttab.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/my/sw/source/ui/misc.po libreoffice-5.1.2~rc2/translations/source/my/sw/source/ui/misc.po --- libreoffice-5.1.1~rc2/translations/source/my/sw/source/ui/misc.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/my/sw/source/ui/misc.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 @@ "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 @@ msgstr "အမျိုးအစား ဖျက်မလား?" #: glossary.src +#, fuzzy msgctxt "" "glossary.src\n" "STR_QUERY_DELETE_GROUP2\n" "string.text" msgid "?" -msgstr "" +msgstr "?" #: glossary.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/my/sw/source/ui/utlui.po libreoffice-5.1.2~rc2/translations/source/my/sw/source/ui/utlui.po --- libreoffice-5.1.1~rc2/translations/source/my/sw/source/ui/utlui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/my/sw/source/ui/utlui.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE 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-20 11:58+0100\n" +"POT-Creation-Date: 2016-03-29 16:07+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff -Nru libreoffice-5.1.1~rc2/translations/source/my/sw/uiconfig/swriter/ui.po libreoffice-5.1.2~rc2/translations/source/my/sw/uiconfig/swriter/ui.po --- libreoffice-5.1.1~rc2/translations/source/my/sw/uiconfig/swriter/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/my/sw/uiconfig/swriter/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 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 @@ "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 @@ msgstr "ဇယားမှစာသားသို့ကူးပြောင်းပါ" #: converttexttable.ui +#, fuzzy msgctxt "" "converttexttable.ui\n" "othered\n" "text\n" "string.text" msgid "," -msgstr "" +msgstr "," #: converttexttable.ui msgctxt "" @@ -2475,13 +2476,14 @@ msgstr "" #: createaddresslist.ui +#, fuzzy msgctxt "" "createaddresslist.ui\n" "PREV\n" "label\n" "string.text" msgid "<" -msgstr "" +msgstr "<" #: createaddresslist.ui msgctxt "" @@ -2493,13 +2495,14 @@ msgstr "" #: createaddresslist.ui +#, fuzzy msgctxt "" "createaddresslist.ui\n" "NEXT\n" "label\n" "string.text" msgid ">" -msgstr "" +msgstr ">" #: createaddresslist.ui msgctxt "" @@ -4392,13 +4395,14 @@ msgstr "မရှိပါ" #: fldvarpage.ui +#, fuzzy msgctxt "" "fldvarpage.ui\n" "separator\n" "text\n" "string.text" msgid "." -msgstr "" +msgstr "." #: fldvarpage.ui msgctxt "" @@ -5352,22 +5356,24 @@ 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 @@ 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 @@ msgstr "" #: mmpreparepage.ui +#, fuzzy msgctxt "" "mmpreparepage.ui\n" "prev\n" "label\n" "string.text" msgid "<" -msgstr "" +msgstr "<" #: mmpreparepage.ui msgctxt "" @@ -8635,13 +8643,14 @@ msgstr "" #: mmpreparepage.ui +#, fuzzy msgctxt "" "mmpreparepage.ui\n" "next\n" "label\n" "string.text" msgid ">" -msgstr "" +msgstr ">" #: mmpreparepage.ui #, fuzzy @@ -9487,13 +9496,14 @@ msgstr "ရပ်á€á€Šá€ºá€á€»á€€á€º" #: optcaptionpage.ui +#, fuzzy msgctxt "" "optcaptionpage.ui\n" "numseparator\n" "text\n" "string.text" msgid ". " -msgstr "" +msgstr ". " #: optcaptionpage.ui msgctxt "" @@ -15548,40 +15558,44 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/my/vcl/source/src.po libreoffice-5.1.2~rc2/translations/source/my/vcl/source/src.po --- libreoffice-5.1.1~rc2/translations/source/my/vcl/source/src.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/my/vcl/source/src.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 @@ "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 @@ 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 @@ 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 @@ 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 @@ msgstr "" #: units.src +#, fuzzy msgctxt "" "units.src\n" "SV_FUNIT_STRINGS\n" "°\n" "itemlist.text" msgid "°" -msgstr "" +msgstr "°" #: units.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/my/wizards/source/formwizard.po libreoffice-5.1.2~rc2/translations/source/my/wizards/source/formwizard.po --- libreoffice-5.1.1~rc2/translations/source/my/wizards/source/formwizard.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/my/wizards/source/formwizard.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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 @@ "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 @@ msgstr "" #: dbwizres.src +#, fuzzy msgctxt "" "dbwizres.src\n" "RID_DB_TABLE_WIZARD_START + 22\n" "string.text" msgid "-" -msgstr "" +msgstr "-" #: dbwizres.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/nb/avmedia/source/viewer.po libreoffice-5.1.2~rc2/translations/source/nb/avmedia/source/viewer.po --- libreoffice-5.1.1~rc2/translations/source/nb/avmedia/source/viewer.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/nb/avmedia/source/viewer.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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 @@ "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 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/nb/basctl/source/basicide.po libreoffice-5.1.2~rc2/translations/source/nb/basctl/source/basicide.po --- libreoffice-5.1.1~rc2/translations/source/nb/basctl/source/basicide.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/nb/basctl/source/basicide.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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 @@ "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 @@ "RID_STR_TRANSLATION_DEFAULT\n" "string.text" msgid "[Default Language]" -msgstr "[StandardsprÃ¥k]" +msgstr "[ StandardsprÃ¥k ]" #: basidesh.src msgctxt "" @@ -857,10 +857,11 @@ "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 -Nru libreoffice-5.1.1~rc2/translations/source/nb/basctl/source/dlged.po libreoffice-5.1.2~rc2/translations/source/nb/basctl/source/dlged.po --- libreoffice-5.1.1~rc2/translations/source/nb/basctl/source/dlged.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/nb/basctl/source/dlged.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,18 +3,18 @@ msgstr "" "Project-Id-Version: PACKAGE 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 @@ "RID_STR_DEF_LANG\n" "string.text" msgid "[Default Language]" -msgstr "[StandardsprÃ¥k]" +msgstr "[ StandardsprÃ¥k ]" #: dlgresid.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/nb/basctl/uiconfig/basicide/ui.po libreoffice-5.1.2~rc2/translations/source/nb/basctl/uiconfig/basicide/ui.po --- libreoffice-5.1.1~rc2/translations/source/nb/basctl/uiconfig/basicide/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/nb/basctl/uiconfig/basicide/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 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 @@ "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 @@ 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 @@ 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 @@ msgstr "Eksporter som et BASIC-bibliotek" #: gotolinedialog.ui -#, fuzzy msgctxt "" "gotolinedialog.ui\n" "GotoLineDialog\n" @@ -291,7 +287,6 @@ msgstr "GÃ¥ til linje" #: gotolinedialog.ui -#, fuzzy msgctxt "" "gotolinedialog.ui\n" "area\n" @@ -337,7 +332,6 @@ msgstr "Valg" #: libpage.ui -#, fuzzy msgctxt "" "libpage.ui\n" "label1\n" @@ -347,7 +341,6 @@ msgstr "_Plassering" #: libpage.ui -#, fuzzy msgctxt "" "libpage.ui\n" "lingudictsft\n" @@ -411,7 +404,6 @@ msgstr "Aktiv" #: managebreakpoints.ui -#, fuzzy msgctxt "" "managebreakpoints.ui\n" "label2\n" @@ -439,7 +431,6 @@ msgstr "HÃ¥ndter sprÃ¥k i brukergrensesnittet [$1]" #: managelanguages.ui -#, fuzzy msgctxt "" "managelanguages.ui\n" "label1\n" @@ -476,7 +467,6 @@ msgstr "Standard" #: modulepage.ui -#, fuzzy msgctxt "" "modulepage.ui\n" "label1\n" diff -Nru libreoffice-5.1.1~rc2/translations/source/nb/basic/source/classes.po libreoffice-5.1.2~rc2/translations/source/nb/basic/source/classes.po --- libreoffice-5.1.1~rc2/translations/source/nb/basic/source/classes.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/nb/basic/source/classes.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\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 @@ "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 @@ msgstr "Syntaksfeil." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -37,17 +35,15 @@ 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 @@ msgstr "Ugyldig prosedyrekall." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -67,7 +62,6 @@ msgstr "Overflyt." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -77,7 +71,6 @@ msgstr "Ikke nok minne." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -87,7 +80,6 @@ msgstr "Tabellen er allerede dimensjonert." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -97,7 +89,6 @@ msgstr "Indeksen er utenfor det angitte omrÃ¥det." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -107,7 +98,6 @@ msgstr "Dobbeldefinisjon." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -117,7 +107,6 @@ msgstr "Deling med null." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -127,7 +116,6 @@ msgstr "Variabelen er ikke angitt." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -137,7 +125,6 @@ msgstr "Datatypene passer ikke sammen." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -147,7 +134,6 @@ msgstr "Ugyldig parameter." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -157,7 +143,6 @@ msgstr "Prosessen er avbrutt av brukeren." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -167,7 +152,6 @@ msgstr "Fortsett uten feil." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -177,7 +161,6 @@ msgstr "Ikke nok stabelminne." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -187,7 +170,6 @@ msgstr "Underprosedyre eller funksjonsprosedyre er ikke angitt." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -197,17 +179,15 @@ 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 @@ msgstr "Intern feil $(ARG1)." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -227,7 +206,6 @@ msgstr "Ugyldig filnavn eller -nummer." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -237,7 +215,6 @@ msgstr "Fant ikke fila." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -247,17 +224,15 @@ 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 @@ msgstr "Inn/ut-feil pÃ¥ enheten." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -277,7 +251,6 @@ msgstr "Fila finnes allerede." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -287,7 +260,6 @@ msgstr "Feil postlengde." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -297,17 +269,15 @@ 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 @@ msgstr "Feil postnummer." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -327,7 +296,6 @@ msgstr "For mange filer." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -337,7 +305,6 @@ msgstr "Enheten er ikke tilgjengelig." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -347,7 +314,6 @@ msgstr "Ingen tilgang." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -357,7 +323,6 @@ msgstr "Disken er ikke klar." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -367,7 +332,6 @@ msgstr "Ikke implementert." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -377,7 +341,6 @@ msgstr "Kan ikke endre navn pÃ¥ ulike stasjoner." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -387,7 +350,6 @@ msgstr "Tilgangsfeil ved sti/fil." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -397,7 +359,6 @@ msgstr "Fant ikke stien." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -407,7 +368,6 @@ msgstr "Objektvariabelen er ikke angitt." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -417,7 +377,6 @@ msgstr "Ugyldig strengmønster." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -427,7 +386,6 @@ msgstr "Bruk av null ikke tillatt." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -437,7 +395,6 @@ msgstr "DDE-feil." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -447,7 +404,6 @@ msgstr "Venter pÃ¥ svar pÃ¥ DDE-forbindelse." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -457,7 +413,6 @@ msgstr "Ingen DDE-kanaler er tilgjengelige." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -467,7 +422,6 @@ msgstr "Ingen programmer svarte pÃ¥ DDE-start." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -477,7 +431,6 @@ msgstr "For mange programmer svarte pÃ¥ DDE-forbindelsesstart." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -487,7 +440,6 @@ msgstr "DDE-kanalen er lÃ¥st." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -497,7 +449,6 @@ msgstr "Eksternt program kan ikke utføre DDE-operasjon." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -507,7 +458,6 @@ msgstr "Tidsgrense nÃ¥dd ved venting pÃ¥ DDE-svar." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -517,7 +467,6 @@ msgstr "Brukeren trykket pÃ¥ «Escape» under DDE-operasjonen." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -527,7 +476,6 @@ msgstr "Eksternt program opptatt." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -537,7 +485,6 @@ msgstr "DDE-operasjon uten data." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -547,7 +494,6 @@ msgstr "Dataene er i feil format." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -557,7 +503,6 @@ msgstr "Det eksterne programmet er avsluttet." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -567,7 +512,6 @@ msgstr "DDE-forbindelse avbrutt eller endret." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -577,7 +521,6 @@ msgstr "DDE-metode startet uten noen Ã¥pen kanal." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -587,17 +530,15 @@ 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 @@ msgstr "Innliminga av lenka er allerede utført." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -617,7 +557,6 @@ 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 @@ msgstr "DDE trenger fila DDEML.DLL." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -637,7 +575,6 @@ msgstr "Kan ikke laste inn modulen; ugyldig format." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -647,7 +584,6 @@ msgstr "Ugyldig objektindeks." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -657,7 +593,6 @@ msgstr "Objektet er ikke tilgjengelig." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -667,7 +602,6 @@ msgstr "Feil verdi pÃ¥ egenskap." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -677,7 +611,6 @@ msgstr "Denne egenskapen er skrivebeskyttet." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -687,7 +620,6 @@ msgstr "Denne egenskapen kan bare skrives." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -697,7 +629,6 @@ msgstr "Ugyldig objektreferanse." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -707,7 +638,6 @@ msgstr "Fant ikke egenskap eller metode: $(ARG1)." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -717,7 +647,6 @@ msgstr "Trenger objekt." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -727,7 +656,6 @@ msgstr "Ugyldig bruk av objekt." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -737,7 +665,6 @@ msgstr "Objektet støtter ikke OLE-automatisering." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -747,7 +674,6 @@ msgstr "Objektet støtter ikke denne egenskapen eller metoden." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -757,7 +683,6 @@ msgstr "OLE-automatiseringsfeil." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -767,7 +692,6 @@ msgstr "Objektet støtter ikke denne handlinga." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -777,7 +701,6 @@ msgstr "Objektet støtter ikke de oppgitte argumentene." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -787,7 +710,6 @@ msgstr "Objektet støtter ikke lokalinnstillinga." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -797,7 +719,6 @@ msgstr "Fant ikke det oppgitte argumentet." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -807,7 +728,6 @@ msgstr "Argumentet er ikke valgfritt." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -817,7 +737,6 @@ msgstr "Ugyldig antall argumenter." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -827,7 +746,6 @@ msgstr "Objektet er ingen liste." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -837,7 +755,6 @@ msgstr "Ugyldig ordenstall." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -847,7 +764,6 @@ msgstr "Fant ikke den spesifiserte DLL-funksjonen." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -857,7 +773,6 @@ msgstr "Ugyldig utklippstavleformat." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -867,7 +782,6 @@ msgstr "Objektet har ikke denne egenskapen." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -877,7 +791,6 @@ msgstr "Objektet har ikke denne metoden." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -887,7 +800,6 @@ msgstr "Et nødvendig argument mangler." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -897,7 +809,6 @@ msgstr "Ugyldig antall argumenter." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -907,7 +818,6 @@ msgstr "Feil ved utføring av metode." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -917,7 +827,6 @@ msgstr "Kan ikke velge egenskap." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -927,7 +836,6 @@ msgstr "Kan ikke bestemme egenskap." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -937,7 +845,6 @@ msgstr "Uventet tegn: $(ARG1)." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -947,7 +854,6 @@ msgstr "Forventet: $(ARG1)." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -957,7 +863,6 @@ msgstr "Forventet tegn." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -967,7 +872,6 @@ msgstr "Forventet variabel." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -977,7 +881,6 @@ msgstr "Forventet etikett." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -987,7 +890,6 @@ msgstr "Kan ikke bruke verdi." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -997,7 +899,6 @@ msgstr "Variabelen $(ARG1) er allerede angitt." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -1007,7 +908,6 @@ msgstr "Underprosedyren eller funksjonsprosedyren $(ARG1) er allerede angitt." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -1017,7 +917,6 @@ msgstr "Etiketten $(ARG1) er allerede angitt." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -1027,7 +926,6 @@ msgstr "Fant ikke variabelen $(ARG1)." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -1037,7 +935,6 @@ msgstr "Fant ikke tabellen eller prosedyren $(ARG1)." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -1047,7 +944,6 @@ msgstr "Fant ikke prosedyren $(ARG1)." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -1057,7 +953,6 @@ msgstr "Etiketten $(ARG1) er ikke angitt." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -1067,7 +962,6 @@ msgstr "Ukjent datatype $(ARG1)." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -1086,7 +980,6 @@ msgstr "Uttrykksblokk fremdeles Ã¥pen: $(ARG1) mangler." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -1096,7 +989,6 @@ msgstr "Parentesene stemmer ikke overens." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -1106,7 +998,6 @@ msgstr "Symbolet $(ARG1) er angitt annerledes." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -1116,7 +1007,6 @@ msgstr "Parametrene stemmer ikke overens med prosedyren." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -1126,7 +1016,6 @@ msgstr "Ugyldig tegn i tallet." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -1136,7 +1025,6 @@ msgstr "Tabellen mÃ¥ dimensjoneres." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -1146,7 +1034,6 @@ msgstr "Else/Endif uten If." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -1156,7 +1043,6 @@ msgstr "$(ARG1) kan ikke brukes i prosedyrer." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -1166,7 +1052,6 @@ msgstr "$(ARG1) kan ikke brukes utenfor prosedyrer." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -1176,7 +1061,6 @@ msgstr "Spesifikasjonene av dimensjonene stemmer ikke overens." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -1186,7 +1070,6 @@ msgstr "Ukjent valg: $(ARG1)." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -1196,7 +1079,6 @@ msgstr "Konstanten $(ARG1) er endret." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -1206,7 +1088,6 @@ msgstr "For stort program." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" diff -Nru libreoffice-5.1.1~rc2/translations/source/nb/chart2/uiconfig/ui.po libreoffice-5.1.2~rc2/translations/source/nb/chart2/uiconfig/ui.po --- libreoffice-5.1.1~rc2/translations/source/nb/chart2/uiconfig/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/nb/chart2/uiconfig/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "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 @@ "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 @@ "label\n" "string.text" msgid "Auto text _wrap" -msgstr "" +msgstr "Automatisk tekst brytning" #: dlg_DataLabel.ui msgctxt "" @@ -1016,7 +1016,6 @@ msgstr "Tabulatorer" #: sidebaraxis.ui -#, fuzzy msgctxt "" "sidebaraxis.ui\n" "checkbutton_show_label\n" @@ -1026,14 +1025,13 @@ 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 @@ "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 @@ msgstr "Nær aksen" #: sidebaraxis.ui -#, fuzzy msgctxt "" "sidebaraxis.ui\n" "comboboxtext_label_position\n" @@ -1065,7 +1061,6 @@ msgstr "Nær aksen (andre siden)" #: sidebaraxis.ui -#, fuzzy msgctxt "" "sidebaraxis.ui\n" "comboboxtext_label_position\n" @@ -1075,7 +1070,6 @@ msgstr "Start utenfor" #: sidebaraxis.ui -#, fuzzy msgctxt "" "sidebaraxis.ui\n" "comboboxtext_label_position\n" @@ -1085,7 +1079,6 @@ msgstr "Slutt utenfor" #: sidebaraxis.ui -#, fuzzy msgctxt "" "sidebaraxis.ui\n" "label2\n" @@ -1095,17 +1088,15 @@ 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 @@ msgstr "Titler" #: sidebarelements.ui -#, fuzzy msgctxt "" "sidebarelements.ui\n" "l\n" @@ -1131,7 +1121,7 @@ "tooltip_text\n" "string.text" msgid "Show Legend" -msgstr "" +msgstr "Vis forklaring" #: sidebarelements.ui msgctxt "" @@ -1140,10 +1130,9 @@ "label\n" "string.text" msgid "_Placement:" -msgstr "" +msgstr "_Plassering" #: sidebarelements.ui -#, fuzzy msgctxt "" "sidebarelements.ui\n" "comboboxtext_legend\n" @@ -1153,27 +1142,24 @@ 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 @@ "4\n" "stringlist.text" msgid "Manual" -msgstr "" +msgstr "Manuell" #: sidebarelements.ui -#, fuzzy msgctxt "" "sidebarelements.ui\n" "label_legen\n" @@ -1202,7 +1187,6 @@ msgstr "Forklaring" #: sidebarelements.ui -#, fuzzy msgctxt "" "sidebarelements.ui\n" "checkbutton_x_axis\n" @@ -1218,17 +1202,16 @@ "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 @@ "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 @@ "label\n" "string.text" msgid "Z axis title" -msgstr "" +msgstr "Tittel pÃ¥ Z-aksen" #: sidebarelements.ui msgctxt "" @@ -1265,7 +1247,7 @@ "label\n" "string.text" msgid "2nd X axis" -msgstr "" +msgstr "Andre X-akse" #: sidebarelements.ui msgctxt "" @@ -1274,7 +1256,7 @@ "label\n" "string.text" msgid "2nd X axis title" -msgstr "" +msgstr "Tittel pÃ¥ andre X-akse" #: sidebarelements.ui msgctxt "" @@ -1283,7 +1265,7 @@ "label\n" "string.text" msgid "2nd Y axis" -msgstr "" +msgstr "Andre Y-akse" #: sidebarelements.ui msgctxt "" @@ -1292,10 +1274,9 @@ "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 @@ "label\n" "string.text" msgid "Horizontal major" -msgstr "" +msgstr "Vannrett storakse" #: sidebarelements.ui msgctxt "" @@ -1320,7 +1301,7 @@ "label\n" "string.text" msgid "Vertical major" -msgstr "" +msgstr "Loddrett storakse" #: sidebarelements.ui msgctxt "" @@ -1329,7 +1310,7 @@ "label\n" "string.text" msgid "Horizontal minor" -msgstr "" +msgstr "Vannrett lilleakse" #: sidebarelements.ui msgctxt "" @@ -1338,7 +1319,7 @@ "label\n" "string.text" msgid "Vertical minor" -msgstr "" +msgstr "Loddrett lilleakse" #: sidebarelements.ui msgctxt "" @@ -1347,30 +1328,27 @@ "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 @@ "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 @@ msgstr "Standardavvik" #: sidebarerrorbar.ui -#, fuzzy msgctxt "" "sidebarerrorbar.ui\n" "comboboxtext_type\n" @@ -1429,7 +1403,6 @@ msgstr "Standardfeil" #: sidebarerrorbar.ui -#, fuzzy msgctxt "" "sidebarerrorbar.ui\n" "comboboxtext_type\n" @@ -1439,7 +1412,6 @@ msgstr "Varians" #: sidebarerrorbar.ui -#, fuzzy msgctxt "" "sidebarerrorbar.ui\n" "comboboxtext_type\n" @@ -1449,57 +1421,51 @@ 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 @@ "label\n" "string.text" msgid "Error bars" -msgstr "" +msgstr "Feillinjer" #: sidebarseries.ui msgctxt "" @@ -1524,7 +1490,7 @@ "label\n" "string.text" msgid "Show data labels" -msgstr "" +msgstr "Vis dataoverskrifter" #: sidebarseries.ui msgctxt "" @@ -1533,10 +1499,9 @@ "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 @@ msgstr "Over" #: sidebarseries.ui -#, fuzzy msgctxt "" "sidebarseries.ui\n" "comboboxtext_label\n" @@ -1556,17 +1520,15 @@ 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 @@ 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 @@ "label\n" "string.text" msgid "Show trendline" -msgstr "" +msgstr "Vis trendlinje" #: sidebarseries.ui msgctxt "" @@ -1611,7 +1571,7 @@ "label\n" "string.text" msgid "Y error bars" -msgstr "" +msgstr "Y-feillinjer" #: sidebarseries.ui msgctxt "" @@ -1620,7 +1580,7 @@ "label\n" "string.text" msgid "X error bars" -msgstr "" +msgstr "X-feillinjer" #: sidebarseries.ui msgctxt "" @@ -1629,10 +1589,9 @@ "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 @@ msgstr "Primær Y-akse" #: sidebarseries.ui -#, fuzzy msgctxt "" "sidebarseries.ui\n" "radiobutton_secondary_axis\n" @@ -1658,7 +1616,7 @@ "label\n" "string.text" msgid "Align Series to Axis" -msgstr "" +msgstr "Innrett serier til akser" #: sidebarseries.ui msgctxt "" @@ -1667,7 +1625,7 @@ "label\n" "string.text" msgid "Data series '%1'" -msgstr "" +msgstr "Dataserier '%1'" #: smoothlinesdlg.ui msgctxt "" @@ -2648,7 +2606,7 @@ "label\n" "string.text" msgid "Auto text _wrap" -msgstr "" +msgstr "Automatisk tekst_bryting" #: tp_DataLabel.ui msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/nb/connectivity/source/resource.po libreoffice-5.1.2~rc2/translations/source/nb/connectivity/source/resource.po --- libreoffice-5.1.1~rc2/translations/source/nb/connectivity/source/resource.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/nb/connectivity/source/resource.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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 @@ "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 @@ "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 -Nru libreoffice-5.1.1~rc2/translations/source/nb/cui/source/customize.po libreoffice-5.1.2~rc2/translations/source/nb/cui/source/customize.po --- libreoffice-5.1.1~rc2/translations/source/nb/cui/source/customize.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/nb/cui/source/customize.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "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 @@ "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 @@ "RID_SVXSTR_PRODUCTNAME_CONTEXTMENUS\n" "string.text" msgid "%PRODUCTNAME %MODULENAME Context Menus" -msgstr "" +msgstr "Lokalmenyer i %PRODUCTNAME %MODULENAME" #: cfg.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/nb/cui/source/dialogs.po libreoffice-5.1.2~rc2/translations/source/nb/cui/source/dialogs.po --- libreoffice-5.1.1~rc2/translations/source/nb/cui/source/dialogs.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/nb/cui/source/dialogs.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "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 @@ "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 @@ "RID_SVXSTR_THOUSAND_SEP\n" "string.text" msgid "Thousands separator" -msgstr "" +msgstr "Tusenskille" #: cuires.src msgctxt "" @@ -111,7 +111,7 @@ "RID_SVXSTR_ENGINEERING\n" "string.text" msgid "Engineering notation" -msgstr "" +msgstr "Teknisk notasjon" #: cuires.src msgctxt "" @@ -375,16 +375,15 @@ "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 @@ "RID_SVXSTR_ADD_IMAGE\n" "string.text" msgid "Add Image" -msgstr "" +msgstr "Legg til bilde" #: passwdomdlg.src msgctxt "" @@ -520,7 +519,7 @@ "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 -Nru libreoffice-5.1.1~rc2/translations/source/nb/cui/source/options.po libreoffice-5.1.2~rc2/translations/source/nb/cui/source/options.po --- libreoffice-5.1.1~rc2/translations/source/nb/cui/source/options.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/nb/cui/source/options.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "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 @@ "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 @@ "RID_SVXSTR_HEADER2\n" "string.text" msgid "[S]" -msgstr "[L]" +msgstr "[S]" #: optfltr.src msgctxt "" @@ -808,7 +808,7 @@ "Application Colors\n" "itemlist.text" msgid "Application Colors" -msgstr "" +msgstr "Programfarger" #: treeopt.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/nb/cui/source/tabpages.po libreoffice-5.1.2~rc2/translations/source/nb/cui/source/tabpages.po --- libreoffice-5.1.1~rc2/translations/source/nb/cui/source/tabpages.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/nb/cui/source/tabpages.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "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 @@ "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 @@ "RID_SVXSTR_CHARNAME_HIGHLIGHTING\n" "string.text" msgid "Highlight Color" -msgstr "" +msgstr "Uthevingsfarge" #: strings.src msgctxt "" @@ -1087,7 +1087,7 @@ "RID_SVXSTR_NUM\n" "string.text" msgid "Bulleted and numbered lists. Bullet symbol: " -msgstr "" +msgstr "Punktlister og nummererte liste. Punkttegn: " #: strings.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/nb/cui/uiconfig/ui.po libreoffice-5.1.2~rc2/translations/source/nb/cui/uiconfig/ui.po --- libreoffice-5.1.1~rc2/translations/source/nb/cui/uiconfig/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/nb/cui/uiconfig/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 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 @@ "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 @@ 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 @@ msgstr "Dette produktet ble utgitt av %OOOVENDOR" #: aboutdialog.ui -#, fuzzy msgctxt "" "aboutdialog.ui\n" "link\n" @@ -493,7 +491,7 @@ "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 @@ msgstr "Tabell" #: backgroundpage.ui -#, fuzzy msgctxt "" "backgroundpage.ui\n" "background_label\n" @@ -1583,10 +1580,9 @@ "label\n" "string.text" msgid "Operating system:" -msgstr "" +msgstr "Operativsystem:" #: blackorwhitelistentrydialog.ui -#, fuzzy msgctxt "" "blackorwhitelistentrydialog.ui\n" "label5\n" @@ -1602,7 +1598,7 @@ "label\n" "string.text" msgid "OpenCL vendor:" -msgstr "" +msgstr "OpenCL-leverandør:" #: blackorwhitelistentrydialog.ui msgctxt "" @@ -1629,7 +1625,7 @@ "label\n" "string.text" msgid "Edit OpenCL Blacklist Entry" -msgstr "" +msgstr "Rediger OpenCL svartliste-oppføring" #: blackorwhitelistentrydialog.ui msgctxt "" @@ -1638,7 +1634,7 @@ "label\n" "string.text" msgid "Create OpenCL Blacklist Entry" -msgstr "" +msgstr "Lag OpenCL svartliste-oppføring" #: blackorwhitelistentrydialog.ui msgctxt "" @@ -1647,7 +1643,7 @@ "label\n" "string.text" msgid "Edit OpenCL Whitelist Entry" -msgstr "" +msgstr "Rediger OpenCL hvitliste-oppføring" #: blackorwhitelistentrydialog.ui msgctxt "" @@ -1656,7 +1652,7 @@ "label\n" "string.text" msgid "Create OpenCL Whitelist Entry" -msgstr "" +msgstr "Lag OpenCL hvitliste-oppføring" #: blackorwhitelistentrydialog.ui msgctxt "" @@ -1665,7 +1661,7 @@ "label\n" "string.text" msgid "OpenCL Information" -msgstr "" +msgstr "OpenCL-informasjon" #: blackorwhitelistentrydialog.ui msgctxt "" @@ -1674,7 +1670,7 @@ "0\n" "stringlist.text" msgid "Any" -msgstr "" +msgstr "Enhver" #: borderareatransparencydialog.ui msgctxt "" @@ -3321,7 +3317,7 @@ "label\n" "string.text" msgid "_Pick…" -msgstr "" +msgstr "_Velg…" #: colorpage.ui msgctxt "" @@ -3504,7 +3500,6 @@ msgstr "_Gul:" #: colorpickerdialog.ui -#, fuzzy msgctxt "" "colorpickerdialog.ui\n" "label8\n" @@ -3952,7 +3947,7 @@ "label\n" "string.text" msgid "Context Menus" -msgstr "" +msgstr "Sprettoppmenyer" #: customizedialog.ui msgctxt "" @@ -5203,7 +5198,7 @@ "label\n" "string.text" msgid "Similarities..." -msgstr "" +msgstr "Likheter..." #: fmsearchdialog.ui msgctxt "" @@ -5221,7 +5216,7 @@ "label\n" "string.text" msgid "Similarities..." -msgstr "" +msgstr "Likheter..." #: fmsearchdialog.ui msgctxt "" @@ -6580,7 +6575,7 @@ "label\n" "string.text" msgid "Mail" -msgstr "" +msgstr "Post" #: hyperlinkmailpage.ui msgctxt "" @@ -7130,7 +7125,7 @@ "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 @@ "label\n" "string.text" msgid "Suppress hidden elements of documents" -msgstr "" +msgstr "Undertrykk skjulte elementer i dokumenter" #: optemailpage.ui msgctxt "" @@ -10176,7 +10171,7 @@ "label\n" "string.text" msgid "Export as:" -msgstr "" +msgstr "Eksporter som:" #: optfltrembedpage.ui msgctxt "" @@ -10185,7 +10180,7 @@ "label\n" "string.text" msgid "Highlighting" -msgstr "" +msgstr "Utheving" #: optfltrembedpage.ui msgctxt "" @@ -10194,7 +10189,7 @@ "label\n" "string.text" msgid "Shading" -msgstr "" +msgstr "Skyggelegging" #: optfltrembedpage.ui msgctxt "" @@ -10203,7 +10198,7 @@ "label\n" "string.text" msgid "Character Highlighting" -msgstr "" +msgstr "Tegnutheving" #: optfltrpage.ui msgctxt "" @@ -10527,7 +10522,7 @@ "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 @@ "label\n" "string.text" msgid "Help Improve %PRODUCTNAME" -msgstr "" +msgstr "Hjelp til med Ã¥ gjøre %PRODUCTNAME bedre" #: opthtmlpage.ui msgctxt "" @@ -11355,7 +11350,7 @@ "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 @@ "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 @@ "label\n" "string.text" msgid "User Agent:" -msgstr "" +msgstr "Brukeragent:" #: optonlineupdatepage.ui msgctxt "" @@ -11382,7 +11377,7 @@ "label\n" "string.text" msgid "Hit apply to update" -msgstr "" +msgstr "Press oppdater for oppdatering" #: optonlineupdatepage.ui msgctxt "" @@ -11409,7 +11404,7 @@ "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 @@ "label\n" "string.text" msgid "Operating System" -msgstr "" +msgstr "Operativsystem" #: optopenclpage.ui msgctxt "" @@ -11466,7 +11461,6 @@ msgstr "OS-versjon" #: optopenclpage.ui -#, fuzzy msgctxt "" "optopenclpage.ui\n" "vendor\n" @@ -11494,7 +11488,6 @@ msgstr "Driverversjon" #: optopenclpage.ui -#, fuzzy msgctxt "" "optopenclpage.ui\n" "label4\n" @@ -11531,7 +11524,6 @@ msgstr "_Slett" #: optopenclpage.ui -#, fuzzy msgctxt "" "optopenclpage.ui\n" "label5\n" @@ -11979,7 +11971,7 @@ "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 @@ "label\n" "string.text" msgid "_TSAs..." -msgstr "" +msgstr "_TSA-er …" #: optsecuritypage.ui msgctxt "" @@ -11997,7 +11989,7 @@ "label\n" "string.text" msgid "TSAs" -msgstr "" +msgstr "TSA-er" #: optsecuritypage.ui msgctxt "" @@ -12516,7 +12508,7 @@ "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 @@ "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 @@ "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 @@ "label\n" "string.text" msgid "Current GL status: Enabled" -msgstr "" +msgstr "Gjeldende GL-status: Aktivert" #: optviewpage.ui msgctxt "" @@ -12552,10 +12544,9 @@ "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 @@ "10\n" "stringlist.text" msgid "Breeze" -msgstr "" +msgstr "Bris" #: optviewpage.ui msgctxt "" @@ -14134,7 +14125,7 @@ "label\n" "string.text" msgid "Add and Resize" -msgstr "" +msgstr "Legg til og endre størrelse" #: pickgraphicpage.ui msgctxt "" @@ -15133,7 +15124,7 @@ "label\n" "string.text" msgid "Highlighting" -msgstr "" +msgstr "Uthevelse" #: securityoptionsdialog.ui msgctxt "" @@ -15439,7 +15430,7 @@ "label\n" "string.text" msgid "_X:" -msgstr "" +msgstr "_X:" #: slantcornertabpage.ui msgctxt "" @@ -15448,7 +15439,7 @@ "label\n" "string.text" msgid "_Y:" -msgstr "" +msgstr "_Y:" #: slantcornertabpage.ui msgctxt "" @@ -15457,7 +15448,7 @@ "label\n" "string.text" msgid "Control Point 1" -msgstr "" +msgstr "Kontrollpunkt 1" #: slantcornertabpage.ui msgctxt "" @@ -15502,7 +15493,7 @@ "label\n" "string.text" msgid "_X:" -msgstr "" +msgstr "_X:" #: slantcornertabpage.ui msgctxt "" @@ -15511,7 +15502,7 @@ "label\n" "string.text" msgid "_Y:" -msgstr "" +msgstr "_Y:" #: slantcornertabpage.ui msgctxt "" @@ -15520,7 +15511,7 @@ "label\n" "string.text" msgid "Control Point 2" -msgstr "" +msgstr "Kontrollpunkt 2" #: smarttagoptionspage.ui msgctxt "" @@ -15658,14 +15649,13 @@ 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 @@ "label\n" "string.text" msgid "Hexadecimal:" -msgstr "" +msgstr "Heksadesimal:" #: spellingdialog.ui msgctxt "" @@ -15845,10 +15835,9 @@ "label\n" "string.text" msgid "Paste" -msgstr "" +msgstr "Lim inn" #: spellingdialog.ui -#, fuzzy msgctxt "" "spellingdialog.ui\n" "insert\n" @@ -17007,7 +16996,7 @@ "title\n" "string.text" msgid "Time Stamping Authority URLs" -msgstr "" +msgstr "URL'er for tidsstempelautoriteter" #: tsaurldialog.ui msgctxt "" @@ -17034,7 +17023,7 @@ "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 @@ "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 @@ "label\n" "string.text" msgid "TSA URL" -msgstr "" +msgstr "TSA-URL" #: twolinespage.ui msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/nb/dbaccess/source/ext/macromigration.po libreoffice-5.1.2~rc2/translations/source/nb/dbaccess/source/ext/macromigration.po --- libreoffice-5.1.1~rc2/translations/source/nb/dbaccess/source/ext/macromigration.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/nb/dbaccess/source/ext/macromigration.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 @@ "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 @@ "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 -Nru libreoffice-5.1.1~rc2/translations/source/nb/dbaccess/source/ui/app.po libreoffice-5.1.2~rc2/translations/source/nb/dbaccess/source/ui/app.po --- libreoffice-5.1.1~rc2/translations/source/nb/dbaccess/source/ui/app.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/nb/dbaccess/source/ui/app.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,18 +3,18 @@ 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 @@ "\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 -Nru libreoffice-5.1.1~rc2/translations/source/nb/dbaccess/source/ui/browser.po libreoffice-5.1.2~rc2/translations/source/nb/dbaccess/source/ui/browser.po --- libreoffice-5.1.1~rc2/translations/source/nb/dbaccess/source/ui/browser.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/nb/dbaccess/source/ui/browser.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 @@ "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 @@ "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 -Nru libreoffice-5.1.1~rc2/translations/source/nb/dbaccess/source/ui/dlg.po libreoffice-5.1.2~rc2/translations/source/nb/dbaccess/source/ui/dlg.po --- libreoffice-5.1.1~rc2/translations/source/nb/dbaccess/source/ui/dlg.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/nb/dbaccess/source/ui/dlg.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 -Nru libreoffice-5.1.1~rc2/translations/source/nb/dbaccess/source/ui/tabledesign.po libreoffice-5.1.2~rc2/translations/source/nb/dbaccess/source/ui/tabledesign.po --- libreoffice-5.1.1~rc2/translations/source/nb/dbaccess/source/ui/tabledesign.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/nb/dbaccess/source/ui/tabledesign.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,18 +3,18 @@ msgstr "" "Project-Id-Version: PACKAGE 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 @@ "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 -Nru libreoffice-5.1.1~rc2/translations/source/nb/dbaccess/uiconfig/ui.po libreoffice-5.1.2~rc2/translations/source/nb/dbaccess/uiconfig/ui.po --- libreoffice-5.1.1~rc2/translations/source/nb/dbaccess/uiconfig/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/nb/dbaccess/uiconfig/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "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 @@ "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 @@ msgstr "Spesielle innstillinger" #: applycolpage.ui -#, fuzzy msgctxt "" "applycolpage.ui\n" "label1\n" @@ -79,7 +77,7 @@ "label\n" "string.text" msgid "Set up the user authentication" -msgstr "" +msgstr "Sett opp brukerautentisering" #: authentificationpage.ui msgctxt "" @@ -88,7 +86,7 @@ "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 @@ "label\n" "string.text" msgid "_User name" -msgstr "" +msgstr "_Brukernavn" #: authentificationpage.ui msgctxt "" @@ -106,7 +104,7 @@ "label\n" "string.text" msgid "Password re_quired" -msgstr "" +msgstr "Krev _passord" #: authentificationpage.ui msgctxt "" @@ -115,7 +113,7 @@ "label\n" "string.text" msgid "_Test Connection" -msgstr "" +msgstr "_Test tilkoblingen" #: autocharsetpage.ui msgctxt "" @@ -124,7 +122,7 @@ "label\n" "string.text" msgid "_Character set:" -msgstr "" +msgstr "_Tegnsett" #: autocharsetpage.ui msgctxt "" @@ -133,7 +131,7 @@ "label\n" "string.text" msgid "Data Conversion" -msgstr "" +msgstr "Datakonvertering" #: backuppage.ui msgctxt "" @@ -142,7 +140,7 @@ "label\n" "string.text" msgid "Backup Your Document" -msgstr "" +msgstr "Ta reservekopi av dokumentet" #: backuppage.ui msgctxt "" @@ -151,7 +149,7 @@ "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 @@ "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 @@ "label\n" "string.text" msgid "Save to:" -msgstr "" +msgstr "Lagre til" #: backuppage.ui msgctxt "" @@ -178,7 +176,7 @@ "label\n" "string.text" msgid "Browse..." -msgstr "" +msgstr "Bla gjennom …" #: choosedatasourcedialog.ui msgctxt "" @@ -214,7 +212,7 @@ "title\n" "string.text" msgid "Save" -msgstr "" +msgstr "Lagre" #: collectionviewdialog.ui msgctxt "" @@ -223,7 +221,7 @@ "label\n" "string.text" msgid "_Save" -msgstr "" +msgstr "_Lagre" #: collectionviewdialog.ui msgctxt "" @@ -232,7 +230,7 @@ "tooltip_text\n" "string.text" msgid "Create New Directory" -msgstr "" +msgstr "Opprett ny mappe" #: collectionviewdialog.ui msgctxt "" @@ -241,7 +239,7 @@ "tooltip_text\n" "string.text" msgid "Up One Level" -msgstr "" +msgstr "Ett nivÃ¥ opp" #: collectionviewdialog.ui msgctxt "" @@ -250,7 +248,7 @@ "label\n" "string.text" msgid "File _name:" -msgstr "" +msgstr "Fil_navn:" #: colwidthdialog.ui msgctxt "" @@ -262,14 +260,13 @@ 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 @@ "label\n" "string.text" msgid "Path to the dBASE files:" -msgstr "" +msgstr "Sti til dBASE-filene:" #: connectionpage.ui msgctxt "" @@ -296,7 +293,7 @@ "label\n" "string.text" msgid "_Create New" -msgstr "" +msgstr "_Lag ny" #: connectionpage.ui msgctxt "" @@ -305,7 +302,7 @@ "label\n" "string.text" msgid "_Browse…" -msgstr "" +msgstr "_Bla gjennom …" #: connectionpage.ui msgctxt "" @@ -314,7 +311,7 @@ "label\n" "string.text" msgid "General" -msgstr "" +msgstr "Generelt" #: connectionpage.ui msgctxt "" @@ -323,7 +320,7 @@ "label\n" "string.text" msgid "_User name:" -msgstr "" +msgstr "_Brukernavn:" #: connectionpage.ui msgctxt "" @@ -332,7 +329,7 @@ "label\n" "string.text" msgid "Password required" -msgstr "" +msgstr "Passord kreves" #: connectionpage.ui msgctxt "" @@ -341,7 +338,7 @@ "label\n" "string.text" msgid "User Authentication" -msgstr "" +msgstr "Brukerautensiering" #: connectionpage.ui msgctxt "" @@ -350,7 +347,7 @@ "label\n" "string.text" msgid "_JDBC driver class:" -msgstr "" +msgstr "_JDBC-driverklasse:" #: connectionpage.ui msgctxt "" @@ -359,10 +356,9 @@ "label\n" "string.text" msgid "Test Class" -msgstr "" +msgstr "Testklasse" #: connectionpage.ui -#, fuzzy msgctxt "" "connectionpage.ui\n" "JDBCLabel\n" @@ -378,7 +374,7 @@ "label\n" "string.text" msgid "Test Connection" -msgstr "" +msgstr "Test tilkobling" #: copytablepage.ui msgctxt "" @@ -435,14 +431,13 @@ 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 @@ 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 @@ 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 @@ "label\n" "string.text" msgid "_Character set:" -msgstr "" +msgstr "_Tegnsett:" #: dbasepage.ui msgctxt "" @@ -525,7 +518,7 @@ "label\n" "string.text" msgid "Data Conversion" -msgstr "" +msgstr "Datakonvertering" #: dbasepage.ui msgctxt "" @@ -534,7 +527,7 @@ "label\n" "string.text" msgid "Display deleted records as well" -msgstr "" +msgstr "Vis ogsÃ¥ slettede dataposter" #: dbasepage.ui msgctxt "" @@ -543,7 +536,7 @@ "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 @@ "label\n" "string.text" msgid "Optional Settings" -msgstr "" +msgstr "Valgfrie innstillinger" #: dbasepage.ui msgctxt "" @@ -561,7 +554,7 @@ "label\n" "string.text" msgid "Indexes..." -msgstr "" +msgstr "Indekser..." #: dbwizconnectionpage.ui msgctxt "" @@ -570,7 +563,7 @@ "label\n" "string.text" msgid "label" -msgstr "" +msgstr "etikett" #: dbwizconnectionpage.ui msgctxt "" @@ -579,7 +572,7 @@ "label\n" "string.text" msgid "Path to the dBASE files:" -msgstr "" +msgstr "Sti til dBASE-filene:" #: dbwizconnectionpage.ui msgctxt "" @@ -588,7 +581,7 @@ "label\n" "string.text" msgid "_Create New" -msgstr "" +msgstr "_Lag ny" #: dbwizconnectionpage.ui msgctxt "" @@ -597,7 +590,7 @@ "label\n" "string.text" msgid "_Browse…" -msgstr "" +msgstr "_Bla gjennom …" #: dbwizmysqlintropage.ui msgctxt "" @@ -609,6 +602,8 @@ "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 @@ "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 @@ "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 @@ "label\n" "string.text" msgid "Connect directly" -msgstr "" +msgstr "Koble til direkte" #: dbwizmysqlintropage.ui msgctxt "" @@ -644,7 +639,7 @@ "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 @@ "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 @@ "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 @@ "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 @@ "label\n" "string.text" msgid "Browse" -msgstr "" +msgstr "Bla gjennom" #: dbwizspreadsheetpage.ui msgctxt "" @@ -689,7 +684,7 @@ "label\n" "string.text" msgid "Create New" -msgstr "" +msgstr "Lag ny" #: dbwizspreadsheetpage.ui msgctxt "" @@ -698,7 +693,7 @@ "label\n" "string.text" msgid "_Password required" -msgstr "" +msgstr "_Krev passord" #: dbwiztextpage.ui msgctxt "" @@ -707,7 +702,7 @@ "label\n" "string.text" msgid "Browse" -msgstr "" +msgstr "Bla igjennom" #: dbwiztextpage.ui msgctxt "" @@ -716,7 +711,7 @@ "label\n" "string.text" msgid "Create New" -msgstr "" +msgstr "Lag ny" #: deleteallrowsdialog.ui msgctxt "" @@ -725,7 +720,7 @@ "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 @@ "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 @@ "secondary_text\n" "string.text" msgid "The relation design has been changed." -msgstr "" +msgstr "Relasjonsutformingen er endret." #: directsqldialog.ui msgctxt "" @@ -755,14 +750,13 @@ 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 @@ 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 @@ msgstr "Tabellformat" #: finalpagewizard.ui -#, fuzzy msgctxt "" "finalpagewizard.ui\n" "headerText\n" @@ -999,7 +990,6 @@ msgstr "Lag en _ny database" #: generalpagewizard.ui -#, fuzzy msgctxt "" "generalpagewizard.ui\n" "embeddeddbLabel\n" @@ -1051,7 +1041,7 @@ "label\n" "string.text" msgid "_Host name:" -msgstr "" +msgstr "_Vertsnavn:" #: generalspecialjdbcdetailspage.ui msgctxt "" @@ -1060,7 +1050,7 @@ "label\n" "string.text" msgid "_Port number:" -msgstr "" +msgstr "_Portnummer:" #: generalspecialjdbcdetailspage.ui msgctxt "" @@ -1069,7 +1059,7 @@ "label\n" "string.text" msgid "Socket:" -msgstr "" +msgstr "Sokkel:" #: generalspecialjdbcdetailspage.ui msgctxt "" @@ -1078,7 +1068,7 @@ "label\n" "string.text" msgid "MySQL JDBC d_river class:" -msgstr "" +msgstr "MySQL JDBC-driverklasse:" #: generalspecialjdbcdetailspage.ui msgctxt "" @@ -1087,7 +1077,7 @@ "label\n" "string.text" msgid "Test Class" -msgstr "" +msgstr "Testklasse" #: generalspecialjdbcdetailspage.ui msgctxt "" @@ -1096,7 +1086,7 @@ "label\n" "string.text" msgid "Connection Settings" -msgstr "" +msgstr "Tilkoblings innstillinger" #: generalspecialjdbcdetailspage.ui msgctxt "" @@ -1105,7 +1095,7 @@ "label\n" "string.text" msgid "_Character set:" -msgstr "" +msgstr "_Tegnsett" #: generalspecialjdbcdetailspage.ui msgctxt "" @@ -1114,7 +1104,7 @@ "label\n" "string.text" msgid "Data Conversion" -msgstr "" +msgstr "Datakonvertering" #: generatedvaluespage.ui msgctxt "" @@ -1126,17 +1116,15 @@ 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 @@ "label\n" "string.text" msgid "New Index" -msgstr "" +msgstr "Ny indeks" #: indexdesigndialog.ui msgctxt "" @@ -1179,7 +1167,7 @@ "label\n" "string.text" msgid "Delete Current Index" -msgstr "" +msgstr "Slett denne indeksen" #: indexdesigndialog.ui msgctxt "" @@ -1188,7 +1176,7 @@ "label\n" "string.text" msgid "Rename Current Index" -msgstr "" +msgstr "Endre navn pÃ¥ denne indeksen" #: indexdesigndialog.ui msgctxt "" @@ -1197,7 +1185,7 @@ "label\n" "string.text" msgid "Save Current Index" -msgstr "" +msgstr "Lagre gjeldende indeks" #: indexdesigndialog.ui msgctxt "" @@ -1206,7 +1194,7 @@ "label\n" "string.text" msgid "Reset Current Index" -msgstr "" +msgstr "Nullstill gjeldende indeks" #: indexdesigndialog.ui msgctxt "" @@ -1215,7 +1203,7 @@ "label\n" "string.text" msgid "Index identifier:" -msgstr "" +msgstr "Indeksnavn:" #: indexdesigndialog.ui msgctxt "" @@ -1224,7 +1212,7 @@ "label\n" "string.text" msgid "_Unique" -msgstr "" +msgstr "_Unik" #: indexdesigndialog.ui msgctxt "" @@ -1233,7 +1221,7 @@ "label\n" "string.text" msgid "Fields:" -msgstr "" +msgstr "Felt:" #: indexdesigndialog.ui msgctxt "" @@ -1242,7 +1230,7 @@ "label\n" "string.text" msgid "Index Details" -msgstr "" +msgstr "Indeksdetaljer:" #: jdbcconnectionpage.ui msgctxt "" @@ -1251,7 +1239,7 @@ "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 @@ "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 @@ "label\n" "string.text" msgid "Path to the dBASE files:" -msgstr "" +msgstr "Sti til dBASE-filene:" #: jdbcconnectionpage.ui msgctxt "" @@ -1278,7 +1266,7 @@ "label\n" "string.text" msgid "_Create New" -msgstr "" +msgstr "_Lag ny" #: jdbcconnectionpage.ui msgctxt "" @@ -1287,7 +1275,7 @@ "label\n" "string.text" msgid "_Browse…" -msgstr "" +msgstr "_Bla gjennom …" #: jdbcconnectionpage.ui msgctxt "" @@ -1296,7 +1284,7 @@ "label\n" "string.text" msgid "JDBC d_river class:" -msgstr "" +msgstr "JDBC driverklasse:" #: jdbcconnectionpage.ui msgctxt "" @@ -1305,7 +1293,7 @@ "label\n" "string.text" msgid "_Test Class" -msgstr "" +msgstr "_Testklasse" #: joindialog.ui msgctxt "" @@ -1317,7 +1305,6 @@ msgstr "Egenskaper for sammenslÃ¥ing" #: joindialog.ui -#, fuzzy msgctxt "" "joindialog.ui\n" "label1\n" @@ -1327,7 +1314,6 @@ msgstr "Involverte tabeller" #: joindialog.ui -#, fuzzy msgctxt "" "joindialog.ui\n" "label2\n" @@ -1337,7 +1323,6 @@ msgstr "Involverte felt" #: joindialog.ui -#, fuzzy msgctxt "" "joindialog.ui\n" "label5\n" @@ -1416,7 +1401,7 @@ "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 @@ "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 @@ "label\n" "string.text" msgid "_Server:" -msgstr "" +msgstr "_Tjener:" #: ldapconnectionpage.ui msgctxt "" @@ -1443,7 +1428,7 @@ "label\n" "string.text" msgid "_Port number:" -msgstr "" +msgstr "_Portnummer:" #: ldapconnectionpage.ui msgctxt "" @@ -1452,7 +1437,7 @@ "label\n" "string.text" msgid "Default: 389" -msgstr "" +msgstr "Standard: 389" #: ldapconnectionpage.ui msgctxt "" @@ -1461,7 +1446,7 @@ "label\n" "string.text" msgid "Base _DN:" -msgstr "" +msgstr "Base _DN:" #: ldapconnectionpage.ui msgctxt "" @@ -1470,7 +1455,7 @@ "label\n" "string.text" msgid "Use _secure connection (SSL)" -msgstr "" +msgstr "Bruk _sikker tilkobling (SSL)" #: ldappage.ui msgctxt "" @@ -1479,7 +1464,7 @@ "label\n" "string.text" msgid "_Base DN:" -msgstr "" +msgstr "_Base DN:" #: ldappage.ui msgctxt "" @@ -1488,7 +1473,7 @@ "label\n" "string.text" msgid "Use secure connection (SSL)" -msgstr "" +msgstr "Bruk sikker tilkobling (SSL)" #: ldappage.ui msgctxt "" @@ -1497,7 +1482,7 @@ "label\n" "string.text" msgid "_Port number:" -msgstr "" +msgstr "_Portnummer:" #: ldappage.ui msgctxt "" @@ -1506,7 +1491,7 @@ "label\n" "string.text" msgid "Maximum number of _records:" -msgstr "" +msgstr "Maksimum antall _poster:" #: ldappage.ui msgctxt "" @@ -1515,7 +1500,7 @@ "label\n" "string.text" msgid "Connection Settings" -msgstr "" +msgstr "Koblings innstillinger" #: migratepage.ui msgctxt "" @@ -1524,7 +1509,7 @@ "label\n" "string.text" msgid "Migration Progress" -msgstr "" +msgstr "Framdrift i flyttingen" #: migratepage.ui msgctxt "" @@ -1533,7 +1518,7 @@ "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 @@ "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 @@ "label\n" "string.text" msgid "Overall progress:" -msgstr "" +msgstr "Framdrift totalt:" #: migratepage.ui msgctxt "" @@ -1560,7 +1545,7 @@ "label\n" "string.text" msgid "document $current$ of $overall$" -msgstr "" +msgstr "dokument $current$ av $overall$" #: migratepage.ui msgctxt "" @@ -1569,7 +1554,7 @@ "label\n" "string.text" msgid "Current progress:" -msgstr "" +msgstr "Gjeldene framdrift" #: migratepage.ui msgctxt "" @@ -1578,7 +1563,7 @@ "label\n" "string.text" msgid "Current object:" -msgstr "" +msgstr "Gjeldende objekt" #: mysqlnativepage.ui msgctxt "" @@ -1587,7 +1572,7 @@ "label\n" "string.text" msgid "Connection Settings" -msgstr "" +msgstr "Koblings innstillinger" #: mysqlnativepage.ui msgctxt "" @@ -1596,7 +1581,7 @@ "label\n" "string.text" msgid "_User name:" -msgstr "" +msgstr "_Brukernavn:" #: mysqlnativepage.ui msgctxt "" @@ -1605,7 +1590,7 @@ "label\n" "string.text" msgid "Password required" -msgstr "" +msgstr "Passord kreves" #: mysqlnativepage.ui msgctxt "" @@ -1614,7 +1599,7 @@ "label\n" "string.text" msgid "User Authentication" -msgstr "" +msgstr "Brukerautentisering" #: mysqlnativepage.ui msgctxt "" @@ -1623,7 +1608,7 @@ "label\n" "string.text" msgid "_Character set:" -msgstr "" +msgstr "_Tegnsett" #: mysqlnativepage.ui msgctxt "" @@ -1632,7 +1617,7 @@ "label\n" "string.text" msgid "Data Conversion" -msgstr "" +msgstr "Datakonvertering" #: mysqlnativesettings.ui msgctxt "" @@ -1641,7 +1626,7 @@ "label\n" "string.text" msgid "_Database name:" -msgstr "" +msgstr "_Databasenavn:" #: mysqlnativesettings.ui msgctxt "" @@ -1650,7 +1635,7 @@ "label\n" "string.text" msgid "Se_rver/port" -msgstr "" +msgstr "Tjener/port" #: mysqlnativesettings.ui msgctxt "" @@ -1659,7 +1644,7 @@ "label\n" "string.text" msgid "_Server:" -msgstr "" +msgstr "_Tjener:" #: mysqlnativesettings.ui msgctxt "" @@ -1668,7 +1653,7 @@ "label\n" "string.text" msgid "_Port:" -msgstr "" +msgstr "_Port:" #: mysqlnativesettings.ui msgctxt "" @@ -1677,7 +1662,7 @@ "label\n" "string.text" msgid "Default: 3306" -msgstr "" +msgstr "Standard: 3306" #: mysqlnativesettings.ui msgctxt "" @@ -1686,7 +1671,7 @@ "label\n" "string.text" msgid "So_cket:" -msgstr "" +msgstr "Kontakt:" #: mysqlnativesettings.ui msgctxt "" @@ -1695,7 +1680,7 @@ "label\n" "string.text" msgid "Named p_ipe:" -msgstr "" +msgstr "Navngitt datakanal:" #: namematchingpage.ui msgctxt "" @@ -1704,7 +1689,7 @@ "label\n" "string.text" msgid "_All" -msgstr "" +msgstr "_Alle" #: namematchingpage.ui msgctxt "" @@ -1713,7 +1698,7 @@ "label\n" "string.text" msgid "Non_e" -msgstr "" +msgstr "_Ingen" #: namematchingpage.ui msgctxt "" @@ -1722,7 +1707,7 @@ "label\n" "string.text" msgid "Source table: " -msgstr "" +msgstr "Kilde tabell: " #: namematchingpage.ui msgctxt "" @@ -1731,7 +1716,7 @@ "label\n" "string.text" msgid "Destination table: " -msgstr "" +msgstr "MÃ¥ltabell: " #: odbcpage.ui msgctxt "" @@ -1740,7 +1725,7 @@ "label\n" "string.text" msgid "_Character set:" -msgstr "" +msgstr "_Tegnsett:" #: odbcpage.ui msgctxt "" @@ -1749,7 +1734,7 @@ "label\n" "string.text" msgid "Data Conversion" -msgstr "" +msgstr "Datakonvertering" #: odbcpage.ui msgctxt "" @@ -1758,7 +1743,7 @@ "label\n" "string.text" msgid "ODBC _options:" -msgstr "" +msgstr "_ODBC-innstillinger:" #: odbcpage.ui msgctxt "" @@ -1767,7 +1752,7 @@ "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 @@ "label\n" "string.text" msgid "Optional Settings" -msgstr "" +msgstr "Valgfrie innstillinger" #: parametersdialog.ui msgctxt "" @@ -1785,7 +1770,7 @@ "title\n" "string.text" msgid "Parameter Input" -msgstr "" +msgstr "Parameter inndata" #: parametersdialog.ui msgctxt "" @@ -1794,7 +1779,7 @@ "label\n" "string.text" msgid "_Value:" -msgstr "" +msgstr "_Verdi:" #: parametersdialog.ui msgctxt "" @@ -1803,7 +1788,7 @@ "label\n" "string.text" msgid "_Next" -msgstr "" +msgstr "_Neste" #: parametersdialog.ui msgctxt "" @@ -1812,7 +1797,7 @@ "label\n" "string.text" msgid "_Parameters" -msgstr "" +msgstr "_Parametre" #: password.ui msgctxt "" @@ -1824,44 +1809,40 @@ 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 @@ "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 @@ "\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 @@ "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 @@ "3\n" "stringlist.text" msgid "<=" -msgstr "" +msgstr "<=" #: queryfilterdialog.ui msgctxt "" @@ -1994,7 +1982,7 @@ "5\n" "stringlist.text" msgid ">=" -msgstr "" +msgstr ">=" #: queryfilterdialog.ui msgctxt "" @@ -2114,14 +2102,13 @@ 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 @@ 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 @@ msgstr "Relasjoner" #: relationdialog.ui -#, fuzzy msgctxt "" "relationdialog.ui\n" "label1\n" @@ -2171,7 +2156,6 @@ msgstr "Involverte tabeller" #: relationdialog.ui -#, fuzzy msgctxt "" "relationdialog.ui\n" "label2\n" @@ -2217,14 +2201,13 @@ 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 @@ msgstr "Velg standard_innstillinger" #: relationdialog.ui -#, fuzzy msgctxt "" "relationdialog.ui\n" "label4\n" @@ -2327,14 +2309,13 @@ 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 @@ "title\n" "string.text" msgid "Copy RTF Table" -msgstr "" +msgstr "Kopier RTF tabell" #: savedialog.ui msgctxt "" @@ -2373,24 +2354,22 @@ 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 @@ "title\n" "string.text" msgid "Exit Index Design" -msgstr "" +msgstr "Avslutt indeksoppsett" #: saveindexdialog.ui msgctxt "" @@ -2408,7 +2387,7 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "label\n" "string.text" msgid "_Database name:" -msgstr "" +msgstr "_Databasenavn:" #: specialjdbcconnectionpage.ui msgctxt "" @@ -2579,7 +2558,7 @@ "label\n" "string.text" msgid "_Server:" -msgstr "" +msgstr "_Tjener:" #: specialjdbcconnectionpage.ui msgctxt "" @@ -2588,7 +2567,7 @@ "label\n" "string.text" msgid "_Port number:" -msgstr "" +msgstr "_Portnummer:" #: specialjdbcconnectionpage.ui msgctxt "" @@ -2597,7 +2576,7 @@ "label\n" "string.text" msgid "Default: 3306" -msgstr "" +msgstr "Standard: 3306" #: specialjdbcconnectionpage.ui msgctxt "" @@ -2606,7 +2585,7 @@ "label\n" "string.text" msgid "MySQL JDBC d_river class:" -msgstr "" +msgstr "MySQL JDBC driverklasse:" #: specialjdbcconnectionpage.ui msgctxt "" @@ -2615,7 +2594,7 @@ "label\n" "string.text" msgid "_Test Class" -msgstr "" +msgstr "_Testklasse" #: specialsettingspage.ui msgctxt "" @@ -2645,14 +2624,13 @@ 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 @@ 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 @@ 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 @@ "title\n" "string.text" msgid "Error Details" -msgstr "" +msgstr "Feildetaljer" #: sqlexception.ui msgctxt "" @@ -2852,7 +2828,7 @@ "label\n" "string.text" msgid "Summary" -msgstr "" +msgstr "Sammendrag" #: summarypage.ui msgctxt "" @@ -2861,7 +2837,7 @@ "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 @@ "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 @@ "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 @@ "secondary_text\n" "string.text" msgid "The table has been changed." -msgstr "" +msgstr "Tabellen er endret." #: tablesfilterdialog.ui msgctxt "" @@ -2909,7 +2885,6 @@ msgstr "Marker tabellene som skal være synlige for programmene." #: tablesfilterpage.ui -#, fuzzy msgctxt "" "tablesfilterpage.ui\n" "label1\n" @@ -2961,7 +2936,7 @@ "title\n" "string.text" msgid "Text Connection Settings" -msgstr "" +msgstr "Innstillinger for tekstkoblinger" #: textpage.ui msgctxt "" @@ -2970,7 +2945,7 @@ "label\n" "string.text" msgid "Plain text files (*.txt)" -msgstr "" +msgstr "Enkle tekstfiler (*.txt)" #: textpage.ui msgctxt "" @@ -2979,7 +2954,7 @@ "label\n" "string.text" msgid "Comma-separated value files (*.csv)" -msgstr "" +msgstr "Kommaseparerte filer (*.CVS)" #: textpage.ui msgctxt "" @@ -2988,7 +2963,7 @@ "label\n" "string.text" msgid "Custom:" -msgstr "" +msgstr "Tilpasset:" #: textpage.ui msgctxt "" @@ -2997,7 +2972,7 @@ "label\n" "string.text" msgid "Custom: *.abc" -msgstr "" +msgstr "Tilpasset: *.abc" #: textpage.ui msgctxt "" @@ -3006,7 +2981,7 @@ "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 @@ "label\n" "string.text" msgid "_Text contains headers" -msgstr "" +msgstr "_Teksten inneholder topptekster" #: textpage.ui msgctxt "" @@ -3024,7 +2999,7 @@ "label\n" "string.text" msgid "Field separator:" -msgstr "" +msgstr "Feltskille" #: textpage.ui msgctxt "" @@ -3033,7 +3008,7 @@ "label\n" "string.text" msgid "Text separator:" -msgstr "" +msgstr "Tekstskille" #: textpage.ui msgctxt "" @@ -3042,7 +3017,7 @@ "label\n" "string.text" msgid "Decimal separator:" -msgstr "" +msgstr "Desimalskille:" #: textpage.ui msgctxt "" @@ -3051,7 +3026,7 @@ "label\n" "string.text" msgid "Thousands separator:" -msgstr "" +msgstr "Tusenskille:" #: textpage.ui msgctxt "" @@ -3060,7 +3035,7 @@ "0\n" "stringlist.text" msgid "." -msgstr "" +msgstr "," #: textpage.ui msgctxt "" @@ -3069,7 +3044,7 @@ "1\n" "stringlist.text" msgid "," -msgstr "" +msgstr "," #: textpage.ui msgctxt "" @@ -3078,7 +3053,7 @@ "2\n" "stringlist.text" msgid ";" -msgstr "" +msgstr ";" #: textpage.ui msgctxt "" @@ -3087,7 +3062,7 @@ "3\n" "stringlist.text" msgid ":" -msgstr "" +msgstr ":" #: textpage.ui msgctxt "" @@ -3096,7 +3071,7 @@ "0\n" "stringlist.text" msgid "." -msgstr "" +msgstr "." #: textpage.ui msgctxt "" @@ -3105,7 +3080,7 @@ "1\n" "stringlist.text" msgid "," -msgstr "" +msgstr "," #: textpage.ui msgctxt "" @@ -3114,7 +3089,7 @@ "label\n" "string.text" msgid "Row Format" -msgstr "" +msgstr "Radformat" #: textpage.ui msgctxt "" @@ -3123,7 +3098,7 @@ "label\n" "string.text" msgid "_Character set:" -msgstr "" +msgstr "_Tegnsett:" #: textpage.ui msgctxt "" @@ -3132,7 +3107,7 @@ "label\n" "string.text" msgid "Data Conversion" -msgstr "" +msgstr "Datakonvertering" #: typeselectpage.ui msgctxt "" @@ -3141,7 +3116,7 @@ "label\n" "string.text" msgid "Column Information" -msgstr "" +msgstr "Kolonneinformasjon" #: typeselectpage.ui msgctxt "" @@ -3150,7 +3125,7 @@ "label\n" "string.text" msgid "Lines (ma_x.):" -msgstr "" +msgstr "Linjer (maks):" #: typeselectpage.ui msgctxt "" @@ -3159,7 +3134,7 @@ "label\n" "string.text" msgid "_Auto" -msgstr "" +msgstr "_Automatisk" #: typeselectpage.ui msgctxt "" @@ -3168,10 +3143,9 @@ "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 @@ "label\n" "string.text" msgid "Us_er:" -msgstr "" +msgstr "Bruker:" #: useradminpage.ui msgctxt "" @@ -3205,17 +3179,16 @@ "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 @@ "label\n" "string.text" msgid "_Delete User..." -msgstr "" +msgstr "_Slett bruker …" #: useradminpage.ui msgctxt "" @@ -3233,7 +3206,7 @@ "label\n" "string.text" msgid "User Selection" -msgstr "" +msgstr "Brukervalg" #: useradminpage.ui msgctxt "" @@ -3242,7 +3215,7 @@ "label\n" "string.text" msgid "Access Rights for Selected User" -msgstr "" +msgstr "Tilgangsrettigheter for valgt bruker" #: userdetailspage.ui msgctxt "" @@ -3251,7 +3224,7 @@ "label\n" "string.text" msgid "_Host name:" -msgstr "" +msgstr "_Vertsnavn:" #: userdetailspage.ui msgctxt "" @@ -3260,7 +3233,7 @@ "label\n" "string.text" msgid "_Port number:" -msgstr "" +msgstr "_Portnummer:" #: userdetailspage.ui msgctxt "" @@ -3269,7 +3242,7 @@ "label\n" "string.text" msgid "_Use catalog" -msgstr "" +msgstr "_Bruk katalog" #: userdetailspage.ui msgctxt "" @@ -3278,7 +3251,7 @@ "label\n" "string.text" msgid "_Driver settings:" -msgstr "" +msgstr "_Driverinnstillinger:" #: userdetailspage.ui msgctxt "" @@ -3287,7 +3260,7 @@ "label\n" "string.text" msgid "Connection Settings" -msgstr "" +msgstr "Tilkoblingsinnstillinger" #: userdetailspage.ui msgctxt "" @@ -3296,7 +3269,7 @@ "label\n" "string.text" msgid "_Character set:" -msgstr "" +msgstr "_Tegnsett:" #: userdetailspage.ui msgctxt "" @@ -3305,4 +3278,4 @@ "label\n" "string.text" msgid "Data conversion" -msgstr "" +msgstr "Datakonvertering" diff -Nru libreoffice-5.1.1~rc2/translations/source/nb/desktop/uiconfig/ui.po libreoffice-5.1.2~rc2/translations/source/nb/desktop/uiconfig/ui.po --- libreoffice-5.1.1~rc2/translations/source/nb/desktop/uiconfig/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/nb/desktop/uiconfig/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 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 @@ "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 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/nb/dictionaries/is.po libreoffice-5.1.2~rc2/translations/source/nb/dictionaries/is.po --- libreoffice-5.1.1~rc2/translations/source/nb/dictionaries/is.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/nb/dictionaries/is.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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 @@ "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 @@ "dispname\n" "description.text" msgid "Icelandic spelling dictionary, hyphenation rules and thesaurus" -msgstr "" +msgstr "Islandsk stavekontroll, orddeling og synonymordbok" diff -Nru libreoffice-5.1.1~rc2/translations/source/nb/dictionaries/sv_SE.po libreoffice-5.1.2~rc2/translations/source/nb/dictionaries/sv_SE.po --- libreoffice-5.1.1~rc2/translations/source/nb/dictionaries/sv_SE.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/nb/dictionaries/sv_SE.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "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 @@ "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 -Nru libreoffice-5.1.1~rc2/translations/source/nb/editeng/source/editeng.po libreoffice-5.1.2~rc2/translations/source/nb/editeng/source/editeng.po --- libreoffice-5.1.1~rc2/translations/source/nb/editeng/source/editeng.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/nb/editeng/source/editeng.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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 @@ "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 @@ msgstr "Endre bokstavstørrelse" #: editeng.src -#, fuzzy msgctxt "" "editeng.src\n" "RID_MENU_SPELL\n" @@ -132,7 +131,7 @@ "MN_AUTOCORR\n" "menuitem.text" msgid "AutoCorrect ~To" -msgstr "" +msgstr "Auto korriger ~til" #: editeng.src msgctxt "" @@ -141,7 +140,7 @@ "MN_AUTO_CORRECT_DLG\n" "menuitem.text" msgid "Auto~Correct Options..." -msgstr "" +msgstr "Innstillinger for ~autoretting …" #: editeng.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/nb/extensions/source/scanner.po libreoffice-5.1.2~rc2/translations/source/nb/extensions/source/scanner.po --- libreoffice-5.1.1~rc2/translations/source/nb/extensions/source/scanner.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/nb/extensions/source/scanner.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 @@ "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 @@ 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 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/nb/extensions/uiconfig/sabpilot/ui.po libreoffice-5.1.2~rc2/translations/source/nb/extensions/uiconfig/sabpilot/ui.po --- libreoffice-5.1.1~rc2/translations/source/nb/extensions/uiconfig/sabpilot/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/nb/extensions/uiconfig/sabpilot/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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 @@ "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 @@ "label\n" "string.text" msgid "Existing fields" -msgstr "" +msgstr "Eksisterende felt" #: contentfieldpage.ui msgctxt "" @@ -32,7 +32,7 @@ "label\n" "string.text" msgid "Display field" -msgstr "" +msgstr "Vis felt" #: contenttablepage.ui msgctxt "" @@ -41,7 +41,7 @@ "label\n" "string.text" msgid "Data source" -msgstr "" +msgstr "Datakilde" #: contenttablepage.ui msgctxt "" @@ -50,7 +50,7 @@ "label\n" "string.text" msgid "Content type" -msgstr "" +msgstr "Inneholdstype" #: contenttablepage.ui msgctxt "" @@ -59,7 +59,7 @@ "label\n" "string.text" msgid "Content" -msgstr "" +msgstr "Innehold" #: contenttablepage.ui msgctxt "" @@ -68,7 +68,7 @@ "label\n" "string.text" msgid "Form" -msgstr "" +msgstr "Skjema" #: contenttablepage.ui msgctxt "" @@ -82,6 +82,10 @@ "\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 @@ "label\n" "string.text" msgid "Control" -msgstr "" +msgstr "Kontrollelement" #: datasourcepage.ui msgctxt "" @@ -114,10 +118,9 @@ "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 @@ "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 @@ "label\n" "string.text" msgid "_Yes, the following:" -msgstr "" +msgstr "_Ja, dette:" #: defaultfieldselectionpage.ui msgctxt "" @@ -187,7 +190,7 @@ "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 @@ "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 @@ "label\n" "string.text" msgid "Field from the _Value Table" -msgstr "" +msgstr "Felt fra _verditabellen" #: fieldlinkpage.ui msgctxt "" @@ -242,7 +245,7 @@ "label\n" "string.text" msgid "Field from the _List Table" -msgstr "" +msgstr "Felt fra _listetabellen" #: gridfieldsselectionpage.ui msgctxt "" @@ -251,7 +254,7 @@ "label\n" "string.text" msgid "Data source" -msgstr "" +msgstr "Datakilde" #: gridfieldsselectionpage.ui msgctxt "" @@ -260,7 +263,7 @@ "label\n" "string.text" msgid "Content type" -msgstr "" +msgstr "Inneholdstype" #: gridfieldsselectionpage.ui msgctxt "" @@ -269,7 +272,7 @@ "label\n" "string.text" msgid "Content" -msgstr "" +msgstr "Innehold" #: gridfieldsselectionpage.ui msgctxt "" @@ -278,7 +281,7 @@ "label\n" "string.text" msgid "Form" -msgstr "" +msgstr "Skjema" #: gridfieldsselectionpage.ui msgctxt "" @@ -287,7 +290,7 @@ "label\n" "string.text" msgid "Selected fields" -msgstr "" +msgstr "Valgte felt" #: gridfieldsselectionpage.ui msgctxt "" @@ -296,7 +299,7 @@ "label\n" "string.text" msgid "->" -msgstr "" +msgstr "->" #: gridfieldsselectionpage.ui msgctxt "" @@ -305,7 +308,7 @@ "label\n" "string.text" msgid "=>>" -msgstr "" +msgstr "=>>" #: gridfieldsselectionpage.ui msgctxt "" @@ -314,7 +317,7 @@ "label\n" "string.text" msgid "<-" -msgstr "" +msgstr "<-" #: gridfieldsselectionpage.ui msgctxt "" @@ -323,7 +326,7 @@ "label\n" "string.text" msgid "<<=" -msgstr "" +msgstr "<<=" #: gridfieldsselectionpage.ui msgctxt "" @@ -332,7 +335,7 @@ "label\n" "string.text" msgid "Existing fields" -msgstr "" +msgstr "Eksisterende felt" #: gridfieldsselectionpage.ui msgctxt "" @@ -341,7 +344,7 @@ "label\n" "string.text" msgid "Table element" -msgstr "" +msgstr "Tabellelement" #: groupradioselectionpage.ui msgctxt "" @@ -350,7 +353,7 @@ "label\n" "string.text" msgid "Data source" -msgstr "" +msgstr "Datakilde" #: groupradioselectionpage.ui msgctxt "" @@ -359,7 +362,7 @@ "label\n" "string.text" msgid "Content type" -msgstr "" +msgstr "Inneholdstype" #: groupradioselectionpage.ui msgctxt "" @@ -368,7 +371,7 @@ "label\n" "string.text" msgid "Content" -msgstr "" +msgstr "Innehold" #: groupradioselectionpage.ui msgctxt "" @@ -377,7 +380,7 @@ "label\n" "string.text" msgid "Form" -msgstr "" +msgstr "Skjema" #: groupradioselectionpage.ui msgctxt "" @@ -386,7 +389,7 @@ "label\n" "string.text" msgid "_Option fields" -msgstr "" +msgstr "_Alternativfelt" #: groupradioselectionpage.ui msgctxt "" @@ -395,7 +398,7 @@ "label\n" "string.text" msgid "_>>" -msgstr "" +msgstr "_>>" #: groupradioselectionpage.ui msgctxt "" @@ -404,7 +407,7 @@ "label\n" "string.text" msgid "_<<" -msgstr "" +msgstr "_<<" #: groupradioselectionpage.ui msgctxt "" @@ -413,7 +416,7 @@ "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 @@ "label\n" "string.text" msgid "Table element" -msgstr "" +msgstr "Tabellelement" #: invokeadminpage.ui msgctxt "" @@ -468,7 +471,7 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "label\n" "string.text" msgid "_Option fields" -msgstr "" +msgstr "_Alternativfelt" #: selecttablepage.ui msgctxt "" @@ -619,7 +622,6 @@ msgstr "Annen ekstern datakilde" #: selecttypepage.ui -#, fuzzy msgctxt "" "selecttypepage.ui\n" "label1\n" @@ -657,6 +659,12 @@ "\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 @@ "label\n" "string.text" msgid "_Data source:" -msgstr "" +msgstr "_Datakilde:" #: tableselectionpage.ui msgctxt "" @@ -674,7 +682,7 @@ "label\n" "string.text" msgid "_..." -msgstr "" +msgstr "_..." #: tableselectionpage.ui msgctxt "" @@ -683,7 +691,7 @@ "label\n" "string.text" msgid "_Table / Query:" -msgstr "" +msgstr "_Tabell/spørring:" #: tableselectionpage.ui msgctxt "" @@ -692,4 +700,4 @@ "label\n" "string.text" msgid "Data" -msgstr "" +msgstr "Data" diff -Nru libreoffice-5.1.1~rc2/translations/source/nb/extensions/uiconfig/sbibliography/ui.po libreoffice-5.1.2~rc2/translations/source/nb/extensions/uiconfig/sbibliography/ui.po --- libreoffice-5.1.1~rc2/translations/source/nb/extensions/uiconfig/sbibliography/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/nb/extensions/uiconfig/sbibliography/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,18 +3,18 @@ msgstr "" "Project-Id-Version: PACKAGE 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 @@ "label\n" "string.text" msgid "_Short name" -msgstr "" +msgstr "_Kortnavn" #: generalpage.ui msgctxt "" @@ -50,7 +50,7 @@ "label\n" "string.text" msgid "_Type" -msgstr "" +msgstr "_Type" #: generalpage.ui msgctxt "" @@ -59,7 +59,7 @@ "label\n" "string.text" msgid "Author(s)" -msgstr "" +msgstr "Forfatter(er)" #: generalpage.ui msgctxt "" @@ -68,7 +68,7 @@ "label\n" "string.text" msgid "_Publisher" -msgstr "" +msgstr "_Utgiver" #: generalpage.ui msgctxt "" @@ -77,7 +77,7 @@ "label\n" "string.text" msgid "_Chapter" -msgstr "" +msgstr "_Kapittel" #: generalpage.ui msgctxt "" @@ -86,7 +86,7 @@ "label\n" "string.text" msgid "Tit_le" -msgstr "" +msgstr "Tittel" #: generalpage.ui msgctxt "" @@ -95,7 +95,7 @@ "label\n" "string.text" msgid "A_ddress" -msgstr "" +msgstr "Adresse" #: generalpage.ui msgctxt "" @@ -104,7 +104,7 @@ "label\n" "string.text" msgid "Pa_ge(s)" -msgstr "" +msgstr "Side(r)" #: generalpage.ui msgctxt "" @@ -113,7 +113,7 @@ "label\n" "string.text" msgid "_Year" -msgstr "" +msgstr "_Ã…r" #: generalpage.ui msgctxt "" @@ -122,7 +122,7 @@ "label\n" "string.text" msgid "_ISBN" -msgstr "" +msgstr "_ISBN" #: generalpage.ui msgctxt "" @@ -131,7 +131,7 @@ "label\n" "string.text" msgid "Editor" -msgstr "" +msgstr "Forfatter" #: generalpage.ui msgctxt "" @@ -140,7 +140,7 @@ "label\n" "string.text" msgid "_Book title" -msgstr "" +msgstr "_Boktittel" #: generalpage.ui msgctxt "" @@ -149,7 +149,7 @@ "label\n" "string.text" msgid "Ed_ition" -msgstr "" +msgstr "Utgave" #: generalpage.ui msgctxt "" @@ -158,7 +158,7 @@ "label\n" "string.text" msgid "Volume" -msgstr "" +msgstr "Volum" #: generalpage.ui msgctxt "" @@ -167,7 +167,7 @@ "label\n" "string.text" msgid "Instit_ution" -msgstr "" +msgstr "Institusjon" #: generalpage.ui msgctxt "" @@ -176,7 +176,7 @@ "label\n" "string.text" msgid "_Month" -msgstr "" +msgstr "_MÃ¥ned" #: generalpage.ui msgctxt "" @@ -185,7 +185,7 @@ "label\n" "string.text" msgid "Publication t_ype" -msgstr "" +msgstr "Publikasjonstype" #: generalpage.ui msgctxt "" @@ -194,7 +194,7 @@ "label\n" "string.text" msgid "University" -msgstr "" +msgstr "Universitet" #: generalpage.ui msgctxt "" @@ -203,7 +203,7 @@ "label\n" "string.text" msgid "Type of re_port" -msgstr "" +msgstr "Rapporttype" #: generalpage.ui msgctxt "" @@ -212,7 +212,7 @@ "label\n" "string.text" msgid "Organi_zation" -msgstr "" +msgstr "Organisasjon" #: generalpage.ui msgctxt "" @@ -221,7 +221,7 @@ "label\n" "string.text" msgid "_Journal" -msgstr "" +msgstr "_Journal" #: generalpage.ui msgctxt "" @@ -230,7 +230,7 @@ "label\n" "string.text" msgid "Ann_otation" -msgstr "" +msgstr "Merknader" #: generalpage.ui msgctxt "" @@ -239,7 +239,7 @@ "label\n" "string.text" msgid "Numb_er" -msgstr "" +msgstr "Tall" #: generalpage.ui msgctxt "" @@ -248,7 +248,7 @@ "label\n" "string.text" msgid "_Note" -msgstr "" +msgstr "_Merknad" #: generalpage.ui msgctxt "" @@ -257,7 +257,7 @@ "label\n" "string.text" msgid "Se_ries" -msgstr "" +msgstr "Serier" #: generalpage.ui msgctxt "" @@ -266,7 +266,7 @@ "label\n" "string.text" msgid "URL" -msgstr "" +msgstr "URL" #: generalpage.ui msgctxt "" @@ -275,7 +275,7 @@ "label\n" "string.text" msgid "User-defined field _1" -msgstr "" +msgstr "Bruker definert felt_1" #: generalpage.ui msgctxt "" @@ -284,7 +284,7 @@ "label\n" "string.text" msgid "User-defined field _4" -msgstr "" +msgstr "Brukerdefinert felt_4" #: generalpage.ui msgctxt "" @@ -293,7 +293,7 @@ "label\n" "string.text" msgid "User-defined field _2" -msgstr "" +msgstr "Brukerdefinert felt_2" #: generalpage.ui msgctxt "" @@ -302,7 +302,7 @@ "label\n" "string.text" msgid "User-defined field _5" -msgstr "" +msgstr "Brukerdefinert felt_5" #: generalpage.ui msgctxt "" @@ -311,7 +311,7 @@ "label\n" "string.text" msgid "User-defined field _3" -msgstr "" +msgstr "Brukerdefinert felt_3" #: mappingdialog.ui msgctxt "" @@ -320,7 +320,7 @@ "title\n" "string.text" msgid "Column Layout for Table %1" -msgstr "" +msgstr "Kolonneoppsetting for tabellen %1" #: mappingdialog.ui msgctxt "" @@ -329,7 +329,7 @@ "label\n" "string.text" msgid "_Short name" -msgstr "" +msgstr "_Kortnavn" #: mappingdialog.ui msgctxt "" @@ -338,7 +338,7 @@ "label\n" "string.text" msgid "_Author(s)" -msgstr "" +msgstr "_Forfatter(e)" #: mappingdialog.ui msgctxt "" @@ -347,7 +347,7 @@ "label\n" "string.text" msgid "_Publisher" -msgstr "" +msgstr "_Utgiver" #: mappingdialog.ui msgctxt "" @@ -356,7 +356,7 @@ "label\n" "string.text" msgid "_Chapter" -msgstr "" +msgstr "_Kapittel" #: mappingdialog.ui msgctxt "" @@ -365,7 +365,7 @@ "label\n" "string.text" msgid "Editor" -msgstr "" +msgstr "Forfatter" #: mappingdialog.ui msgctxt "" @@ -374,7 +374,7 @@ "label\n" "string.text" msgid "_Type" -msgstr "" +msgstr "_Type" #: mappingdialog.ui msgctxt "" @@ -383,7 +383,7 @@ "label\n" "string.text" msgid "_Year" -msgstr "" +msgstr "_Ã…r" #: mappingdialog.ui msgctxt "" @@ -392,7 +392,7 @@ "label\n" "string.text" msgid "Tit_le" -msgstr "" +msgstr "Tittel" #: mappingdialog.ui msgctxt "" @@ -401,7 +401,7 @@ "label\n" "string.text" msgid "A_ddress" -msgstr "" +msgstr "Adresse" #: mappingdialog.ui msgctxt "" @@ -410,7 +410,7 @@ "label\n" "string.text" msgid "_ISBN" -msgstr "" +msgstr "_ISBN" #: mappingdialog.ui msgctxt "" @@ -419,7 +419,7 @@ "label\n" "string.text" msgid "Pa_ge(s)" -msgstr "" +msgstr "Side(r)" #: mappingdialog.ui msgctxt "" @@ -428,7 +428,7 @@ "label\n" "string.text" msgid "Ed_ition" -msgstr "" +msgstr "Utgave" #: mappingdialog.ui msgctxt "" @@ -437,7 +437,7 @@ "label\n" "string.text" msgid "_Book title" -msgstr "" +msgstr "_Boktittel" #: mappingdialog.ui msgctxt "" @@ -446,7 +446,7 @@ "label\n" "string.text" msgid "Volume" -msgstr "" +msgstr "Utgave" #: mappingdialog.ui msgctxt "" @@ -455,7 +455,7 @@ "label\n" "string.text" msgid "Publication t_ype" -msgstr "" +msgstr "_Publikasjonstype" #: mappingdialog.ui msgctxt "" @@ -464,7 +464,7 @@ "label\n" "string.text" msgid "Organi_zation" -msgstr "" +msgstr "Organisasjon" #: mappingdialog.ui msgctxt "" @@ -473,7 +473,7 @@ "label\n" "string.text" msgid "Instit_ution" -msgstr "" +msgstr "Institusjon" #: mappingdialog.ui msgctxt "" @@ -482,7 +482,7 @@ "label\n" "string.text" msgid "Uni_versity" -msgstr "" +msgstr "Universitet" #: mappingdialog.ui msgctxt "" @@ -491,7 +491,7 @@ "label\n" "string.text" msgid "Type of re_port" -msgstr "" +msgstr "Rapporttype" #: mappingdialog.ui msgctxt "" @@ -500,7 +500,7 @@ "label\n" "string.text" msgid "_Month" -msgstr "" +msgstr "_MÃ¥ned" #: mappingdialog.ui msgctxt "" @@ -509,7 +509,7 @@ "label\n" "string.text" msgid "_Journal" -msgstr "" +msgstr "_Journal" #: mappingdialog.ui msgctxt "" @@ -518,7 +518,7 @@ "label\n" "string.text" msgid "Numb_er" -msgstr "" +msgstr "Tall" #: mappingdialog.ui msgctxt "" @@ -527,7 +527,7 @@ "label\n" "string.text" msgid "Se_ries" -msgstr "" +msgstr "Serier" #: mappingdialog.ui msgctxt "" @@ -536,7 +536,7 @@ "label\n" "string.text" msgid "Ann_otation" -msgstr "" +msgstr "Merknader" #: mappingdialog.ui msgctxt "" @@ -545,7 +545,7 @@ "label\n" "string.text" msgid "_Note" -msgstr "" +msgstr "Merknad" #: mappingdialog.ui msgctxt "" @@ -554,7 +554,7 @@ "label\n" "string.text" msgid "URL" -msgstr "" +msgstr "URL" #: mappingdialog.ui msgctxt "" @@ -563,7 +563,7 @@ "label\n" "string.text" msgid "User-defined field _1" -msgstr "" +msgstr "Bruker definert felt_1" #: mappingdialog.ui msgctxt "" @@ -572,7 +572,7 @@ "label\n" "string.text" msgid "User-defined field _2" -msgstr "" +msgstr "Brukerdefinert felt_2" #: mappingdialog.ui msgctxt "" @@ -581,7 +581,7 @@ "label\n" "string.text" msgid "User-defined field _3" -msgstr "" +msgstr "Brukerdefinert felt_3" #: mappingdialog.ui msgctxt "" @@ -590,7 +590,7 @@ "label\n" "string.text" msgid "User-defined field _4" -msgstr "" +msgstr "Brukerdefinert felt_4" #: mappingdialog.ui msgctxt "" @@ -599,7 +599,7 @@ "label\n" "string.text" msgid "User-defined field _5" -msgstr "" +msgstr "Brukerdefinert felt_5" #: mappingdialog.ui msgctxt "" @@ -608,4 +608,4 @@ "label\n" "string.text" msgid "Column Names" -msgstr "" +msgstr "Kolonnenavn" diff -Nru libreoffice-5.1.1~rc2/translations/source/nb/extensions/uiconfig/scanner/ui.po libreoffice-5.1.2~rc2/translations/source/nb/extensions/uiconfig/scanner/ui.po --- libreoffice-5.1.1~rc2/translations/source/nb/extensions/uiconfig/scanner/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/nb/extensions/uiconfig/scanner/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,18 +3,18 @@ msgstr "" "Project-Id-Version: PACKAGE 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 @@ "0\n" "stringlist.text" msgid "Linear ascending" -msgstr "" +msgstr "Lineært stigende" #: griddialog.ui msgctxt "" @@ -32,7 +32,7 @@ "1\n" "stringlist.text" msgid "Linear descending" -msgstr "" +msgstr "Lineært synkende" #: griddialog.ui msgctxt "" @@ -59,7 +59,7 @@ "label\n" "string.text" msgid "_Set" -msgstr "" +msgstr "_Sett" #: sanedialog.ui msgctxt "" @@ -167,7 +167,7 @@ "label\n" "string.text" msgid "Se_t" -msgstr "" +msgstr "Sett" #: sanedialog.ui msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/nb/extensions/uiconfig/spropctrlr/ui.po libreoffice-5.1.2~rc2/translations/source/nb/extensions/uiconfig/spropctrlr/ui.po --- libreoffice-5.1.1~rc2/translations/source/nb/extensions/uiconfig/spropctrlr/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/nb/extensions/uiconfig/spropctrlr/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,18 +3,18 @@ msgstr "" "Project-Id-Version: PACKAGE 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 @@ "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 @@ "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 -Nru libreoffice-5.1.1~rc2/translations/source/nb/extras/source/autocorr/emoji.po libreoffice-5.1.2~rc2/translations/source/nb/extras/source/autocorr/emoji.po --- libreoffice-5.1.1~rc2/translations/source/nb/extras/source/autocorr/emoji.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/nb/extras/source/autocorr/emoji.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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 @@ "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 @@ "CENT_SIGN\n" "LngText.text" msgid "cent" -msgstr "" +msgstr "cent" #. £ (U+000A3), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -32,7 +32,7 @@ "POUND_SIGN\n" "LngText.text" msgid "pound" -msgstr "" +msgstr "pund" #. Â¥ (U+000A5), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -41,7 +41,7 @@ "YEN_SIGN\n" "LngText.text" msgid "yen" -msgstr "" +msgstr "yen" #. § (U+000A7), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -50,7 +50,7 @@ "SECTION_SIGN\n" "LngText.text" msgid "section" -msgstr "" +msgstr "seksjon" #. © (U+000A9), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -59,7 +59,7 @@ "COPYRIGHT_SIGN\n" "LngText.text" msgid "copyright" -msgstr "" +msgstr "opphavsrett" #. ¬ (U+000AC), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -68,7 +68,7 @@ "NOT_SIGN\n" "LngText.text" msgid "not" -msgstr "" +msgstr "ikke" #. ® (U+000AE), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -77,7 +77,7 @@ "REGISTERED_SIGN\n" "LngText.text" msgid "registered" -msgstr "" +msgstr "registrert" #. ° (U+000B0), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -86,7 +86,7 @@ "DEGREE_SIGN\n" "LngText.text" msgid "degree" -msgstr "" +msgstr "grad" #. ± (U+000B1), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -95,7 +95,7 @@ "PLUS-MINUS_SIGN\n" "LngText.text" msgid "+-" -msgstr "" +msgstr "+-" #. · (U+000B7), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -104,7 +104,7 @@ "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 @@ "MULTIPLICATION_SIGN\n" "LngText.text" msgid "x" -msgstr "" +msgstr "x" #. Α (U+00391), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -122,7 +122,7 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ #. — (U+02014), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "EM_DASH\n" @@ -587,7 +585,6 @@ #. ’ (U+02019), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "RIGHT_SINGLE_QUOTATION_MARK\n" @@ -602,7 +599,7 @@ "DAGGER\n" "LngText.text" msgid "dagger" -msgstr "" +msgstr "dolk" #. ‡ (U+02021), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -611,7 +608,7 @@ "DOUBLE_DAGGER\n" "LngText.text" msgid "dagger2" -msgstr "" +msgstr "dolk2" #. • (U+02022), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -620,7 +617,7 @@ "BULLET\n" "LngText.text" msgid "bullet" -msgstr "" +msgstr "kuletegn" #. ‣ (U+02023), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -629,11 +626,10 @@ "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 @@ "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 @@ "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 @@ "PRIME\n" "LngText.text" msgid "prime" -msgstr "" +msgstr "primtegn" #. ″ (U+02033), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -675,11 +671,10 @@ "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 @@ #. ≠(U+02049), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "EXCLAMATION_QUESTION_MARK\n" @@ -704,7 +698,7 @@ "LIRA_SIGN\n" "LngText.text" msgid "lira" -msgstr "" +msgstr "lire" #. â‚© (U+020A9), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -713,7 +707,7 @@ "WON_SIGN\n" "LngText.text" msgid "won" -msgstr "" +msgstr "won" #. ₪ (U+020AA), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -722,7 +716,7 @@ "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 @@ "EURO_SIGN\n" "LngText.text" msgid "euro" -msgstr "" +msgstr "euro" #. ₱ (U+020B1), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -740,7 +734,7 @@ "PESO_SIGN\n" "LngText.text" msgid "peso" -msgstr "" +msgstr "peso" #. â‚´ (U+020B4), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -749,7 +743,7 @@ "HRYVNIA_SIGN\n" "LngText.text" msgid "hryvnia" -msgstr "" +msgstr "hryvnia" #. ₹ (U+020B9), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -758,7 +752,7 @@ "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 @@ "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 @@ "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 @@ "INFORMATION_SOURCE\n" "LngText.text" msgid "information" -msgstr "" +msgstr "informasjon" #. ↠(U+02190), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -794,7 +788,7 @@ "LEFTWARDS_ARROW\n" "LngText.text" msgid "W" -msgstr "" +msgstr "W" #. ↑ (U+02191), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -803,7 +797,7 @@ "UPWARDS_ARROW\n" "LngText.text" msgid "N" -msgstr "" +msgstr "N" #. → (U+02192), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -812,7 +806,7 @@ "RIGHTWARDS_ARROW\n" "LngText.text" msgid "E" -msgstr "" +msgstr "E" #. ↓ (U+02193), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -821,7 +815,7 @@ "DOWNWARDS_ARROW\n" "LngText.text" msgid "S" -msgstr "" +msgstr "S" #. ↔ (U+02194), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -830,7 +824,7 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "PARTIAL_DIFFERENTIAL\n" "LngText.text" msgid "partial" -msgstr "" +msgstr "delvis" #. ∃ (U+02203), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -992,7 +986,7 @@ "THERE_EXISTS\n" "LngText.text" msgid "exists" -msgstr "" +msgstr "finnes" #. ∄ (U+02204), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1001,7 +995,7 @@ "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 @@ "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 @@ "ELEMENT_OF\n" "LngText.text" msgid "in" -msgstr "" +msgstr "in" #. ∉ (U+02209), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1028,7 +1022,7 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ #. ∖ (U+02216), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "SET_MINUS\n" @@ -1139,7 +1130,7 @@ "SQUARE_ROOT\n" "LngText.text" msgid "sqrt" -msgstr "" +msgstr "kvadratrot" #. ∛ (U+0221B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1148,7 +1139,7 @@ "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 @@ "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 @@ "INFINITY\n" "LngText.text" msgid "infinity" -msgstr "" +msgstr "uendelig" #. ∠ (U+02220), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1175,7 +1166,7 @@ "ANGLE\n" "LngText.text" msgid "angle" -msgstr "" +msgstr "vinkel" #. ∡ (U+02221), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1184,7 +1175,7 @@ "MEASURED_ANGLE\n" "LngText.text" msgid "angle2" -msgstr "" +msgstr "vinkel2" #. ∣ (U+02223), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1193,7 +1184,7 @@ "DIVIDES\n" "LngText.text" msgid "divides" -msgstr "" +msgstr "deler" #. ∤ (U+02224), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1202,7 +1193,7 @@ "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 @@ "PARALLEL_TO\n" "LngText.text" msgid "parallel" -msgstr "" +msgstr "parallell" #. ∦ (U+02226), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1220,7 +1211,7 @@ "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 @@ "LOGICAL_AND\n" "LngText.text" msgid "and" -msgstr "" +msgstr "og" #. ∨ (U+02228), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1238,7 +1229,7 @@ "LOGICAL_OR\n" "LngText.text" msgid "or" -msgstr "" +msgstr "eller" #. ∩ (U+02229), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1247,7 +1238,7 @@ "INTERSECTION\n" "LngText.text" msgid "intersection" -msgstr "" +msgstr "snitt" #. ∪ (U+0222A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1256,7 +1247,7 @@ "UNION\n" "LngText.text" msgid "union" -msgstr "" +msgstr "union" #. ∫ (U+0222B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1265,7 +1256,7 @@ "INTEGRAL\n" "LngText.text" msgid "integral" -msgstr "" +msgstr "integral" #. ∬ (U+0222C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1274,7 +1265,7 @@ "DOUBLE_INTEGRAL\n" "LngText.text" msgid "integral2" -msgstr "" +msgstr "integral2" #. ∭ (U+0222D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1283,7 +1274,7 @@ "TRIPLE_INTEGRAL\n" "LngText.text" msgid "integral3" -msgstr "" +msgstr "integral3" #. ∮ (U+0222E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1292,7 +1283,7 @@ "CONTOUR_INTEGRAL\n" "LngText.text" msgid "integral4" -msgstr "" +msgstr "integral4" #. ∰ (U+02230), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1301,7 +1292,7 @@ "VOLUME_INTEGRAL\n" "LngText.text" msgid "integral5" -msgstr "" +msgstr "integral5" #. ≈ (U+02248), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1310,7 +1301,7 @@ "ALMOST_EQUAL_TO\n" "LngText.text" msgid "~" -msgstr "" +msgstr "~" #. ≠ (U+02260), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1319,7 +1310,7 @@ "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 @@ "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 @@ "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 @@ #. ≫ (U+0226B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "MUCH_GREATER-THAN\n" @@ -1366,7 +1355,7 @@ "SUBSET_OF\n" "LngText.text" msgid "subset" -msgstr "" +msgstr "delmengde" #. ⊃ (U+02283), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1375,7 +1364,7 @@ "SUPERSET_OF\n" "LngText.text" msgid "superset" -msgstr "" +msgstr "grunnmengde" #. ⊄ (U+02284), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1384,7 +1373,7 @@ "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 @@ "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 @@ "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 @@ "WATCH\n" "LngText.text" msgid "watch" -msgstr "" +msgstr "klokke" #. ⌛ (U+0231B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1420,7 +1409,7 @@ "HOURGLASS\n" "LngText.text" msgid "hourglass" -msgstr "" +msgstr "timeglass" #. ⌨ (U+02328), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1429,7 +1418,7 @@ "KEYBOARD\n" "LngText.text" msgid "keyboard" -msgstr "" +msgstr "tastatur" #. ⢠(U+023E2), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1438,7 +1427,7 @@ "WHITE_TRAPEZIUM\n" "LngText.text" msgid "trapezium" -msgstr "" +msgstr "trapes" #. â° (U+023F0), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1447,7 +1436,7 @@ "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 @@ "STOPWATCH\n" "LngText.text" msgid "stopwatch" -msgstr "" +msgstr "stoppeklokke" #. â² (U+023F2), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1465,7 +1454,7 @@ "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 @@ "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 @@ "BLACK_SQUARE\n" "LngText.text" msgid "square2" -msgstr "" +msgstr "kvadrat2" #. â–¡ (U+025A1), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1492,7 +1481,7 @@ "WHITE_SQUARE\n" "LngText.text" msgid "square" -msgstr "" +msgstr "kvadrat" #. â–ª (U+025AA), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1501,7 +1490,7 @@ "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 @@ "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 @@ "BLACK_RECTANGLE\n" "LngText.text" msgid "rectangle2" -msgstr "" +msgstr "rektangel2" #. â–­ (U+025AD), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1528,7 +1517,7 @@ "WHITE_RECTANGLE\n" "LngText.text" msgid "rectangle" -msgstr "" +msgstr "rektangel" #. â–° (U+025B0), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1537,7 +1526,7 @@ "BLACK_PARALLELOGRAM\n" "LngText.text" msgid "parallelogram2" -msgstr "" +msgstr "parallellogram2" #. â–± (U+025B1), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1546,7 +1535,7 @@ "WHITE_PARALLELOGRAM\n" "LngText.text" msgid "parallelogram" -msgstr "" +msgstr "parallellogram" #. â–² (U+025B2), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1555,7 +1544,7 @@ "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 @@ "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 @@ "LOZENGE\n" "LngText.text" msgid "lozenge" -msgstr "" +msgstr "pastill" #. â—‹ (U+025CB), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1582,7 +1571,7 @@ "WHITE_CIRCLE\n" "LngText.text" msgid "circle" -msgstr "" +msgstr "sirkel" #. â— (U+025CF), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1591,7 +1580,7 @@ "BLACK_CIRCLE\n" "LngText.text" msgid "circle2" -msgstr "" +msgstr "sirkel2" #. â—¦ (U+025E6), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1600,7 +1589,7 @@ "WHITE_BULLET\n" "LngText.text" msgid "bullet3" -msgstr "" +msgstr "punkttegn3" #. â—¯ (U+025EF), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1609,7 +1598,7 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "CLOUD\n" "LngText.text" msgid "cloud" -msgstr "" +msgstr "sky" #. ☂ (U+02602), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1672,7 +1661,7 @@ "UMBRELLA\n" "LngText.text" msgid "umbrella" -msgstr "" +msgstr "paraply" #. ☃ (U+02603), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1681,7 +1670,7 @@ "SNOWMAN\n" "LngText.text" msgid "snowman" -msgstr "" +msgstr "snømann" #. ☄ (U+02604), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1690,7 +1679,7 @@ "COMET\n" "LngText.text" msgid "comet" -msgstr "" +msgstr "komet" #. ★ (U+02605), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1699,7 +1688,7 @@ "BLACK_STAR\n" "LngText.text" msgid "star" -msgstr "" +msgstr "stjerne" #. ☆ (U+02606), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1708,7 +1697,7 @@ "WHITE_STAR\n" "LngText.text" msgid "star2" -msgstr "" +msgstr "stjerne2" #. ☇ (U+02607), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1717,7 +1706,7 @@ "LIGHTNING\n" "LngText.text" msgid "lighting" -msgstr "" +msgstr "lyn" #. ☈ (U+02608), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1726,7 +1715,7 @@ "THUNDERSTORM\n" "LngText.text" msgid "storm" -msgstr "" +msgstr "storm" #. ☉ (U+02609), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1735,7 +1724,7 @@ "SUN\n" "LngText.text" msgid "Sun" -msgstr "" +msgstr "Sol" #. ☎ (U+0260E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1744,7 +1733,7 @@ "BLACK_TELEPHONE\n" "LngText.text" msgid "phone" -msgstr "" +msgstr "telefon" #. ☠(U+0260F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1753,7 +1742,7 @@ "WHITE_TELEPHONE\n" "LngText.text" msgid "phone2" -msgstr "" +msgstr "telefon2" #. ☠(U+02610), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1762,7 +1751,7 @@ "BALLOT_BOX\n" "LngText.text" msgid "checkbox" -msgstr "" +msgstr "avkryssingsboks" #. ☑ (U+02611), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1771,7 +1760,7 @@ "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 @@ "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 @@ "SALTIRE\n" "LngText.text" msgid "saltire" -msgstr "" +msgstr "andreaskors" #. ☔ (U+02614), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1798,7 +1787,7 @@ "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 @@ "HOT_BEVERAGE\n" "LngText.text" msgid "coffee" -msgstr "" +msgstr "kaffe" #. ☚ (U+0261A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1816,7 +1805,7 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "RADIOACTIVE_SIGN\n" "LngText.text" msgid "radioactive" -msgstr "" +msgstr "radioaktiv" #. ☣ (U+02623), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1897,7 +1886,7 @@ "BIOHAZARD_SIGN\n" "LngText.text" msgid "biohazard" -msgstr "" +msgstr "biofare" #. ☤ (U+02624), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1906,7 +1895,7 @@ "CADUCEUS\n" "LngText.text" msgid "caduceus" -msgstr "" +msgstr "merkurstav" #. ☥ (U+02625), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1915,7 +1904,7 @@ "ANKH\n" "LngText.text" msgid "ankh" -msgstr "" +msgstr "ankh" #. ☦ (U+02626), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1924,7 +1913,7 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "FARSI_SYMBOL\n" "LngText.text" msgid "Farsi" -msgstr "" +msgstr "Farsi" #. ☬ (U+0262C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1978,7 +1967,7 @@ "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 @@ "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 @@ "PEACE_SYMBOL\n" "LngText.text" msgid "peace" -msgstr "" +msgstr "fred" #. ☯ (U+0262F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2005,7 +1994,7 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "MERCURY\n" "LngText.text" msgid "Mercury" -msgstr "" +msgstr "Kvikksølv" #. ♀ (U+02640), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2077,7 +2066,7 @@ "FEMALE_SIGN\n" "LngText.text" msgid "female" -msgstr "" +msgstr "kvinne" #. â™ (U+02641), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2086,7 +2075,7 @@ "EARTH\n" "LngText.text" msgid "Earth" -msgstr "" +msgstr "Jorda" #. ♂ (U+02642), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2095,7 +2084,7 @@ "MALE_SIGN\n" "LngText.text" msgid "male" -msgstr "" +msgstr "mann" #. ♃ (U+02643), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2104,7 +2093,7 @@ "JUPITER\n" "LngText.text" msgid "Jupiter" -msgstr "" +msgstr "Jupiter" #. ♄ (U+02644), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2113,7 +2102,7 @@ "SATURN\n" "LngText.text" msgid "Saturn" -msgstr "" +msgstr "Saturn" #. â™… (U+02645), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2122,7 +2111,7 @@ "URANUS\n" "LngText.text" msgid "Uranus" -msgstr "" +msgstr "Uranus" #. ♆ (U+02646), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2131,7 +2120,7 @@ "NEPTUNE\n" "LngText.text" msgid "Neptune" -msgstr "" +msgstr "Neptun" #. ♇ (U+02647), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2140,7 +2129,7 @@ "PLUTO\n" "LngText.text" msgid "Pluto" -msgstr "" +msgstr "Pluto" #. ♈ (U+02648), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2149,7 +2138,7 @@ "ARIES\n" "LngText.text" msgid "Aries" -msgstr "" +msgstr "Væren" #. ♉ (U+02649), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2158,7 +2147,7 @@ "TAURUS\n" "LngText.text" msgid "Taurus" -msgstr "" +msgstr "Tyren" #. ♊ (U+0264A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2167,7 +2156,7 @@ "GEMINI\n" "LngText.text" msgid "Gemini" -msgstr "" +msgstr "Tvillingene" #. ♋ (U+0264B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2176,7 +2165,7 @@ "CANCER\n" "LngText.text" msgid "Cancer" -msgstr "" +msgstr "Krepsen" #. ♌ (U+0264C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2185,7 +2174,7 @@ "LEO\n" "LngText.text" msgid "Leo" -msgstr "" +msgstr "Løven" #. â™ (U+0264D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2194,7 +2183,7 @@ "VIRGO\n" "LngText.text" msgid "Virgo" -msgstr "" +msgstr "Jomfruen" #. ♎ (U+0264E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2203,7 +2192,7 @@ "LIBRA\n" "LngText.text" msgid "Libra" -msgstr "" +msgstr "Vekten" #. â™ (U+0264F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2212,7 +2201,7 @@ "SCORPIUS\n" "LngText.text" msgid "Scorpius" -msgstr "" +msgstr "Skorpionen" #. â™ (U+02650), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2221,7 +2210,7 @@ "SAGITTARIUS\n" "LngText.text" msgid "Sagittarius" -msgstr "" +msgstr "Skytten" #. ♑ (U+02651), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2230,7 +2219,7 @@ "CAPRICORN\n" "LngText.text" msgid "Capricorn" -msgstr "" +msgstr "Steinbukken" #. â™’ (U+02652), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2239,7 +2228,7 @@ "AQUARIUS\n" "LngText.text" msgid "Aquarius" -msgstr "" +msgstr "Vannmannen" #. ♓ (U+02653), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2248,7 +2237,7 @@ "PISCES\n" "LngText.text" msgid "Pisces" -msgstr "" +msgstr "Fiskene" #. â™” (U+02654), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2257,7 +2246,7 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "QUARTER_NOTE\n" "LngText.text" msgid "note" -msgstr "" +msgstr "note" #. ♪ (U+0266A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2455,7 +2444,7 @@ "EIGHTH_NOTE\n" "LngText.text" msgid "note2" -msgstr "" +msgstr "merknad2" #. ♫ (U+0266B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2464,7 +2453,7 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "WHEELCHAIR_SYMBOL\n" "LngText.text" msgid "wheelchair" -msgstr "" +msgstr "rullestol" #. ⚀ (U+02680), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2554,7 +2543,7 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "WHITE_FLAG\n" "LngText.text" msgid "flag" -msgstr "" +msgstr "flagg" #. âš‘ (U+02691), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2617,7 +2606,7 @@ "BLACK_FLAG\n" "LngText.text" msgid "flag2" -msgstr "" +msgstr "flagg2" #. âš’ (U+02692), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2626,7 +2615,7 @@ "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 @@ "ANCHOR\n" "LngText.text" msgid "anchor" -msgstr "" +msgstr "anker" #. âš” (U+02694), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2644,7 +2633,7 @@ "CROSSED_SWORDS\n" "LngText.text" msgid "swords" -msgstr "" +msgstr "sverd" #. âš• (U+02695), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2653,7 +2642,7 @@ "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 @@ "SCALES\n" "LngText.text" msgid "scales" -msgstr "" +msgstr "vekter" #. âš— (U+02697), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2671,7 +2660,7 @@ "ALEMBIC\n" "LngText.text" msgid "alembic" -msgstr "" +msgstr "kjemi" #. ⚘ (U+02698), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2680,7 +2669,7 @@ "FLOWER\n" "LngText.text" msgid "flower" -msgstr "" +msgstr "blomst" #. âš™ (U+02699), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2689,7 +2678,7 @@ "GEAR\n" "LngText.text" msgid "gear" -msgstr "" +msgstr "gir" #. âšš (U+0269A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2698,7 +2687,7 @@ "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 @@ "ATOM_SYMBOL\n" "LngText.text" msgid "atom" -msgstr "" +msgstr "atom" #. âšœ (U+0269C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2716,7 +2705,7 @@ "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 @@ "WARNING_SIGN\n" "LngText.text" msgid "warning" -msgstr "" +msgstr "advarsel" #. âš¡ (U+026A1), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2734,7 +2723,7 @@ "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 @@ "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 @@ "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 @@ "MARRIAGE_SYMBOL\n" "LngText.text" msgid "marriage" -msgstr "" +msgstr "ekteskap" #. âš® (U+026AE), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2770,7 +2759,7 @@ "DIVORCE_SYMBOL\n" "LngText.text" msgid "divorce" -msgstr "" +msgstr "skilsmisse" #. âš° (U+026B0), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2779,7 +2768,7 @@ "COFFIN\n" "LngText.text" msgid "coffin" -msgstr "" +msgstr "kiste" #. âš± (U+026B1), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2788,7 +2777,7 @@ "FUNERAL_URN\n" "LngText.text" msgid "urn" -msgstr "" +msgstr "urne" #. âš½ (U+026BD), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2797,7 +2786,7 @@ "SOCCER_BALL\n" "LngText.text" msgid "soccer" -msgstr "" +msgstr "fotball" #. âš¾ (U+026BE), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2806,7 +2795,7 @@ "BASEBALL\n" "LngText.text" msgid "baseball" -msgstr "" +msgstr "baseball" #. ⛄ (U+026C4), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2815,7 +2804,7 @@ "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 @@ "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 @@ "RAIN\n" "LngText.text" msgid "rain2" -msgstr "" +msgstr "regn2" #. ⛈ (U+026C8), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2842,7 +2831,7 @@ "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 @@ "OPHIUCHUS\n" "LngText.text" msgid "ophiuchus" -msgstr "" +msgstr "slangebæreren" #. â› (U+026CF), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2860,7 +2849,7 @@ "PICK\n" "LngText.text" msgid "pick" -msgstr "" +msgstr "hakke" #. â› (U+026D0), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2869,7 +2858,7 @@ "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 @@ "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 @@ "CHAINS\n" "LngText.text" msgid "chains" -msgstr "" +msgstr "kjettinger" #. â›” (U+026D4), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2896,7 +2885,7 @@ "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 @@ "BLACK_TRUCK\n" "LngText.text" msgid "truck" -msgstr "" +msgstr "lastebil" #. ⛤ (U+026E4), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2914,7 +2903,7 @@ "PENTAGRAM\n" "LngText.text" msgid "pentagram" -msgstr "" +msgstr "pentagram" #. ⛨ (U+026E8), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2923,7 +2912,7 @@ "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 @@ "CHURCH\n" "LngText.text" msgid "church" -msgstr "" +msgstr "kirke" #. â›° (U+026F0), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2941,7 +2930,7 @@ "MOUNTAIN\n" "LngText.text" msgid "mountain" -msgstr "" +msgstr "fjell" #. â›± (U+026F1), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2950,7 +2939,7 @@ "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 @@ "FOUNTAIN\n" "LngText.text" msgid "fountain" -msgstr "" +msgstr "fontene" #. ⛳ (U+026F3), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2968,7 +2957,7 @@ "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 @@ "FERRY\n" "LngText.text" msgid "ferry" -msgstr "" +msgstr "ferje" #. ⛵ (U+026F5), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2986,7 +2975,7 @@ "SAILBOAT\n" "LngText.text" msgid "sailboat" -msgstr "" +msgstr "seilbÃ¥t" #. ⛺ (U+026FA), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2995,7 +2984,7 @@ "TENT\n" "LngText.text" msgid "tent" -msgstr "" +msgstr "telt" #. â›· (U+026F7), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3004,7 +2993,7 @@ "SKIER\n" "LngText.text" msgid "skier" -msgstr "" +msgstr "skiløper" #. ⛸ (U+026F8), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3013,7 +3002,7 @@ "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 @@ "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 @@ "FUEL_PUMP\n" "LngText.text" msgid "fuelpump" -msgstr "" +msgstr "bensinpumpe" #. ✠(U+02701), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3040,7 +3029,7 @@ "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 @@ "BLACK_SCISSORS\n" "LngText.text" msgid "scissors" -msgstr "" +msgstr "saks" #. ✃ (U+02703), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3058,7 +3047,7 @@ "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 @@ "WHITE_SCISSORS\n" "LngText.text" msgid "scissors2" -msgstr "" +msgstr "saks2" #. ✅ (U+02705), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3076,7 +3065,7 @@ "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 @@ "TELEPHONE_LOCATION\n" "LngText.text" msgid "telephone" -msgstr "" +msgstr "telefon" #. ✈ (U+02708), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3094,7 +3083,7 @@ "AIRPLANE\n" "LngText.text" msgid "airplane" -msgstr "" +msgstr "fly" #. ✉ (U+02709), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3103,7 +3092,7 @@ "ENVELOPE\n" "LngText.text" msgid "envelope" -msgstr "" +msgstr "konvolutt" #. ✊ (U+0270A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3112,7 +3101,7 @@ "RAISED_FIST\n" "LngText.text" msgid "fist" -msgstr "" +msgstr "knyttneve" #. ✋ (U+0270B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3121,7 +3110,7 @@ "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 @@ "VICTORY_HAND\n" "LngText.text" msgid "victory" -msgstr "" +msgstr "seier" #. ✠(U+0270D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3139,7 +3128,7 @@ "WRITING_HAND\n" "LngText.text" msgid "writing" -msgstr "" +msgstr "skriver" #. ✎ (U+0270E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3148,7 +3137,7 @@ "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 @@ "PENCIL\n" "LngText.text" msgid "pencil2" -msgstr "" +msgstr "blyant2" #. ✠(U+02710), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3166,7 +3155,7 @@ "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 @@ "WHITE_NIB\n" "LngText.text" msgid "nib" -msgstr "" +msgstr "pennesplitt" #. ✒ (U+02712), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3184,7 +3173,7 @@ "BLACK_NIB\n" "LngText.text" msgid "nib2" -msgstr "" +msgstr "pennesplitt2" #. ✓ (U+02713), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3193,7 +3182,7 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "SPARKLES\n" "LngText.text" msgid "sparkles" -msgstr "" +msgstr "glitrer" #. â„ (U+02744), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3274,7 +3263,7 @@ "SNOWFLAKE\n" "LngText.text" msgid "snowflake" -msgstr "" +msgstr "snøflak" #. ⇠(U+02747), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3283,7 +3272,7 @@ "SPARKLE\n" "LngText.text" msgid "sparkle" -msgstr "" +msgstr "gnistre" #. ⌠(U+0274C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3292,7 +3281,7 @@ "CROSS_MARK\n" "LngText.text" msgid "x2" -msgstr "" +msgstr "x2" #. ⎠(U+0274E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3301,11 +3290,10 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "BLACK_PENTAGON\n" "LngText.text" msgid "pentagon2" -msgstr "" +msgstr "femkant2" #. ⬠ (U+02B20), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3402,7 +3389,7 @@ "WHITE_PENTAGON\n" "LngText.text" msgid "pentagon" -msgstr "" +msgstr "femkant" #. ⬡ (U+02B21), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3411,7 +3398,7 @@ "WHITE_HEXAGON\n" "LngText.text" msgid "hexagon" -msgstr "" +msgstr "sekskant" #. ⬢ (U+02B22), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3420,7 +3407,7 @@ "BLACK_HEXAGON\n" "LngText.text" msgid "hexagon2" -msgstr "" +msgstr "sekskant2" #. ⬤ (U+02B24), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3429,7 +3416,7 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "LATIN_SMALL_LIGATURE_FF\n" "LngText.text" msgid "ff" -msgstr "" +msgstr "ff" #. ï¬ (U+0FB01), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3483,7 +3470,7 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "CYCLONE\n" "LngText.text" msgid "cyclone" -msgstr "" +msgstr "syklon" #. 🌠(U+1F301), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3699,7 +3686,7 @@ "FOGGY\n" "LngText.text" msgid "fog" -msgstr "" +msgstr "tÃ¥ke" #. 🌂 (U+1F302), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3708,7 +3695,7 @@ "CLOSED_UMBRELLA\n" "LngText.text" msgid "umbrella2" -msgstr "" +msgstr "paraply2" #. 🌃 (U+1F303), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3717,7 +3704,7 @@ "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 @@ "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 @@ "SUNRISE\n" "LngText.text" msgid "sunrise" -msgstr "" +msgstr "soloppgang" #. 🌆 (U+1F306), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3744,7 +3731,7 @@ "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 @@ "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 @@ "RAINBOW\n" "LngText.text" msgid "rainbow" -msgstr "" +msgstr "regnbue" #. 🌉 (U+1F309), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3771,7 +3758,7 @@ "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 @@ "WATER_WAVE\n" "LngText.text" msgid "ocean" -msgstr "" +msgstr "hav" #. 🌋 (U+1F30B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3789,7 +3776,7 @@ "VOLCANO\n" "LngText.text" msgid "volcano" -msgstr "" +msgstr "vulkan" #. 🌌 (U+1F30C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3798,7 +3785,7 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "SHOOTING_STAR\n" "LngText.text" msgid "star4" -msgstr "" +msgstr "stjerneskudd" #. 🌰 (U+1F330), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3987,7 +3974,7 @@ "CHESTNUT\n" "LngText.text" msgid "chestnut" -msgstr "" +msgstr "kastanje" #. 🌱 (U+1F331), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3996,7 +3983,7 @@ "SEEDLING\n" "LngText.text" msgid "seedling" -msgstr "" +msgstr "frøplante" #. 🌲 (U+1F332), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4005,7 +3992,7 @@ "EVERGREEN_TREE\n" "LngText.text" msgid "pine" -msgstr "" +msgstr "furu" #. 🌳 (U+1F333), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4014,7 +4001,7 @@ "DECIDUOUS_TREE\n" "LngText.text" msgid "tree" -msgstr "" +msgstr "tre" #. 🌴 (U+1F334), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4023,7 +4010,7 @@ "PALM_TREE\n" "LngText.text" msgid "palm" -msgstr "" +msgstr "palme" #. 🌵 (U+1F335), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4032,7 +4019,7 @@ "CACTUS\n" "LngText.text" msgid "cactus" -msgstr "" +msgstr "kaktus" #. 🌷 (U+1F337), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4041,7 +4028,7 @@ "TULIP\n" "LngText.text" msgid "tulip" -msgstr "" +msgstr "tulipan" #. 🌸 (U+1F338), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4050,7 +4037,7 @@ "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 @@ "ROSE\n" "LngText.text" msgid "rose" -msgstr "" +msgstr "rose" #. 🌺 (U+1F33A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4068,7 +4055,7 @@ "HIBISCUS\n" "LngText.text" msgid "hibiscus" -msgstr "" +msgstr "hibiskus" #. 🌻 (U+1F33B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4077,7 +4064,7 @@ "SUNFLOWER\n" "LngText.text" msgid "sunflower" -msgstr "" +msgstr "solsikke" #. 🌼 (U+1F33C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4086,7 +4073,7 @@ "BLOSSOM\n" "LngText.text" msgid "blossom" -msgstr "" +msgstr "blomstre" #. 🌽 (U+1F33D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4095,7 +4082,7 @@ "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 @@ "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 @@ "HERB\n" "LngText.text" msgid "herb" -msgstr "" +msgstr "urt" #. 🀠(U+1F340), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4122,7 +4109,7 @@ "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 @@ "MAPLE_LEAF\n" "LngText.text" msgid "leaf" -msgstr "" +msgstr "blad" #. 🂠(U+1F342), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4140,7 +4127,7 @@ "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 @@ "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 @@ "MUSHROOM\n" "LngText.text" msgid "mushroom" -msgstr "" +msgstr "sopp" #. 🅠(U+1F345), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4167,7 +4154,7 @@ "TOMATO\n" "LngText.text" msgid "tomato" -msgstr "" +msgstr "tomat" #. 🆠(U+1F346), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4176,7 +4163,7 @@ "AUBERGINE\n" "LngText.text" msgid "eggplant" -msgstr "" +msgstr "aubergine" #. 🇠(U+1F347), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4185,7 +4172,7 @@ "GRAPES\n" "LngText.text" msgid "grapes" -msgstr "" +msgstr "druer" #. 🈠(U+1F348), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4194,7 +4181,7 @@ "MELON\n" "LngText.text" msgid "melon" -msgstr "" +msgstr "melon" #. 🉠(U+1F349), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4203,7 +4190,7 @@ "WATERMELON\n" "LngText.text" msgid "watermelon" -msgstr "" +msgstr "vannmelon" #. 🊠(U+1F34A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4212,7 +4199,7 @@ "TANGERINE\n" "LngText.text" msgid "tangerine" -msgstr "" +msgstr "mandarin" #. 🋠(U+1F34B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4221,7 +4208,7 @@ "LEMON\n" "LngText.text" msgid "lemon" -msgstr "" +msgstr "sitron" #. 🌠(U+1F34C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4230,7 +4217,7 @@ "BANANA\n" "LngText.text" msgid "banana" -msgstr "" +msgstr "banan" #. ðŸ (U+1F34D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4239,7 +4226,7 @@ "PINEAPPLE\n" "LngText.text" msgid "pineapple" -msgstr "" +msgstr "ananas" #. 🎠(U+1F34E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4248,7 +4235,7 @@ "RED_APPLE\n" "LngText.text" msgid "apple" -msgstr "" +msgstr "eple" #. ðŸ (U+1F34F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4257,7 +4244,7 @@ "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 @@ "PEAR\n" "LngText.text" msgid "pear" -msgstr "" +msgstr "pære" #. 👠(U+1F351), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4275,7 +4262,7 @@ "PEACH\n" "LngText.text" msgid "peach" -msgstr "" +msgstr "fersken" #. 💠(U+1F352), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4284,7 +4271,7 @@ "CHERRIES\n" "LngText.text" msgid "cherries" -msgstr "" +msgstr "kirsebær" #. 📠(U+1F353), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4293,7 +4280,7 @@ "STRAWBERRY\n" "LngText.text" msgid "strawberry" -msgstr "" +msgstr "jordbær" #. 🔠(U+1F354), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4302,7 +4289,7 @@ "HAMBURGER\n" "LngText.text" msgid "hamburger" -msgstr "" +msgstr "hamburger" #. 🕠(U+1F355), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4311,7 +4298,7 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "COOKED_RICE\n" "LngText.text" msgid "rice" -msgstr "" +msgstr "ris" #. 🛠(U+1F35B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4365,7 +4352,7 @@ "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 @@ "STEAMING_BOWL\n" "LngText.text" msgid "ramen" -msgstr "" +msgstr "nudelbolle" #. ðŸ (U+1F35D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4383,7 +4370,7 @@ "SPAGHETTI\n" "LngText.text" msgid "spaghetti" -msgstr "" +msgstr "spaghetti" #. 🞠(U+1F35E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4392,7 +4379,7 @@ "BREAD\n" "LngText.text" msgid "bread" -msgstr "" +msgstr "brød" #. 🟠(U+1F35F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4401,7 +4388,7 @@ "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 @@ "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 @@ "DANGO\n" "LngText.text" msgid "dango" -msgstr "" +msgstr "dango" #. 🢠(U+1F362), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4428,7 +4415,7 @@ "ODEN\n" "LngText.text" msgid "oden" -msgstr "" +msgstr "oden" #. 🣠(U+1F363), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4437,7 +4424,7 @@ "SUSHI\n" "LngText.text" msgid "sushi" -msgstr "" +msgstr "sushi" #. 🤠(U+1F364), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4446,7 +4433,7 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "DOUGHNUT\n" "LngText.text" msgid "doughnut" -msgstr "" +msgstr "smultring" #. 🪠(U+1F36A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4500,7 +4487,7 @@ "COOKIE\n" "LngText.text" msgid "cookie" -msgstr "" +msgstr "informasjonskapsel" #. 🫠(U+1F36B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4509,7 +4496,7 @@ "CHOCOLATE_BAR\n" "LngText.text" msgid "chocolate" -msgstr "" +msgstr "sjokolade" #. 🬠(U+1F36C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4518,7 +4505,7 @@ "CANDY\n" "LngText.text" msgid "candy" -msgstr "" +msgstr "sukkertøy" #. 🭠(U+1F36D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4527,7 +4514,7 @@ "LOLLIPOP\n" "LngText.text" msgid "lollipop" -msgstr "" +msgstr "slikkepinne" #. 🮠(U+1F36E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4536,7 +4523,7 @@ "CUSTARD\n" "LngText.text" msgid "custard" -msgstr "" +msgstr "vaniljesaus" #. 🯠(U+1F36F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4545,7 +4532,7 @@ "HONEY_POT\n" "LngText.text" msgid "honey" -msgstr "" +msgstr "honningkrukke" #. 🰠(U+1F370), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4554,7 +4541,7 @@ "SHORTCAKE\n" "LngText.text" msgid "cake" -msgstr "" +msgstr "kake" #. 🱠(U+1F371), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4563,7 +4550,7 @@ "BENTO_BOX\n" "LngText.text" msgid "bento" -msgstr "" +msgstr "bento" #. 🲠(U+1F372), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4572,7 +4559,7 @@ "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 @@ "COOKING\n" "LngText.text" msgid "egg" -msgstr "" +msgstr "egg" #. 🴠(U+1F374), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4590,7 +4577,7 @@ "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 @@ "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 @@ "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 @@ "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 @@ "COCKTAIL_GLASS\n" "LngText.text" msgid "cocktail" -msgstr "" +msgstr "cocktailglass" #. 🹠(U+1F379), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4635,7 +4622,7 @@ "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 @@ "BEER_MUG\n" "LngText.text" msgid "beer" -msgstr "" +msgstr "øl" #. 🻠(U+1F37B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4653,7 +4640,7 @@ "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 @@ "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 @@ "RIBBON\n" "LngText.text" msgid "ribbon" -msgstr "" +msgstr "bÃ¥nd" #. 🎠(U+1F381), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4680,7 +4667,7 @@ "WRAPPED_PRESENT\n" "LngText.text" msgid "gift" -msgstr "" +msgstr "gave" #. 🎂 (U+1F382), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4689,7 +4676,7 @@ "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 @@ "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 @@ "CHRISTMAS_TREE\n" "LngText.text" msgid "Christmas" -msgstr "" +msgstr "Jul" #. 🎅 (U+1F385), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4716,7 +4703,7 @@ "FATHER_CHRISTMAS\n" "LngText.text" msgid "Santa" -msgstr "" +msgstr "Julenisse" #. 🎆 (U+1F386), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4725,7 +4712,7 @@ "FIREWORKS\n" "LngText.text" msgid "fireworks" -msgstr "" +msgstr "fyrverkeri" #. 🎇 (U+1F387), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4734,7 +4721,7 @@ "FIREWORK_SPARKLER\n" "LngText.text" msgid "sparkler" -msgstr "" +msgstr "stjerneskudd" #. 🎈 (U+1F388), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4743,7 +4730,7 @@ "BALLOON\n" "LngText.text" msgid "balloon" -msgstr "" +msgstr "ballong" #. 🎉 (U+1F389), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4752,7 +4739,7 @@ "PARTY_POPPER\n" "LngText.text" msgid "party" -msgstr "" +msgstr "fest" #. 🎊 (U+1F38A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4761,7 +4748,7 @@ "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 @@ "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 @@ "CROSSED_FLAGS\n" "LngText.text" msgid "flags" -msgstr "" +msgstr "flagg" #. 🎠(U+1F38D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4788,7 +4775,7 @@ "PINE_DECORATION\n" "LngText.text" msgid "bamboo" -msgstr "" +msgstr "bambus" #. 🎎 (U+1F38E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4797,7 +4784,7 @@ "JAPANESE_DOLLS\n" "LngText.text" msgid "dolls" -msgstr "" +msgstr "dukker" #. 🎠(U+1F38F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4806,7 +4793,7 @@ "CARP_STREAMER\n" "LngText.text" msgid "flags2" -msgstr "" +msgstr "flagg2" #. 🎠(U+1F390), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4815,7 +4802,7 @@ "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 @@ "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 @@ "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 @@ "GRADUATION_CAP\n" "LngText.text" msgid "graduation" -msgstr "" +msgstr "eksamen" #. 🎠 (U+1F3A0), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4851,7 +4838,7 @@ "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 @@ "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 @@ "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 @@ "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 @@ "MICROPHONE\n" "LngText.text" msgid "microphone" -msgstr "" +msgstr "mikrofon" #. 🎥 (U+1F3A5), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4896,7 +4883,7 @@ "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 @@ "CINEMA\n" "LngText.text" msgid "cinema" -msgstr "" +msgstr "kino" #. 🎧 (U+1F3A7), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4914,7 +4901,7 @@ "HEADPHONE\n" "LngText.text" msgid "headphone" -msgstr "" +msgstr "øretelefoner" #. 🎨 (U+1F3A8), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4923,7 +4910,7 @@ "ARTIST_PALETTE\n" "LngText.text" msgid "art" -msgstr "" +msgstr "fargepalett" #. 🎩 (U+1F3A9), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4932,7 +4919,7 @@ "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 @@ "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 @@ "TICKET\n" "LngText.text" msgid "ticket" -msgstr "" +msgstr "billett" #. 🎬 (U+1F3AC), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4959,7 +4946,7 @@ "CLAPPER_BOARD\n" "LngText.text" msgid "clapper" -msgstr "" +msgstr "klapper" #. 🎭 (U+1F3AD), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4968,7 +4955,7 @@ "PERFORMING_ARTS\n" "LngText.text" msgid "theatre" -msgstr "" +msgstr "teater" #. 🎮 (U+1F3AE), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4977,7 +4964,7 @@ "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 @@ "DIRECT_HIT\n" "LngText.text" msgid "hit" -msgstr "" +msgstr "blink" #. 🎰 (U+1F3B0), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4995,7 +4982,7 @@ "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 @@ "BILLIARDS\n" "LngText.text" msgid "billiards" -msgstr "" +msgstr "biljard" #. 🎲 (U+1F3B2), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5013,7 +5000,7 @@ "GAME_DIE\n" "LngText.text" msgid "dice" -msgstr "" +msgstr "terninger" #. 🎳 (U+1F3B3), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5022,7 +5009,7 @@ "BOWLING\n" "LngText.text" msgid "bowling" -msgstr "" +msgstr "bowling" #. 🎴 (U+1F3B4), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5031,7 +5018,7 @@ "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 @@ "MUSICAL_NOTE\n" "LngText.text" msgid "music2" -msgstr "" +msgstr "musikk" #. 🎶 (U+1F3B6), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5049,7 +5036,7 @@ "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 @@ "SAXOPHONE\n" "LngText.text" msgid "saxophone" -msgstr "" +msgstr "saksofon" #. 🎸 (U+1F3B8), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5067,7 +5054,7 @@ "GUITAR\n" "LngText.text" msgid "guitar" -msgstr "" +msgstr "gitar" #. 🎹 (U+1F3B9), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5076,7 +5063,7 @@ "MUSICAL_KEYBOARD\n" "LngText.text" msgid "piano" -msgstr "" +msgstr "piano" #. 🎺 (U+1F3BA), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5085,7 +5072,7 @@ "TRUMPET\n" "LngText.text" msgid "trumpet" -msgstr "" +msgstr "trompet" #. 🎻 (U+1F3BB), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5094,7 +5081,7 @@ "VIOLIN\n" "LngText.text" msgid "violin" -msgstr "" +msgstr "fiolin" #. 🎼 (U+1F3BC), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5103,7 +5090,7 @@ "MUSICAL_SCORE\n" "LngText.text" msgid "score" -msgstr "" +msgstr "partitur" #. 🎽 (U+1F3BD), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5112,7 +5099,7 @@ "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 @@ "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 @@ "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 @@ "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 @@ "CHEQUERED_FLAG\n" "LngText.text" msgid "flag3" -msgstr "" +msgstr "motorsport" #. 🂠(U+1F3C2), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5157,7 +5144,7 @@ "SNOWBOARDER\n" "LngText.text" msgid "snowboarder" -msgstr "" +msgstr "snøbrett" #. 🃠(U+1F3C3), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5166,7 +5153,7 @@ "RUNNER\n" "LngText.text" msgid "runner" -msgstr "" +msgstr "løper" #. 🄠(U+1F3C4), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5175,7 +5162,7 @@ "SURFER\n" "LngText.text" msgid "surfer" -msgstr "" +msgstr "surfer" #. 🆠(U+1F3C6), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5184,7 +5171,7 @@ "TROPHY\n" "LngText.text" msgid "trophy" -msgstr "" +msgstr "trofe" #. 🇠(U+1F3C7), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5193,7 +5180,7 @@ "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 @@ "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 @@ "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 @@ "SWIMMER\n" "LngText.text" msgid "swimmer" -msgstr "" +msgstr "svømmer" #. 🠠(U+1F3E0), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5229,7 +5216,7 @@ "HOUSE_BUILDING\n" "LngText.text" msgid "house" -msgstr "" +msgstr "hus" #. 🡠(U+1F3E1), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5238,7 +5225,7 @@ "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 @@ "OFFICE_BUILDING\n" "LngText.text" msgid "office" -msgstr "" +msgstr "kontor" #. 🣠(U+1F3E3), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5256,7 +5243,7 @@ "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 @@ "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 @@ "HOSPITAL\n" "LngText.text" msgid "hospital" -msgstr "" +msgstr "sykehus" #. 🦠(U+1F3E6), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5283,7 +5270,7 @@ "BANK\n" "LngText.text" msgid "bank" -msgstr "" +msgstr "bank" #. 🧠(U+1F3E7), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5292,7 +5279,7 @@ "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 @@ "HOTEL\n" "LngText.text" msgid "hotel" -msgstr "" +msgstr "hotell" #. 🩠(U+1F3E9), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5310,7 +5297,7 @@ "LOVE_HOTEL\n" "LngText.text" msgid "hotel2" -msgstr "" +msgstr "timeshotell" #. 🪠(U+1F3EA), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5319,7 +5306,7 @@ "CONVENIENCE_STORE\n" "LngText.text" msgid "store" -msgstr "" +msgstr "butikk" #. 🫠(U+1F3EB), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5328,7 +5315,7 @@ "SCHOOL\n" "LngText.text" msgid "school" -msgstr "" +msgstr "skole" #. 🬠(U+1F3EC), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5337,7 +5324,7 @@ "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 @@ "FACTORY\n" "LngText.text" msgid "factory" -msgstr "" +msgstr "fabrikk" #. 🮠(U+1F3EE), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5355,7 +5342,7 @@ "IZAKAYA_LANTERN\n" "LngText.text" msgid "lantern" -msgstr "" +msgstr "lanterne" #. 🯠(U+1F3EF), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5364,7 +5351,7 @@ "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 @@ "EUROPEAN_CASTLE\n" "LngText.text" msgid "castle" -msgstr "" +msgstr "slott" #. 🀠(U+1F400), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5382,7 +5369,7 @@ "RAT\n" "LngText.text" msgid "rat" -msgstr "" +msgstr "rÃ¥tte" #. ðŸ (U+1F401), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5391,7 +5378,7 @@ "MOUSE\n" "LngText.text" msgid "mouse" -msgstr "" +msgstr "mus" #. 🂠(U+1F402), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5400,7 +5387,7 @@ "OX\n" "LngText.text" msgid "ox" -msgstr "" +msgstr "okse" #. 🃠(U+1F403), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5409,7 +5396,7 @@ "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 @@ "COW\n" "LngText.text" msgid "cow" -msgstr "" +msgstr "ku" #. 🅠(U+1F405), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5427,7 +5414,7 @@ "TIGER\n" "LngText.text" msgid "tiger" -msgstr "" +msgstr "tiger" #. 🆠(U+1F406), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5436,7 +5423,7 @@ "LEOPARD\n" "LngText.text" msgid "leopard" -msgstr "" +msgstr "leopard" #. 🇠(U+1F407), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5445,7 +5432,7 @@ "RABBIT\n" "LngText.text" msgid "rabbit" -msgstr "" +msgstr "kanin" #. 🈠(U+1F408), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5454,7 +5441,7 @@ "CAT\n" "LngText.text" msgid "cat" -msgstr "" +msgstr "katt" #. 🉠(U+1F409), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5463,7 +5450,7 @@ "DRAGON\n" "LngText.text" msgid "dragon" -msgstr "" +msgstr "drage" #. 🊠(U+1F40A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5472,7 +5459,7 @@ "CROCODILE\n" "LngText.text" msgid "crocodile" -msgstr "" +msgstr "krokodille" #. 🋠(U+1F40B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5481,7 +5468,7 @@ "WHALE\n" "LngText.text" msgid "whale2" -msgstr "" +msgstr "hval" #. 🌠(U+1F40C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5490,7 +5477,7 @@ "SNAIL\n" "LngText.text" msgid "snail" -msgstr "" +msgstr "snegle" #. ðŸ (U+1F40D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5499,7 +5486,7 @@ "SNAKE\n" "LngText.text" msgid "snake" -msgstr "" +msgstr "slange" #. 🎠(U+1F40E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5508,7 +5495,7 @@ "HORSE\n" "LngText.text" msgid "horse" -msgstr "" +msgstr "hest" #. ðŸ (U+1F40F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5517,7 +5504,7 @@ "RAM\n" "LngText.text" msgid "ram" -msgstr "" +msgstr "vær" #. ðŸ (U+1F410), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5526,7 +5513,7 @@ "GOAT\n" "LngText.text" msgid "goat" -msgstr "" +msgstr "geit" #. 👠(U+1F411), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5535,7 +5522,7 @@ "SHEEP\n" "LngText.text" msgid "sheep" -msgstr "" +msgstr "sau" #. 💠(U+1F412), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5544,7 +5531,7 @@ "MONKEY\n" "LngText.text" msgid "monkey" -msgstr "" +msgstr "apekatt" #. 📠(U+1F413), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5553,7 +5540,7 @@ "ROOSTER\n" "LngText.text" msgid "rooster" -msgstr "" +msgstr "hane" #. 🔠(U+1F414), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5562,7 +5549,7 @@ "CHICKEN\n" "LngText.text" msgid "chicken" -msgstr "" +msgstr "kylling" #. 🕠(U+1F415), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5571,7 +5558,7 @@ "DOG\n" "LngText.text" msgid "dog" -msgstr "" +msgstr "hund" #. 🖠(U+1F416), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5580,7 +5567,7 @@ "PIG\n" "LngText.text" msgid "pig" -msgstr "" +msgstr "gris" #. 🗠(U+1F417), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5589,7 +5576,7 @@ "BOAR\n" "LngText.text" msgid "boar" -msgstr "" +msgstr "villsvin" #. 😠(U+1F418), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5598,7 +5585,7 @@ "ELEPHANT\n" "LngText.text" msgid "elephant" -msgstr "" +msgstr "elefant" #. 🙠(U+1F419), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5607,7 +5594,7 @@ "OCTOPUS\n" "LngText.text" msgid "octopus" -msgstr "" +msgstr "blekksprut" #. 🚠(U+1F41A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5616,7 +5603,7 @@ "SPIRAL_SHELL\n" "LngText.text" msgid "shell" -msgstr "" +msgstr "skjell" #. 🛠(U+1F41B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5625,7 +5612,7 @@ "BUG\n" "LngText.text" msgid "bug" -msgstr "" +msgstr "feil" #. 🜠(U+1F41C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5634,7 +5621,7 @@ "ANT\n" "LngText.text" msgid "ant" -msgstr "" +msgstr "maur" #. ðŸ (U+1F41D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5643,7 +5630,7 @@ "HONEYBEE\n" "LngText.text" msgid "bee" -msgstr "" +msgstr "bie" #. 🞠(U+1F41E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5652,7 +5639,7 @@ "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 @@ "FISH\n" "LngText.text" msgid "fish" -msgstr "" +msgstr "fisk" #. 🠠(U+1F420), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5670,7 +5657,7 @@ "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 @@ "BLOWFISH\n" "LngText.text" msgid "fish3" -msgstr "" +msgstr "kulefisk" #. 🢠(U+1F422), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5688,7 +5675,7 @@ "TURTLE\n" "LngText.text" msgid "turtle" -msgstr "" +msgstr "skilpadde" #. 🣠(U+1F423), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5697,7 +5684,7 @@ "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 @@ "BABY_CHICK\n" "LngText.text" msgid "chick2" -msgstr "" +msgstr "kylling" #. 🥠(U+1F425), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5715,7 +5702,7 @@ "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 @@ "BIRD\n" "LngText.text" msgid "bird" -msgstr "" +msgstr "fugl" #. 🧠(U+1F427), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5733,7 +5720,7 @@ "PENGUIN\n" "LngText.text" msgid "penguin" -msgstr "" +msgstr "pingvin" #. 🨠(U+1F428), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5742,7 +5729,7 @@ "KOALA\n" "LngText.text" msgid "koala" -msgstr "" +msgstr "koala" #. 🩠(U+1F429), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5751,7 +5738,7 @@ "POODLE\n" "LngText.text" msgid "poodle" -msgstr "" +msgstr "puddel" #. 🪠(U+1F42A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5760,7 +5747,7 @@ "DROMEDARY_CAMEL\n" "LngText.text" msgid "camel" -msgstr "" +msgstr "dromedar" #. 🫠(U+1F42B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5769,7 +5756,7 @@ "BACTRIAN_CAMEL\n" "LngText.text" msgid "camel2" -msgstr "" +msgstr "kamel" #. 🬠(U+1F42C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5778,7 +5765,7 @@ "DOLPHIN\n" "LngText.text" msgid "dolphin" -msgstr "" +msgstr "delfin" #. 🭠(U+1F42D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5787,7 +5774,7 @@ "MOUSE_FACE\n" "LngText.text" msgid "mouse2" -msgstr "" +msgstr "museansikt" #. 🮠(U+1F42E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5796,7 +5783,7 @@ "COW_FACE\n" "LngText.text" msgid "cow2" -msgstr "" +msgstr "kuansikt" #. 🯠(U+1F42F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5805,7 +5792,7 @@ "TIGER_FACE\n" "LngText.text" msgid "tiger2" -msgstr "" +msgstr "tigeransikt" #. 🰠(U+1F430), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5814,7 +5801,7 @@ "RABBIT_FACE\n" "LngText.text" msgid "rabbit2" -msgstr "" +msgstr "kaninansikt" #. 🱠(U+1F431), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5823,7 +5810,7 @@ "CAT_FACE\n" "LngText.text" msgid "cat2" -msgstr "" +msgstr "katteansikt" #. 🲠(U+1F432), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5832,7 +5819,7 @@ "DRAGON_FACE\n" "LngText.text" msgid "dragon2" -msgstr "" +msgstr "drageansikt" #. 🳠(U+1F433), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5841,7 +5828,7 @@ "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 @@ "HORSE_FACE\n" "LngText.text" msgid "horse2" -msgstr "" +msgstr "hesteansikt" #. 🵠(U+1F435), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5859,7 +5846,7 @@ "MONKEY_FACE\n" "LngText.text" msgid "monkey2" -msgstr "" +msgstr "apeansikt" #. 🶠(U+1F436), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5868,7 +5855,7 @@ "DOG_FACE\n" "LngText.text" msgid "dog2" -msgstr "" +msgstr "hundeansikt" #. 🷠(U+1F437), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5877,7 +5864,7 @@ "PIG_FACE\n" "LngText.text" msgid "pig2" -msgstr "" +msgstr "griseansikt" #. 🸠(U+1F438), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5886,7 +5873,7 @@ "FROG_FACE\n" "LngText.text" msgid "frog" -msgstr "" +msgstr "froskeansikt" #. 🹠(U+1F439), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5895,7 +5882,7 @@ "HAMSTER_FACE\n" "LngText.text" msgid "hamster" -msgstr "" +msgstr "hamsteransikt" #. 🺠(U+1F43A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5904,7 +5891,7 @@ "WOLF_FACE\n" "LngText.text" msgid "wolf" -msgstr "" +msgstr "ulveansikt" #. 🻠(U+1F43B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5913,7 +5900,7 @@ "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 @@ "PANDA_FACE\n" "LngText.text" msgid "panda" -msgstr "" +msgstr "pandaansikt" #. 🽠(U+1F43D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5931,7 +5918,7 @@ "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 @@ "PAW_PRINTS\n" "LngText.text" msgid "feet" -msgstr "" +msgstr "fotspor" #. 👀 (U+1F440), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5949,7 +5936,7 @@ "EYES\n" "LngText.text" msgid "eyes" -msgstr "" +msgstr "øye" #. 👂 (U+1F442), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5958,7 +5945,7 @@ "EAR\n" "LngText.text" msgid "ear" -msgstr "" +msgstr "øre" #. 👃 (U+1F443), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5967,7 +5954,7 @@ "NOSE\n" "LngText.text" msgid "nose" -msgstr "" +msgstr "nese" #. 👄 (U+1F444), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5976,7 +5963,7 @@ "MOUTH\n" "LngText.text" msgid "mouth" -msgstr "" +msgstr "munn" #. 👅 (U+1F445), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5985,7 +5972,7 @@ "TONGUE\n" "LngText.text" msgid "tongue" -msgstr "" +msgstr "tunge" #. 👆 (U+1F446), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5994,7 +5981,7 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "CROWN\n" "LngText.text" msgid "crown" -msgstr "" +msgstr "krone" #. 👒 (U+1F452), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6102,7 +6089,7 @@ "WOMANS_HAT\n" "LngText.text" msgid "hat" -msgstr "" +msgstr "damehatt" #. 👓 (U+1F453), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6111,7 +6098,7 @@ "EYEGLASSES\n" "LngText.text" msgid "eyeglasses" -msgstr "" +msgstr "briller" #. 👔 (U+1F454), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6120,7 +6107,7 @@ "NECKTIE\n" "LngText.text" msgid "necktie" -msgstr "" +msgstr "slips" #. 👕 (U+1F455), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6129,7 +6116,7 @@ "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 @@ "JEANS\n" "LngText.text" msgid "jeans" -msgstr "" +msgstr "jeans" #. 👗 (U+1F457), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6147,7 +6134,7 @@ "DRESS\n" "LngText.text" msgid "dress" -msgstr "" +msgstr "kjole" #. 👘 (U+1F458), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6156,7 +6143,7 @@ "KIMONO\n" "LngText.text" msgid "kimono" -msgstr "" +msgstr "kimono" #. 👙 (U+1F459), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6165,7 +6152,7 @@ "BIKINI\n" "LngText.text" msgid "bikini" -msgstr "" +msgstr "bikini" #. 👚 (U+1F45A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6174,7 +6161,7 @@ "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 @@ "PURSE\n" "LngText.text" msgid "purse" -msgstr "" +msgstr "portmone" #. 👜 (U+1F45C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6192,7 +6179,7 @@ "HANDBAG\n" "LngText.text" msgid "handbag" -msgstr "" +msgstr "hÃ¥ndveske" #. 👠(U+1F45D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6201,7 +6188,7 @@ "POUCH\n" "LngText.text" msgid "pouch" -msgstr "" +msgstr "liten veske" #. 👞 (U+1F45E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6210,7 +6197,7 @@ "MANS_SHOE\n" "LngText.text" msgid "shoe" -msgstr "" +msgstr "herresko" #. 👟 (U+1F45F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6219,7 +6206,7 @@ "ATHLETIC_SHOE\n" "LngText.text" msgid "shoe2" -msgstr "" +msgstr "sportssko" #. 👠 (U+1F460), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6228,7 +6215,7 @@ "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 @@ "WOMANS_SANDAL\n" "LngText.text" msgid "sandal" -msgstr "" +msgstr "damesandal" #. 👢 (U+1F462), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6246,7 +6233,7 @@ "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 @@ "FOOTPRINTS\n" "LngText.text" msgid "footprints" -msgstr "" +msgstr "fotspor" #. 👤 (U+1F464), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6264,7 +6251,7 @@ "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 @@ "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 @@ "BOY\n" "LngText.text" msgid "boy" -msgstr "" +msgstr "gutt" #. 👧 (U+1F467), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6291,7 +6278,7 @@ "GIRL\n" "LngText.text" msgid "girl" -msgstr "" +msgstr "jente" #. 👨 (U+1F468), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6300,7 +6287,7 @@ "MAN\n" "LngText.text" msgid "man" -msgstr "" +msgstr "mann" #. 👩 (U+1F469), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6309,7 +6296,7 @@ "WOMAN\n" "LngText.text" msgid "woman" -msgstr "" +msgstr "kvinne" #. 👪 (U+1F46A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6318,7 +6305,7 @@ "FAMILY\n" "LngText.text" msgid "family" -msgstr "" +msgstr "familie" #. 👫 (U+1F46B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6327,7 +6314,7 @@ "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 @@ "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 @@ "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 @@ "POLICE_OFFICER\n" "LngText.text" msgid "cop" -msgstr "" +msgstr "politi" #. 👯 (U+1F46F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6363,7 +6350,7 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "BABY\n" "LngText.text" msgid "baby" -msgstr "" +msgstr "baby" #. 👷 (U+1F477), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6435,7 +6422,7 @@ "CONSTRUCTION_WORKER\n" "LngText.text" msgid "worker" -msgstr "" +msgstr "arbeider" #. 👸 (U+1F478), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6444,7 +6431,7 @@ "PRINCESS\n" "LngText.text" msgid "princess" -msgstr "" +msgstr "prinsesse" #. 👹 (U+1F479), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6453,7 +6440,7 @@ "JAPANESE_OGRE\n" "LngText.text" msgid "ogre" -msgstr "" +msgstr "uhyre" #. 👺 (U+1F47A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6462,7 +6449,7 @@ "JAPANESE_GOBLIN\n" "LngText.text" msgid "goblin" -msgstr "" +msgstr "goblin" #. 👻 (U+1F47B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6471,7 +6458,7 @@ "GHOST\n" "LngText.text" msgid "ghost" -msgstr "" +msgstr "spøkelse" #. 👼 (U+1F47C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6480,7 +6467,7 @@ "BABY_ANGEL\n" "LngText.text" msgid "angel" -msgstr "" +msgstr "babyengel" #. 👽 (U+1F47D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6489,7 +6476,7 @@ "EXTRATERRESTRIAL_ALIEN\n" "LngText.text" msgid "alien" -msgstr "" +msgstr "romvesen" #. 👾 (U+1F47E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6498,7 +6485,7 @@ "ALIEN_MONSTER\n" "LngText.text" msgid "alien2" -msgstr "" +msgstr "rommonster" #. 👿 (U+1F47F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6507,7 +6494,7 @@ "IMP\n" "LngText.text" msgid "imp" -msgstr "" +msgstr "svartalv" #. 💀 (U+1F480), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6516,7 +6503,7 @@ "SKULL\n" "LngText.text" msgid "skull" -msgstr "" +msgstr "kranie" #. 💠(U+1F481), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6525,7 +6512,7 @@ "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 @@ "GUARDSMAN\n" "LngText.text" msgid "guard" -msgstr "" +msgstr "vakt" #. 💃 (U+1F483), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6543,7 +6530,7 @@ "DANCER\n" "LngText.text" msgid "dancer" -msgstr "" +msgstr "danser" #. 💄 (U+1F484), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6552,7 +6539,7 @@ "LIPSTICK\n" "LngText.text" msgid "lipstick" -msgstr "" +msgstr "leppestift" #. 💅 (U+1F485), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6561,7 +6548,7 @@ "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 @@ "FACE_MASSAGE\n" "LngText.text" msgid "massage" -msgstr "" +msgstr "massasje" #. 💇 (U+1F487), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6579,7 +6566,7 @@ "HAIRCUT\n" "LngText.text" msgid "haircut" -msgstr "" +msgstr "hÃ¥rklipp" #. 💈 (U+1F488), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6588,7 +6575,7 @@ "BARBER_POLE\n" "LngText.text" msgid "barber" -msgstr "" +msgstr "barber" #. 💉 (U+1F489), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6597,7 +6584,7 @@ "SYRINGE\n" "LngText.text" msgid "syringe" -msgstr "" +msgstr "sprøyte" #. 💊 (U+1F48A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6606,7 +6593,7 @@ "PILL\n" "LngText.text" msgid "pill" -msgstr "" +msgstr "pille" #. 💋 (U+1F48B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6615,7 +6602,7 @@ "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 @@ "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 @@ "RING\n" "LngText.text" msgid "ring" -msgstr "" +msgstr "ring" #. 💎 (U+1F48E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6642,7 +6629,7 @@ "GEM_STONE\n" "LngText.text" msgid "gem" -msgstr "" +msgstr "juvel" #. 💠(U+1F48F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6651,7 +6638,7 @@ "KISS\n" "LngText.text" msgid "kiss" -msgstr "" +msgstr "kyss" #. 💠(U+1F490), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6660,7 +6647,7 @@ "BOUQUET\n" "LngText.text" msgid "bouquet" -msgstr "" +msgstr "bukett" #. 💑 (U+1F491), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6669,7 +6656,7 @@ "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 @@ "WEDDING\n" "LngText.text" msgid "wedding" -msgstr "" +msgstr "bryllup" #. 💓 (U+1F493), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6687,7 +6674,7 @@ "BEATING_HEART\n" "LngText.text" msgid "heartbeat" -msgstr "" +msgstr "hjerteslag" #. 💔 (U+1F494), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6696,7 +6683,7 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "ANGER_SYMBOL\n" "LngText.text" msgid "anger" -msgstr "" +msgstr "sinne" #. 💣 (U+1F4A3), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6795,7 +6782,7 @@ "BOMB\n" "LngText.text" msgid "bomb" -msgstr "" +msgstr "bombe" #. 💤 (U+1F4A4), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6804,7 +6791,7 @@ "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 @@ "COLLISION_SYMBOL\n" "LngText.text" msgid "boom" -msgstr "" +msgstr "kollisjon" #. 💦 (U+1F4A6), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6822,7 +6809,7 @@ "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 @@ "DROPLET\n" "LngText.text" msgid "droplet" -msgstr "" +msgstr "drÃ¥pe" #. 💨 (U+1F4A8), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6840,7 +6827,7 @@ "DASH_SYMBOL\n" "LngText.text" msgid "dash" -msgstr "" +msgstr "strek" #. 💩 (U+1F4A9), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6849,7 +6836,7 @@ "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 @@ "FLEXED_BICEPS\n" "LngText.text" msgid "muscle" -msgstr "" +msgstr "muskel" #. 💫 (U+1F4AB), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6867,7 +6854,7 @@ "DIZZY_SYMBOL\n" "LngText.text" msgid "dizzy" -msgstr "" +msgstr "svimmel" #. 💬 (U+1F4AC), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6876,7 +6863,7 @@ "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 @@ "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 @@ "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 @@ "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 @@ "MONEY_BAG\n" "LngText.text" msgid "moneybag" -msgstr "" +msgstr "pengesekk" #. 💱 (U+1F4B1), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6921,7 +6908,7 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "SEAT\n" "LngText.text" msgid "seat" -msgstr "" +msgstr "sete" #. 💻 (U+1F4BB), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7011,7 +6998,7 @@ "PERSONAL_COMPUTER\n" "LngText.text" msgid "computer" -msgstr "" +msgstr "PC" #. 💼 (U+1F4BC), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7020,7 +7007,7 @@ "BRIEFCASE\n" "LngText.text" msgid "briefcase" -msgstr "" +msgstr "dokumentmappe" #. 💽 (U+1F4BD), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7029,7 +7016,7 @@ "MINIDISC\n" "LngText.text" msgid "md" -msgstr "" +msgstr "minidisk" #. 💾 (U+1F4BE), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7038,7 +7025,7 @@ "FLOPPY_DISK\n" "LngText.text" msgid "floppy" -msgstr "" +msgstr "diskett" #. 💿 (U+1F4BF), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7047,7 +7034,7 @@ "OPTICAL_DISC\n" "LngText.text" msgid "cd" -msgstr "" +msgstr "CD" #. 📀 (U+1F4C0), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7056,7 +7043,7 @@ "DVD\n" "LngText.text" msgid "dvd" -msgstr "" +msgstr "DVD" #. 📠(U+1F4C1), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7065,7 +7052,7 @@ "FILE_FOLDER\n" "LngText.text" msgid "folder" -msgstr "" +msgstr "mappe" #. 📂 (U+1F4C2), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7074,7 +7061,7 @@ "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 @@ "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 @@ "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 @@ "CALENDAR\n" "LngText.text" msgid "calendar" -msgstr "" +msgstr "kalender" #. 📆 (U+1F4C6), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7110,7 +7097,7 @@ "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 @@ "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 @@ "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 @@ "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 @@ "BAR_CHART\n" "LngText.text" msgid "chart3" -msgstr "" +msgstr "stolpediagram" #. 📋 (U+1F4CB), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7155,7 +7142,7 @@ "CLIPBOARD\n" "LngText.text" msgid "clipboard" -msgstr "" +msgstr "utklippstavle" #. 📌 (U+1F4CC), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7164,7 +7151,7 @@ "PUSHPIN\n" "LngText.text" msgid "pushpin" -msgstr "" +msgstr "heftestift" #. 📠(U+1F4CD), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7173,7 +7160,7 @@ "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 @@ "PAPERCLIP\n" "LngText.text" msgid "paperclip" -msgstr "" +msgstr "binders" #. 📠(U+1F4CF), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7191,7 +7178,7 @@ "STRAIGHT_RULER\n" "LngText.text" msgid "ruler" -msgstr "" +msgstr "linjal" #. 📠(U+1F4D0), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7200,7 +7187,7 @@ "TRIANGULAR_RULER\n" "LngText.text" msgid "ruler2" -msgstr "" +msgstr "vinkellinjal" #. 📑 (U+1F4D1), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7209,7 +7196,7 @@ "BOOKMARK_TABS\n" "LngText.text" msgid "bookmark" -msgstr "" +msgstr "bokmerke" #. 📒 (U+1F4D2), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7218,7 +7205,7 @@ "LEDGER\n" "LngText.text" msgid "ledger" -msgstr "" +msgstr "reskontro" #. 📓 (U+1F4D3), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7227,7 +7214,7 @@ "NOTEBOOK\n" "LngText.text" msgid "notebook" -msgstr "" +msgstr "notisbok" #. 📔 (U+1F4D4), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7236,7 +7223,7 @@ "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 @@ "CLOSED_BOOK\n" "LngText.text" msgid "book" -msgstr "" +msgstr "bok" #. 📖 (U+1F4D6), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7254,7 +7241,7 @@ "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 @@ "BOOKS\n" "LngText.text" msgid "books" -msgstr "" +msgstr "bøker" #. 📛 (U+1F4DB), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7272,7 +7259,7 @@ "NAME_BADGE\n" "LngText.text" msgid "name" -msgstr "" +msgstr "navneskilt" #. 📜 (U+1F4DC), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7281,7 +7268,7 @@ "SCROLL\n" "LngText.text" msgid "scroll" -msgstr "" +msgstr "skriftrull" #. 📠(U+1F4DD), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7290,7 +7277,7 @@ "MEMO\n" "LngText.text" msgid "memo" -msgstr "" +msgstr "notat" #. 📞 (U+1F4DE), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7299,7 +7286,7 @@ "TELEPHONE_RECEIVER\n" "LngText.text" msgid "receiver" -msgstr "" +msgstr "telefonlur" #. 📟 (U+1F4DF), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7308,7 +7295,7 @@ "PAGER\n" "LngText.text" msgid "pager" -msgstr "" +msgstr "personsøker" #. 📠 (U+1F4E0), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7317,7 +7304,7 @@ "FAX_MACHINE\n" "LngText.text" msgid "fax" -msgstr "" +msgstr "faks" #. 📡 (U+1F4E1), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7326,7 +7313,7 @@ "SATELLITE_ANTENNA\n" "LngText.text" msgid "satellite" -msgstr "" +msgstr "satellitt" #. 📢 (U+1F4E2), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7335,7 +7322,7 @@ "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 @@ "CHEERING_MEGAPHONE\n" "LngText.text" msgid "mega" -msgstr "" +msgstr "megafon" #. 📤 (U+1F4E4), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7353,7 +7340,7 @@ "OUTBOX_TRAY\n" "LngText.text" msgid "tray" -msgstr "" +msgstr "utboks" #. 📥 (U+1F4E5), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7362,7 +7349,7 @@ "INBOX_TRAY\n" "LngText.text" msgid "tray2" -msgstr "" +msgstr "innboks" #. 📦 (U+1F4E6), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7371,7 +7358,7 @@ "PACKAGE\n" "LngText.text" msgid "package" -msgstr "" +msgstr "pakke" #. 📧 (U+1F4E7), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7380,7 +7367,7 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "POSTBOX\n" "LngText.text" msgid "postbox" -msgstr "" +msgstr "postboks" #. 📯 (U+1F4EF), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7452,7 +7439,7 @@ "POSTAL_HORN\n" "LngText.text" msgid "horn" -msgstr "" +msgstr "posthorn" #. 📰 (U+1F4F0), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7461,7 +7448,7 @@ "NEWSPAPER\n" "LngText.text" msgid "newspaper" -msgstr "" +msgstr "avis" #. 📱 (U+1F4F1), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7470,7 +7457,7 @@ "MOBILE_PHONE\n" "LngText.text" msgid "mobile" -msgstr "" +msgstr "mobiltelefon" #. 📲 (U+1F4F2), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7479,7 +7466,7 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "CAMERA\n" "LngText.text" msgid "camera" -msgstr "" +msgstr "kamera" #. 📹 (U+1F4F9), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7533,7 +7520,7 @@ "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 @@ "TELEVISION\n" "LngText.text" msgid "tv" -msgstr "" +msgstr "tv" #. 📻 (U+1F4FB), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7551,7 +7538,7 @@ "RADIO\n" "LngText.text" msgid "radio" -msgstr "" +msgstr "radio" #. 📼 (U+1F4FC), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7560,7 +7547,7 @@ "VIDEOCASSETTE\n" "LngText.text" msgid "vhs" -msgstr "" +msgstr "vhs" #. 🔅 (U+1F505), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7569,7 +7556,7 @@ "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 @@ "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 @@ "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 @@ "SPEAKER\n" "LngText.text" msgid "speaker" -msgstr "" +msgstr "høytaler" #. 🔉 (U+1F509), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7605,7 +7592,7 @@ "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 @@ "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 @@ "BATTERY\n" "LngText.text" msgid "battery" -msgstr "" +msgstr "batteri" #. 🔌 (U+1F50C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7632,7 +7619,7 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "KEY\n" "LngText.text" msgid "key" -msgstr "" +msgstr "nøkkel" #. 🔒 (U+1F512), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7686,7 +7673,7 @@ "LOCK\n" "LngText.text" msgid "lock" -msgstr "" +msgstr "lÃ¥s" #. 🔓 (U+1F513), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7695,7 +7682,7 @@ "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 @@ "BELL\n" "LngText.text" msgid "bell" -msgstr "" +msgstr "klokke" #. 🔕 (U+1F515), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7713,7 +7700,7 @@ "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 @@ "BOOKMARK\n" "LngText.text" msgid "bookmark2" -msgstr "" +msgstr "bokmerke" #. 🔗 (U+1F517), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7731,7 +7718,7 @@ "LINK_SYMBOL\n" "LngText.text" msgid "link" -msgstr "" +msgstr "lenke" #. 🔘 (U+1F518), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7740,7 +7727,7 @@ "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 @@ "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 @@ "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 @@ "FIRE\n" "LngText.text" msgid "fire" -msgstr "" +msgstr "flamme" #. 🔦 (U+1F526), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7776,7 +7763,7 @@ "ELECTRIC_TORCH\n" "LngText.text" msgid "flashlight" -msgstr "" +msgstr "lommelykt" #. 🔧 (U+1F527), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7785,7 +7772,7 @@ "WRENCH\n" "LngText.text" msgid "wrench" -msgstr "" +msgstr "fastnøkkel" #. 🔨 (U+1F528), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7794,7 +7781,7 @@ "HAMMER\n" "LngText.text" msgid "hammer" -msgstr "" +msgstr "hammer" #. 🔩 (U+1F529), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7803,7 +7790,7 @@ "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 @@ "HOCHO\n" "LngText.text" msgid "knife" -msgstr "" +msgstr "kniv" #. 🔫 (U+1F52B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7821,7 +7808,7 @@ "PISTOL\n" "LngText.text" msgid "pistol" -msgstr "" +msgstr "pistol" #. 🔬 (U+1F52C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7830,7 +7817,7 @@ "MICROSCOPE\n" "LngText.text" msgid "microscope" -msgstr "" +msgstr "mikroskop" #. 🔭 (U+1F52D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7839,7 +7826,7 @@ "TELESCOPE\n" "LngText.text" msgid "telescope" -msgstr "" +msgstr "teleskop" #. 🔮 (U+1F52E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7848,7 +7835,7 @@ "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 @@ "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 @@ "TRIDENT_EMBLEM\n" "LngText.text" msgid "trident" -msgstr "" +msgstr "trefork" #. 🔲 (U+1F532), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7875,7 +7862,7 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "MOUNT_FUJI\n" "LngText.text" msgid "Fuji" -msgstr "" +msgstr "Fuji" #. 🗼 (U+1F5FC), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8118,7 +8105,7 @@ "TOKYO_TOWER\n" "LngText.text" msgid "tower" -msgstr "" +msgstr "Tokyo" #. 🗽 (U+1F5FD), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8127,7 +8114,7 @@ "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 @@ "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 @@ "MOYAI\n" "LngText.text" msgid "statue" -msgstr "" +msgstr "statue" #. 😀 (U+1F600), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8154,7 +8141,7 @@ "GRINNING_FACE\n" "LngText.text" msgid "grinning" -msgstr "" +msgstr "flirende" #. 😠(U+1F601), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8163,7 +8150,7 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "WINKING_FACE\n" "LngText.text" msgid "wink" -msgstr "" +msgstr "blunk" #. 😊 (U+1F60A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8244,7 +8231,7 @@ "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 @@ "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 @@ "RELIEVED_FACE\n" "LngText.text" msgid "relieved" -msgstr "" +msgstr "letta" #. 😠(U+1F60D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8271,7 +8258,7 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "PENSIVE_FACE\n" "LngText.text" msgid "pensive" -msgstr "" +msgstr "ettertenksom" #. 😕 (U+1F615), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8343,7 +8330,7 @@ "CONFUSED_FACE\n" "LngText.text" msgid "confused" -msgstr "" +msgstr "forvirret" #. 😖 (U+1F616), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8352,7 +8339,7 @@ "CONFOUNDED_FACE\n" "LngText.text" msgid "confounded" -msgstr "" +msgstr "forundret" #. 😗 (U+1F617), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8361,7 +8348,7 @@ "KISSING_FACE\n" "LngText.text" msgid "kissing" -msgstr "" +msgstr "kysser" #. 😘 (U+1F618), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8370,7 +8357,7 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "DISAPPOINTED_FACE\n" "LngText.text" msgid "disappointed" -msgstr "" +msgstr "skuffa" #. 😟 (U+1F61F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8433,7 +8420,7 @@ "WORRIED_FACE\n" "LngText.text" msgid "worried" -msgstr "" +msgstr "bekymret" #. 😠 (U+1F620), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8442,7 +8429,7 @@ "ANGRY_FACE\n" "LngText.text" msgid "angry" -msgstr "" +msgstr "sint" #. 😡 (U+1F621), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8451,7 +8438,7 @@ "POUTING_FACE\n" "LngText.text" msgid "rage" -msgstr "" +msgstr "sint" #. 😢 (U+1F622), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8460,7 +8447,7 @@ "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 @@ "PERSEVERING_FACE\n" "LngText.text" msgid "persevere" -msgstr "" +msgstr "standhaftig" #. 😤 (U+1F624), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8478,7 +8465,7 @@ "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 @@ "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 @@ "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 @@ "ANGUISHED_FACE\n" "LngText.text" msgid "anguished" -msgstr "" +msgstr "forpint" #. 😨 (U+1F628), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8514,7 +8501,7 @@ "FEARFUL_FACE\n" "LngText.text" msgid "fearful" -msgstr "" +msgstr "engstelig" #. 😩 (U+1F629), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8523,7 +8510,7 @@ "WEARY_FACE\n" "LngText.text" msgid "weary" -msgstr "" +msgstr "sliten" #. 😪 (U+1F62A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8532,7 +8519,7 @@ "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 @@ "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 @@ "GRIMACING_FACE\n" "LngText.text" msgid "grimacing" -msgstr "" +msgstr "grimase" #. 😭 (U+1F62D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8559,7 +8546,7 @@ "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 @@ "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 @@ "HUSHED_FACE\n" "LngText.text" msgid "hushed" -msgstr "" +msgstr "hysj" #. 😰 (U+1F630), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8586,7 +8573,7 @@ "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 @@ "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 @@ "ASTONISHED_FACE\n" "LngText.text" msgid "astonished" -msgstr "" +msgstr "forbausa" #. 😳 (U+1F633), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8613,7 +8600,7 @@ "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 @@ "SLEEPING_FACE\n" "LngText.text" msgid "sleeping" -msgstr "" +msgstr "sovende" #. 😵 (U+1F635), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8631,7 +8618,7 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "ROCKET\n" "LngText.text" msgid "rocket" -msgstr "" +msgstr "rakett" #. 🚠(U+1F681), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8847,7 +8834,7 @@ "HELICOPTER\n" "LngText.text" msgid "helicopter" -msgstr "" +msgstr "helikopter" #. 🚂 (U+1F682), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8856,7 +8843,7 @@ "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 @@ "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 @@ "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 @@ "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 @@ "TRAIN\n" "LngText.text" msgid "train" -msgstr "" +msgstr "tog" #. 🚇 (U+1F687), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8901,7 +8888,7 @@ "METRO\n" "LngText.text" msgid "metro" -msgstr "" +msgstr "undergrunnsbane" #. 🚈 (U+1F688), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8910,7 +8897,7 @@ "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 @@ "STATION\n" "LngText.text" msgid "station" -msgstr "" +msgstr "stasjon" #. 🚊 (U+1F68A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8928,7 +8915,7 @@ "TRAM\n" "LngText.text" msgid "tram" -msgstr "" +msgstr "trikk" #. 🚋 (U+1F68B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8937,7 +8924,7 @@ "TRAM_CAR\n" "LngText.text" msgid "tram2" -msgstr "" +msgstr "trikk" #. 🚌 (U+1F68C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8946,7 +8933,7 @@ "BUS\n" "LngText.text" msgid "bus" -msgstr "" +msgstr "buss" #. 🚠(U+1F68D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8955,7 +8942,7 @@ "ONCOMING_BUS\n" "LngText.text" msgid "bus2" -msgstr "" +msgstr "buss" #. 🚎 (U+1F68E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8964,7 +8951,7 @@ "TROLLEYBUS\n" "LngText.text" msgid "trolleybus" -msgstr "" +msgstr "buss" #. 🚠(U+1F68F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8973,7 +8960,7 @@ "BUS_STOP\n" "LngText.text" msgid "busstop" -msgstr "" +msgstr "busstopp" #. 🚠(U+1F690), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8982,7 +8969,7 @@ "MINIBUS\n" "LngText.text" msgid "minibus" -msgstr "" +msgstr "minibuss" #. 🚑 (U+1F691), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8991,7 +8978,7 @@ "AMBULANCE\n" "LngText.text" msgid "ambulance" -msgstr "" +msgstr "ambulanse" #. 🚒 (U+1F692), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9000,7 +8987,7 @@ "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 @@ "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 @@ "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 @@ "TAXI\n" "LngText.text" msgid "taxi" -msgstr "" +msgstr "taxi" #. 🚖 (U+1F696), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9036,7 +9023,7 @@ "ONCOMING_TAXI\n" "LngText.text" msgid "taxi2" -msgstr "" +msgstr "taxi" #. 🚗 (U+1F697), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9045,7 +9032,7 @@ "AUTOMOBILE\n" "LngText.text" msgid "car" -msgstr "" +msgstr "bil" #. 🚘 (U+1F698), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9054,7 +9041,7 @@ "ONCOMING_AUTOMOBILE\n" "LngText.text" msgid "car2" -msgstr "" +msgstr "bil" #. 🚙 (U+1F699), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9063,7 +9050,7 @@ "RECREATIONAL_VEHICLE\n" "LngText.text" msgid "car3" -msgstr "" +msgstr "bobil" #. 🚚 (U+1F69A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9072,7 +9059,7 @@ "DELIVERY_TRUCK\n" "LngText.text" msgid "truck2" -msgstr "" +msgstr "lastebil" #. 🚛 (U+1F69B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9081,7 +9068,7 @@ "ARTICULATED_LORRY\n" "LngText.text" msgid "lorry" -msgstr "" +msgstr "lastebil" #. 🚜 (U+1F69C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9090,7 +9077,7 @@ "TRACTOR\n" "LngText.text" msgid "tractor" -msgstr "" +msgstr "traktor" #. 🚠(U+1F69D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9099,7 +9086,7 @@ "MONORAIL\n" "LngText.text" msgid "monorail" -msgstr "" +msgstr "enskinnebane" #. 🚞 (U+1F69E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9108,7 +9095,7 @@ "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 @@ "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 @@ "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 @@ "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 @@ "SHIP\n" "LngText.text" msgid "ship" -msgstr "" +msgstr "skip" #. 🚣 (U+1F6A3), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9153,7 +9140,7 @@ "ROWBOAT\n" "LngText.text" msgid "rowboat" -msgstr "" +msgstr "robÃ¥t" #. 🚤 (U+1F6A4), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9162,7 +9149,7 @@ "SPEEDBOAT\n" "LngText.text" msgid "speedboat" -msgstr "" +msgstr "speedbÃ¥t" #. 🚥 (U+1F6A5), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9171,7 +9158,7 @@ "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 @@ "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 @@ "CONSTRUCTION_SIGN\n" "LngText.text" msgid "construction" -msgstr "" +msgstr "veisperre" #. 🚨 (U+1F6A8), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9198,7 +9185,7 @@ "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 @@ "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 @@ "DOOR\n" "LngText.text" msgid "door" -msgstr "" +msgstr "dør" #. 🚫 (U+1F6AB), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9225,7 +9212,7 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "BICYCLE\n" "LngText.text" msgid "bike" -msgstr "" +msgstr "sykkel" #. 🚳 (U+1F6B3), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9297,7 +9284,7 @@ "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 @@ "BICYCLIST\n" "LngText.text" msgid "bicyclist" -msgstr "" +msgstr "syklist" #. 🚵 (U+1F6B5), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9315,7 +9302,7 @@ "MOUNTAIN_BICYCLIST\n" "LngText.text" msgid "bicyclist2" -msgstr "" +msgstr "mountainbiker" #. 🚶 (U+1F6B6), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9324,7 +9311,7 @@ "PEDESTRIAN\n" "LngText.text" msgid "walking" -msgstr "" +msgstr "fotgjenger" #. 🚷 (U+1F6B7), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9333,7 +9320,7 @@ "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 @@ "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 @@ "MENS_SYMBOL\n" "LngText.text" msgid "mens" -msgstr "" +msgstr "herretoalett" #. 🚺 (U+1F6BA), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9360,7 +9347,7 @@ "WOMENS_SYMBOL\n" "LngText.text" msgid "womens" -msgstr "" +msgstr "dametoalett" #. 🚻 (U+1F6BB), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9369,7 +9356,7 @@ "RESTROOM\n" "LngText.text" msgid "restroom" -msgstr "" +msgstr "toalett" #. 🚼 (U+1F6BC), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9378,7 +9365,7 @@ "BABY_SYMBOL\n" "LngText.text" msgid "baby2" -msgstr "" +msgstr "stellerom" #. 🚽 (U+1F6BD), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9387,7 +9374,7 @@ "TOILET\n" "LngText.text" msgid "toilet" -msgstr "" +msgstr "toalett" #. 🚾 (U+1F6BE), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9396,7 +9383,7 @@ "WATER_CLOSET\n" "LngText.text" msgid "toilet2" -msgstr "" +msgstr "WC" #. 🚿 (U+1F6BF), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9405,7 +9392,7 @@ "SHOWER\n" "LngText.text" msgid "shower" -msgstr "" +msgstr "dusj" #. 🛀 (U+1F6C0), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9414,7 +9401,7 @@ "BATH\n" "LngText.text" msgid "bath" -msgstr "" +msgstr "bad" #. 🛠(U+1F6C1), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9423,7 +9410,7 @@ "BATHTUB\n" "LngText.text" msgid "bathtub" -msgstr "" +msgstr "badekar" #. 🛂 (U+1F6C2), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9432,7 +9419,7 @@ "PASSPORT_CONTROL\n" "LngText.text" msgid "passport" -msgstr "" +msgstr "passkontroll" #. 🛃 (U+1F6C3), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9441,7 +9428,7 @@ "CUSTOMS\n" "LngText.text" msgid "customs" -msgstr "" +msgstr "toll" #. 🛄 (U+1F6C4), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9450,7 +9437,7 @@ "BAGGAGE_CLAIM\n" "LngText.text" msgid "baggage" -msgstr "" +msgstr "bagasje" #. 🛅 (U+1F6C5), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9459,7 +9446,7 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "SUPERSCRIPT_ONE\n" "LngText.text" msgid "^1" -msgstr "" +msgstr "^1" #. ² (U+000B2), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9558,7 +9545,7 @@ "SUPERSCRIPT_TWO\n" "LngText.text" msgid "^2" -msgstr "" +msgstr "^2" #. ³ (U+000B3), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9567,7 +9554,7 @@ "SUPERSCRIPT_THREE\n" "LngText.text" msgid "^3" -msgstr "" +msgstr "^3" #. â´ (U+02074), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9576,7 +9563,7 @@ "SUPERSCRIPT_FOUR\n" "LngText.text" msgid "^4" -msgstr "" +msgstr "^4" #. âµ (U+02075), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9585,7 +9572,7 @@ "SUPERSCRIPT_FIVE\n" "LngText.text" msgid "^5" -msgstr "" +msgstr "^5" #. ⶠ(U+02076), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9594,7 +9581,7 @@ "SUPERSCRIPT_SIX\n" "LngText.text" msgid "^6" -msgstr "" +msgstr "^6" #. â· (U+02077), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9603,7 +9590,7 @@ "SUPERSCRIPT_SEVEN\n" "LngText.text" msgid "^7" -msgstr "" +msgstr "^7" #. ⸠(U+02078), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9612,7 +9599,7 @@ "SUPERSCRIPT_EIGHT\n" "LngText.text" msgid "^8" -msgstr "" +msgstr "^8" #. â¹ (U+02079), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9621,7 +9608,7 @@ "SUPERSCRIPT_NINE\n" "LngText.text" msgid "^9" -msgstr "" +msgstr "^9" #. â° (U+02070), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9630,7 +9617,7 @@ "SUPERSCRIPT_ZERO\n" "LngText.text" msgid "^0" -msgstr "" +msgstr "^0" #. ⺠(U+0207A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9639,11 +9626,10 @@ "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 @@ "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 @@ #. â¾ (U+0207E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "SUPERSCRIPT_RIGHT_PARENTHESIS\n" @@ -9687,7 +9671,7 @@ "SUBSCRIPT_ONE\n" "LngText.text" msgid "_1" -msgstr "" +msgstr "_1" #. â‚‚ (U+02082), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9696,7 +9680,7 @@ "SUBSCRIPT_TWO\n" "LngText.text" msgid "_2" -msgstr "" +msgstr "_2" #. ₃ (U+02083), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9705,7 +9689,7 @@ "SUBSCRIPT_THREE\n" "LngText.text" msgid "_3" -msgstr "" +msgstr "_3" #. â‚„ (U+02084), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9714,7 +9698,7 @@ "SUBSCRIPT_FOUR\n" "LngText.text" msgid "_4" -msgstr "" +msgstr "_4" #. â‚… (U+02085), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9723,7 +9707,7 @@ "SUBSCRIPT_FIVE\n" "LngText.text" msgid "_5" -msgstr "" +msgstr "_5" #. ₆ (U+02086), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9732,7 +9716,7 @@ "SUBSCRIPT_SIX\n" "LngText.text" msgid "_6" -msgstr "" +msgstr "_6" #. ₇ (U+02087), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9741,7 +9725,7 @@ "SUBSCRIPT_SEVEN\n" "LngText.text" msgid "_7" -msgstr "" +msgstr "_7" #. ₈ (U+02088), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9750,7 +9734,7 @@ "SUBSCRIPT_EIGHT\n" "LngText.text" msgid "_8" -msgstr "" +msgstr "_8" #. ₉ (U+02089), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9759,7 +9743,7 @@ "SUBSCRIPT_NINE\n" "LngText.text" msgid "_9" -msgstr "" +msgstr "_9" #. â‚€ (U+02080), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9768,7 +9752,7 @@ "SUBSCRIPT_ZERO\n" "LngText.text" msgid "_0" -msgstr "" +msgstr "_0" #. â‚Š (U+0208A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9777,11 +9761,10 @@ "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 @@ "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 @@ #. â‚Ž (U+0208E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "SUBSCRIPT_RIGHT_PARENTHESIS\n" @@ -9825,7 +9806,7 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "GREEK_SUBSCRIPT_SMALL_LETTER_CHI\n" "LngText.text" msgid "_chi" -msgstr "" +msgstr "_chi" diff -Nru libreoffice-5.1.1~rc2/translations/source/nb/filter/source/config/fragments/filters.po libreoffice-5.1.2~rc2/translations/source/nb/filter/source/config/fragments/filters.po --- libreoffice-5.1.1~rc2/translations/source/nb/filter/source/config/fragments/filters.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/nb/filter/source/config/fragments/filters.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "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 @@ "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 @@ "UIName\n" "value.text" msgid "Apple Numbers 2" -msgstr "" +msgstr "Apple Numbers 2" #: ApplePages.xcu msgctxt "" @@ -50,7 +50,7 @@ "UIName\n" "value.text" msgid "Apple Pages 4" -msgstr "" +msgstr "Apple Pages 4" #: BMP___MS_Windows.xcu msgctxt "" @@ -347,40 +347,36 @@ "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 @@ 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 @@ "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 @@ "UIName\n" "value.text" msgid "Microsoft Write" -msgstr "" +msgstr "Microsoft Write" #: MWAW_Bitmap.xcu msgctxt "" @@ -507,7 +500,7 @@ "UIName\n" "value.text" msgid "Legacy Mac Bitmap" -msgstr "" +msgstr "Eldre Mac punktbilde" #: MWAW_Database.xcu msgctxt "" @@ -516,7 +509,7 @@ "UIName\n" "value.text" msgid "Legacy Mac Database" -msgstr "" +msgstr "Eldre Mac database" #: MWAW_Drawing.xcu msgctxt "" @@ -525,7 +518,7 @@ "UIName\n" "value.text" msgid "Legacy Mac Drawing" -msgstr "" +msgstr "Eldre Mac tegning" #: MWAW_Presentation.xcu msgctxt "" @@ -534,7 +527,7 @@ "UIName\n" "value.text" msgid "Legacy Mac Presentation" -msgstr "" +msgstr "Eldre Mac Presentasjon" #: MWAW_Spreadsheet.xcu msgctxt "" @@ -543,7 +536,7 @@ "UIName\n" "value.text" msgid "Legacy Mac Spreadsheet" -msgstr "" +msgstr "Eldre Mac Regneark" #: MWAW_Text_Document.xcu msgctxt "" @@ -552,7 +545,7 @@ "UIName\n" "value.text" msgid "Legacy Mac Text Document" -msgstr "" +msgstr "Eldre Mac Tekstdokument" #: MacWrite.xcu msgctxt "" @@ -717,14 +710,13 @@ 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 @@ "UIName\n" "value.text" msgid "Lotus Document" -msgstr "" +msgstr "Lotus Dokument" #: WPS_QPro_Calc.xcu msgctxt "" @@ -1048,7 +1040,7 @@ "UIName\n" "value.text" msgid "QuattroPro Document" -msgstr "" +msgstr "QuattroPro Dokument" #: WordPerfect.xcu msgctxt "" @@ -1120,7 +1112,7 @@ "UIName\n" "value.text" msgid "Gnumeric Spreadsheet" -msgstr "" +msgstr "Gnumeric Regneark" #: calc_HTML_WebQuery.xcu msgctxt "" @@ -1147,27 +1139,25 @@ "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 @@ msgstr "PDF - Portable Document Format" #: calc_png_Export.xcu -#, fuzzy msgctxt "" "calc_png_Export.xcu\n" "calc_png_Export\n" @@ -1495,34 +1484,31 @@ 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 @@ 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 @@ msgstr "PDF - Portable Document Format" #: writer_web_png_Export.xcu -#, fuzzy msgctxt "" "writer_web_png_Export.xcu\n" "writer_web_png_Export\n" diff -Nru libreoffice-5.1.1~rc2/translations/source/nb/filter/source/config/fragments/types.po libreoffice-5.1.2~rc2/translations/source/nb/filter/source/config/fragments/types.po --- libreoffice-5.1.1~rc2/translations/source/nb/filter/source/config/fragments/types.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/nb/filter/source/config/fragments/types.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "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 @@ "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 @@ 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 @@ "UIName\n" "value.text" msgid "Gnumeric Spreadsheet" -msgstr "" +msgstr "Gnumeric-regneark" #: calc_MS_Excel_2003_XML.xcu msgctxt "" @@ -284,24 +278,22 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/nb/filter/uiconfig/ui.po libreoffice-5.1.2~rc2/translations/source/nb/filter/uiconfig/ui.po --- libreoffice-5.1.1~rc2/translations/source/nb/filter/uiconfig/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/nb/filter/uiconfig/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,17 +4,17 @@ "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 @@ "0\n" "stringlist.text" msgid "None" -msgstr "" +msgstr "Ingen" #: pdfsignpage.ui msgctxt "" @@ -909,7 +909,7 @@ "label\n" "string.text" msgid "Time Stamp Authority:" -msgstr "" +msgstr "Time Stamp Authority:" #: pdfsignpage.ui msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/nb/formula/source/core/resource.po libreoffice-5.1.2~rc2/translations/source/nb/formula/source/core/resource.po --- libreoffice-5.1.1~rc2/translations/source/nb/formula/source/core/resource.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/nb/formula/source/core/resource.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\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-29 16:07+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -932,14 +932,13 @@ 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 @@ "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 @@ "SC_OPCODE_AGGREGATE\n" "string.text" msgid "AGGREGATE" -msgstr "" +msgstr "SAMMENDRAG" #: core_resource.src msgctxt "" @@ -3037,7 +3035,7 @@ "SC_OPCODE_ISOWEEKNUM\n" "string.text" msgid "ISOWEEKNUM" -msgstr "" +msgstr "ISOVEKENR" #: core_resource.src msgctxt "" @@ -3046,7 +3044,7 @@ "SC_OPCODE_WEEKNUM_OOO\n" "string.text" msgid "WEEKNUM_OOO" -msgstr "" +msgstr "UKENR_OOO" #: core_resource.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/nb/formula/uiconfig/ui.po libreoffice-5.1.2~rc2/translations/source/nb/formula/uiconfig/ui.po --- libreoffice-5.1.1~rc2/translations/source/nb/formula/uiconfig/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/nb/formula/uiconfig/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\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 @@ "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 @@ "tooltip_text\n" "string.text" msgid "Maximize" -msgstr "" +msgstr "Maksimer" #: functionpage.ui msgctxt "" @@ -140,7 +140,7 @@ "label\n" "string.text" msgid "Function not known" -msgstr "" +msgstr "Ukjent funksjon" #: parameter.ui msgctxt "" @@ -185,4 +185,4 @@ "label\n" "string.text" msgid "_Structure" -msgstr "" +msgstr "_Struktur" diff -Nru libreoffice-5.1.1~rc2/translations/source/nb/fpicker/source/office.po libreoffice-5.1.2~rc2/translations/source/nb/fpicker/source/office.po --- libreoffice-5.1.1~rc2/translations/source/nb/fpicker/source/office.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/nb/fpicker/source/office.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 @@ "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 @@ "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 @@ "STR_SVT_ROOTLABEL\n" "string.text" msgid "Root" -msgstr "" +msgstr "Rot" #: iodlg.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/nb/fpicker/uiconfig/ui.po libreoffice-5.1.2~rc2/translations/source/nb/fpicker/uiconfig/ui.po --- libreoffice-5.1.1~rc2/translations/source/nb/fpicker/uiconfig/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/nb/fpicker/uiconfig/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 @@ "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 @@ "title\n" "string.text" msgid "Remote Files" -msgstr "" +msgstr "Eksterne filer" #: remotefilesdialog.ui msgctxt "" @@ -158,7 +158,7 @@ "label\n" "string.text" msgid "Service:" -msgstr "" +msgstr "Tjeneste" #: remotefilesdialog.ui msgctxt "" @@ -167,10 +167,9 @@ "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 @@ msgstr "Lag ny mappe" #: remotefilesdialog.ui -#, fuzzy msgctxt "" "remotefilesdialog.ui\n" "new_folder\n" @@ -196,17 +194,16 @@ "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 @@ "label\n" "string.text" msgid "_Edit service" -msgstr "" +msgstr "_Rediger tjeneste" #: remotefilesdialog.ui msgctxt "" @@ -224,7 +221,7 @@ "label\n" "string.text" msgid "_Delete service" -msgstr "" +msgstr "_Slett tjeneste" #: remotefilesdialog.ui msgctxt "" @@ -233,4 +230,4 @@ "label\n" "string.text" msgid "_Change password" -msgstr "" +msgstr "Endre _passord" diff -Nru libreoffice-5.1.1~rc2/translations/source/nb/framework/source/classes.po libreoffice-5.1.2~rc2/translations/source/nb/framework/source/classes.po --- libreoffice-5.1.1~rc2/translations/source/nb/framework/source/classes.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/nb/framework/source/classes.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 @@ "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 @@ "STR_OPEN_REMOTE\n" "string.text" msgid "Open remote file" -msgstr "" +msgstr "Ã…pne ekstern fil" #: resource.src msgctxt "" @@ -156,7 +156,7 @@ "STR_REMOTE_TITLE\n" "string.text" msgid " (Remote)" -msgstr "" +msgstr " (Ekstern)" #: resource.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/nb/helpcontent2/source/text/sbasic/guide.po libreoffice-5.1.2~rc2/translations/source/nb/helpcontent2/source/text/sbasic/guide.po --- libreoffice-5.1.1~rc2/translations/source/nb/helpcontent2/source/text/sbasic/guide.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/nb/helpcontent2/source/text/sbasic/guide.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,17 +4,17 @@ "Project-Id-Version: PACKAGE VERSION\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: 2012-11-27 00:51+0000\n" -"Last-Translator: Olav <odahlum@gmail.com>\n" +"PO-Revision-Date: 2016-03-26 22:57+0000\n" +"Last-Translator: kmr <karl.m.ramberg@gmail.com>\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: 1353977478.0\n" +"X-POOTLE-MTIME: 1459033069.000000\n" #: access2base.xhp msgctxt "" @@ -22,7 +22,7 @@ "tit\n" "help.text" msgid "Access2Base" -msgstr "" +msgstr "Access2Base" #: access2base.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/nb/helpcontent2/source/text/scalc/01.po libreoffice-5.1.2~rc2/translations/source/nb/helpcontent2/source/text/scalc/01.po --- libreoffice-5.1.1~rc2/translations/source/nb/helpcontent2/source/text/scalc/01.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/nb/helpcontent2/source/text/scalc/01.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 @@ "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 @@ 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 @@ msgstr "mindre enn" #: 12090103.xhp +#, fuzzy msgctxt "" "12090103.xhp\n" "par_id3155335\n" "17\n" "help.text" msgid ">" -msgstr "" +msgstr ">" #: 12090103.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/nb/helpcontent2/source/text/scalc.po libreoffice-5.1.2~rc2/translations/source/nb/helpcontent2/source/text/scalc.po --- libreoffice-5.1.1~rc2/translations/source/nb/helpcontent2/source/text/scalc.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/nb/helpcontent2/source/text/scalc.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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:12+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2016-03-26 13:20+0000\n" +"Last-Translator: kmr <karl.m.ramberg@gmail.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: nb\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1431375124.000000\n" +"X-POOTLE-MTIME: 1458998438.000000\n" #: main0000.xhp msgctxt "" @@ -104,7 +104,6 @@ msgstr "Fil" #: main0101.xhp -#, fuzzy msgctxt "" "main0101.xhp\n" "hd_id3156023\n" @@ -113,7 +112,6 @@ msgstr "<link href=\"text/scalc/main0101.xhp\" name=\"File\">Fil</link>" #: main0101.xhp -#, fuzzy msgctxt "" "main0101.xhp\n" "par_id3151112\n" @@ -130,7 +128,6 @@ msgstr "Rediger" #: main0102.xhp -#, fuzzy msgctxt "" "main0102.xhp\n" "hd_id3156023\n" @@ -139,7 +136,6 @@ msgstr "<link href=\"text/scalc/main0102.xhp\" name=\"Edit\">Rediger</link>" #: main0102.xhp -#, fuzzy msgctxt "" "main0102.xhp\n" "par_id3154758\n" @@ -148,7 +144,6 @@ msgstr "<ahelp hid=\".\">Denne menyen inneholder funksjoner du kan bruke til Ã¥ endre innholdet i det gjeldende dokumentet.</ahelp>" #: main0102.xhp -#, fuzzy msgctxt "" "main0102.xhp\n" "hd_id3146919\n" @@ -157,7 +152,6 @@ msgstr "<link href=\"text/shared/01/02180000.xhp\" name=\"Links\">Lenker</link>" #: main0102.xhp -#, fuzzy msgctxt "" "main0102.xhp\n" "hd_id3148488\n" @@ -166,13 +160,12 @@ msgstr "<link href=\"text/shared/01/02220000.xhp\" name=\"ImageMap\">Bildekart</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\">Ã…pne</link>" +msgstr "<link href=\"text/shared/01/02200000.xhp\" name=\"Object\">Objekt</link>" #: main0103.xhp msgctxt "" @@ -183,7 +176,6 @@ msgstr "Vis" #: main0103.xhp -#, fuzzy msgctxt "" "main0103.xhp\n" "hd_id3151112\n" @@ -192,7 +184,6 @@ msgstr "<link href=\"text/scalc/main0103.xhp\" name=\"View\">Vis</link>" #: main0103.xhp -#, fuzzy msgctxt "" "main0103.xhp\n" "par_id3149456\n" @@ -209,7 +200,6 @@ msgstr "Normal" #: main0103.xhp -#, fuzzy msgctxt "" "main0103.xhp\n" "par_idN105AF\n" @@ -218,13 +208,12 @@ msgstr "<ahelp hid=\".\">Viser normalvisningen av arket.</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\">Ã…pne</link>" +msgstr "<link href=\"text/shared/01/03100000.xhp\">Sideskift</link>" #: main0103.xhp msgctxt "" @@ -232,7 +221,7 @@ "hd_id10272015110909623\n" "help.text" msgid "Grid Lines for Sheet" -msgstr "" +msgstr "Rutelinjer for ark" #: main0103.xhp msgctxt "" @@ -240,7 +229,7 @@ "par_id102720151147483554\n" "help.text" msgid "Toggle the visibility of grid lines for the current sheet." -msgstr "" +msgstr "SlÃ¥r vising av rutelinjene av og pÃ¥ pÃ¥ det gjeldende arket." #: main0103.xhp msgctxt "" @@ -248,10 +237,9 @@ "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\">Utklippsgalleriet</link>" #: main0103.xhp -#, fuzzy msgctxt "" "main0103.xhp\n" "hd_id3125863\n" @@ -268,7 +256,6 @@ msgstr "Sett inn" #: main0104.xhp -#, fuzzy msgctxt "" "main0104.xhp\n" "hd_id3157909\n" @@ -277,16 +264,14 @@ msgstr "<link href=\"text/scalc/main0104.xhp\" name=\"Insert\">Sett inn</link>" #: main0104.xhp -#, fuzzy msgctxt "" "main0104.xhp\n" "par_id3153896\n" "help.text" msgid "<ahelp hid=\".\">The Insert menu contains commands for inserting new elements, such as cells, rows, sheets and cell names into the current sheet.</ahelp>" -msgstr "<ahelp hid=\".\"><emph>Sett inn-menyen</emph> inneholder funksjoner du kan bruke til Ã¥ sette inn nye elementer, for eksempel celler, rader, ark og cellenavn, i det gjeldenderegnearket.</ahelp>" +msgstr "<ahelp hid=\".\">Menyen, Sett inn inneholder funksjoner du kan bruke for Ã¥ sette inn nye element som celler, rader, ark og cellenavn i det gjeldende regnearket.</ahelp>" #: main0104.xhp -#, fuzzy msgctxt "" "main0104.xhp\n" "hd_id3150769\n" @@ -295,7 +280,6 @@ msgstr "<link href=\"text/scalc/01/04020000.xhp\" name=\"Cells\">Celler</link>" #: main0104.xhp -#, fuzzy msgctxt "" "main0104.xhp\n" "hd_id3149260\n" @@ -304,7 +288,6 @@ msgstr "<link href=\"text/scalc/01/04050000.xhp\" name=\"Sheet\">Ark</link>" #: main0104.xhp -#, fuzzy msgctxt "" "main0104.xhp\n" "hd_id3153726\n" @@ -313,7 +296,6 @@ msgstr "<link href=\"text/shared/01/04100000.xhp\" name=\"Special Character\">Spesialtegn</link>" #: main0104.xhp -#, fuzzy msgctxt "" "main0104.xhp\n" "hd_id3156285\n" @@ -322,7 +304,6 @@ msgstr "<link href=\"text/shared/02/09070000.xhp\" name=\"Hyperlink\">Hyperlenke</link>" #: main0104.xhp -#, fuzzy msgctxt "" "main0104.xhp\n" "hd_id3154492\n" @@ -331,7 +312,6 @@ msgstr "<link href=\"text/scalc/01/04060000.xhp\" name=\"Function\">Funksjon</link>" #: main0104.xhp -#, fuzzy msgctxt "" "main0104.xhp\n" "hd_id3145640\n" @@ -340,7 +320,6 @@ msgstr "<link href=\"text/shared/01/04050000.xhp\" name=\"Merknad\">Merknad</link>" #: main0104.xhp -#, fuzzy msgctxt "" "main0104.xhp\n" "hd_id3146918\n" @@ -357,7 +336,6 @@ msgstr "Setter inn et diagram." #: main0104.xhp -#, fuzzy msgctxt "" "main0104.xhp\n" "hd_id3147003\n" @@ -374,7 +352,6 @@ msgstr "Format" #: main0105.xhp -#, fuzzy msgctxt "" "main0105.xhp\n" "hd_id3149669\n" @@ -383,16 +360,14 @@ msgstr "<link href=\"text/scalc/main0105.xhp\" name=\"Format\">Format</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>Formatmenyen</emph> inneholder funksjoner du kan bruke til Ã¥ formatere valgte celler, <link href=\"text/shared/00/00000005.xhp#objekt\" name=\"objects\">objekter</link> og celleinnhold i dokumentet.</ahelp>" +msgstr "<ahelp hid=\".\"> <emph>Format</emph> menyen inneholderfunksjoner for Ã¥ formattere valgte celler, <link href=\"text/shared/00/00000005.xhp#objekt\" name=\"objects\">objects</link>, og celleinnehold i dokumentet.</ahelp>" #: main0105.xhp -#, fuzzy msgctxt "" "main0105.xhp\n" "hd_id3154732\n" @@ -401,7 +376,6 @@ msgstr "<link href=\"text/scalc/01/05020000.xhp\" name=\"Cells\">Celler</link>" #: main0105.xhp -#, fuzzy msgctxt "" "main0105.xhp\n" "hd_id3155087\n" @@ -410,7 +384,6 @@ msgstr "<link href=\"text/scalc/01/05070000.xhp\" name=\"Page\">Side</link>" #: main0105.xhp -#, fuzzy msgctxt "" "main0105.xhp\n" "hd_id3145748\n" @@ -419,7 +392,6 @@ msgstr "<link href=\"text/shared/01/05020000.xhp\" name=\"Character\">Tegn</link>" #: main0105.xhp -#, fuzzy msgctxt "" "main0105.xhp\n" "hd_id3154485\n" @@ -428,7 +400,6 @@ msgstr "<link href=\"text/shared/01/05030000.xhp\" name=\"Paragraph\">Avsnitt</link>" #: main0105.xhp -#, fuzzy msgctxt "" "main0105.xhp\n" "hd_id3157980\n" @@ -437,7 +408,6 @@ msgstr "<link href=\"text/scalc/01/05110000.xhp\" name=\"Autoformatering\">Autoformatering</link>" #: main0105.xhp -#, fuzzy msgctxt "" "main0105.xhp\n" "hd_id3159206\n" @@ -446,16 +416,14 @@ msgstr "<link href=\"text/scalc/01/05120000.xhp\" name=\"Conditional Formatting\">VilkÃ¥rsformatering</link>" #: main0105.xhp -#, fuzzy msgctxt "" "main0105.xhp\n" "hd_id3154703\n" "help.text" msgid "<link href=\"text/shared/02/01170100.xhp\" name=\"Control\">Control</link>" -msgstr "<link href=\"text/shared/02/01170100.xhp\" name=\"Kontrollelement\">Kontrollelement</link>" +msgstr "<link href=\"text/shared/02/01170100.xhp\" name=\"Control\">Kontrollelement</link>" #: main0105.xhp -#, fuzzy msgctxt "" "main0105.xhp\n" "hd_id3147005\n" @@ -543,7 +511,6 @@ msgstr "Vindu" #: main0107.xhp -#, fuzzy msgctxt "" "main0107.xhp\n" "hd_id3154758\n" @@ -552,13 +519,12 @@ msgstr "<link href=\"text/scalc/main0107.xhp\" name=\"Window\">Vindu</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\">Inneholder funksjoner du kan bruke til Ã¥ endre og vise dokumentvinduer.</ahelp>" +msgstr "<ahelp hid=\".\">Inneholder funksjoner du kan bruke til Ã¥ endre og vise dokumentvinduer.</ahelp>" #: main0112.xhp msgctxt "" @@ -672,16 +638,15 @@ "tit\n" "help.text" msgid "Sheet" -msgstr "" +msgstr "Ark" #: 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\">Start</link>" +msgstr "<link href=\"text/scalc/main0116.xhp\">Ark</link>" #: main0116.xhp msgctxt "" @@ -689,7 +654,7 @@ "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=\".\">Denne menyen inneholder funksjoner for Ã¥ modifisere og hÃ¥ndtere ark og arkelement.</ahelp>" #: main0116.xhp msgctxt "" @@ -697,34 +662,31 @@ "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\">Flytt eller Kopier Arket</link>" #: 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\">Ark</link>" +msgstr "<link href=\"text/scalc/01/02210000.xhp\" name=\"Select\">Vis Ark</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\">Slett celler</link>" +msgstr "<link href=\"text/scalc/01/02170000.xhp\" name=\"Delete\">Slett Ark</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\">Lagre som</link>" +msgstr "<link href=\"text/shared/01/06140500.xhp\" name=\"Events\">Arkhendelser</link>" #: main0200.xhp msgctxt "" @@ -1243,33 +1205,30 @@ msgstr "See also <link href=\"text/shared/guide/digital_signatures.xhp\">Digitale signaturer</link>." #: main0210.xhp -#, fuzzy msgctxt "" "main0210.xhp\n" "tit\n" "help.text" msgid "Print Preview Bar" -msgstr "Linje for forhÃ¥ndsvisning" +msgstr "Linje for utskriftsvisning" #: 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\">Linje for forhÃ¥ndsvisning</link>" +msgstr "<link href=\"text/scalc/main0210.xhp\" name=\"Print Preview Bar\">ForhÃ¥ndsvisning av utskrift</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\">Linja <emph>ForhÃ¥ndsvis siden</emph> vises nÃ¥r du velger <emph>Fil – ForhÃ¥ndsvis siden</emph>.</ahelp>" +msgstr "<ahelp hid=\"HID_SC_WIN_PREVIEW\"><emph>ForhÃ¥ndsvis utskrift</emph>Linjen vises nÃ¥r du velger <emph>Fil - ForhÃ¥ndsvisning av utskrift</emph></ahelp>" #: main0210.xhp msgctxt "" @@ -1341,7 +1300,6 @@ msgstr "Lukking av forhÃ¥ndsvisninga" #: main0210.xhp -#, fuzzy msgctxt "" "main0210.xhp\n" "par_id460829\n" @@ -1355,20 +1313,18 @@ "tit\n" "help.text" msgid "Image Bar" -msgstr "" +msgstr "Bildelinje" #: main0214.xhp -#, fuzzy msgctxt "" "main0214.xhp\n" "hd_id3153088\n" "1\n" "help.text" msgid "<link href=\"text/scalc/main0214.xhp\" name=\"Image Bar\">Image Bar</link>" -msgstr "<link href=\"text/scalc/main0218.xhp\" name=\"Tools Bar\">Verktøylinja</link>" +msgstr "<link href=\"text/scalc/main0214.xhp\" name=\"Image Bar\">Bildelinje</link>" #: main0214.xhp -#, fuzzy msgctxt "" "main0214.xhp\n" "par_id3153896\n" diff -Nru libreoffice-5.1.1~rc2/translations/source/nb/helpcontent2/source/text/schart.po libreoffice-5.1.2~rc2/translations/source/nb/helpcontent2/source/text/schart.po --- libreoffice-5.1.1~rc2/translations/source/nb/helpcontent2/source/text/schart.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/nb/helpcontent2/source/text/schart.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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:25+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2016-03-26 22:59+0000\n" +"Last-Translator: kmr <karl.m.ramberg@gmail.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: nb\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1369391156.000000\n" +"X-POOTLE-MTIME: 1459033171.000000\n" #: main0000.xhp msgctxt "" @@ -97,7 +97,7 @@ "par_id76601\n" "help.text" msgid "<ahelp hid=\".\" visibility=\"hidden\">Creates a chart in the current document. To use a continuous range of cells as the data source for your chart, click inside the cell range, and then choose this command. Alternatively, select some cells and choose this command to create a chart of the selected cells.</ahelp>" -msgstr "" +msgstr "<ahelp hid=\".\" visibility=\"hidden\">Skaper et diagram i det gjeldende dokumentet. For Ã¥ bruke et samenhengende celleomrÃ¥de som datakjilde for diagrammet, klikk inne i celleomrÃ¥det og bruk denne kommandoen. Alternativt kan du markere neon celler og deretter bruk denne kommandoen for Ã¥ skape et diagram med de valgte cellene.</ahelp>" #: main0000.xhp msgctxt "" @@ -193,7 +193,7 @@ "par_id6574907\n" "help.text" msgid "With a data series selected, click, then double-click a single data point to edit the properties of this data point (for example, a single bar in a bar chart)." -msgstr "" +msgstr "NÃ¥r en dataserie er markert, kan du klikke og deretter dobbeltklikke pÃ¥ et datapunkt for Ã¥ redigere egenskapene for dette datapunktet (for eksempel en enkelt stolpe i et stolpediagram)." #: main0000.xhp msgctxt "" @@ -201,7 +201,7 @@ "par_id1019200902360575\n" "help.text" msgid "Double-click the legend to select and edit the legend. Click, then double-click a symbol in the selected legend to edit the associated data series." -msgstr "" +msgstr "Dobbeltklikk pÃ¥ en forklaring for Ã¥ redigere den. Klikk og deretter dobbeltklikk pÃ¥ et symbol i den valgte forklaringen for Ã¥ redigere dataserien som hører til." #: main0000.xhp msgctxt "" @@ -209,7 +209,7 @@ "par_id7528916\n" "help.text" msgid "Double-click any other chart element, or click the element and open the Format menu, to edit the properties." -msgstr "" +msgstr "Dobbeltklikk pÃ¥ alle andre diagramelement, eller klikk pÃ¥ elementet for Ã¥ Ã¥pne formatmenyen, for Ã¥ redigere egenskapene." #: main0000.xhp msgctxt "" @@ -233,7 +233,7 @@ "par_id0810200912061033\n" "help.text" msgid "In chart edit mode, you see the <link href=\"text/schart/main0202.xhp\">Formatting Bar</link> for charts near the upper border of the document. The Drawing Bar for charts appears near the lower border of the document. The Drawing Bar shows a subset of the icons from the <link href=\"text/simpress/main0210.xhp\">Drawing</link> toolbar of Draw and Impress." -msgstr "" +msgstr "I redigeringsmodus for diagrammet blir <link href=\"text/schart/main0202.xhp\">verktøylinjen «Formatering»</link> for diagrammet vist nær den øverste kanten av dokumentet. Verktøylinja for tegneverktøyene blir vist nederst i dokumentet. Denne verktøylinjen viser symbolene for <link href=\"text/simpress/main0210.xhp\">Tegning</link> fra Draw og Impress." #: main0000.xhp msgctxt "" @@ -449,7 +449,7 @@ "par_id0810200904233174\n" "help.text" msgid "<ahelp hid=\".\" visibility=\"hidden\">Inserts the trendline equation and the coefficient of determination R².</ahelp>" -msgstr "" +msgstr "<ahelp hid=\".\" visibility=\"hidden\">Sett inn likningen for trendlinjen og determinasjonskoeffisienten R².</ahelp>" #: main0000.xhp msgctxt "" @@ -457,7 +457,7 @@ "par_id0810200904265639\n" "help.text" msgid "<ahelp hid=\".\" visibility=\"hidden\">Inserts the coefficient of determination R² value.</ahelp>" -msgstr "" +msgstr "<ahelp hid=\".\" visibility=\"hidden\">Sett inn verdien for bestemmelseskoeffisienten R².</ahelp>" #: main0000.xhp msgctxt "" @@ -585,7 +585,7 @@ "par_id0810200911433835\n" "help.text" msgid "The Formatting Bar is shown when a chart is set to edit mode. Double-click a chart to enter edit mode. Click outside the chart to leave edit mode." -msgstr "" +msgstr "Formatteringslinjen vises nÃ¥r et diagram er i endringsmodus. Dobbelklikk diagrammet for Ã¥ aktivere endringsmodus. Klikk utenfor diagrammet for Ã¥ forlate endringsmodus." #: main0202.xhp msgctxt "" @@ -593,7 +593,7 @@ "par_id0810200911433878\n" "help.text" msgid "You can edit the formatting of a chart using the controls and icons on the Formatting Bar." -msgstr "" +msgstr "Du kan redigere formateringen av et diagram ved hjelp av kontrollelementene og ikonene pÃ¥ formateringslinja." #: main0202.xhp msgctxt "" @@ -609,7 +609,7 @@ "par_id0810200902300479\n" "help.text" msgid "<ahelp hid=\".\">Select the element from the chart that you want to format. The element gets selected in the chart preview. Click Format Selection to open the properties dialog for the selected element.</ahelp>" -msgstr "" +msgstr "<ahelp hid=\".\">Merk elementet som du vil formatere. Det valgte elementet vises i forhÃ¥ndsvising av diagrammet. Klikk pÃ¥ «Formater utvalget …« for Ã¥ Ã¥pne dialogvinduet med valgene for det valgte elementet.</ahelp>" #: main0202.xhp msgctxt "" @@ -625,7 +625,7 @@ "par_id0810200902300539\n" "help.text" msgid "<ahelp hid=\".\">Opens the properties dialog for the selected element.</ahelp>" -msgstr "" +msgstr "<ahelp hid=\".\">Ã…pner dialogvinduet for innstillinger for det valgte elementet.</ahelp>" #: main0202.xhp msgctxt "" @@ -641,7 +641,7 @@ "par_id0810200902300594\n" "help.text" msgid "<ahelp hid=\".\">Opens the Chart Type dialog.</ahelp>" -msgstr "" +msgstr "<ahelp hid=\".\">Ã…pner Diagramtyepe dialogen</ahelp>" #: main0202.xhp msgctxt "" @@ -657,7 +657,7 @@ "par_id0810200902300699\n" "help.text" msgid "<ahelp hid=\".\">Opens the Data Table dialog where you can edit the chart data.</ahelp>" -msgstr "" +msgstr "<ahelp hid=\".\">Ã…pner Datatabell dialogen hvor du kan redigerer diagramdataene</ahelp>" #: main0202.xhp msgctxt "" @@ -665,7 +665,7 @@ "hd_id0810200902300672\n" "help.text" msgid "Horizontal Grids" -msgstr "" +msgstr "Vannrett rutenett" #: main0202.xhp msgctxt "" @@ -673,7 +673,7 @@ "par_id0810200902300630\n" "help.text" msgid "<ahelp hid=\".\">The Horizontal Grids icon on the Formatting bar toggles the visibility of the grid display for the Y axis.</ahelp>" -msgstr "" +msgstr "<ahelp hid=\".\">Ikonet \"Vis/skjul vannrett rutenett\" pÃ¥ verktøylinja, slÃ¥r av og pÃ¥ vising av rutenettet pÃ¥ Y-aksen.</ahelp>" #: main0202.xhp msgctxt "" @@ -689,7 +689,7 @@ "par_id081020090230076\n" "help.text" msgid "<ahelp hid=\".\">To show or hide a legend, click Legend On/Off on the Formatting bar.</ahelp>" -msgstr "" +msgstr "<ahelp hid=\".\">For Ã¥ visa eller skjule en forklaring, klikk pÃ¥ \"Vis/skjul forklaring pÃ¥ verktøylinjen.</ahelp>" #: main0202.xhp msgctxt "" @@ -705,7 +705,7 @@ "par_id0810200902300784\n" "help.text" msgid "<ahelp hid=\".\">Rescales the text in the chart when you change the size of the chart.</ahelp>" -msgstr "" +msgstr "<ahelp hid=\".\">Endrer størrelsen pÃ¥ teksten i diagrammet i samsvar med endringene du gjør i størrelsen pÃ¥ diagrammet.</ahelp>" #: main0202.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/nb/helpcontent2/source/text/sdraw/04.po libreoffice-5.1.2~rc2/translations/source/nb/helpcontent2/source/text/sdraw/04.po --- libreoffice-5.1.1~rc2/translations/source/nb/helpcontent2/source/text/sdraw/04.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/nb/helpcontent2/source/text/sdraw/04.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,17 +3,18 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2013-11-20 13:02+0100\n" -"PO-Revision-Date: 2011-04-05 15:35+0200\n" -"Last-Translator: Olav <odahlum@gmail.com>\n" +"POT-Creation-Date: 2015-04-22 23:39+0200\n" +"PO-Revision-Date: 2016-03-26 12:59+0000\n" +"Last-Translator: kmr <karl.m.ramberg@gmail.com>\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: 1458997161.000000\n" #: 01020000.xhp msgctxt "" @@ -668,7 +669,7 @@ "79\n" "help.text" msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>-click while dragging an object. Note: this shortcut key works only when the <link href=\"text/shared/optionen/01070500.xhp\" name=\"Copy when moving\">Copy when moving</link> option in <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME Draw - General is enabled (it is enabled by default)." -msgstr "" +msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Kommando</caseinline><defaultinline>Ctrl</defaultinline></switchinline>-klikk mens du drar et objekt. Merk: denne hurtigtasten virker bare nÃ¥r <link href=\"text/shared/optionen/01070500.xhp\" name=\"Copy when moving\">Kopier mens du drar</link> innstillinge i <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Innstillinger</caseinline><defaultinline>Verktøy - innstillinger</defaultinline></switchinline> - %PRODUCTNAME Draw - Generelt er aktivert (Funksjonen er aktivert som standard)." #: 01020000.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/nb/helpcontent2/source/text/sdraw/guide.po libreoffice-5.1.2~rc2/translations/source/nb/helpcontent2/source/text/sdraw/guide.po --- libreoffice-5.1.1~rc2/translations/source/nb/helpcontent2/source/text/sdraw/guide.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/nb/helpcontent2/source/text/sdraw/guide.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\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:13+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2016-03-26 13:01+0000\n" +"Last-Translator: kmr <karl.m.ramberg@gmail.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: nb\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1431375224.000000\n" +"X-POOTLE-MTIME: 1458997299.000000\n" #: align_arrange.xhp msgctxt "" @@ -1097,7 +1097,7 @@ "24\n" "help.text" msgid "You can replace colors in bitmaps with the <emph>Color Replacer</emph> tool." -msgstr "" +msgstr "Du kan bytte ut farker i punktbildet med <emph> Farge velger </emph> verktøyet" #: eyedropper.xhp msgctxt "" @@ -1124,7 +1124,7 @@ "27\n" "help.text" msgid "Similarly, you can use the <emph>Color Replacer</emph> to make a color on your image transparent." -msgstr "" +msgstr "PÃ¥ samme mÃ¥ten kan du bruke <emph>fargevelgeren </emph> til Ã¥ gjøre en av fargene i biledet gjennomsiktig." #: eyedropper.xhp msgctxt "" @@ -1160,7 +1160,7 @@ "31\n" "help.text" msgid "Click the Color Replacer icon and position the mouse pointer over the color you want to replace in the image. The color appears in the box next to the icon." -msgstr "" +msgstr "Trykk pÃ¥ fargevelgerknappen og plasser musepekeren over fargen du vil bytte ut i bildet. Fargen vises i boksen ved siden av fargevelgerknappen." #: eyedropper.xhp msgctxt "" @@ -1214,7 +1214,7 @@ "37\n" "help.text" msgid "If you want to expand or contract the color selection area, increase or decrease the tolerance of the <emph>Color Replacer</emph> tool and repeat your selection." -msgstr "" +msgstr "Dersom du vil utvide eller trekke sammen fargeutvalgsomrÃ¥det, kan du øke eller minske toleransen til <emph>Fargevelgeren</emph> og gjenta utvalget." #: eyedropper.xhp msgctxt "" @@ -1463,14 +1463,13 @@ msgstr "<variable id=\"graphic_insert\"><link href=\"text/sdraw/guide/graphic_insert.xhp\" name=\"Inserting Graphics\">Sette inn bilder</link></variable>" #: graphic_insert.xhp -#, fuzzy msgctxt "" "graphic_insert.xhp\n" "par_id3155600\n" "2\n" "help.text" msgid "Choose <emph>Insert - Image</emph>." -msgstr "Velg <emph>Sett inn → Fil</emph>." +msgstr "Velg <emph>Sett inn → Bilde</emph>." #: graphic_insert.xhp msgctxt "" @@ -1479,7 +1478,7 @@ "3\n" "help.text" msgid "Locate the image you want to insert. Select the <emph>Link</emph> check box to insert only a link to the image. If you want to see the image before you insert it, select <emph>Preview</emph>." -msgstr "" +msgstr "Finn bildet du vil sette inn. Kryss av for<emph>Lenke</emph> hvis du bare vil sette inn en lenke til bildet, velg <emph>ForhÃ¥ndsvisning,</emph> hvis du vil se bildet før du setter det inn." #: graphic_insert.xhp msgctxt "" @@ -1488,10 +1487,9 @@ "4\n" "help.text" msgid "After you insert a linked image, do not change the name of the source image or move the source image to another directory." -msgstr "" +msgstr "NÃ¥r du har satt inn en bildelenke mÃ¥ du passe pÃ¥ at du ikke endrer navnet pÃ¥, eller flytter, bildefilen til en annen mappe." #: graphic_insert.xhp -#, fuzzy msgctxt "" "graphic_insert.xhp\n" "par_id3150044\n" diff -Nru libreoffice-5.1.1~rc2/translations/source/nb/helpcontent2/source/text/sdraw.po libreoffice-5.1.2~rc2/translations/source/nb/helpcontent2/source/text/sdraw.po --- libreoffice-5.1.1~rc2/translations/source/nb/helpcontent2/source/text/sdraw.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/nb/helpcontent2/source/text/sdraw.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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-26 12:51+0000\n" +"Last-Translator: kmr <karl.m.ramberg@gmail.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: nb\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "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: 1458996715.000000\n" #: main0000.xhp msgctxt "" @@ -318,7 +318,6 @@ msgstr "Vis" #: main0103.xhp -#, fuzzy msgctxt "" "main0103.xhp\n" "hd_id3152576\n" @@ -327,13 +326,12 @@ msgstr "<link href=\"text/sdraw/main0103.xhp\" name=\"View\">Vis</link>" #: main0103.xhp -#, fuzzy msgctxt "" "main0103.xhp\n" "par_id3159155\n" "help.text" msgid "Sets the display properties of Draw documents." -msgstr "Styrer visninga av Draw-tegninger." +msgstr "Styrer visningsegen skapene av Draw-tegninger." #: main0103.xhp msgctxt "" @@ -368,7 +366,6 @@ msgstr "Bytt til bakgrunnsvisning." #: main0103.xhp -#, fuzzy msgctxt "" "main0103.xhp\n" "hd_id3149666\n" diff -Nru libreoffice-5.1.1~rc2/translations/source/nb/helpcontent2/source/text/shared/00.po libreoffice-5.1.2~rc2/translations/source/nb/helpcontent2/source/text/shared/00.po --- libreoffice-5.1.1~rc2/translations/source/nb/helpcontent2/source/text/shared/00.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/nb/helpcontent2/source/text/shared/00.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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 @@ "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 @@ msgstr "ODF 1.2 (utvidet)" #: 00000021.xhp +#, fuzzy msgctxt "" "00000021.xhp\n" "par_id100120091238112\n" "help.text" msgid "-" -msgstr "" +msgstr "-" #: 00000021.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/nb/helpcontent2/source/text/shared/01.po libreoffice-5.1.2~rc2/translations/source/nb/helpcontent2/source/text/shared/01.po --- libreoffice-5.1.1~rc2/translations/source/nb/helpcontent2/source/text/shared/01.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/nb/helpcontent2/source/text/shared/01.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 @@ "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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ msgstr "Forklaring" #: 05020301.xhp +#, fuzzy msgctxt "" "05020301.xhp\n" "par_id3152801\n" "5\n" "help.text" msgid "#" -msgstr "" +msgstr "#" #: 05020301.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/nb/helpcontent2/source/text/shared/02.po libreoffice-5.1.2~rc2/translations/source/nb/helpcontent2/source/text/shared/02.po --- libreoffice-5.1.1~rc2/translations/source/nb/helpcontent2/source/text/shared/02.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/nb/helpcontent2/source/text/shared/02.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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 @@ "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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/nb/helpcontent2/source/text/shared/autopi.po libreoffice-5.1.2~rc2/translations/source/nb/helpcontent2/source/text/shared/autopi.po --- libreoffice-5.1.1~rc2/translations/source/nb/helpcontent2/source/text/shared/autopi.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/nb/helpcontent2/source/text/shared/autopi.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 @@ "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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/nb/helpcontent2/source/text/shared/explorer/database.po libreoffice-5.1.2~rc2/translations/source/nb/helpcontent2/source/text/shared/explorer/database.po --- libreoffice-5.1.1~rc2/translations/source/nb/helpcontent2/source/text/shared/explorer/database.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/nb/helpcontent2/source/text/shared/explorer/database.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 @@ "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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/nb/helpcontent2/source/text/shared.po libreoffice-5.1.2~rc2/translations/source/nb/helpcontent2/source/text/shared.po --- libreoffice-5.1.1~rc2/translations/source/nb/helpcontent2/source/text/shared.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/nb/helpcontent2/source/text/shared.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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-26 14:49+0000\n" +"Last-Translator: kmr <karl.m.ramberg@gmail.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: nb\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1369391168.000000\n" +"X-POOTLE-MTIME: 1459003766.000000\n" #: 3dsettings_toolbar.xhp msgctxt "" @@ -550,7 +550,7 @@ "par_id2783898\n" "help.text" msgid "<ahelp hid=\".\">Enable an Internet connection for %PRODUCTNAME. If you need a Proxy, check the %PRODUCTNAME Proxy settings in <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Internet. Then choose Check for Updates to check for the availability of a newer version of your office suite.</ahelp>" -msgstr "" +msgstr "<ahelp hid=\".\">Aktiver en Internettilkobling for %PRODUCTNAME. Hvis du trenger en proxytjenar, sjekk %PRODUCTNAME Proxyinnstillinger i <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Innstillinger</caseinline><defaultinline>Verktøy → Innstillinger</defaultinline></switchinline> → Internett. Velg «Se etter oppdateringer» for Ã¥ kontrollere om det er nyere versjoner av kontorpakka tilgjengelig.</ahelp>" #: main0108.xhp msgctxt "" @@ -1911,7 +1911,7 @@ "38\n" "help.text" msgid "<ahelp hid=\".uno:BezierEliminatePoints\">Marks the current point or the selected points for deletion.</ahelp> This happens in the event that the point is located on a straight line. If you convert a curve or a polygon with the <emph>Convert to Curve </emph>icon into a straight line or you change a curve with the mouse so that a point lies on the straight line, it is removed. The angle from which the point reduction is to take place <switchinline select=\"appl\"><caseinline select=\"DRAW\">can be set by choosing <link href=\"text/shared/optionen/01070300.xhp\" name=\"Drawing - Grid\"><emph>%PRODUCTNAME Draw - Grid</emph></link> in the Options dialog box</caseinline><caseinline select=\"IMPRESS\">can be set by choosing <link href=\"text/shared/optionen/01070300.xhp\" name=\"Presentation - Grid\"><emph>%PRODUCTNAME Impress - Grid</emph></link> in the Options dialog box</caseinline><defaultinline>is 15° by default.</defaultinline></switchinline>" -msgstr "" +msgstr "<ahelp hid=\".uno:BezierEliminatePoints\">Marker gjeldende punkt eller de valgte punkten for sletting.</ahelp> Dette skjer dersom punktet er pÃ¥ en rett linje. Om du gjør om en kurve eller en mangekant til en rett linje med <emph>Gjør om til kurve</emph>-ikonet, eller om du endrer en kurve med musa slik at punktet ligger pÃ¥ en rett linje, blir punktet fjernet. Du kan avgjøre fra hvilken side punktfjerningen skal skje <switchinline select=\"appl\"> <caseinline select=\"DRAW\">ved Ã¥ velge <link href=\"text/shared/optionen/01070300.xhp\" name=\"Tools - Options - Drawing - Grid\"><emph>Verktøy → Innstillinger → %PRODUCTNAME Draw → Rutenett </emph></link></caseinline><caseinline select=\"IMPRESS\">ved Ã¥ velge <link href=\"text/shared/optionen/01070300.xhp\" name=\"Tools - Options - Presentation - Grid\"><emph>Verktøy → Innstillinger → %PRODUCTNAME Impress → Rutenett</emph></link></caseinline>. <defaultinline>Standard er 15 grader.</defaultinline></switchinline>." #: main0227.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/nb/helpcontent2/source/text/smath.po libreoffice-5.1.2~rc2/translations/source/nb/helpcontent2/source/text/smath.po --- libreoffice-5.1.1~rc2/translations/source/nb/helpcontent2/source/text/smath.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/nb/helpcontent2/source/text/smath.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\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: 2013-05-24 10:28+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2016-03-26 12:58+0000\n" +"Last-Translator: kmr <karl.m.ramberg@gmail.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: nb\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1369391293.000000\n" +"X-POOTLE-MTIME: 1458997136.000000\n" #: main0000.xhp msgctxt "" @@ -251,7 +251,7 @@ "2\n" "help.text" msgid "Sets the display scale and defines which elements you want to be visible. Most of the commands that you can enter into the <emph>Commands</emph> window can also be accessed through a mouse click if you have already opened the Elements window with <link href=\"text/smath/01/03090000.xhp\" name=\"View - Elements\"><emph>View - Elements</emph></link>." -msgstr "" +msgstr "Setter visningsstørrelsen og definerer hvilke elementer som skal være synlige. De fleste kommandoene som du kan skrive inn i viduet <emph>Kommandoer</emph> er ogsÃ¥ tilgjengelige med ett museklikk dersom du pÃ¥ forhÃ¥nd har Ã¥pnet elementvindet med <link href=\"text/smath/01/03090000.xhp\" name=\"View - Elements\"><emph>Vis - Element</emph></link>" #: main0103.xhp msgctxt "" @@ -333,7 +333,6 @@ msgstr "Verktøy" #: main0106.xhp -#, fuzzy msgctxt "" "main0106.xhp\n" "hd_id3149019\n" @@ -342,7 +341,6 @@ msgstr "<link href=\"text/smath/main0106.xhp\" name=\"Tools\">Verktøy</link>" #: main0106.xhp -#, fuzzy msgctxt "" "main0106.xhp\n" "par_id3155959\n" @@ -351,13 +349,12 @@ msgstr "Bruk denne menyen til Ã¥ Ã¥pne og redigere symbolkatalogen, eller til Ã¥ importere en ekstern formel som en datafil. Programmets grensesnitt kan tilpasses etter dine ønsker. Du kan ogsÃ¥ endre programmets innstillinger." #: main0106.xhp -#, fuzzy msgctxt "" "main0106.xhp\n" "hd_id3150206\n" "help.text" msgid "<link href=\"text/smath/01/06020000.xhp#importfile\" name=\"Import Formula\">Import Formula</link>" -msgstr "<link href=\"text/smath/01/06020000.xhp\" name=\"Import Formula\">Importer formel</link>" +msgstr "<link href=\"text/smath/01/06020000.xhp#importfile\" name=\"Import Formula\">Importer formel</link>" #: main0106.xhp msgctxt "" @@ -365,10 +362,9 @@ "hd_id3150207\n" "help.text" msgid "<link href=\"text/smath/01/06020000.xhp#importclipboard\" name=\"Import MathML\">Import MathML from Clipboard</link>" -msgstr "" +msgstr "<link href=\"text/smath/01/06020000.xhp#importclipboard\" name=\"Import MathML\">Importer MathML fra utklippstavla</link>" #: main0106.xhp -#, fuzzy msgctxt "" "main0106.xhp\n" "hd_id3145385\n" @@ -621,4 +617,4 @@ "8\n" "help.text" msgid "To make working with formulas easier, use the context menus, which can be called up with a right mouse click. This applies especially to the Commands window. This context menu contains all the commands that are found in the Elements window, and also operators, and so on, which can be inserted into your formula by mouse-click without having to key them into the Commands window." -msgstr "" +msgstr "For Ã¥ gjøre det lettere Ã¥ arbeide med formler, er det lagt inn kontektstmenyer som vises nÃ¥r du høyreklikker med datamusen. Detter er spesielt nyttig kommandovinduet. Kontekstmenyen inneholder alle kommandoene som finnes i elementviduet, og ogsÃ¥ operatorer som kan settes inn i formelen din gjennom ett museklikk uten at du trenger Ã¥ skrive de inn i kommandovinduet" diff -Nru libreoffice-5.1.1~rc2/translations/source/nb/helpcontent2/source/text/swriter/01.po libreoffice-5.1.2~rc2/translations/source/nb/helpcontent2/source/text/swriter/01.po --- libreoffice-5.1.1~rc2/translations/source/nb/helpcontent2/source/text/swriter/01.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/nb/helpcontent2/source/text/swriter/01.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 @@ "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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/nb/helpcontent2/source/text/swriter/02.po libreoffice-5.1.2~rc2/translations/source/nb/helpcontent2/source/text/swriter/02.po --- libreoffice-5.1.1~rc2/translations/source/nb/helpcontent2/source/text/swriter/02.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/nb/helpcontent2/source/text/swriter/02.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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 @@ "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 @@ msgstr "Subtraksjon" #: 14020000.xhp +#, fuzzy msgctxt "" "14020000.xhp\n" "par_id3150087\n" "12\n" "help.text" msgid "-" -msgstr "" +msgstr "-" #: 14020000.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/nb/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-5.1.2~rc2/translations/source/nb/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-5.1.1~rc2/translations/source/nb/officecfg/registry/data/org/openoffice/Office/UI.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/nb/officecfg/registry/data/org/openoffice/Office/UI.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\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 @@ "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 @@ "Label\n" "value.text" msgid "Go to Line..." -msgstr "" +msgstr "GÃ¥ til linje …" #: BasicIDECommands.xcu msgctxt "" @@ -392,7 +392,7 @@ "Label\n" "value.text" msgid "Freeze ~Rows and Columns" -msgstr "" +msgstr "Frys ~rader og kolonner" #: CalcCommands.xcu msgctxt "" @@ -545,7 +545,7 @@ "Label\n" "value.text" msgid "~Go to Sheet..." -msgstr "" +msgstr "~GÃ¥ til ark …" #: CalcCommands.xcu msgctxt "" @@ -800,7 +800,6 @@ msgstr "Merk til nedre blokkmarg" #: CalcCommands.xcu -#, fuzzy msgctxt "" "CalcCommands.xcu\n" "..CalcCommands.UserInterface.Commands..uno:DataDataPilotRun\n" @@ -816,7 +815,7 @@ "ContextLabel\n" "value.text" msgid "Pi~vot Table..." -msgstr "" +msgstr "Pivottabell..." #: CalcCommands.xcu msgctxt "" @@ -900,7 +899,6 @@ msgstr "~Diagram …" #: CalcCommands.xcu -#, fuzzy msgctxt "" "CalcCommands.xcu\n" "..CalcCommands.UserInterface.Commands..uno:InsertObjectChartFromFile\n" @@ -1270,14 +1268,13 @@ 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 @@ "Label\n" "value.text" msgid "~Regression..." -msgstr "" +msgstr "~Regresjon …" #: CalcCommands.xcu msgctxt "" @@ -1541,7 +1538,6 @@ msgstr "~Kjikvadrat-test …" #: CalcCommands.xcu -#, fuzzy msgctxt "" "CalcCommands.xcu\n" "..CalcCommands.UserInterface.Commands..uno:EditHeaderAndFooter\n" @@ -1731,14 +1727,13 @@ 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 @@ "Label\n" "value.text" msgid "Cle~ar Cells..." -msgstr "" +msgstr "~Tøm cellene …" #: CalcCommands.xcu msgctxt "" @@ -1975,7 +1970,6 @@ msgstr "Sett inn ~celler …" #: CalcCommands.xcu -#, fuzzy msgctxt "" "CalcCommands.xcu\n" "..CalcCommands.UserInterface.Commands..uno:InsertRowsMenu\n" @@ -1985,14 +1979,13 @@ 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 @@ "Label\n" "value.text" msgid "Insert ~Rows Above" -msgstr "" +msgstr "Set inn rader over" #: CalcCommands.xcu msgctxt "" @@ -2010,7 +2003,7 @@ "ContextLabel\n" "value.text" msgid "Rows ~Above" -msgstr "" +msgstr "Rader ~over" #: CalcCommands.xcu msgctxt "" @@ -2019,7 +2012,7 @@ "Label\n" "value.text" msgid "Insert ~Rows Above" -msgstr "" +msgstr "Sett inn rader over" #: CalcCommands.xcu msgctxt "" @@ -2028,17 +2021,16 @@ "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 @@ "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 @@ "ContextLabel\n" "value.text" msgid "Columns ~Left" -msgstr "" +msgstr "Kolonner venstre" #: CalcCommands.xcu msgctxt "" @@ -2075,7 +2066,7 @@ "Label\n" "value.text" msgid "Insert ~Rows Below" -msgstr "" +msgstr "Sett inn rader under" #: CalcCommands.xcu msgctxt "" @@ -2084,10 +2075,9 @@ "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 @@ "ContextLabel\n" "value.text" msgid "Columns ~Right" -msgstr "" +msgstr "Kolonner høyre" #: CalcCommands.xcu msgctxt "" @@ -2394,7 +2384,6 @@ msgstr "~Skjul ark" #: CalcCommands.xcu -#, fuzzy msgctxt "" "CalcCommands.xcu\n" "..CalcCommands.UserInterface.Commands..uno:Show\n" @@ -2458,7 +2447,6 @@ msgstr "Standard tekstegenskaper" #: CalcCommands.xcu -#, fuzzy msgctxt "" "CalcCommands.xcu\n" "..CalcCommands.UserInterface.Commands..uno:TextAttributes\n" @@ -2510,7 +2498,7 @@ "Label\n" "value.text" msgid "Protect ~Spreadsheet..." -msgstr "" +msgstr "Vern regneark" #: CalcCommands.xcu msgctxt "" @@ -2798,7 +2786,7 @@ "Label\n" "value.text" msgid "Sheet ~Tab Color..." -msgstr "" +msgstr "Farge for arkfane …" #: CalcCommands.xcu msgctxt "" @@ -2810,7 +2798,6 @@ msgstr "Fanefarge" #: CalcCommands.xcu -#, fuzzy msgctxt "" "CalcCommands.xcu\n" "..CalcCommands.UserInterface.Commands..uno:Move\n" @@ -3054,14 +3041,13 @@ 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 @@ "Label\n" "value.text" msgid "S~hare Spreadsheet..." -msgstr "" +msgstr "Del regneark" #: CalcCommands.xcu msgctxt "" @@ -3214,7 +3200,7 @@ "ContextLabel\n" "value.text" msgid "Grid Lines for Sheet" -msgstr "" +msgstr "Rutelinjer for ark" #: CalcCommands.xcu msgctxt "" @@ -3271,14 +3257,13 @@ 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 @@ "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 @@ "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 @@ "Label\n" "value.text" msgid "More ~Filters" -msgstr "" +msgstr "Flere filtre" #: CalcCommands.xcu msgctxt "" @@ -3433,7 +3416,7 @@ "Label\n" "value.text" msgid "Cell ~Comment" -msgstr "" +msgstr "Celle merknad" #: CalcCommands.xcu msgctxt "" @@ -3514,7 +3497,7 @@ "Label\n" "value.text" msgid "Export as image" -msgstr "" +msgstr "Eksporter som bilde" #: CalcCommands.xcu msgctxt "" @@ -3985,14 +3968,13 @@ 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 @@ 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 @@ 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 @@ "Label\n" "value.text" msgid "Vertical Grids" -msgstr "" +msgstr "Loddrett rutenett" #: ChartCommands.xcu msgctxt "" @@ -5920,10 +5900,9 @@ "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 @@ 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 @@ "Label\n" "value.text" msgid "Rename Page/Slide" -msgstr "" +msgstr "Gi side nytt navn" #: DrawImpressCommands.xcu msgctxt "" @@ -5985,7 +5963,7 @@ "Label\n" "value.text" msgid "Jump to last edited Slide" -msgstr "" +msgstr "GÃ¥ til siste redigerte lysbilde" #: DrawImpressCommands.xcu msgctxt "" @@ -6357,7 +6335,6 @@ msgstr "For~hÃ¥ndsvisning" #: DrawImpressCommands.xcu -#, fuzzy msgctxt "" "DrawImpressCommands.xcu\n" "..DrawImpressCommands.UserInterface.Commands..uno:CustomAnimation\n" @@ -6376,7 +6353,6 @@ msgstr "Animasjonsoppsett …" #: DrawImpressCommands.xcu -#, fuzzy msgctxt "" "DrawImpressCommands.xcu\n" "..DrawImpressCommands.UserInterface.Commands..uno:SlideChangeWindow\n" @@ -6422,14 +6398,13 @@ 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 @@ "Label\n" "value.text" msgid "Format Page/Slide" -msgstr "" +msgstr "Formater side/lysbilde" #: DrawImpressCommands.xcu msgctxt "" @@ -6744,7 +6719,7 @@ "ContextLabel\n" "value.text" msgid "~Page/Slide Properties..." -msgstr "" +msgstr "Side/lysbilde egenskaper" #: DrawImpressCommands.xcu msgctxt "" @@ -6834,7 +6809,7 @@ "Label\n" "value.text" msgid "New Page/Slid~e" -msgstr "" +msgstr "Ny side/nytt lysbilde" #: DrawImpressCommands.xcu msgctxt "" @@ -6972,7 +6947,6 @@ msgstr "~Sett inn festepunkt/-linje …" #: DrawImpressCommands.xcu -#, fuzzy msgctxt "" "DrawImpressCommands.xcu\n" "..DrawImpressCommands.UserInterface.Commands..uno:ShowRuler\n" @@ -6991,7 +6965,6 @@ msgstr "~Lag …" #: DrawImpressCommands.xcu -#, fuzzy msgctxt "" "DrawImpressCommands.xcu\n" "..DrawImpressCommands.UserInterface.Commands..uno:ModifyPage\n" @@ -7142,7 +7115,7 @@ "Label\n" "value.text" msgid "Notes" -msgstr "" +msgstr "Notat" #: DrawImpressCommands.xcu msgctxt "" @@ -7151,7 +7124,7 @@ "Label\n" "value.text" msgid "Display Mode" -msgstr "" +msgstr "Visingsmodus" #: DrawImpressCommands.xcu msgctxt "" @@ -7160,7 +7133,7 @@ "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 @@ "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 @@ "Label\n" "value.text" msgid "D~elete Page/Slide" -msgstr "" +msgstr "Slett lysbilde/side" #: DrawImpressCommands.xcu msgctxt "" @@ -7776,14 +7748,13 @@ 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 @@ "Label\n" "value.text" msgid "~Original Size" -msgstr "" +msgstr "~Orginal størrelse" #: DrawImpressCommands.xcu msgctxt "" @@ -7801,7 +7772,7 @@ "Label\n" "value.text" msgid "~Replace..." -msgstr "" +msgstr "~Bytt ut …" #: DrawImpressCommands.xcu msgctxt "" @@ -7810,7 +7781,7 @@ "Label\n" "value.text" msgid "Co~mpress..." -msgstr "" +msgstr "Komprimer …" #: DrawImpressCommands.xcu msgctxt "" @@ -7819,7 +7790,7 @@ "Label\n" "value.text" msgid "Set Background Image..." -msgstr "" +msgstr "Sett bakgrunnsbilde …" #: DrawImpressCommands.xcu msgctxt "" @@ -7828,7 +7799,7 @@ "Label\n" "value.text" msgid "Save Background Image..." -msgstr "" +msgstr "Lagra bakgrunnsbilde …" #: DrawImpressCommands.xcu msgctxt "" @@ -7837,7 +7808,7 @@ "Label\n" "value.text" msgid "Display Master Background" -msgstr "" +msgstr "Vis bakgrunnen til hovedutforming" #: DrawImpressCommands.xcu msgctxt "" @@ -7846,7 +7817,7 @@ "Label\n" "value.text" msgid "Display Master Objects" -msgstr "" +msgstr "hovedutformingsobjekt" #: DrawImpressCommands.xcu msgctxt "" @@ -7855,7 +7826,7 @@ "Label\n" "value.text" msgid "E~dit Style..." -msgstr "" +msgstr "Rediger ~stil …" #: DrawImpressCommands.xcu msgctxt "" @@ -8548,7 +8519,7 @@ "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 @@ "ContextLabel\n" "value.text" msgid "To First Page/Slide" -msgstr "" +msgstr "GÃ¥ til første side/lysbilde" #: DrawImpressCommands.xcu msgctxt "" @@ -8566,7 +8537,7 @@ "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 @@ "ContextLabel\n" "value.text" msgid "To Previous Page/Slide" -msgstr "" +msgstr "GÃ¥ til forrige side/lysbilde" #: DrawImpressCommands.xcu msgctxt "" @@ -8584,7 +8555,7 @@ "Label\n" "value.text" msgid "Go to Next Page/Slide" -msgstr "" +msgstr "GÃ¥ til neste side/lysbilde" #: DrawImpressCommands.xcu msgctxt "" @@ -8593,7 +8564,7 @@ "ContextLabel\n" "value.text" msgid "To Next Page/Slide" -msgstr "" +msgstr "GÃ¥ til neste side/lysbilde" #: DrawImpressCommands.xcu msgctxt "" @@ -8602,7 +8573,7 @@ "Label\n" "value.text" msgid "Go to Last Page" -msgstr "" +msgstr "GÃ¥ til siste side" #: DrawImpressCommands.xcu msgctxt "" @@ -8611,7 +8582,7 @@ "ContextLabel\n" "value.text" msgid "To Last Page/Slide" -msgstr "" +msgstr "GÃ¥ til siste side/lysbilde" #: DrawImpressCommands.xcu msgctxt "" @@ -8620,7 +8591,7 @@ "Label\n" "value.text" msgid "Move Page/Slide to Start" -msgstr "" +msgstr "Flytt side/lysbilde til start" #: DrawImpressCommands.xcu msgctxt "" @@ -8629,7 +8600,7 @@ "ContextLabel\n" "value.text" msgid "Page/Slide to Start" -msgstr "" +msgstr "Flytt side/lysbilde til start" #: DrawImpressCommands.xcu msgctxt "" @@ -8638,7 +8609,7 @@ "Label\n" "value.text" msgid "Move Page/Slide Up" -msgstr "" +msgstr "Flytt side/lysbilde opp" #: DrawImpressCommands.xcu msgctxt "" @@ -8647,7 +8618,7 @@ "ContextLabel\n" "value.text" msgid "Page/Slide Up" -msgstr "" +msgstr "Side/lysbilde opp" #: DrawImpressCommands.xcu msgctxt "" @@ -8656,7 +8627,7 @@ "Label\n" "value.text" msgid "Move Page/Slide Down" -msgstr "" +msgstr "Flytt side/lysbilde ned" #: DrawImpressCommands.xcu msgctxt "" @@ -8665,7 +8636,7 @@ "ContextLabel\n" "value.text" msgid "Page/Slide Down" -msgstr "" +msgstr "Flytt side/lysbilde ned" #: DrawImpressCommands.xcu msgctxt "" @@ -8674,7 +8645,7 @@ "Label\n" "value.text" msgid "Move Page/Slide to End" -msgstr "" +msgstr "Flytt side/lysbilde til slutten" #: DrawImpressCommands.xcu msgctxt "" @@ -8683,7 +8654,7 @@ "ContextLabel\n" "value.text" msgid "Page/Slide to End" -msgstr "" +msgstr "Side/lysbilde til slutten" #: DrawWindowState.xcu msgctxt "" @@ -8809,7 +8780,7 @@ "UIName\n" "value.text" msgid "Legacy Circles and Ovals" -msgstr "" +msgstr "Sirkler og ellipser (klassisk)" #: DrawWindowState.xcu msgctxt "" @@ -8884,14 +8855,13 @@ 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 @@ "UIName\n" "value.text" msgid "Legacy Rectangles" -msgstr "" +msgstr "Rektangel (klassisk)" #: DrawWindowState.xcu msgctxt "" @@ -11414,7 +11384,6 @@ msgstr "Fra høyre til toppen" #: Effects.xcu -#, fuzzy msgctxt "" "Effects.xcu\n" "..Effects.UserInterface.TransitionGroups.subtle\n" @@ -11424,7 +11393,6 @@ msgstr "Avdempede" #: Effects.xcu -#, fuzzy msgctxt "" "Effects.xcu\n" "..Effects.UserInterface.TransitionGroups.exciting\n" @@ -11440,7 +11408,7 @@ "Label\n" "value.text" msgid "Venetian" -msgstr "" +msgstr "Venetiansk" #: Effects.xcu msgctxt "" @@ -11449,10 +11417,9 @@ "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 @@ "Label\n" "value.text" msgid "Checkers" -msgstr "" +msgstr "Sjakkbrett" #: Effects.xcu msgctxt "" @@ -11477,10 +11444,9 @@ "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 @@ "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 @@ msgstr "Tørk" #: Effects.xcu -#, fuzzy msgctxt "" "Effects.xcu\n" "..Effects.UserInterface.TransitionSets.wedge\n" @@ -11519,7 +11483,6 @@ msgstr "Kile" #: Effects.xcu -#, fuzzy msgctxt "" "Effects.xcu\n" "..Effects.UserInterface.TransitionSets.wheel\n" @@ -11535,10 +11498,9 @@ "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 @@ "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 @@ 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 @@ "Label\n" "value.text" msgid "Diagonal" -msgstr "" +msgstr "Diagonal" #: Effects.xcu msgctxt "" @@ -11602,10 +11561,9 @@ "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 @@ msgstr "Oppløs" #: Effects.xcu -#, fuzzy msgctxt "" "Effects.xcu\n" "..Effects.UserInterface.TransitionSets.finedissolve\n" @@ -11625,7 +11582,6 @@ msgstr "Pulverisering" #: Effects.xcu -#, fuzzy msgctxt "" "Effects.xcu\n" "..Effects.UserInterface.TransitionSets.newsflash\n" @@ -11641,10 +11597,9 @@ "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 @@ msgstr "Kube" #: Effects.xcu -#, fuzzy msgctxt "" "Effects.xcu\n" "..Effects.UserInterface.TransitionSets.revolving-circles\n" @@ -11670,10 +11624,9 @@ "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 @@ 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 @@ msgstr "Iris" #: Effects.xcu -#, fuzzy msgctxt "" "Effects.xcu\n" "..Effects.UserInterface.TransitionSets.rochade\n" @@ -11723,7 +11672,6 @@ msgstr "Omrokkering" #: Effects.xcu -#, fuzzy msgctxt "" "Effects.xcu\n" "..Effects.UserInterface.TransitionSets.static\n" @@ -11739,7 +11687,7 @@ "Label\n" "value.text" msgid "Vortex" -msgstr "" +msgstr "Vortex" #: Effects.xcu msgctxt "" @@ -11748,7 +11696,7 @@ "Label\n" "value.text" msgid "Ripple" -msgstr "" +msgstr "Krusing" #: Effects.xcu msgctxt "" @@ -11757,7 +11705,7 @@ "Label\n" "value.text" msgid "Glitter" -msgstr "" +msgstr "Glitter" #: Effects.xcu msgctxt "" @@ -11766,7 +11714,7 @@ "Label\n" "value.text" msgid "Honeycomb" -msgstr "" +msgstr "Vokskake" #: Effects.xcu msgctxt "" @@ -11775,30 +11723,27 @@ "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 @@ "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 @@ "Label\n" "value.text" msgid "Top to Bottom" -msgstr "" +msgstr "Ovenfra og ned" #: Effects.xcu msgctxt "" @@ -11832,10 +11777,9 @@ "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 @@ "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 @@ "Label\n" "value.text" msgid "Bottom to Top" -msgstr "" +msgstr "Nedanfra og opp" #: Effects.xcu msgctxt "" @@ -11869,10 +11813,9 @@ "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 @@ msgstr "Loddrett" #: Effects.xcu -#, fuzzy msgctxt "" "Effects.xcu\n" "..Effects.UserInterface.TransitionVariants.horizontal\n" @@ -11892,47 +11834,42 @@ 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 @@ msgstr "Opp" #: Effects.xcu -#, fuzzy msgctxt "" "Effects.xcu\n" "..Effects.UserInterface.TransitionVariants.right\n" @@ -11952,7 +11888,6 @@ msgstr "Høyre" #: Effects.xcu -#, fuzzy msgctxt "" "Effects.xcu\n" "..Effects.UserInterface.TransitionVariants.left\n" @@ -11962,7 +11897,6 @@ msgstr "Venstre" #: Effects.xcu -#, fuzzy msgctxt "" "Effects.xcu\n" "..Effects.UserInterface.TransitionVariants.circle\n" @@ -11972,7 +11906,6 @@ msgstr "Sirkel" #: Effects.xcu -#, fuzzy msgctxt "" "Effects.xcu\n" "..Effects.UserInterface.TransitionVariants.diamond\n" @@ -11982,7 +11915,6 @@ msgstr "Rombe" #: Effects.xcu -#, fuzzy msgctxt "" "Effects.xcu\n" "..Effects.UserInterface.TransitionVariants.plus\n" @@ -11992,7 +11924,6 @@ msgstr "Pluss" #: Effects.xcu -#, fuzzy msgctxt "" "Effects.xcu\n" "..Effects.UserInterface.TransitionVariants.horizontal-in\n" @@ -12002,7 +11933,6 @@ msgstr "Vannrett inn" #: Effects.xcu -#, fuzzy msgctxt "" "Effects.xcu\n" "..Effects.UserInterface.TransitionVariants.horizontal-out\n" @@ -12012,7 +11942,6 @@ msgstr "Vannrett ut" #: Effects.xcu -#, fuzzy msgctxt "" "Effects.xcu\n" "..Effects.UserInterface.TransitionVariants.vertical-in\n" @@ -12022,7 +11951,6 @@ msgstr "Loddrett inn" #: Effects.xcu -#, fuzzy msgctxt "" "Effects.xcu\n" "..Effects.UserInterface.TransitionVariants.vertical-out\n" @@ -12038,7 +11966,7 @@ "Label\n" "value.text" msgid "Clockwise 1 Spoke" -msgstr "" +msgstr "Med klokka 1 spile" #: Effects.xcu msgctxt "" @@ -12047,7 +11975,7 @@ "Label\n" "value.text" msgid "Clockwise 2 Spokes" -msgstr "" +msgstr "Med klokka 2 spiler" #: Effects.xcu msgctxt "" @@ -12056,7 +11984,7 @@ "Label\n" "value.text" msgid "Clockwise 3 Spokes" -msgstr "" +msgstr "Med klokka 3 spiler" #: Effects.xcu msgctxt "" @@ -12065,7 +11993,7 @@ "Label\n" "value.text" msgid "Clockwise 4 Spokes" -msgstr "" +msgstr "Med klokka 4 spiler" #: Effects.xcu msgctxt "" @@ -12074,7 +12002,7 @@ "Label\n" "value.text" msgid "Clockwise 8 Spokes" -msgstr "" +msgstr "Med klokka 8 spiler" #: Effects.xcu msgctxt "" @@ -12083,7 +12011,7 @@ "Label\n" "value.text" msgid "Counterclockwise 1 Spoke" -msgstr "" +msgstr "Mot klokka 1 spile" #: Effects.xcu msgctxt "" @@ -12092,7 +12020,7 @@ "Label\n" "value.text" msgid "Counterclockwise 2 Spokes" -msgstr "" +msgstr "Mot klokka 2 spiler" #: Effects.xcu msgctxt "" @@ -12101,7 +12029,7 @@ "Label\n" "value.text" msgid "Counterclockwise 3 Spokes" -msgstr "" +msgstr "Mot klokka 3 spiler" #: Effects.xcu msgctxt "" @@ -12110,7 +12038,7 @@ "Label\n" "value.text" msgid "Counterclockwise 4 Spokes" -msgstr "" +msgstr "Mot klokka 4 spiler" #: Effects.xcu msgctxt "" @@ -12119,7 +12047,7 @@ "Label\n" "value.text" msgid "Counterclockwise 8 Spokes" -msgstr "" +msgstr "Mot klokka 8 spiler" #: Effects.xcu msgctxt "" @@ -12128,7 +12056,7 @@ "Label\n" "value.text" msgid "Inside" -msgstr "" +msgstr "Innside" #: Effects.xcu msgctxt "" @@ -12137,7 +12065,7 @@ "Label\n" "value.text" msgid "Outside" -msgstr "" +msgstr "Utside" #: Effects.xcu msgctxt "" @@ -12518,7 +12446,6 @@ msgstr "Kontrollelementer" #: GenericCommands.xcu -#, fuzzy msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Commands..uno:InsertFormMenu\n" @@ -12552,7 +12479,7 @@ "Label\n" "value.text" msgid "Toggle Unicode Notation" -msgstr "" +msgstr "Bytt om Unicode-notasjonen" #: GenericCommands.xcu msgctxt "" @@ -12624,7 +12551,7 @@ "Label\n" "value.text" msgid "Increase Paragraph Spacing" -msgstr "" +msgstr "Øk avstanden mellom avsnitt" #: GenericCommands.xcu msgctxt "" @@ -12633,7 +12560,7 @@ "Label\n" "value.text" msgid "Decrease Paragraph Spacing" -msgstr "" +msgstr "Reduser avstanden mellom avsnitt" #: GenericCommands.xcu msgctxt "" @@ -14127,7 +14054,7 @@ "Label\n" "value.text" msgid "Increase Font Size" -msgstr "" +msgstr "Større skrift" #: GenericCommands.xcu msgctxt "" @@ -14136,7 +14063,7 @@ "ContextLabel\n" "value.text" msgid "Increase Size" -msgstr "" +msgstr "Øk størrelsen" #: GenericCommands.xcu msgctxt "" @@ -14145,7 +14072,7 @@ "Label\n" "value.text" msgid "Decrease Font Size" -msgstr "" +msgstr "Mindre skrift" #: GenericCommands.xcu msgctxt "" @@ -14154,7 +14081,7 @@ "ContextLabel\n" "value.text" msgid "Decrease Size" -msgstr "" +msgstr "Reduser størrelsen" #: GenericCommands.xcu msgctxt "" @@ -14289,7 +14216,7 @@ "Label\n" "value.text" msgid "Search Formatted Display String" -msgstr "" +msgstr "Søk etter formatert visingsstreng" #: GenericCommands.xcu msgctxt "" @@ -14316,7 +14243,7 @@ "Label\n" "value.text" msgid "[placeholder for message]" -msgstr "" +msgstr "[Plassholder for melding]" #: GenericCommands.xcu msgctxt "" @@ -14811,7 +14738,7 @@ "ContextLabel\n" "value.text" msgid "Crop" -msgstr "" +msgstr "Beskjær" #: GenericCommands.xcu msgctxt "" @@ -14820,7 +14747,7 @@ "Label\n" "value.text" msgid "Replace Image" -msgstr "" +msgstr "Bytt ut bilde" #: GenericCommands.xcu msgctxt "" @@ -14829,7 +14756,7 @@ "ContextLabel\n" "value.text" msgid "~Replace..." -msgstr "" +msgstr "~Bytt ut …" #: GenericCommands.xcu msgctxt "" @@ -14838,7 +14765,7 @@ "Label\n" "value.text" msgid "Compress Image" -msgstr "" +msgstr "Komprimer bilde" #: GenericCommands.xcu msgctxt "" @@ -14847,17 +14774,16 @@ "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 @@ "ContextLabel\n" "value.text" msgid "Save..." -msgstr "" +msgstr "Lagre..." #: GenericCommands.xcu msgctxt "" @@ -14875,10 +14801,9 @@ "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 @@ "Label\n" "value.text" msgid "Manage Templates" -msgstr "" +msgstr "Malbehandler" #: GenericCommands.xcu msgctxt "" @@ -14930,7 +14855,7 @@ "Label\n" "value.text" msgid "Open Remote ~File..." -msgstr "" +msgstr "Ã…pne ekstern fil..." #: GenericCommands.xcu msgctxt "" @@ -14939,7 +14864,7 @@ "Label\n" "value.text" msgid "Save to Remote Ser~ver" -msgstr "" +msgstr "Lagre til fjerntjener" #: GenericCommands.xcu msgctxt "" @@ -14948,7 +14873,7 @@ "PopupLabel\n" "value.text" msgid "Save Remote File..." -msgstr "" +msgstr "Lagre ekstern fil..." #: GenericCommands.xcu msgctxt "" @@ -15070,7 +14995,6 @@ msgstr "Flytt punkter" #: GenericCommands.xcu -#, fuzzy msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Commands..uno:Reload\n" @@ -15095,7 +15019,7 @@ "Label\n" "value.text" msgid "Print Directly" -msgstr "" +msgstr "Direkte utskrift" #: GenericCommands.xcu msgctxt "" @@ -15107,7 +15031,6 @@ msgstr "Jevn overgang" #: GenericCommands.xcu -#, fuzzy msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Commands..uno:ToggleObjectBezierMode\n" @@ -15117,14 +15040,13 @@ 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 @@ "Label\n" "value.text" msgid "Outline Presets" -msgstr "" +msgstr "ForhÃ¥ndsinnstillinger for omriss" #: GenericCommands.xcu msgctxt "" @@ -15568,7 +15490,6 @@ msgstr "Ett nivÃ¥ ned" #: GenericCommands.xcu -#, fuzzy msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Commands..uno:OutlineFormat\n" @@ -15584,7 +15505,7 @@ "Label\n" "value.text" msgid "Show Only First Level" -msgstr "" +msgstr "Vis bare første nivÃ¥" #: GenericCommands.xcu msgctxt "" @@ -15596,14 +15517,13 @@ 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 @@ "Label\n" "value.text" msgid "~Web View" -msgstr "" +msgstr "~Nettsidevising" #: GenericCommands.xcu msgctxt "" @@ -15630,7 +15550,7 @@ "ContextLabel\n" "value.text" msgid "~Web" -msgstr "" +msgstr "~Nett" #: GenericCommands.xcu msgctxt "" @@ -15756,7 +15676,7 @@ "Label\n" "value.text" msgid "~Edit Style..." -msgstr "" +msgstr "~Rediger stil …" #: GenericCommands.xcu msgctxt "" @@ -15765,7 +15685,7 @@ "Label\n" "value.text" msgid "~New Style..." -msgstr "" +msgstr "~Ny stil …" #: GenericCommands.xcu msgctxt "" @@ -15786,14 +15706,13 @@ 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 @@ msgstr "Bakgrunnsfarge" #: GenericCommands.xcu -#, fuzzy msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Commands..uno:CharBackColor\n" @@ -16064,7 +15982,7 @@ "Label\n" "value.text" msgid "Borders (Shift to overwrite)" -msgstr "" +msgstr "Kantlinjer (Shift for Ã¥ overskrive)" #: GenericCommands.xcu msgctxt "" @@ -16253,7 +16171,7 @@ "Label\n" "value.text" msgid "Border Style" -msgstr "" +msgstr "Kantlinjestil" #: GenericCommands.xcu msgctxt "" @@ -16262,7 +16180,7 @@ "Label\n" "value.text" msgid "Border Color" -msgstr "" +msgstr "Kantlinjefarge" #: GenericCommands.xcu msgctxt "" @@ -16343,7 +16261,7 @@ "Label\n" "value.text" msgid "Show All Levels" -msgstr "" +msgstr "Vis alle nivÃ¥" #: GenericCommands.xcu msgctxt "" @@ -16370,7 +16288,7 @@ "Label\n" "value.text" msgid "~Remove Outline" -msgstr "" +msgstr "~Fjern omriss" #: GenericCommands.xcu msgctxt "" @@ -16418,24 +16336,22 @@ 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 @@ "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 @@ 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 @@ "Label\n" "value.text" msgid "~Spacing" -msgstr "" +msgstr "~Mellomrom" #: GenericCommands.xcu msgctxt "" @@ -16501,17 +16414,16 @@ "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 @@ "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 @@ "Label\n" "value.text" msgid "AutoFormat Table Styles" -msgstr "" +msgstr "Autoformater tabellstiler" #: GenericCommands.xcu msgctxt "" @@ -16557,7 +16468,7 @@ "ContextLabel\n" "value.text" msgid "Auto~Format Styles..." -msgstr "" +msgstr "Autoformater tabellstiler" #: GenericCommands.xcu msgctxt "" @@ -16623,47 +16534,42 @@ 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 @@ 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 @@ msgstr "~Video …" #: GenericCommands.xcu -#, fuzzy msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Commands..uno:HyperlinkDialog\n" @@ -16952,7 +16855,7 @@ "Label\n" "value.text" msgid "Equalize ~Width" -msgstr "" +msgstr "Samme bredde" #: GenericCommands.xcu msgctxt "" @@ -16961,7 +16864,7 @@ "Label\n" "value.text" msgid "Equalize ~Height" -msgstr "" +msgstr "Samme høyde" #: GenericCommands.xcu msgctxt "" @@ -17045,17 +16948,15 @@ 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 @@ 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 @@ "Label\n" "value.text" msgid "Con~trol Properties..." -msgstr "" +msgstr "Egenskaper for kontrollelement" #: GenericCommands.xcu msgctxt "" @@ -18648,7 +18547,7 @@ "ContextLabel\n" "value.text" msgid "For~m Properties..." -msgstr "" +msgstr "Egenskaper for skjema" #: GenericCommands.xcu msgctxt "" @@ -18774,7 +18673,7 @@ "Label\n" "value.text" msgid "Toggle Design Mode" -msgstr "" +msgstr "SlÃ¥ av/pÃ¥ utformingsmodus" #: GenericCommands.xcu msgctxt "" @@ -18783,7 +18682,7 @@ "ContextLabel\n" "value.text" msgid "Design Mode" -msgstr "" +msgstr "Utformingsmodus" #: GenericCommands.xcu msgctxt "" @@ -19746,7 +19645,7 @@ "Label\n" "value.text" msgid "Synony~ms" -msgstr "" +msgstr "Synonym" #: GenericCommands.xcu msgctxt "" @@ -19767,7 +19666,6 @@ msgstr "~Fil" #: GenericCommands.xcu -#, fuzzy msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Popups..uno:ObjectAlign\n" @@ -19777,7 +19675,6 @@ msgstr "Juster" #: GenericCommands.xcu -#, fuzzy msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Popups..uno:TextAlign\n" @@ -19910,20 +19807,18 @@ "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 @@ 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 @@ 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 @@ "UIName\n" "value.text" msgid "Legacy Circles and Ovals" -msgstr "" +msgstr "Sirkler og ellipser (klassisk)" #: ImpressWindowState.xcu msgctxt "" @@ -20553,7 +20446,7 @@ "UIName\n" "value.text" msgid "Legacy Rectangles" -msgstr "" +msgstr "Rektangel (klassisk)" #: ImpressWindowState.xcu msgctxt "" @@ -20796,7 +20689,7 @@ "Label\n" "value.text" msgid "Import MathML from Clipboard" -msgstr "" +msgstr "Importer MathML fra utklippstavla" #: MathCommands.xcu msgctxt "" @@ -20880,14 +20773,13 @@ 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 @@ msgstr "Vis a~lt" #: MathCommands.xcu -#, fuzzy msgctxt "" "MathCommands.xcu\n" "..MathCommands.UserInterface.Commands..uno:ElementsDockingWindow\n" @@ -21548,7 +21439,6 @@ msgstr "Galleri" #: Sidebar.xcu -#, fuzzy msgctxt "" "Sidebar.xcu\n" "..Sidebar.Content.DeckList.SdMasterPagesDeck\n" @@ -21558,7 +21448,6 @@ msgstr "Hovedsider" #: Sidebar.xcu -#, fuzzy msgctxt "" "Sidebar.xcu\n" "..Sidebar.Content.DeckList.SdCustomAnimationDeck\n" @@ -21568,7 +21457,6 @@ msgstr "Tilpasset animasjon" #: Sidebar.xcu -#, fuzzy msgctxt "" "Sidebar.xcu\n" "..Sidebar.Content.DeckList.SdSlideTransitionDeck\n" @@ -21596,7 +21484,6 @@ msgstr "Stilbehandler" #: Sidebar.xcu -#, fuzzy msgctxt "" "Sidebar.xcu\n" "..Sidebar.Content.DeckList.ScFunctionsDeck\n" @@ -21606,17 +21493,15 @@ 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 @@ msgstr "Utforming" #: Sidebar.xcu -#, fuzzy msgctxt "" "Sidebar.xcu\n" "..Sidebar.Content.DeckList.ChartDeck\n" @@ -21636,14 +21520,13 @@ 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 @@ msgstr "OmrÃ¥de" #: Sidebar.xcu -#, fuzzy msgctxt "" "Sidebar.xcu\n" "..Sidebar.Content.PanelList.ShadowPropertyPanel\n" @@ -21719,7 +21601,6 @@ msgstr "Bilde" #: Sidebar.xcu -#, fuzzy msgctxt "" "Sidebar.xcu\n" "..Sidebar.Content.PanelList.SdLayoutsPanel\n" @@ -21729,7 +21610,6 @@ msgstr "Sideoppsett" #: Sidebar.xcu -#, fuzzy msgctxt "" "Sidebar.xcu\n" "..Sidebar.Content.PanelList.SdUsedMasterPagesPanel\n" @@ -21739,7 +21619,6 @@ msgstr "Brukt i denne presentasjonen" #: Sidebar.xcu -#, fuzzy msgctxt "" "Sidebar.xcu\n" "..Sidebar.Content.PanelList.SdRecentMasterPagesPanel\n" @@ -21749,7 +21628,6 @@ msgstr "Nylig brukt" #: Sidebar.xcu -#, fuzzy msgctxt "" "Sidebar.xcu\n" "..Sidebar.Content.PanelList.SdAllMasterPagesPanel\n" @@ -21759,7 +21637,6 @@ msgstr "Tilgjengelige for bruk" #: Sidebar.xcu -#, fuzzy msgctxt "" "Sidebar.xcu\n" "..Sidebar.Content.PanelList.SdCustomAnimationPanel\n" @@ -21769,7 +21646,6 @@ msgstr "Tilpasset animasjon" #: Sidebar.xcu -#, fuzzy msgctxt "" "Sidebar.xcu\n" "..Sidebar.Content.PanelList.SdSlideTransitionPanel\n" @@ -21779,7 +21655,6 @@ msgstr "Lysbildeovergang" #: Sidebar.xcu -#, fuzzy msgctxt "" "Sidebar.xcu\n" "..Sidebar.Content.PanelList.SdTableDesignPanel\n" @@ -21798,7 +21673,6 @@ msgstr "Tom" #: Sidebar.xcu -#, fuzzy msgctxt "" "Sidebar.xcu\n" "..Sidebar.Content.PanelList.ScAlignmentPropertyPanel\n" @@ -21808,7 +21682,6 @@ msgstr "Justering" #: Sidebar.xcu -#, fuzzy msgctxt "" "Sidebar.xcu\n" "..Sidebar.Content.PanelList.ScCellAppearancePropertyPanel\n" @@ -21818,7 +21691,6 @@ msgstr "Celleutseende" #: Sidebar.xcu -#, fuzzy msgctxt "" "Sidebar.xcu\n" "..Sidebar.Content.PanelList.ScNumberFormatPropertyPanel\n" @@ -21837,7 +21709,6 @@ msgstr "Avsnitt" #: Sidebar.xcu -#, fuzzy msgctxt "" "Sidebar.xcu\n" "..Sidebar.Content.PanelList.SwWrapPropertyPanel\n" @@ -21874,14 +21745,13 @@ 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 @@ msgstr "Stilbehandler" #: Sidebar.xcu -#, fuzzy msgctxt "" "Sidebar.xcu\n" "..Sidebar.Content.PanelList.ScFunctionsPanel\n" @@ -21909,7 +21778,7 @@ "Title\n" "value.text" msgid "Style Presets" -msgstr "" +msgstr "ForhÃ¥ndsdefinerte stiler" #: Sidebar.xcu msgctxt "" @@ -21918,10 +21787,9 @@ "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 @@ "Title\n" "value.text" msgid "Data Series" -msgstr "" +msgstr "Dataserier" #: Sidebar.xcu msgctxt "" @@ -21946,7 +21814,7 @@ "Title\n" "value.text" msgid "Trendline" -msgstr "" +msgstr "Trendlinje" #: Sidebar.xcu msgctxt "" @@ -21955,20 +21823,18 @@ "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 @@ msgstr "OmrÃ¥de" #: Sidebar.xcu -#, fuzzy msgctxt "" "Sidebar.xcu\n" "..Sidebar.Content.PanelList.ChartLinePanel\n" @@ -21988,7 +21853,6 @@ msgstr "Linje" #: Sidebar.xcu -#, fuzzy msgctxt "" "Sidebar.xcu\n" "..Sidebar.Content.PanelList.ChartCharacterPanel\n" @@ -22250,7 +22114,6 @@ msgstr "~Autotekst …" #: WriterCommands.xcu -#, fuzzy msgctxt "" "WriterCommands.xcu\n" "..WriterCommands.UserInterface.Commands..uno:PrintLayout\n" @@ -22260,7 +22123,6 @@ msgstr "~Normalvisning" #: WriterCommands.xcu -#, fuzzy msgctxt "" "WriterCommands.xcu\n" "..WriterCommands.UserInterface.Commands..uno:PrintLayout\n" @@ -22351,14 +22213,13 @@ 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 @@ "ContextLabel\n" "value.text" msgid "~Endnote" -msgstr "" +msgstr "~Sluttnote" #: WriterCommands.xcu msgctxt "" @@ -22430,7 +22291,7 @@ "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 @@ "ContextLabel\n" "value.text" msgid "Table of Contents, ~Index or Bibliography..." -msgstr "" +msgstr "Innholdsliste, register eller bibliografi …" #: WriterCommands.xcu msgctxt "" @@ -22457,7 +22318,7 @@ "Label\n" "value.text" msgid "Toggle Direct Cursor Mode" -msgstr "" +msgstr "Bytt modus for direkte skrivemerke" #: WriterCommands.xcu msgctxt "" @@ -22466,7 +22327,7 @@ "ContextLabel\n" "value.text" msgid "Direct Cursor Mode" -msgstr "" +msgstr "Modus for direkte skrivemerke" #: WriterCommands.xcu msgctxt "" @@ -22487,14 +22348,13 @@ 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 @@ "Label\n" "value.text" msgid "Go t~o Page" -msgstr "" +msgstr "GÃ¥ til side" #: WriterCommands.xcu msgctxt "" @@ -22656,7 +22516,7 @@ "Label\n" "value.text" msgid "~Charts" -msgstr "" +msgstr "~Diagram" #: WriterCommands.xcu msgctxt "" @@ -22749,14 +22609,13 @@ 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 @@ 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 @@ msgstr "~Merknad" #: WriterCommands.xcu -#, fuzzy msgctxt "" "WriterCommands.xcu\n" "..WriterCommands.UserInterface.Commands..uno:InsertTable\n" @@ -22839,7 +22696,7 @@ "Label\n" "value.text" msgid "Insert Frame Interactively" -msgstr "" +msgstr "Sett inn ramme interaktivt" #: WriterCommands.xcu msgctxt "" @@ -22848,7 +22705,7 @@ "ContextLabel\n" "value.text" msgid "~Frame Interactively" -msgstr "" +msgstr "~Ramme interaktivt" #: WriterCommands.xcu msgctxt "" @@ -22857,17 +22714,16 @@ "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 @@ "Label\n" "value.text" msgid "~Text Box and Shape" -msgstr "" +msgstr "~Tekstboks og form" #: WriterCommands.xcu msgctxt "" @@ -23137,7 +22993,7 @@ "ContextLabel\n" "value.text" msgid "~Footnote" -msgstr "" +msgstr "~Fotnote" #: WriterCommands.xcu msgctxt "" @@ -23500,14 +23356,13 @@ 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 @@ 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 @@ 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 @@ "Label\n" "value.text" msgid "Align Top to Anchor" -msgstr "" +msgstr "Juster toppen til anker" #: WriterCommands.xcu msgctxt "" @@ -23819,7 +23668,7 @@ "Label\n" "value.text" msgid "Align Bottom to Anchor" -msgstr "" +msgstr "Juster bunnen til anker" #: WriterCommands.xcu msgctxt "" @@ -23828,7 +23677,7 @@ "Label\n" "value.text" msgid "Align Middle to Anchor" -msgstr "" +msgstr "Juster midten til anker" #: WriterCommands.xcu msgctxt "" @@ -23891,7 +23740,7 @@ "Label\n" "value.text" msgid "Repeat Heading Rows" -msgstr "" +msgstr "Gjenta topptekstrader" #: WriterCommands.xcu msgctxt "" @@ -23918,7 +23767,7 @@ "Label\n" "value.text" msgid "Insert Rows Above" -msgstr "" +msgstr "Sett inn rader over" #: WriterCommands.xcu msgctxt "" @@ -23927,7 +23776,7 @@ "ContextLabel\n" "value.text" msgid "Rows ~Above" -msgstr "" +msgstr "Rader ~over" #: WriterCommands.xcu msgctxt "" @@ -23945,7 +23794,7 @@ "Label\n" "value.text" msgid "Insert Rows Below" -msgstr "" +msgstr "Sett inn rader under" #: WriterCommands.xcu msgctxt "" @@ -23954,7 +23803,7 @@ "ContextLabel\n" "value.text" msgid "Rows ~Below" -msgstr "" +msgstr "Rader ~under" #: WriterCommands.xcu msgctxt "" @@ -23966,14 +23815,13 @@ 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 @@ "ContextLabel\n" "value.text" msgid "Columns ~Left" -msgstr "" +msgstr "Kolonner ~venstre" #: WriterCommands.xcu msgctxt "" @@ -23994,7 +23842,6 @@ msgstr "Sett inn kolonne" #: WriterCommands.xcu -#, fuzzy msgctxt "" "WriterCommands.xcu\n" "..WriterCommands.UserInterface.Commands..uno:InsertColumnsAfter\n" @@ -24010,7 +23857,7 @@ "ContextLabel\n" "value.text" msgid "Columns R~ight" -msgstr "" +msgstr "Kolonner høyre" #: WriterCommands.xcu msgctxt "" @@ -24058,14 +23905,13 @@ 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 @@ "Label\n" "value.text" msgid "Optimize Size" -msgstr "" +msgstr "Optimer størrelse" #: WriterCommands.xcu msgctxt "" @@ -24140,14 +23986,13 @@ 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 @@ 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 @@ msgstr "Velg kolonne" #: WriterCommands.xcu -#, fuzzy msgctxt "" "WriterCommands.xcu\n" "..WriterCommands.UserInterface.Commands..uno:EntireColumn\n" @@ -24324,7 +24166,6 @@ msgstr "Beregne tabell" #: WriterCommands.xcu -#, fuzzy msgctxt "" "WriterCommands.xcu\n" "..WriterCommands.UserInterface.Commands..uno:UnsetCellsReadOnly\n" @@ -24745,7 +24586,7 @@ "Label\n" "value.text" msgid "Jump To Specific Page" -msgstr "" +msgstr "GÃ¥ til spesifik side" #: WriterCommands.xcu msgctxt "" @@ -24784,14 +24625,13 @@ 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 @@ msgstr "Til neste bokmerke" #: WriterCommands.xcu -#, fuzzy msgctxt "" "WriterCommands.xcu\n" "..WriterCommands.UserInterface.Commands..uno:NumberFormatDate\n" @@ -25281,14 +25120,13 @@ 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 @@ "Label\n" "value.text" msgid "~Break Across Pages" -msgstr "" +msgstr "~Del over sider" #: WriterCommands.xcu msgctxt "" @@ -25525,7 +25363,6 @@ msgstr "Merk tekst" #: WriterCommands.xcu -#, fuzzy msgctxt "" "WriterCommands.xcu\n" "..WriterCommands.UserInterface.Commands..uno:Ruler\n" @@ -25550,7 +25387,7 @@ "Label\n" "value.text" msgid "View Images and Charts" -msgstr "" +msgstr "Vis bilede og diagram" #: WriterCommands.xcu msgctxt "" @@ -25559,7 +25396,7 @@ "ContextLabel\n" "value.text" msgid "~Images and Charts" -msgstr "" +msgstr "~Bilde og diagram" #: WriterCommands.xcu msgctxt "" @@ -25589,7 +25426,6 @@ msgstr "S~ynonymordbok …" #: WriterCommands.xcu -#, fuzzy msgctxt "" "WriterCommands.xcu\n" "..WriterCommands.UserInterface.Commands..uno:BackColor\n" @@ -25653,7 +25489,6 @@ msgstr "Legg til ukjente ord" #: WriterCommands.xcu -#, fuzzy msgctxt "" "WriterCommands.xcu\n" "..WriterCommands.UserInterface.Commands..uno:HScroll\n" @@ -25687,7 +25522,7 @@ "Label\n" "value.text" msgid "Hide Whitespac~e" -msgstr "" +msgstr "Gjem blanketegn" #: WriterCommands.xcu msgctxt "" @@ -25834,7 +25669,6 @@ msgstr "~Velg" #: WriterCommands.xcu -#, fuzzy msgctxt "" "WriterCommands.xcu\n" "..WriterCommands.UserInterface.Popups..uno:TableAutoFitMenu\n" @@ -25868,17 +25702,16 @@ "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 @@ msgstr "Framover" #: WriterCommands.xcu -#, fuzzy msgctxt "" "WriterCommands.xcu\n" "..WriterCommands.UserInterface.Popups..uno:StyleApply?Style:string=Horizontal Line&FamilyName:string=ParagraphStyles\n" @@ -26023,10 +25855,9 @@ "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&FamilyName:string=ParagraphStyles\n" @@ -26036,14 +25867,13 @@ msgstr "~Tittel" #: WriterCommands.xcu -#, fuzzy msgctxt "" "WriterCommands.xcu\n" "..WriterCommands.UserInterface.Popups..uno:StyleApply?Style:string=Subtitle&FamilyName:string=ParagraphStyles\n" "Label\n" "value.text" msgid "Su~btitle" -msgstr "~Undertittel …" +msgstr "Undertittel" #: WriterCommands.xcu msgctxt "" @@ -26052,7 +25882,7 @@ "Label\n" "value.text" msgid "Heading ~1" -msgstr "" +msgstr "Overskrift ~1" #: WriterCommands.xcu msgctxt "" @@ -26061,7 +25891,7 @@ "Label\n" "value.text" msgid "Heading ~2" -msgstr "" +msgstr "Overskrift ~2" #: WriterCommands.xcu msgctxt "" @@ -26070,7 +25900,7 @@ "Label\n" "value.text" msgid "Heading ~3" -msgstr "" +msgstr "Overskrift ~3" #: WriterCommands.xcu msgctxt "" @@ -26079,7 +25909,7 @@ "Label\n" "value.text" msgid "Heading ~4" -msgstr "" +msgstr "Overskrift ~4" #: WriterCommands.xcu msgctxt "" @@ -26088,7 +25918,7 @@ "Label\n" "value.text" msgid "Heading ~5" -msgstr "" +msgstr "Overskrift ~5" #: WriterCommands.xcu msgctxt "" @@ -26097,7 +25927,7 @@ "Label\n" "value.text" msgid "Heading ~6" -msgstr "" +msgstr "Overskrift ~6" #: WriterCommands.xcu msgctxt "" @@ -26106,7 +25936,7 @@ "Label\n" "value.text" msgid "~Quotations" -msgstr "" +msgstr "~Sitat" #: WriterCommands.xcu msgctxt "" @@ -26115,17 +25945,16 @@ "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&FamilyName:string=ParagraphStyles\n" "Label\n" "value.text" msgid "Text Body" -msgstr "Tekstfelt" +msgstr "Brødtekst" #: WriterCommands.xcu msgctxt "" @@ -26134,7 +25963,7 @@ "Label\n" "value.text" msgid "Default ~Character" -msgstr "" +msgstr "Standard tegn" #: WriterCommands.xcu msgctxt "" @@ -26143,7 +25972,7 @@ "Label\n" "value.text" msgid "E~mphasis" -msgstr "" +msgstr "Framheving" #: WriterCommands.xcu msgctxt "" @@ -26152,7 +25981,7 @@ "Label\n" "value.text" msgid "~Strong Emphasis" -msgstr "" +msgstr "~Sterk utheving" #: WriterCommands.xcu msgctxt "" @@ -26161,7 +25990,7 @@ "Label\n" "value.text" msgid "Qu~otation" -msgstr "" +msgstr "Sitat" #: WriterCommands.xcu msgctxt "" @@ -26170,7 +25999,7 @@ "Label\n" "value.text" msgid "Sou~rce Text" -msgstr "" +msgstr "Kildetekst" #: WriterCommands.xcu msgctxt "" @@ -26179,7 +26008,7 @@ "Label\n" "value.text" msgid "Apply Paragraph Style" -msgstr "" +msgstr "Bruk avsnittsstil" #: WriterFormWindowState.xcu msgctxt "" @@ -27838,14 +27667,13 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/nb/officecfg/registry/data/org/openoffice/Office.po libreoffice-5.1.2~rc2/translations/source/nb/officecfg/registry/data/org/openoffice/Office.po --- libreoffice-5.1.1~rc2/translations/source/nb/officecfg/registry/data/org/openoffice/Office.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/nb/officecfg/registry/data/org/openoffice/Office.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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 @@ "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 @@ "Title\n" "value.text" msgid "FORWARD 10" -msgstr "" +msgstr "FRAM 10" #: Addons.xcu msgctxt "" @@ -32,7 +32,7 @@ "Title\n" "value.text" msgid "BACK 10" -msgstr "" +msgstr "TILBAKE 10" #: Addons.xcu msgctxt "" @@ -41,7 +41,7 @@ "Title\n" "value.text" msgid "LEFT 15°" -msgstr "" +msgstr "VENSTRE 15°" #: Addons.xcu msgctxt "" @@ -50,7 +50,7 @@ "Title\n" "value.text" msgid "RIGHT 15°" -msgstr "" +msgstr "HØYRE 15°" #: Addons.xcu msgctxt "" @@ -68,7 +68,7 @@ "Title\n" "value.text" msgid "STOP" -msgstr "" +msgstr "STOPP" #: Addons.xcu msgctxt "" @@ -77,7 +77,7 @@ "Title\n" "value.text" msgid "HOME" -msgstr "" +msgstr "HJEM" #: Addons.xcu msgctxt "" @@ -86,10 +86,9 @@ "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 @@ 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 @@ "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 @@ msgstr "Bytt" #: PresenterScreen.xcu -#, fuzzy msgctxt "" "PresenterScreen.xcu\n" "..PresenterScreen.PresenterScreenSettings.ToolBars.ToolBar.Entries.o.Normal\n" @@ -1866,7 +1862,6 @@ msgstr "Vis lysbildeoversikten" #: PresenterScreen.xcu -#, fuzzy msgctxt "" "PresenterScreen.xcu\n" "..PresenterScreen.PresenterScreenSettings.HelpView.HelpStrings.x\n" @@ -1882,7 +1877,7 @@ "Right\n" "value.text" msgid "Switches monitors" -msgstr "" +msgstr "Bytter skjermer" #: PresenterScreen.xcu msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/nb/readlicense_oo/docs.po libreoffice-5.1.2~rc2/translations/source/nb/readlicense_oo/docs.po --- libreoffice-5.1.1~rc2/translations/source/nb/readlicense_oo/docs.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/nb/readlicense_oo/docs.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "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 @@ "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 @@ "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 @@ msgstr "Hurtigtaster" #: readme.xrm -#, fuzzy msgctxt "" "readme.xrm\n" "w32e1\n" @@ -703,7 +702,7 @@ "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 @@ "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 @@ "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 -Nru libreoffice-5.1.1~rc2/translations/source/nb/reportdesign/uiconfig/dbreport/ui.po libreoffice-5.1.2~rc2/translations/source/nb/reportdesign/uiconfig/dbreport/ui.po --- libreoffice-5.1.1~rc2/translations/source/nb/reportdesign/uiconfig/dbreport/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/nb/reportdesign/uiconfig/dbreport/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\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 @@ "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 @@ "label\n" "string.text" msgid "Highlighting" -msgstr "" +msgstr "Utheving" #: chardialog.ui msgctxt "" @@ -104,7 +104,7 @@ "title\n" "string.text" msgid "Conditional Formatting" -msgstr "" +msgstr "VilkÃ¥rsformatering" #: conditionwin.ui msgctxt "" @@ -113,7 +113,7 @@ "0\n" "stringlist.text" msgid "Field Value Is" -msgstr "" +msgstr "Feltverdien er" #: conditionwin.ui msgctxt "" @@ -122,7 +122,7 @@ "1\n" "stringlist.text" msgid "Expression Is" -msgstr "" +msgstr "Utrykket er" #: conditionwin.ui msgctxt "" @@ -131,7 +131,7 @@ "0\n" "stringlist.text" msgid "between" -msgstr "" +msgstr "mellom" #: conditionwin.ui msgctxt "" @@ -140,7 +140,7 @@ "1\n" "stringlist.text" msgid "not between" -msgstr "" +msgstr "ikke mellom" #: conditionwin.ui msgctxt "" @@ -149,7 +149,7 @@ "2\n" "stringlist.text" msgid "equal to" -msgstr "" +msgstr "lik" #: conditionwin.ui msgctxt "" @@ -158,7 +158,7 @@ "3\n" "stringlist.text" msgid "not equal to" -msgstr "" +msgstr "Er ikke lik" #: conditionwin.ui msgctxt "" @@ -167,7 +167,7 @@ "4\n" "stringlist.text" msgid "greater than" -msgstr "" +msgstr "større enn" #: conditionwin.ui msgctxt "" @@ -176,7 +176,7 @@ "5\n" "stringlist.text" msgid "less than" -msgstr "" +msgstr "mindre enn" #: conditionwin.ui msgctxt "" @@ -185,7 +185,7 @@ "6\n" "stringlist.text" msgid "greater than or equal to" -msgstr "" +msgstr "større enn eller lik " #: conditionwin.ui msgctxt "" @@ -194,7 +194,7 @@ "7\n" "stringlist.text" msgid "less than or equal to" -msgstr "" +msgstr "mindre enn eller lik" #: conditionwin.ui msgctxt "" @@ -203,7 +203,7 @@ "label\n" "string.text" msgid "..." -msgstr "" +msgstr "..." #: conditionwin.ui msgctxt "" @@ -212,7 +212,7 @@ "label\n" "string.text" msgid "and" -msgstr "" +msgstr "og" #: conditionwin.ui msgctxt "" @@ -221,7 +221,7 @@ "label\n" "string.text" msgid "..." -msgstr "" +msgstr "..." #: conditionwin.ui msgctxt "" @@ -230,7 +230,7 @@ "label\n" "string.text" msgid "Bold" -msgstr "" +msgstr "Fet" #: conditionwin.ui msgctxt "" @@ -239,7 +239,7 @@ "label\n" "string.text" msgid "Italic" -msgstr "" +msgstr "Kursiv" #: conditionwin.ui msgctxt "" @@ -248,7 +248,7 @@ "label\n" "string.text" msgid "Underline" -msgstr "" +msgstr "Understreking" #: conditionwin.ui msgctxt "" @@ -257,7 +257,7 @@ "label\n" "string.text" msgid "Background Color" -msgstr "" +msgstr "Bakgrunnsfarge" #: conditionwin.ui msgctxt "" @@ -266,7 +266,7 @@ "label\n" "string.text" msgid "Font Color" -msgstr "" +msgstr "Skriftfarge" #: conditionwin.ui msgctxt "" @@ -275,7 +275,7 @@ "label\n" "string.text" msgid "Character Formatting" -msgstr "" +msgstr "Tegnformatering" #: conditionwin.ui msgctxt "" @@ -284,7 +284,7 @@ "label\n" "string.text" msgid "-" -msgstr "" +msgstr "-" #: conditionwin.ui msgctxt "" @@ -293,7 +293,7 @@ "label\n" "string.text" msgid "+" -msgstr "" +msgstr "+" #: datetimedialog.ui msgctxt "" @@ -347,7 +347,7 @@ "title\n" "string.text" msgid "Report navigator" -msgstr "" +msgstr "Rapport navigator" #: floatingsort.ui msgctxt "" @@ -356,7 +356,7 @@ "title\n" "string.text" msgid "Sorting and Grouping" -msgstr "" +msgstr "Sortering og gruppering" #: floatingsort.ui msgctxt "" @@ -365,7 +365,7 @@ "label\n" "string.text" msgid "Group actions" -msgstr "" +msgstr "Gruppehandlinger" #: floatingsort.ui msgctxt "" @@ -374,7 +374,7 @@ "label\n" "string.text" msgid "Move up" -msgstr "" +msgstr "Flytt opp" #: floatingsort.ui msgctxt "" @@ -383,7 +383,7 @@ "label\n" "string.text" msgid "Move down" -msgstr "" +msgstr "Flytt ned" #: floatingsort.ui msgctxt "" @@ -392,7 +392,7 @@ "label\n" "string.text" msgid "Delete" -msgstr "" +msgstr "Slett" #: floatingsort.ui msgctxt "" @@ -401,7 +401,7 @@ "label\n" "string.text" msgid "Groups" -msgstr "" +msgstr "Grupper" #: floatingsort.ui msgctxt "" @@ -410,7 +410,7 @@ "label\n" "string.text" msgid "Sorting" -msgstr "" +msgstr "Sortering" #: floatingsort.ui msgctxt "" @@ -419,7 +419,7 @@ "label\n" "string.text" msgid "Group Header" -msgstr "" +msgstr "Gruppehode" #: floatingsort.ui msgctxt "" @@ -428,7 +428,7 @@ "label\n" "string.text" msgid "Group Footer" -msgstr "" +msgstr "Bunntekst for gruppa" #: floatingsort.ui msgctxt "" @@ -437,7 +437,7 @@ "label\n" "string.text" msgid "Group On" -msgstr "" +msgstr "Gruper etter" #: floatingsort.ui msgctxt "" @@ -446,7 +446,7 @@ "label\n" "string.text" msgid "Group Interval" -msgstr "" +msgstr "Gruppeintervall" #: floatingsort.ui msgctxt "" @@ -455,7 +455,7 @@ "label\n" "string.text" msgid "Keep Together" -msgstr "" +msgstr "Hold sammen" #: floatingsort.ui msgctxt "" @@ -464,7 +464,7 @@ "0\n" "stringlist.text" msgid "Ascending" -msgstr "" +msgstr "Stigende" #: floatingsort.ui msgctxt "" @@ -473,7 +473,7 @@ "1\n" "stringlist.text" msgid "Descending" -msgstr "" +msgstr "Minkende" #: floatingsort.ui msgctxt "" @@ -482,7 +482,7 @@ "0\n" "stringlist.text" msgid "Present" -msgstr "" +msgstr "Tilgjengelig" #: floatingsort.ui msgctxt "" @@ -491,7 +491,7 @@ "1\n" "stringlist.text" msgid "Not present" -msgstr "" +msgstr "Ikke tilgjengelig" #: floatingsort.ui msgctxt "" @@ -500,7 +500,7 @@ "0\n" "stringlist.text" msgid "No" -msgstr "" +msgstr "Nei" #: floatingsort.ui msgctxt "" @@ -509,7 +509,7 @@ "1\n" "stringlist.text" msgid "Whole Group" -msgstr "" +msgstr "Hele gruppa" #: floatingsort.ui msgctxt "" @@ -518,7 +518,7 @@ "2\n" "stringlist.text" msgid "With First Detail" -msgstr "" +msgstr "Med første detalj" #: floatingsort.ui msgctxt "" @@ -527,7 +527,7 @@ "0\n" "stringlist.text" msgid "Present" -msgstr "" +msgstr "Tilgjengelig" #: floatingsort.ui msgctxt "" @@ -536,7 +536,7 @@ "1\n" "stringlist.text" msgid "Not present" -msgstr "" +msgstr "Ikke tilgjengelig" #: floatingsort.ui msgctxt "" @@ -545,7 +545,7 @@ "0\n" "stringlist.text" msgid "Each Value" -msgstr "" +msgstr "Hver verdi" #: floatingsort.ui msgctxt "" @@ -554,7 +554,7 @@ "label\n" "string.text" msgid "Properties" -msgstr "" +msgstr "Egenskaper" #: floatingsort.ui msgctxt "" @@ -563,7 +563,7 @@ "label\n" "string.text" msgid "Help" -msgstr "" +msgstr "Hjelp" #: pagedialog.ui msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/nb/sc/source/ui/cctrl.po libreoffice-5.1.2~rc2/translations/source/nb/sc/source/ui/cctrl.po --- libreoffice-5.1.1~rc2/translations/source/nb/sc/source/ui/cctrl.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/nb/sc/source/ui/cctrl.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,16 +4,17 @@ "Project-Id-Version: PACKAGE VERSION\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 @@ "STR_EDIT_SEARCH_ITEMS\n" "string.text" msgid "Search items..." -msgstr "" +msgstr "Søkeelement..." diff -Nru libreoffice-5.1.1~rc2/translations/source/nb/sc/source/ui/drawfunc.po libreoffice-5.1.2~rc2/translations/source/nb/sc/source/ui/drawfunc.po --- libreoffice-5.1.1~rc2/translations/source/nb/sc/source/ui/drawfunc.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/nb/sc/source/ui/drawfunc.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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 @@ "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 @@ "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 -Nru libreoffice-5.1.1~rc2/translations/source/nb/sc/source/ui/sidebar.po libreoffice-5.1.2~rc2/translations/source/nb/sc/source/ui/sidebar.po --- libreoffice-5.1.1~rc2/translations/source/nb/sc/source/ui/sidebar.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/nb/sc/source/ui/sidebar.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,17 +4,17 @@ "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 @@ "RID_SFX_STR_THOUSAND_SEP\n" "string.text" msgid "Thousands separator" -msgstr "" +msgstr "Tusenskille" #: NumberFormatPropertyPanel.src msgctxt "" @@ -219,4 +219,4 @@ "RID_SFX_STR_ENGINEERING\n" "string.text" msgid "Engineering notation" -msgstr "" +msgstr "Teknisk notasjon" diff -Nru libreoffice-5.1.1~rc2/translations/source/nb/sc/source/ui/src.po libreoffice-5.1.2~rc2/translations/source/nb/sc/source/ui/src.po --- libreoffice-5.1.1~rc2/translations/source/nb/sc/source/ui/src.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/nb/sc/source/ui/src.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "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 @@ "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 @@ "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 @@ 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 @@ "3 Stars\n" "stringlist.text" msgid "3 Stars" -msgstr "" +msgstr "Tre stjerner" #: condformatdlg.src msgctxt "" @@ -763,17 +761,16 @@ "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 @@ "5 Boxes\n" "stringlist.text" msgid "5 Boxes" -msgstr "" +msgstr "Fem bokser" #: condformatdlg.src msgctxt "" @@ -2240,7 +2237,7 @@ "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 @@ msgstr "#1 ble satt inn" #: globstr.src -#, fuzzy msgctxt "" "globstr.src\n" "RID_GLOBSTR\n" @@ -4930,7 +4926,7 @@ "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 @@ "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 @@ "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 @@ "STR_ENTER_VALUE\n" "string.text" msgid "Enter a value!" -msgstr "" +msgstr "Skriv inn en verdi!" #: globstr.src msgctxt "" @@ -5662,7 +5658,7 @@ "STR_TABLE_COUNT\n" "string.text" msgid "Sheet %1 of %2" -msgstr "" +msgstr "Ark %1 av %2" #: hdrcont.src msgctxt "" @@ -5710,7 +5706,6 @@ msgstr "L~im inn utvalg …" #: hdrcont.src -#, fuzzy msgctxt "" "hdrcont.src\n" "RID_POPUP_ROWHEADER\n" @@ -5726,7 +5721,7 @@ "FID_INS_ROWS_AFTER\n" "menuitem.text" msgid "Insert Rows ~Below" -msgstr "" +msgstr "Sett inn rader ~under" #: hdrcont.src msgctxt "" @@ -5735,7 +5730,7 @@ "SID_DEL_ROWS\n" "menuitem.text" msgid "~Delete Rows" -msgstr "" +msgstr "~Slett rader" #: hdrcont.src msgctxt "" @@ -5744,7 +5739,7 @@ "SID_DELETE\n" "menuitem.text" msgid "Cl~ear Contents..." -msgstr "" +msgstr "Slett innholdet …" #: hdrcont.src msgctxt "" @@ -5756,7 +5751,6 @@ msgstr "Rad~høyde …" #: hdrcont.src -#, fuzzy msgctxt "" "hdrcont.src\n" "RID_POPUP_ROWHEADER\n" @@ -5772,7 +5766,7 @@ "FID_ROW_HIDE\n" "menuitem.text" msgid "~Hide Rows" -msgstr "" +msgstr "~Gjem rader" #: hdrcont.src msgctxt "" @@ -5781,37 +5775,34 @@ "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 @@ "SID_DEL_COLS\n" "menuitem.text" msgid "~Delete Columns" -msgstr "" +msgstr "~Slett kolonner" #: hdrcont.src msgctxt "" @@ -5829,20 +5820,18 @@ "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 @@ "FID_COL_HIDE\n" "menuitem.text" msgid "~Hide Columns" -msgstr "" +msgstr "~Gjem kolonner" #: hdrcont.src msgctxt "" @@ -5867,7 +5856,7 @@ "FID_COL_SHOW\n" "menuitem.text" msgid "~Show Columns" -msgstr "" +msgstr "~Vis kolonner" #: popup.src msgctxt "" @@ -5992,7 +5981,7 @@ "SID_DELETE\n" "menuitem.text" msgid "Cl~ear Contents..." -msgstr "" +msgstr "Slett innholdet …" #: popup.src msgctxt "" @@ -6022,7 +6011,6 @@ msgstr "S~ett inn merknad" #: popup.src -#, fuzzy msgctxt "" "popup.src\n" "RID_POPUP_CELLS\n" @@ -6136,7 +6124,7 @@ "FID_TAB_TOGGLE_GRID\n" "menuitem.text" msgid "Sheet ~Gridlines" -msgstr "" +msgstr "Rutenettlinjer i ark" #: popup.src msgctxt "" @@ -7811,7 +7799,6 @@ 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 @@ "6\n" "string.text" msgid "list of dates" -msgstr "" +msgstr "datoliste" #: scfuncs.src msgctxt "" @@ -7875,7 +7862,6 @@ 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 @@ "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 @@ 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 @@ "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 @@ "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 @@ msgstr "Tall" #: scfuncs.src -#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS1.SC_OPCODE_ISOWEEKNUM\n" @@ -9370,7 +9353,7 @@ "8\n" "string.text" msgid "S" -msgstr "" +msgstr "S" #: scfuncs.src msgctxt "" @@ -10495,7 +10478,7 @@ "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 @@ "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 @@ 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 @@ "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 @@ "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 @@ "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 @@ msgstr "modus" #: scfuncs.src -#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS1.SC_OPCODE_FLOOR\n" @@ -13449,7 +13430,7 @@ "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 @@ 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 @@ 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 @@ msgstr "Tall" #: scfuncs.src -#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS1.SC_OPCODE_FLOOR_MATH\n" @@ -13518,7 +13496,6 @@ 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 @@ msgstr "Signifikans" #: scfuncs.src -#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS1.SC_OPCODE_FLOOR_MATH\n" @@ -13538,14 +13514,13 @@ 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 @@ "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 @@ msgstr "Tall" #: scfuncs.src -#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS1.SC_OPCODE_FLOOR_PRECISE\n" @@ -13587,7 +13559,6 @@ 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 @@ "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 @@ msgstr "lineær_type" #: scfuncs.src -#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_LINEST\n" @@ -14156,7 +14126,6 @@ msgstr "funksjonstype" #: scfuncs.src -#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_LOGEST\n" @@ -16542,7 +16511,6 @@ 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 @@ 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 @@ 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 @@ 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 @@ "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 @@ "2\n" "string.text" msgid "expression" -msgstr "" +msgstr "uttrykk" #: scfuncs.src msgctxt "" @@ -22089,7 +22054,7 @@ "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 @@ "1\n" "string.text" msgid "Return a URL-encoded string." -msgstr "" +msgstr "Returnerer ein nettadresse-koda streng." #: scfuncs.src msgctxt "" @@ -24475,7 +24440,7 @@ "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 @@ "SCSTR_UNDO_PAGE_ANCHOR\n" "string.text" msgid "Page Anchor" -msgstr "" +msgstr "Sideanker" #: scstring.src msgctxt "" @@ -25972,7 +25937,7 @@ "SCSTR_UNDO_CELL_ANCHOR\n" "string.text" msgid "Cell Anchor" -msgstr "" +msgstr "Celleanker" #: scwarngs.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/nb/sc/source/ui/StatisticsDialogs.po libreoffice-5.1.2~rc2/translations/source/nb/sc/source/ui/StatisticsDialogs.po --- libreoffice-5.1.1~rc2/translations/source/nb/sc/source/ui/StatisticsDialogs.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/nb/sc/source/ui/StatisticsDialogs.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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 @@ "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 @@ "STR_REGRESSION_UNDO_NAME\n" "string.text" msgid "Regression" -msgstr "" +msgstr "Regresjon" #: StatisticsDialogs.src msgctxt "" @@ -599,7 +599,7 @@ "STR_REGRESSION\n" "string.text" msgid "Regression" -msgstr "" +msgstr "Regresjon" #: StatisticsDialogs.src msgctxt "" @@ -716,7 +716,7 @@ "STR_LABEL_LINEAR\n" "string.text" msgid "Linear" -msgstr "" +msgstr "Linjær" #: StatisticsDialogs.src msgctxt "" @@ -725,7 +725,7 @@ "STR_LABEL_LOGARITHMIC\n" "string.text" msgid "Logarithmic" -msgstr "" +msgstr "Logaritmisk" #: StatisticsDialogs.src msgctxt "" @@ -734,7 +734,7 @@ "STR_LABEL_POWER\n" "string.text" msgid "Power" -msgstr "" +msgstr "Potens" #: StatisticsDialogs.src msgctxt "" @@ -743,7 +743,7 @@ "STR_LABEL_REGRESSION_MODEL\n" "string.text" msgid "Regression Model" -msgstr "" +msgstr "Regresjonsmodell" #: StatisticsDialogs.src msgctxt "" @@ -752,7 +752,7 @@ "STR_LABEL_RSQUARED\n" "string.text" msgid "R^2" -msgstr "" +msgstr "R^2" #: StatisticsDialogs.src msgctxt "" @@ -761,7 +761,7 @@ "STR_LABEL_SLOPE\n" "string.text" msgid "Slope" -msgstr "" +msgstr "Stigningstall" #: StatisticsDialogs.src msgctxt "" @@ -770,7 +770,7 @@ "STR_LABEL_INTERCEPT\n" "string.text" msgid "Intercept" -msgstr "" +msgstr "Avskjær" #: StatisticsDialogs.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/nb/sc/uiconfig/scalc/ui.po libreoffice-5.1.2~rc2/translations/source/nb/sc/uiconfig/scalc/ui.po --- libreoffice-5.1.1~rc2/translations/source/nb/sc/uiconfig/scalc/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/nb/sc/uiconfig/scalc/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: LibO 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 @@ "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 @@ "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 @@ "label\n" "string.text" msgid "Fill:" -msgstr "" +msgstr "Fyll:" #: databaroptions.ui msgctxt "" @@ -1424,7 +1424,7 @@ "0\n" "stringlist.text" msgid "Color" -msgstr "" +msgstr "Farge" #: databaroptions.ui msgctxt "" @@ -1433,7 +1433,7 @@ "1\n" "stringlist.text" msgid "Gradient" -msgstr "" +msgstr "Fargeovergang" #: databaroptions.ui msgctxt "" @@ -1505,7 +1505,7 @@ "label\n" "string.text" msgid "Minimum bar length (%):" -msgstr "" +msgstr "Minste søylelengde (%):" #: databaroptions.ui msgctxt "" @@ -1514,7 +1514,7 @@ "label\n" "string.text" msgid "Maximum bar length (%):" -msgstr "" +msgstr "Største søylelengde (%):" #: databaroptions.ui msgctxt "" @@ -1523,7 +1523,7 @@ "label\n" "string.text" msgid "Bar Lengths" -msgstr "" +msgstr "Søylelengder" #: databaroptions.ui msgctxt "" @@ -1532,7 +1532,7 @@ "label\n" "string.text" msgid "Display bar only" -msgstr "" +msgstr "Vis bare søyle" #: databaroptions.ui msgctxt "" @@ -1541,10 +1541,9 @@ "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 @@ "label\n" "string.text" msgid "_Repeat item labels" -msgstr "" +msgstr "_Gjenta elementetiketter" #: datafieldoptionsdialog.ui msgctxt "" @@ -2208,7 +2207,7 @@ "label\n" "string.text" msgid "Contains _totals row" -msgstr "" +msgstr "Inneholder _summeringrekke" #: definedatabaserangedialog.ui msgctxt "" @@ -2298,7 +2297,7 @@ "label\n" "string.text" msgid "Range or formula expression:" -msgstr "" +msgstr "OmrÃ¥de for formeluttrykk:" #: definename.ui msgctxt "" @@ -3102,17 +3101,15 @@ 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 @@ 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 @@ msgstr "HÃ¥ndter som null" #: formulacalculationoptions.ui -#, fuzzy msgctxt "" "formulacalculationoptions.ui\n" "comboConversion\n" @@ -3184,7 +3179,7 @@ "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 @@ "label\n" "string.text" msgid "Contents to Numbers" -msgstr "" +msgstr "Innehold som tall" #: formulacalculationoptions.ui msgctxt "" @@ -3265,20 +3260,18 @@ "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 @@ msgstr "Minste datastørrelse for OpenCL-bruk" #: formulacalculationoptions.ui -#, fuzzy msgctxt "" "formulacalculationoptions.ui\n" "label7\n" @@ -3304,7 +3296,7 @@ "label\n" "string.text" msgid "OpenCL Settings" -msgstr "" +msgstr "OpenCL-innstillinger" #: goalseekdlg.ui msgctxt "" @@ -3325,14 +3317,13 @@ 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 @@ "label\n" "string.text" msgid "Range or formula expression:" -msgstr "" +msgstr "OmrÃ¥de for formeluttrykk:" #: managenamesdialog.ui msgctxt "" @@ -4304,7 +4295,7 @@ "title\n" "string.text" msgid "column" -msgstr "" +msgstr "kolonne" #: movecopysheet.ui msgctxt "" @@ -6554,10 +6545,9 @@ "title\n" "string.text" msgid "Regression" -msgstr "" +msgstr "Regresjon" #: regressiondialog.ui -#, fuzzy msgctxt "" "regressiondialog.ui\n" "variable1-range-label\n" @@ -6567,7 +6557,6 @@ msgstr "OmrÃ¥de for variabel 1:" #: regressiondialog.ui -#, fuzzy msgctxt "" "regressiondialog.ui\n" "variable2-range-label\n" @@ -6577,7 +6566,6 @@ msgstr "OmrÃ¥de for variabel 2:" #: regressiondialog.ui -#, fuzzy msgctxt "" "regressiondialog.ui\n" "output-range-label\n" @@ -6587,7 +6575,6 @@ msgstr "Resultatene til:" #: regressiondialog.ui -#, fuzzy msgctxt "" "regressiondialog.ui\n" "label1\n" @@ -6597,7 +6584,6 @@ msgstr "Data" #: regressiondialog.ui -#, fuzzy msgctxt "" "regressiondialog.ui\n" "groupedby-columns-radio\n" @@ -6607,7 +6593,6 @@ msgstr "Kolonner" #: regressiondialog.ui -#, fuzzy msgctxt "" "regressiondialog.ui\n" "groupedby-rows-radio\n" @@ -6617,7 +6602,6 @@ msgstr "Rader" #: regressiondialog.ui -#, fuzzy msgctxt "" "regressiondialog.ui\n" "label2\n" @@ -6633,7 +6617,7 @@ "label\n" "string.text" msgid "Linear Regression" -msgstr "" +msgstr "Lineær regresjon" #: regressiondialog.ui msgctxt "" @@ -6642,7 +6626,7 @@ "label\n" "string.text" msgid "Logarithmic Regression" -msgstr "" +msgstr "Logaritmisk regresjon" #: regressiondialog.ui msgctxt "" @@ -6651,7 +6635,7 @@ "label\n" "string.text" msgid "Power Regression" -msgstr "" +msgstr "Potensregresjon" #: regressiondialog.ui msgctxt "" @@ -6660,7 +6644,7 @@ "label\n" "string.text" msgid "Output Regression Types" -msgstr "" +msgstr "Regressjonstyper, resultat" #: retypepassdialog.ui msgctxt "" @@ -6678,7 +6662,7 @@ "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 @@ "0\n" "stringlist.text" msgid "Table" -msgstr "" +msgstr "Tabell" #: selectdatasource.ui msgctxt "" @@ -7848,7 +7832,7 @@ "label\n" "string.text" msgid "_Indent:" -msgstr "" +msgstr "_Innrykk:" #: sidebaralignment.ui msgctxt "" @@ -7956,7 +7940,7 @@ "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 @@ "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 @@ "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 @@ 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 @@ msgstr "Angi antallet nuller som skal vises før desimalpunktet." #: sidebarnumberformat.ui -#, fuzzy msgctxt "" "sidebarnumberformat.ui\n" "negativenumbersred\n" @@ -9615,7 +9596,7 @@ "label\n" "string.text" msgid "Number of Formula Groups:" -msgstr "" +msgstr "Tallet pÃ¥ formelgrupper:" #: statisticsinfopage.ui msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/nb/scaddins/source/analysis.po libreoffice-5.1.2~rc2/translations/source/nb/scaddins/source/analysis.po --- libreoffice-5.1.1~rc2/translations/source/nb/scaddins/source/analysis.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/nb/scaddins/source/analysis.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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 @@ "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 @@ "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 @@ "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 @@ 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 @@ "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 @@ 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 @@ "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 @@ "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 @@ "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 -Nru libreoffice-5.1.1~rc2/translations/source/nb/scp2/source/accessories.po libreoffice-5.1.2~rc2/translations/source/nb/scp2/source/accessories.po --- libreoffice-5.1.1~rc2/translations/source/nb/scp2/source/accessories.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/nb/scp2/source/accessories.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 @@ "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 @@ 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 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/nb/scp2/source/ooo.po libreoffice-5.1.2~rc2/translations/source/nb/scp2/source/ooo.po --- libreoffice-5.1.1~rc2/translations/source/nb/scp2/source/ooo.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/nb/scp2/source/ooo.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\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 @@ "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 @@ 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 @@ 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 @@ 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 @@ "STR_NAME_MODULE_LANGPACK_UZ\n" "LngText.text" msgid "Uzbek" -msgstr "Usbek" +msgstr "Usbekisk" #: module_langpack.ulf msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/nb/sd/source/core.po libreoffice-5.1.2~rc2/translations/source/nb/sd/source/core.po --- libreoffice-5.1.1~rc2/translations/source/nb/sd/source/core.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/nb/sd/source/core.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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 @@ "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 @@ "STR_DEAUTHORISE_CLIENT\n" "string.text" msgid "Remove client authorisation" -msgstr "" +msgstr "Fjern klientautoriasasjonen" diff -Nru libreoffice-5.1.1~rc2/translations/source/nb/sd/source/ui/animations.po libreoffice-5.1.2~rc2/translations/source/nb/sd/source/ui/animations.po --- libreoffice-5.1.1~rc2/translations/source/nb/sd/source/ui/animations.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/nb/sd/source/ui/animations.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "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 @@ "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 @@ msgstr "Brukerstier" #: CustomAnimation.src -#, fuzzy msgctxt "" "CustomAnimation.src\n" "STR_SLIDETRANSITION_NONE\n" "string.text" msgid "None" -msgstr "ingen" +msgstr "Ingen" diff -Nru libreoffice-5.1.1~rc2/translations/source/nb/sd/source/ui/app.po libreoffice-5.1.2~rc2/translations/source/nb/sd/source/ui/app.po --- libreoffice-5.1.1~rc2/translations/source/nb/sd/source/ui/app.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/nb/sd/source/ui/app.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\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 @@ "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 @@ 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 @@ msgstr "For~deling …" #: menuids_tmpl.src -#, fuzzy msgctxt "" "menuids_tmpl.src\n" "MN_INSERT_GRAPHIC\n" @@ -206,7 +203,7 @@ "SID_MODIFYPAGE\n" "menuitem.text" msgid "Page ~Layout" -msgstr "" +msgstr "Side~oppsett" #: menuids_tmpl.src msgctxt "" @@ -224,7 +221,7 @@ "SID_PAGESETUP\n" "menuitem.text" msgid "Format ~Slide..." -msgstr "" +msgstr "Format ~Lysbilde..." #: menuids_tmpl.src msgctxt "" @@ -269,7 +266,7 @@ "SID_SELECT_BACKGROUND\n" "menuitem.text" msgid "Set Background Image..." -msgstr "" +msgstr "Sett bakgrunnsbilde …" #: menuids_tmpl.src msgctxt "" @@ -278,10 +275,9 @@ "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 @@ 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 @@ msgstr "~Slett side" #: menuids_tmpl.src -#, fuzzy msgctxt "" "menuids_tmpl.src\n" "MN_RENAME_SLIDE\n" @@ -374,14 +368,13 @@ 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 @@ "SID_OBJECT_ALIGN\n" "menuitem.text" msgid "Al~ign" -msgstr "" +msgstr "Juster" #: menuids_tmpl.src msgctxt "" @@ -840,7 +833,7 @@ "SID_SET_DEFAULT\n" "menuitem.text" msgid "~Default Formatting" -msgstr "" +msgstr "~Standardformatering" #: menuids_tmpl.src msgctxt "" @@ -858,7 +851,7 @@ "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 @@ "SID_OBJECT_CROP\n" "menuitem.text" msgid "Crop I~mage" -msgstr "" +msgstr "Beskjær bilde" #: menuids_tmpl.src msgctxt "" @@ -984,7 +977,7 @@ "SID_RULER\n" "menuitem.text" msgid "View ~Ruler" -msgstr "" +msgstr "Vis ~linjal" #: menuids_tmpl.src msgctxt "" @@ -1110,7 +1103,7 @@ "SID_HIDE_LAST_LEVEL\n" "menuitem.text" msgid "~Hide Last Level" -msgstr "" +msgstr "~Skjul siste nivÃ¥" #: popup.src msgctxt "" @@ -1119,7 +1112,7 @@ "SID_SHOW_NEXT_LEVEL\n" "menuitem.text" msgid "~Show Next Level" -msgstr "" +msgstr "~Vis neste nivÃ¥" #: popup.src msgctxt "" @@ -1559,7 +1552,7 @@ "SfxStyleFamiliesRes1\n" "#define.text" msgid "Graphic Styles" -msgstr "" +msgstr "Grafikkstiler" #: res_bmp.src msgctxt "" @@ -1880,7 +1873,6 @@ msgstr "Lukk mangekant" #: strings.src -#, fuzzy msgctxt "" "strings.src\n" "STR_SLIDE_SORTER_MODE\n" @@ -1889,7 +1881,6 @@ msgstr "Lysbildesortering" #: strings.src -#, fuzzy msgctxt "" "strings.src\n" "STR_NORMAL_MODE\n" @@ -1898,13 +1889,12 @@ 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 @@ "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 @@ "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 @@ "STR_WAV_FILE\n" "string.text" msgid "Audio" -msgstr "" +msgstr "Lyd" #: strings.src msgctxt "" @@ -2410,7 +2398,7 @@ "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 @@ "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 @@ "\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 @@ "STR_CLICK_ACTION_SOUND\n" "string.text" msgid "Play audio" -msgstr "" +msgstr "Spill av lyd" #: strings.src msgctxt "" @@ -2881,7 +2872,7 @@ "STR_EFFECTDLG_SOUND\n" "string.text" msgid "Audio" -msgstr "" +msgstr "Lyd" #: strings.src msgctxt "" @@ -3536,7 +3527,6 @@ msgstr "Bildefilter" #: strings.src -#, fuzzy msgctxt "" "strings.src\n" "STR_WARNING_NOSOUNDFILE\n" @@ -3610,7 +3600,7 @@ "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 @@ "STR_FIELD_PLACEHOLDER_SLIDENAME\n" "string.text" msgid "<slide-name>" -msgstr "" +msgstr "<lysbildenavn>" #: strings.src msgctxt "" @@ -3738,7 +3728,7 @@ "STR_FIELD_PLACEHOLDER_PAGENAME\n" "string.text" msgid "<page-name>" -msgstr "" +msgstr "<sidenavn>" #: strings.src msgctxt "" @@ -3866,7 +3856,7 @@ "STR_GRAPHICS_STYLE_FAMILY\n" "string.text" msgid "Graphic Styles" -msgstr "" +msgstr "Grafiske stiler" #: strings.src msgctxt "" @@ -3986,7 +3976,7 @@ "STR_INSERT_MOVIE\n" "string.text" msgid "Insert Audio or Video" -msgstr "" +msgstr "Sett inn audio eller video" #: strings.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/nb/sd/source/ui/view.po libreoffice-5.1.2~rc2/translations/source/nb/sd/source/ui/view.po --- libreoffice-5.1.1~rc2/translations/source/nb/sd/source/ui/view.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/nb/sd/source/ui/view.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 @@ "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 @@ "According to layout\n" "itemlist.text" msgid "According to layout" -msgstr "" +msgstr "I henhold til utformingen" #: DocumentRenderer.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/nb/sd/uiconfig/sdraw/ui.po libreoffice-5.1.2~rc2/translations/source/nb/sd/uiconfig/sdraw/ui.po --- libreoffice-5.1.1~rc2/translations/source/nb/sd/uiconfig/sdraw/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/nb/sd/uiconfig/sdraw/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: LibO 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 @@ "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 @@ msgstr "Punkttegn" #: bulletsandnumbering.ui -#, fuzzy msgctxt "" "bulletsandnumbering.ui\n" "singlenum\n" @@ -135,14 +134,13 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ "label\n" "string.text" msgid "_X:" -msgstr "" +msgstr "_X:" #: dlgsnap.ui msgctxt "" @@ -321,7 +311,7 @@ "label\n" "string.text" msgid "_Y:" -msgstr "" +msgstr "_Y:" #: dlgsnap.ui msgctxt "" @@ -411,7 +401,7 @@ "label\n" "string.text" msgid "Highlighting" -msgstr "" +msgstr "Utheving" #: drawpagedialog.ui msgctxt "" @@ -585,7 +575,6 @@ msgstr "Punkttegn" #: drawprtldialog.ui -#, fuzzy msgctxt "" "drawprtldialog.ui\n" "RID_SVXPAGE_PICK_SINGLE_NUM\n" @@ -748,17 +737,15 @@ 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 @@ 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 @@ msgstr "Tabellutforming" #: tabledesigndialog.ui -#, fuzzy msgctxt "" "tabledesigndialog.ui\n" "UseFirstRowStyle\n" @@ -923,17 +908,15 @@ 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 @@ 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 @@ 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 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/nb/sd/uiconfig/simpress/ui.po libreoffice-5.1.2~rc2/translations/source/nb/sd/uiconfig/simpress/ui.po --- libreoffice-5.1.1~rc2/translations/source/nb/sd/uiconfig/simpress/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/nb/sd/uiconfig/simpress/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: LibO 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 @@ "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 @@ "title\n" "string.text" msgid "Presentation Wizard" -msgstr "" +msgstr "Presentasjonsveiviseren" #: assistentdialog.ui msgctxt "" @@ -32,7 +32,7 @@ "label\n" "string.text" msgid "<< _Back" -msgstr "" +msgstr "<< _Tilbake" #: assistentdialog.ui msgctxt "" @@ -41,7 +41,7 @@ "label\n" "string.text" msgid "_Next >>" -msgstr "" +msgstr "_Neste >>" #: assistentdialog.ui msgctxt "" @@ -50,7 +50,7 @@ "label\n" "string.text" msgid "Next >>" -msgstr "" +msgstr "Neste >>" #: assistentdialog.ui msgctxt "" @@ -59,7 +59,7 @@ "label\n" "string.text" msgid "_Create" -msgstr "" +msgstr "_Lag" #: assistentdialog.ui msgctxt "" @@ -68,7 +68,7 @@ "label\n" "string.text" msgid "_Empty presentation" -msgstr "" +msgstr "_Tom presentasjon" #: assistentdialog.ui msgctxt "" @@ -77,7 +77,7 @@ "label\n" "string.text" msgid "_From template" -msgstr "" +msgstr "_Fra mal" #: assistentdialog.ui msgctxt "" @@ -86,7 +86,7 @@ "label\n" "string.text" msgid "O_pen existing presentation" -msgstr "" +msgstr "Ã…pne en eksisterende presentasjon" #: assistentdialog.ui msgctxt "" @@ -95,7 +95,7 @@ "label\n" "string.text" msgid "Open..." -msgstr "" +msgstr "Ã…pne..." #: assistentdialog.ui msgctxt "" @@ -107,7 +107,6 @@ msgstr "Type" #: assistentdialog.ui -#, fuzzy msgctxt "" "assistentdialog.ui\n" "layout2Label\n" @@ -123,7 +122,7 @@ "label\n" "string.text" msgid "_Original" -msgstr "" +msgstr "_Original" #: assistentdialog.ui msgctxt "" @@ -132,7 +131,7 @@ "label\n" "string.text" msgid "O_verhead sheet" -msgstr "" +msgstr "Lysbildeark" #: assistentdialog.ui msgctxt "" @@ -141,7 +140,7 @@ "label\n" "string.text" msgid "P_aper" -msgstr "" +msgstr "Papir" #: assistentdialog.ui msgctxt "" @@ -150,7 +149,7 @@ "label\n" "string.text" msgid "Sc_reen" -msgstr "" +msgstr "Skjerm" #: assistentdialog.ui msgctxt "" @@ -159,7 +158,7 @@ "label\n" "string.text" msgid "Sli_de" -msgstr "" +msgstr "Lysbilde" #: assistentdialog.ui msgctxt "" @@ -168,7 +167,7 @@ "label\n" "string.text" msgid "W_idescreen" -msgstr "" +msgstr "Bredskjerm" #: assistentdialog.ui msgctxt "" @@ -177,17 +176,16 @@ "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 @@ "label\n" "string.text" msgid "_Variant:" -msgstr "" +msgstr "Variant:" #: assistentdialog.ui msgctxt "" @@ -214,7 +212,7 @@ "label\n" "string.text" msgid "Select a Slide Transition" -msgstr "" +msgstr "Velg en lysbildeovergang" #: assistentdialog.ui msgctxt "" @@ -232,10 +230,9 @@ "label\n" "string.text" msgid "_Automatic" -msgstr "" +msgstr "_Automatisk" #: assistentdialog.ui -#, fuzzy msgctxt "" "assistentdialog.ui\n" "breakLabel\n" @@ -245,24 +242,22 @@ 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 @@ "label\n" "string.text" msgid "Select the Presentation Type" -msgstr "" +msgstr "Vegl presentasjonstype" #: assistentdialog.ui msgctxt "" @@ -280,7 +275,7 @@ "label\n" "string.text" msgid "Ch_oose your pages" -msgstr "" +msgstr "Velg dine sider" #: assistentdialog.ui msgctxt "" @@ -289,10 +284,9 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "label\n" "string.text" msgid "Describe Your Basic Ideas" -msgstr "" +msgstr "Beskriv dine grunnleggende ideer" #: customanimationcreatedialog.ui msgctxt "" @@ -671,7 +665,6 @@ msgstr "_Retning:" #: customanimationspanel.ui -#, fuzzy msgctxt "" "customanimationspanel.ui\n" "effect_speed\n" @@ -714,7 +707,7 @@ "label\n" "string.text" msgid "_Options..." -msgstr "" +msgstr "_Valg..." #: customanimationspanel.ui msgctxt "" @@ -915,14 +908,13 @@ 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 @@ msgstr "_Start" #: customslideshows.ui -#, fuzzy msgctxt "" "customslideshows.ui\n" "usecustomshows\n" @@ -989,24 +980,22 @@ 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 @@ msgstr "_Variabel" #: dlgfield.ui -#, fuzzy msgctxt "" "dlgfield.ui\n" "label1\n" @@ -1064,14 +1052,13 @@ 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 @@ "title\n" "string.text" msgid "Animation" -msgstr "" +msgstr "Animasjon" #: dockinganimation.ui msgctxt "" @@ -1107,7 +1094,7 @@ "tooltip_text\n" "string.text" msgid "Loop Count" -msgstr "" +msgstr "Antall løkker" #: dockinganimation.ui msgctxt "" @@ -1116,7 +1103,7 @@ "18\n" "stringlist.text" msgid "Max." -msgstr "" +msgstr "Maks." #: dockinganimation.ui msgctxt "" @@ -1125,17 +1112,16 @@ "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 @@ "tooltip_text\n" "string.text" msgid "First Image" -msgstr "" +msgstr "Første bilde" #: dockinganimation.ui msgctxt "" @@ -1153,7 +1139,7 @@ "tooltip_text\n" "string.text" msgid "Backwards" -msgstr "" +msgstr "Bakover" #: dockinganimation.ui msgctxt "" @@ -1162,7 +1148,7 @@ "tooltip_text\n" "string.text" msgid "Stop" -msgstr "" +msgstr "Stopp" #: dockinganimation.ui msgctxt "" @@ -1180,7 +1166,7 @@ "tooltip_text\n" "string.text" msgid "Last Image" -msgstr "" +msgstr "Siste bilde" #: dockinganimation.ui msgctxt "" @@ -1189,7 +1175,7 @@ "label\n" "string.text" msgid "Group object" -msgstr "" +msgstr "Gruppeobjekt" #: dockinganimation.ui msgctxt "" @@ -1198,7 +1184,7 @@ "label\n" "string.text" msgid "Bitmap object" -msgstr "" +msgstr "Bitmap objekt" #: dockinganimation.ui msgctxt "" @@ -1216,7 +1202,7 @@ "0\n" "stringlist.text" msgid "Top Left" -msgstr "" +msgstr "Øverst til venstre" #: dockinganimation.ui msgctxt "" @@ -1225,7 +1211,7 @@ "1\n" "stringlist.text" msgid "Left" -msgstr "" +msgstr "Venstre" #: dockinganimation.ui msgctxt "" @@ -1234,7 +1220,7 @@ "2\n" "stringlist.text" msgid "Bottom Left" -msgstr "" +msgstr "Nederst til venstre" #: dockinganimation.ui msgctxt "" @@ -1243,7 +1229,7 @@ "3\n" "stringlist.text" msgid "Top" -msgstr "" +msgstr "Topp" #: dockinganimation.ui msgctxt "" @@ -1252,7 +1238,7 @@ "4\n" "stringlist.text" msgid "Centered" -msgstr "" +msgstr "Midtstilt" #: dockinganimation.ui msgctxt "" @@ -1261,7 +1247,7 @@ "5\n" "stringlist.text" msgid "Bottom" -msgstr "" +msgstr "Bunn" #: dockinganimation.ui msgctxt "" @@ -1270,7 +1256,7 @@ "6\n" "stringlist.text" msgid "Top Right" -msgstr "" +msgstr "Øverst til høyre" #: dockinganimation.ui msgctxt "" @@ -1279,7 +1265,7 @@ "7\n" "stringlist.text" msgid "Right" -msgstr "" +msgstr "Høyre" #: dockinganimation.ui msgctxt "" @@ -1288,7 +1274,7 @@ "8\n" "stringlist.text" msgid "Bottom Right" -msgstr "" +msgstr "Nede til høyre" #: dockinganimation.ui msgctxt "" @@ -1297,7 +1283,7 @@ "label\n" "string.text" msgid "Animation group" -msgstr "" +msgstr "Animasjonsgruppe" #: dockinganimation.ui msgctxt "" @@ -1306,7 +1292,7 @@ "tooltip_text\n" "string.text" msgid "Apply Object" -msgstr "" +msgstr "Bruk objekt" #: dockinganimation.ui msgctxt "" @@ -1315,7 +1301,7 @@ "tooltip_text\n" "string.text" msgid "Apply Objects Individually" -msgstr "" +msgstr "Bruk objektene hver for seg" #: dockinganimation.ui msgctxt "" @@ -1324,7 +1310,7 @@ "label\n" "string.text" msgid "Number" -msgstr "" +msgstr "Tall" #: dockinganimation.ui msgctxt "" @@ -1333,7 +1319,7 @@ "tooltip_text\n" "string.text" msgid "Delete Current Image" -msgstr "" +msgstr "Slett gjeldende bilde" #: dockinganimation.ui msgctxt "" @@ -1342,7 +1328,7 @@ "tooltip_text\n" "string.text" msgid "Delete All Images" -msgstr "" +msgstr "Slett alle bilder" #: dockinganimation.ui msgctxt "" @@ -1351,7 +1337,7 @@ "label\n" "string.text" msgid "Image" -msgstr "" +msgstr "Bilde" #: dockinganimation.ui msgctxt "" @@ -1360,7 +1346,7 @@ "label\n" "string.text" msgid "Create" -msgstr "" +msgstr "Lag" #: headerfooterdialog.ui msgctxt "" @@ -1369,7 +1355,7 @@ "title\n" "string.text" msgid "Header and Footer" -msgstr "" +msgstr "Topp og bunntekst" #: headerfooterdialog.ui msgctxt "" @@ -1444,24 +1430,22 @@ 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 @@ msgstr "_Lysbildenummer" #: headerfootertab.ui -#, fuzzy msgctxt "" "headerfootertab.ui\n" "include_label\n" @@ -1573,24 +1556,22 @@ 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 @@ msgstr "Bare tekstomrÃ¥det er merket" #: optimpressgeneralpage.ui -#, fuzzy msgctxt "" "optimpressgeneralpage.ui\n" "label2\n" @@ -1729,7 +1709,6 @@ msgstr "Start med _veiviseren" #: optimpressgeneralpage.ui -#, fuzzy msgctxt "" "optimpressgeneralpage.ui\n" "newdoclbl\n" @@ -1748,24 +1727,22 @@ 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 @@ 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 @@ 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 @@ "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 @@ msgstr "_Alle lysbilder" #: presentationdialog.ui -#, fuzzy msgctxt "" "presentationdialog.ui\n" "customslideshow\n" @@ -2134,7 +2105,6 @@ msgstr "Automatisk ekstern (skjerm %1)" #: presentationdialog.ui -#, fuzzy msgctxt "" "presentationdialog.ui\n" "label3\n" @@ -2504,7 +2474,6 @@ msgstr "_Bakside" #: prntopts.ui -#, fuzzy msgctxt "" "prntopts.ui\n" "label3\n" @@ -2601,7 +2570,7 @@ "title\n" "string.text" msgid "HTML Export" -msgstr "" +msgstr "HTML eksport" #: publishingdialog.ui msgctxt "" @@ -2610,7 +2579,7 @@ "label\n" "string.text" msgid "New _design" -msgstr "" +msgstr "Ny utforming" #: publishingdialog.ui msgctxt "" @@ -2619,7 +2588,7 @@ "label\n" "string.text" msgid "Existing design" -msgstr "" +msgstr "Eksisterende utforming" #: publishingdialog.ui msgctxt "" @@ -2628,7 +2597,7 @@ "label\n" "string.text" msgid "Delete Selected Design" -msgstr "" +msgstr "Slett valgt utforming" #: publishingdialog.ui msgctxt "" @@ -2637,7 +2606,7 @@ "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 @@ "label\n" "string.text" msgid "Assign Design" -msgstr "" +msgstr "Tildel utforming" #: publishingdialog.ui msgctxt "" @@ -2655,7 +2624,7 @@ "label\n" "string.text" msgid "_Active Server Pages (ASP)" -msgstr "" +msgstr "_Active Server Pages (ASP)" #: publishingdialog.ui msgctxt "" @@ -2664,7 +2633,7 @@ "label\n" "string.text" msgid "Perl" -msgstr "" +msgstr "Perl" #: publishingdialog.ui msgctxt "" @@ -2673,7 +2642,7 @@ "label\n" "string.text" msgid "_URL for listeners:" -msgstr "" +msgstr "_URL for lyttere_" #: publishingdialog.ui msgctxt "" @@ -2682,7 +2651,7 @@ "label\n" "string.text" msgid "URL for _presentation:" -msgstr "" +msgstr "Nettadresse for presentasjonen:" #: publishingdialog.ui msgctxt "" @@ -2691,7 +2660,7 @@ "label\n" "string.text" msgid "URL for _Perl scripts:" -msgstr "" +msgstr "Nettadresse for Perl-skript:" #: publishingdialog.ui msgctxt "" @@ -2700,7 +2669,7 @@ "label\n" "string.text" msgid "Webcast" -msgstr "" +msgstr "Nettpublisering" #: publishingdialog.ui msgctxt "" @@ -2709,7 +2678,7 @@ "label\n" "string.text" msgid "_As stated in document" -msgstr "" +msgstr "_Som oppgitt i dokumentet" #: publishingdialog.ui msgctxt "" @@ -2718,7 +2687,7 @@ "label\n" "string.text" msgid "_Automatic" -msgstr "" +msgstr "_Automatisk" #: publishingdialog.ui msgctxt "" @@ -2727,7 +2696,7 @@ "label\n" "string.text" msgid "_Slide view time:" -msgstr "" +msgstr "_Visingstid for lysbilde:" #: publishingdialog.ui msgctxt "" @@ -2736,10 +2705,9 @@ "label\n" "string.text" msgid "_Endless" -msgstr "" +msgstr "_Uendelig" #: publishingdialog.ui -#, fuzzy msgctxt "" "publishingdialog.ui\n" "kioskLabel\n" @@ -2755,7 +2723,7 @@ "label\n" "string.text" msgid "Create title page" -msgstr "" +msgstr "Lag tittelside" #: publishingdialog.ui msgctxt "" @@ -2764,7 +2732,7 @@ "label\n" "string.text" msgid "Show notes" -msgstr "" +msgstr "Vis notat" #: publishingdialog.ui msgctxt "" @@ -2782,7 +2750,7 @@ "label\n" "string.text" msgid "_WebCast" -msgstr "" +msgstr "_Nettpublisering" #: publishingdialog.ui msgctxt "" @@ -2791,7 +2759,7 @@ "label\n" "string.text" msgid "_Automatic" -msgstr "" +msgstr "_Automatisk" #: publishingdialog.ui msgctxt "" @@ -2800,7 +2768,7 @@ "label\n" "string.text" msgid "_Single-document HTML" -msgstr "" +msgstr "_Enkeltdokument HTML" #: publishingdialog.ui msgctxt "" @@ -2809,7 +2777,7 @@ "label\n" "string.text" msgid "Standard HTML with _frames" -msgstr "" +msgstr "Standard HTML med rammer" #: publishingdialog.ui msgctxt "" @@ -2818,7 +2786,7 @@ "label\n" "string.text" msgid "Standard H_TML format" -msgstr "" +msgstr "Standard HTML format" #: publishingdialog.ui msgctxt "" @@ -2827,7 +2795,7 @@ "label\n" "string.text" msgid "Publication Type" -msgstr "" +msgstr "Publikasjonstype" #: publishingdialog.ui msgctxt "" @@ -2836,7 +2804,7 @@ "label\n" "string.text" msgid "_PNG" -msgstr "" +msgstr "_PNG" #: publishingdialog.ui msgctxt "" @@ -2845,7 +2813,7 @@ "label\n" "string.text" msgid "_GIF" -msgstr "" +msgstr "_GIF" #: publishingdialog.ui msgctxt "" @@ -2854,17 +2822,16 @@ "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 @@ "label\n" "string.text" msgid "Save Images As" -msgstr "" +msgstr "Lagre Bilder Som" #: publishingdialog.ui msgctxt "" @@ -2882,7 +2849,7 @@ "label\n" "string.text" msgid "Low (_640 × 480 pixels)" -msgstr "" +msgstr "Lav (_640 × 480 piksler)" #: publishingdialog.ui msgctxt "" @@ -2891,7 +2858,7 @@ "label\n" "string.text" msgid "Medium (_800 × 600 pixels)" -msgstr "" +msgstr "Medium (_800 × 600 piksler)" #: publishingdialog.ui msgctxt "" @@ -2900,7 +2867,7 @@ "label\n" "string.text" msgid "High (_1024 × 768 pixels)" -msgstr "" +msgstr "Høy (_1024 × 768 piksler)" #: publishingdialog.ui msgctxt "" @@ -2909,7 +2876,7 @@ "label\n" "string.text" msgid "Monitor Resolution" -msgstr "" +msgstr "Skjermoppløsing" #: publishingdialog.ui msgctxt "" @@ -2918,7 +2885,7 @@ "label\n" "string.text" msgid "_Export sounds when slide advances" -msgstr "" +msgstr "_Ta med lydeffekter ved lysbildeskifte" #: publishingdialog.ui msgctxt "" @@ -2927,17 +2894,16 @@ "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 @@ "label\n" "string.text" msgid "_Author:" -msgstr "" +msgstr "_Forfatter:" #: publishingdialog.ui msgctxt "" @@ -2955,7 +2921,7 @@ "label\n" "string.text" msgid "E-_mail address:" -msgstr "" +msgstr "E-postadresse:" #: publishingdialog.ui msgctxt "" @@ -2964,7 +2930,7 @@ "label\n" "string.text" msgid "Your hom_epage:" -msgstr "" +msgstr "Din hjemmeside:" #: publishingdialog.ui msgctxt "" @@ -2973,7 +2939,7 @@ "label\n" "string.text" msgid "Additional _information:" -msgstr "" +msgstr "Tilleggsinformasjon:" #: publishingdialog.ui msgctxt "" @@ -2982,7 +2948,7 @@ "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 @@ "label\n" "string.text" msgid "Information for the Title Page" -msgstr "" +msgstr "Informasjon for tittelsiden" #: publishingdialog.ui msgctxt "" @@ -3000,7 +2966,7 @@ "label\n" "string.text" msgid "_Text only" -msgstr "" +msgstr "_Bare tekst" #: publishingdialog.ui msgctxt "" @@ -3009,7 +2975,7 @@ "label\n" "string.text" msgid "Select Button Style" -msgstr "" +msgstr "Velg knappestil" #: publishingdialog.ui msgctxt "" @@ -3018,7 +2984,7 @@ "label\n" "string.text" msgid "_Apply color scheme from document" -msgstr "" +msgstr "_Bruk fargeoppsett fra dokumentet" #: publishingdialog.ui msgctxt "" @@ -3027,7 +2993,7 @@ "label\n" "string.text" msgid "Use _browser colors" -msgstr "" +msgstr "Bruk nettleserfarger" #: publishingdialog.ui msgctxt "" @@ -3036,7 +3002,7 @@ "label\n" "string.text" msgid "_Use custom color scheme" -msgstr "" +msgstr "Bruk eget fargeoppsett" #: publishingdialog.ui msgctxt "" @@ -3045,7 +3011,7 @@ "label\n" "string.text" msgid "_Visited Link" -msgstr "" +msgstr "_Besøkt lenke" #: publishingdialog.ui msgctxt "" @@ -3054,7 +3020,7 @@ "label\n" "string.text" msgid "Active Li_nk" -msgstr "" +msgstr "Aktiv lenke" #: publishingdialog.ui msgctxt "" @@ -3063,7 +3029,7 @@ "label\n" "string.text" msgid "Hyper_link" -msgstr "" +msgstr "Hyperlenke" #: publishingdialog.ui msgctxt "" @@ -3081,7 +3047,7 @@ "label\n" "string.text" msgid "Bac_kground" -msgstr "" +msgstr "Bakgrunn" #: publishingdialog.ui msgctxt "" @@ -3090,7 +3056,7 @@ "label\n" "string.text" msgid "Select Color Scheme" -msgstr "" +msgstr "Velg fargeoppsett" #: publishingdialog.ui msgctxt "" @@ -3099,7 +3065,7 @@ "label\n" "string.text" msgid "<< Back" -msgstr "" +msgstr "<<Tilbake" #: publishingdialog.ui msgctxt "" @@ -3108,7 +3074,7 @@ "label\n" "string.text" msgid "Ne_xt >>" -msgstr "" +msgstr "Neste >>" #: publishingdialog.ui msgctxt "" @@ -3117,7 +3083,7 @@ "label\n" "string.text" msgid "_Create" -msgstr "" +msgstr "_Opprett" #: remotedialog.ui msgctxt "" @@ -3135,7 +3101,7 @@ "label\n" "string.text" msgid "Connections" -msgstr "" +msgstr "Tilkoblinger" #: sdviewpage.ui msgctxt "" @@ -3156,14 +3122,13 @@ 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 @@ msgstr "_Slett ubrukte bakgrunner" #: slidedesigndialog.ui -#, fuzzy msgctxt "" "slidedesigndialog.ui\n" "label1\n" @@ -3275,7 +3239,6 @@ msgstr "Lyd:" #: slidetransitionspanel.ui -#, fuzzy msgctxt "" "slidetransitionspanel.ui\n" "sound_list\n" @@ -3285,7 +3248,6 @@ msgstr "Ingen lyd" #: slidetransitionspanel.ui -#, fuzzy msgctxt "" "slidetransitionspanel.ui\n" "sound_list\n" @@ -3295,7 +3257,6 @@ msgstr "Stopp forrige lyd" #: slidetransitionspanel.ui -#, fuzzy msgctxt "" "slidetransitionspanel.ui\n" "sound_list\n" @@ -3320,10 +3281,9 @@ "label\n" "string.text" msgid "Variant" -msgstr "" +msgstr "Variant" #: slidetransitionspanel.ui -#, fuzzy msgctxt "" "slidetransitionspanel.ui\n" "label1\n" @@ -3342,17 +3302,15 @@ 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 @@ "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 @@ msgstr "Spill av" #: tabledesignpanel.ui -#, fuzzy msgctxt "" "tabledesignpanel.ui\n" "UseFirstRowStyle\n" @@ -3400,17 +3356,15 @@ 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 @@ 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 @@ 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 @@ "title\n" "string.text" msgid "Graphic Styles" -msgstr "" +msgstr "Grafiske stiler" #: templatedialog.ui msgctxt "" @@ -3522,14 +3473,13 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/nb/sfx2/source/appl.po libreoffice-5.1.2~rc2/translations/source/nb/sfx2/source/appl.po --- libreoffice-5.1.1~rc2/translations/source/nb/sfx2/source/appl.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/nb/sfx2/source/appl.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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 @@ "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 @@ "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 -Nru libreoffice-5.1.1~rc2/translations/source/nb/sfx2/source/sidebar.po libreoffice-5.1.2~rc2/translations/source/nb/sfx2/source/sidebar.po --- libreoffice-5.1.1~rc2/translations/source/nb/sfx2/source/sidebar.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/nb/sfx2/source/sidebar.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 @@ "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 @@ "SFX_STR_SIDEBAR_SETTINGS\n" "string.text" msgid "Sidebar Settings" -msgstr "" +msgstr "Innstillinger for sidepanelet" diff -Nru libreoffice-5.1.1~rc2/translations/source/nb/sfx2/uiconfig/ui.po libreoffice-5.1.2~rc2/translations/source/nb/sfx2/uiconfig/ui.po --- libreoffice-5.1.1~rc2/translations/source/nb/sfx2/uiconfig/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/nb/sfx2/uiconfig/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 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 @@ "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 @@ "label\n" "string.text" msgid "Use %DEFAULTEXTENSION _Format" -msgstr "" +msgstr "Bruk %DEFAULTEXTENSION _Formatet" #: alienwarndialog.ui msgctxt "" @@ -62,14 +62,13 @@ 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 @@ "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 @@ "label\n" "string.text" msgid "Reset Properties" -msgstr "" +msgstr "Tilbakestill egenskapene" #: documentinfopage.ui msgctxt "" @@ -747,7 +746,6 @@ msgstr "_Vis lisens" #: licensedialog.ui -#, fuzzy msgctxt "" "licensedialog.ui\n" "label\n" @@ -952,7 +950,7 @@ "label\n" "string.text" msgid "Edit Style" -msgstr "" +msgstr "Rediger stil" #: managestylepage.ui msgctxt "" @@ -961,7 +959,7 @@ "label\n" "string.text" msgid "Edit Style" -msgstr "" +msgstr "Rediger Stil" #: managestylepage.ui msgctxt "" @@ -1546,7 +1544,7 @@ "label\n" "string.text" msgid "Remote File_s" -msgstr "" +msgstr "Eksterne Filer" #: startcenter.ui msgctxt "" @@ -1576,7 +1574,6 @@ msgstr "Lag:" #: startcenter.ui -#, fuzzy msgctxt "" "startcenter.ui\n" "writer_all\n" @@ -1586,54 +1583,49 @@ 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 @@ "label\n" "string.text" msgid "He_lp" -msgstr "" +msgstr "Hje_lp" #: startcenter.ui msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/nb/starmath/source.po libreoffice-5.1.2~rc2/translations/source/nb/starmath/source.po --- libreoffice-5.1.1~rc2/translations/source/nb/starmath/source.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/nb/starmath/source.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\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 @@ "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 @@ "RID_XOTIMESY_HELP\n" "string.text" msgid "Tensor Product" -msgstr "" +msgstr "Tensorprodukt" #: commands.src msgctxt "" @@ -1158,7 +1158,7 @@ "RID_COLORX_AQUA_HELP\n" "string.text" msgid "Color Aqua" -msgstr "" +msgstr "Farge cyanblÃ¥" #: commands.src msgctxt "" @@ -1166,7 +1166,7 @@ "RID_COLORX_FUCHSIA_HELP\n" "string.text" msgid "Color Fuchsia" -msgstr "" +msgstr "Farge magentarød" #: commands.src msgctxt "" @@ -1174,7 +1174,7 @@ "RID_COLORX_GRAY_HELP\n" "string.text" msgid "Color Gray" -msgstr "" +msgstr "Farge GrÃ¥" #: commands.src msgctxt "" @@ -1182,7 +1182,7 @@ "RID_COLORX_LIME_HELP\n" "string.text" msgid "Color Lime" -msgstr "" +msgstr "Farge Lime" #: commands.src msgctxt "" @@ -1190,7 +1190,7 @@ "RID_COLORX_MAROON_HELP\n" "string.text" msgid "Color Maroon" -msgstr "" +msgstr "Farge rødbrun" #: commands.src msgctxt "" @@ -1198,7 +1198,7 @@ "RID_COLORX_NAVY_HELP\n" "string.text" msgid "Color Navy" -msgstr "" +msgstr "Farge marineblÃ¥" #: commands.src msgctxt "" @@ -1206,7 +1206,7 @@ "RID_COLORX_OLIVE_HELP\n" "string.text" msgid "Color Olive" -msgstr "" +msgstr "Farge olivengrønn" #: commands.src msgctxt "" @@ -1214,7 +1214,7 @@ "RID_COLORX_PURPLE_HELP\n" "string.text" msgid "Color Purple" -msgstr "" +msgstr "Farge lilla" #: commands.src msgctxt "" @@ -1222,7 +1222,7 @@ "RID_COLORX_SILVER_HELP\n" "string.text" msgid "Color Silver" -msgstr "" +msgstr "Farge Sølv" #: commands.src msgctxt "" @@ -1230,7 +1230,7 @@ "RID_COLORX_TEAL_HELP\n" "string.text" msgid "Color Teal" -msgstr "" +msgstr "Farge Mørk GrønnblÃ¥" #: commands.src msgctxt "" @@ -2243,7 +2243,7 @@ "STR_AQUA\n" "string.text" msgid "aqua" -msgstr "" +msgstr "CyanblÃ¥" #: smres.src msgctxt "" @@ -2251,7 +2251,7 @@ "STR_FUCHSIA\n" "string.text" msgid "fuchsia" -msgstr "" +msgstr "Magentarød" #: smres.src msgctxt "" @@ -2259,7 +2259,7 @@ "STR_GRAY\n" "string.text" msgid "gray" -msgstr "" +msgstr "GrÃ¥" #: smres.src msgctxt "" @@ -2267,7 +2267,7 @@ "STR_LIME\n" "string.text" msgid "lime" -msgstr "" +msgstr "Lime" #: smres.src msgctxt "" @@ -2275,7 +2275,7 @@ "STR_MAROON\n" "string.text" msgid "maroon" -msgstr "" +msgstr "Rødbrun" #: smres.src msgctxt "" @@ -2283,7 +2283,7 @@ "STR_NAVY\n" "string.text" msgid "navy" -msgstr "" +msgstr "MarineblÃ¥" #: smres.src msgctxt "" @@ -2291,7 +2291,7 @@ "STR_OLIVE\n" "string.text" msgid "olive" -msgstr "" +msgstr "olivengrønn" #: smres.src msgctxt "" @@ -2299,7 +2299,7 @@ "STR_PURPLE\n" "string.text" msgid "purple" -msgstr "" +msgstr "lilla" #: smres.src msgctxt "" @@ -2307,7 +2307,7 @@ "STR_SILVER\n" "string.text" msgid "silver" -msgstr "" +msgstr "sølv" #: smres.src msgctxt "" @@ -2315,7 +2315,7 @@ "STR_TEAL\n" "string.text" msgid "teal" -msgstr "" +msgstr "blÃ¥grønn" #: smres.src msgctxt "" @@ -4725,7 +4725,6 @@ msgstr "Mellomrom" #: toolbox.src -#, fuzzy msgctxt "" "toolbox.src\n" "TOOLBOX_CAT_I\n" diff -Nru libreoffice-5.1.1~rc2/translations/source/nb/starmath/uiconfig/smath/ui.po libreoffice-5.1.2~rc2/translations/source/nb/starmath/uiconfig/smath/ui.po --- libreoffice-5.1.1~rc2/translations/source/nb/starmath/uiconfig/smath/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/nb/starmath/uiconfig/smath/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: LibO 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 @@ "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 @@ 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 @@ "title\n" "string.text" msgid "Elements" -msgstr "" +msgstr "Elementer" #: fontdialog.ui msgctxt "" @@ -198,67 +197,60 @@ 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 @@ 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 @@ 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 @@ "label\n" "string.text" msgid "S_ans-serif:" -msgstr "" +msgstr "S_ans-serif:" #: fonttypedialog.ui msgctxt "" @@ -370,10 +356,9 @@ "label\n" "string.text" msgid "F_ixed-width:" -msgstr "" +msgstr "_Fastbredde:" #: fonttypedialog.ui -#, fuzzy msgctxt "" "fonttypedialog.ui\n" "customL\n" @@ -434,7 +419,7 @@ "label\n" "string.text" msgid "S_ans-serif" -msgstr "" +msgstr "S_ans-serif" #: fonttypedialog.ui msgctxt "" @@ -443,7 +428,7 @@ "label\n" "string.text" msgid "Fixe_d-width" -msgstr "" +msgstr "_Fast bredde:" #: printeroptions.ui msgctxt "" @@ -500,14 +485,13 @@ 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 @@ msgstr "_Kantlinje" #: smathsettings.ui -#, fuzzy msgctxt "" "smathsettings.ui\n" "label4\n" @@ -601,17 +584,15 @@ 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 @@ "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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ msgstr "Rediger symboler" #: symdefinedialog.ui -#, fuzzy msgctxt "" "symdefinedialog.ui\n" "oldSymbolSetText\n" @@ -1142,44 +1097,40 @@ 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 @@ "label\n" "string.text" msgid "S_tyle:" -msgstr "" +msgstr "Stil:" #: symdefinedialog.ui msgctxt "" @@ -1197,7 +1148,7 @@ "label\n" "string.text" msgid "S_ubset:" -msgstr "" +msgstr "Undergruppe:" #: symdefinedialog.ui msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/nb/svtools/source/contnr.po libreoffice-5.1.2~rc2/translations/source/nb/svtools/source/contnr.po --- libreoffice-5.1.1~rc2/translations/source/nb/svtools/source/contnr.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/nb/svtools/source/contnr.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,17 +4,17 @@ "Project-Id-Version: PACKAGE VERSION\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 @@ "STR_SVT_FILEVIEW_COLUMN_TITLE\n" "string.text" msgid "Name" -msgstr "" +msgstr "Navn" #: fileview.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/nb/svtools/source/control.po libreoffice-5.1.2~rc2/translations/source/nb/svtools/source/control.po --- libreoffice-5.1.1~rc2/translations/source/nb/svtools/source/control.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/nb/svtools/source/control.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 @@ "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 @@ "STR_TABBAR_PUSHBUTTON_ADDTAB\n" "string.text" msgid "Add" -msgstr "" +msgstr "Legg til" #: ruler.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/nb/svtools/source/dialogs.po libreoffice-5.1.2~rc2/translations/source/nb/svtools/source/dialogs.po --- libreoffice-5.1.1~rc2/translations/source/nb/svtools/source/dialogs.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/nb/svtools/source/dialogs.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "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 @@ "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 @@ "STR_SVT_DEFAULT_SERVICE_LABEL\n" "string.text" msgid "$user$'s $service$" -msgstr "" +msgstr "$user$'s $service$" #: formats.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/nb/svtools/source/misc.po libreoffice-5.1.2~rc2/translations/source/nb/svtools/source/misc.po --- libreoffice-5.1.1~rc2/translations/source/nb/svtools/source/misc.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/nb/svtools/source/misc.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "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 @@ "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 @@ "LANGUAGE_USER_CHURCH_SLAVIC\n" "pairedlist.text" msgid "Church Slavic" -msgstr "" +msgstr "Kirkeslavisk" #: langtab.src msgctxt "" @@ -2232,7 +2232,6 @@ msgstr "Sardisk" #: langtab.src -#, fuzzy msgctxt "" "langtab.src\n" "STR_ARR_SVT_LANGUAGE_TABLE\n" @@ -2815,7 +2814,7 @@ "LANGUAGE_GUARANI_PARAGUAY\n" "pairedlist.text" msgid "Guarani (Paraguay)" -msgstr "" +msgstr "Guaraní (Paraguay)" #: langtab.src msgctxt "" @@ -3778,27 +3777,25 @@ "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 @@ "LANGUAGE_USER_ARPITAN_FRANCE\n" "pairedlist.text" msgid "Arpitan (France)" -msgstr "" +msgstr "Arpitansk (Frankrike)" #: langtab.src msgctxt "" @@ -3816,17 +3813,16 @@ "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 @@ "LANGUAGE_USER_ENGLISH_BOTSWANA\n" "pairedlist.text" msgid "English (Botswana)" -msgstr "" +msgstr "Engelsk (Botswana)" #: svtools.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/nb/svtools/uiconfig/ui.po libreoffice-5.1.2~rc2/translations/source/nb/svtools/uiconfig/ui.po --- libreoffice-5.1.1~rc2/translations/source/nb/svtools/uiconfig/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/nb/svtools/uiconfig/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 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 @@ "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 @@ "title\n" "string.text" msgid "Image Options" -msgstr "" +msgstr "Innstillingar for bilder" #: GraphicExportOptionsDialog.ui msgctxt "" @@ -98,7 +98,6 @@ msgstr "Maler: Adressebokoppgaver" #: addresstemplatedialog.ui -#, fuzzy msgctxt "" "addresstemplatedialog.ui\n" "label33\n" @@ -108,14 +107,13 @@ 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 @@ msgstr "Komprimering" #: graphicexport.ui -#, fuzzy msgctxt "" "graphicexport.ui\n" "rlecb\n" @@ -299,7 +296,6 @@ msgstr "Tegnkoding" #: graphicexport.ui -#, fuzzy msgctxt "" "graphicexport.ui\n" "tiffpreviewcb\n" @@ -516,24 +512,22 @@ 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 @@ "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 @@ "label\n" "string.text" msgid "Secure connection" -msgstr "" +msgstr "Sikker tilkobling" #: placeedit.ui msgctxt "" @@ -580,7 +572,7 @@ "label\n" "string.text" msgid "User:" -msgstr "" +msgstr "Bruker:" #: placeedit.ui msgctxt "" @@ -589,17 +581,16 @@ "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 @@ "label\n" "string.text" msgid "Password:" -msgstr "" +msgstr "Passord:" #: placeedit.ui msgctxt "" @@ -617,7 +608,7 @@ "label\n" "string.text" msgid "Remember password" -msgstr "" +msgstr "Husk passordet" #: placeedit.ui msgctxt "" @@ -674,54 +665,49 @@ 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 @@ msgstr "Omstart av %PRODUCTNAME" #: restartdialog.ui -#, fuzzy msgctxt "" "restartdialog.ui\n" "yes\n" @@ -815,7 +800,6 @@ msgstr "Start pÃ¥ nytt nÃ¥" #: restartdialog.ui -#, fuzzy msgctxt "" "restartdialog.ui\n" "no\n" @@ -852,14 +836,13 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/nb/svx/inc.po libreoffice-5.1.2~rc2/translations/source/nb/svx/inc.po --- libreoffice-5.1.1~rc2/translations/source/nb/svx/inc.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/nb/svx/inc.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 @@ "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 @@ "ITEM_OBJECT_CROP\n" "#define.text" msgid "Crop I~mage" -msgstr "" +msgstr "Beskjær bilde" #: globlmn_tmpl.hrc msgctxt "" @@ -398,7 +398,7 @@ "ITEM_CHANGE_PICTURE\n" "#define.text" msgid "Replace Image..." -msgstr "" +msgstr "Erstatt Bilde" #: globlmn_tmpl.hrc msgctxt "" @@ -451,7 +451,7 @@ "SID_EQUALIZEWIDTH\n" "menuitem.text" msgid "Equalize ~Width" -msgstr "" +msgstr "Samme bredde" #: globlmn_tmpl.hrc msgctxt "" @@ -460,7 +460,7 @@ "SID_EQUALIZEHEIGHT\n" "menuitem.text" msgid "Equalize ~Height" -msgstr "" +msgstr "Samme høyde" #: globlmn_tmpl.hrc msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/nb/svx/source/dialog.po libreoffice-5.1.2~rc2/translations/source/nb/svx/source/dialog.po --- libreoffice-5.1.1~rc2/translations/source/nb/svx/source/dialog.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/nb/svx/source/dialog.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "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 @@ "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 @@ msgstr "Bytt" #: docrecovery.src -#, fuzzy msgctxt "" "docrecovery.src\n" "RID_SVXSTR_QUERY_EXIT_RECOVERY\n" @@ -913,7 +912,6 @@ msgstr "<Alle>" #: sdstring.src -#, fuzzy msgctxt "" "sdstring.src\n" "STR_INSERT_SOUND_TITLE\n" @@ -1791,7 +1789,7 @@ "RID_SVXSTR_GRDT70\n" "string.text" msgid "Tango Green" -msgstr "" +msgstr "Tango grønn" #: sdstring.src msgctxt "" @@ -1799,7 +1797,7 @@ "RID_SVXSTR_GRDT71\n" "string.text" msgid "Subtle Tango Green" -msgstr "" +msgstr "Avdempet Tango grønn" #: sdstring.src msgctxt "" @@ -1807,7 +1805,7 @@ "RID_SVXSTR_GRDT72\n" "string.text" msgid "Tango Purple" -msgstr "" +msgstr "Tango lilla" #: sdstring.src msgctxt "" @@ -1815,7 +1813,7 @@ "RID_SVXSTR_GRDT73\n" "string.text" msgid "Tango Red" -msgstr "" +msgstr "Skarlagensrød" #: sdstring.src msgctxt "" @@ -1823,7 +1821,7 @@ "RID_SVXSTR_GRDT74\n" "string.text" msgid "Tango Blue" -msgstr "" +msgstr "Tango: HimmelblÃ¥" #: sdstring.src msgctxt "" @@ -1831,10 +1829,9 @@ "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 @@ "RID_SVXSTR_GRDT77\n" "string.text" msgid "Tango Gray" -msgstr "" +msgstr "Tango grÃ¥" #: sdstring.src msgctxt "" @@ -1856,7 +1853,7 @@ "RID_SVXSTR_GRDT78\n" "string.text" msgid "Clay" -msgstr "" +msgstr "Sandfarge" #: sdstring.src msgctxt "" @@ -1864,7 +1861,7 @@ "RID_SVXSTR_GRDT79\n" "string.text" msgid "Olive Green" -msgstr "" +msgstr "Olivengrønn" #: sdstring.src msgctxt "" @@ -1872,7 +1869,7 @@ "RID_SVXSTR_GRDT80\n" "string.text" msgid "Silver" -msgstr "" +msgstr "Sølv" #: sdstring.src msgctxt "" @@ -1880,7 +1877,7 @@ "RID_SVXSTR_GRDT81\n" "string.text" msgid "Sunburst" -msgstr "" +msgstr "Soloppgang" #: sdstring.src msgctxt "" @@ -1888,7 +1885,7 @@ "RID_SVXSTR_GRDT82\n" "string.text" msgid "Brownie" -msgstr "" +msgstr "Brownie" #: sdstring.src msgctxt "" @@ -1896,7 +1893,7 @@ "RID_SVXSTR_GRDT83\n" "string.text" msgid "Sunset" -msgstr "" +msgstr "Solnedgang" #: sdstring.src msgctxt "" @@ -1904,7 +1901,7 @@ "RID_SVXSTR_GRDT84\n" "string.text" msgid "Deep Green" -msgstr "" +msgstr "Mørke grønn" #: sdstring.src msgctxt "" @@ -1912,7 +1909,7 @@ "RID_SVXSTR_GRDT85\n" "string.text" msgid "Deep Orange" -msgstr "" +msgstr "Dyp oransje" #: sdstring.src msgctxt "" @@ -1920,7 +1917,7 @@ "RID_SVXSTR_GRDT86\n" "string.text" msgid "Deep Blue" -msgstr "" +msgstr "Mørke blÃ¥" #: sdstring.src msgctxt "" @@ -1928,7 +1925,7 @@ "RID_SVXSTR_GRDT87\n" "string.text" msgid "Purple Haze" -msgstr "" +msgstr "Lilla dis" #: sdstring.src msgctxt "" @@ -2790,7 +2787,6 @@ msgstr "Ikke gjenopprettet ennÃ¥" #: sdstring.src -#, fuzzy msgctxt "" "sdstring.src\n" "RID_SVXSTR_RECOVERY_INPROGRESS\n" @@ -2799,7 +2795,6 @@ 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 @@ 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 @@ "RTL_TEXTENCODING_MS_1258\n" "pairedlist.text" msgid "Vietnamese (Windows-1258)" -msgstr "" +msgstr "Vietnamesisk (Windows-1258)" #: txenctab.src msgctxt "" @@ -6160,7 +6154,7 @@ "RID_SUBSETSTR_BASSA_VAH\n" "string.text" msgid "Bassa Vah" -msgstr "" +msgstr "Bassa Vah" #: ucsubset.src msgctxt "" @@ -6169,7 +6163,7 @@ "RID_SUBSETSTR_CAUCASIAN_ALBANIAN\n" "string.text" msgid "Caucasian Albanian" -msgstr "" +msgstr "Kaukasisk albansk" #: ucsubset.src msgctxt "" @@ -6178,10 +6172,9 @@ "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 @@ "RID_SUBSETSTR_DUPLOYAN\n" "string.text" msgid "Duployan" -msgstr "" +msgstr "Duployan" #: ucsubset.src msgctxt "" @@ -6206,7 +6199,7 @@ "RID_SUBSETSTR_ELBASAN\n" "string.text" msgid "Elbasan" -msgstr "" +msgstr "Elbasan" #: ucsubset.src msgctxt "" @@ -6215,7 +6208,7 @@ "RID_SUBSETSTR_GEOMETRIC_SHAPES_EXTENDED\n" "string.text" msgid "Geometric Shapes Extended" -msgstr "" +msgstr "Utvidede geometriske former" #: ucsubset.src msgctxt "" @@ -6224,7 +6217,7 @@ "RID_SUBSETSTR_GRANTHA\n" "string.text" msgid "Grantha" -msgstr "" +msgstr "Grantha" #: ucsubset.src msgctxt "" @@ -6233,7 +6226,7 @@ "RID_SUBSETSTR_KHOJKI\n" "string.text" msgid "Khojki" -msgstr "" +msgstr "Khojki" #: ucsubset.src msgctxt "" @@ -6242,10 +6235,9 @@ "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 @@ "RID_SUBSETSTR_LINEAR_A\n" "string.text" msgid "Linear A" -msgstr "" +msgstr "Linjær A" #: ucsubset.src msgctxt "" @@ -6270,7 +6262,7 @@ "RID_SUBSETSTR_MAHAJANI\n" "string.text" msgid "Mahajani" -msgstr "" +msgstr "Mahajani" #: ucsubset.src msgctxt "" @@ -6279,7 +6271,7 @@ "RID_SUBSETSTR_MANICHAEAN\n" "string.text" msgid "Manichaean" -msgstr "" +msgstr "Manichaean" #: ucsubset.src msgctxt "" @@ -6288,7 +6280,7 @@ "RID_SUBSETSTR_MENDE_KIKAKUI\n" "string.text" msgid "Mende Kikakui" -msgstr "" +msgstr "Mende Kikakui" #: ucsubset.src msgctxt "" @@ -6297,7 +6289,7 @@ "RID_SUBSETSTR_MODI\n" "string.text" msgid "Modi" -msgstr "" +msgstr "Modi" #: ucsubset.src msgctxt "" @@ -6306,17 +6298,16 @@ "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 @@ "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 @@ "RID_SUBSETSTR_OLD_PERMIC\n" "string.text" msgid "Old Permic" -msgstr "" +msgstr "Gammelpermisk" #: ucsubset.src msgctxt "" @@ -6353,7 +6343,7 @@ "RID_SUBSETSTR_ORNAMENTAL_DINGBATS\n" "string.text" msgid "Ornamental Dingbats" -msgstr "" +msgstr "Ornamentiske dingbats" #: ucsubset.src msgctxt "" @@ -6362,7 +6352,7 @@ "RID_SUBSETSTR_PAHAWH_HMONG\n" "string.text" msgid "Pahawh Hmong" -msgstr "" +msgstr "Pahawh Hmong" #: ucsubset.src msgctxt "" @@ -6371,7 +6361,7 @@ "RID_SUBSETSTR_PALMYRENE\n" "string.text" msgid "Palmyrene" -msgstr "" +msgstr "Palmyrene" #: ucsubset.src msgctxt "" @@ -6380,7 +6370,7 @@ "RID_SUBSETSTR_PAU_CIN_HAU\n" "string.text" msgid "Pau Cin Hau" -msgstr "" +msgstr "Pau Cin Hau" #: ucsubset.src msgctxt "" @@ -6389,7 +6379,7 @@ "RID_SUBSETSTR_PSALTER_PAHLAVI\n" "string.text" msgid "Psalter Pahlavi" -msgstr "" +msgstr "Psalter Pahlavi" #: ucsubset.src msgctxt "" @@ -6398,7 +6388,7 @@ "RID_SUBSETSTR_SHORTHAND_FORMAT_CONTROLS\n" "string.text" msgid "Shorthand Format Controls" -msgstr "" +msgstr "Stenografi format controller" #: ucsubset.src msgctxt "" @@ -6407,7 +6397,7 @@ "RID_SUBSETSTR_SIDDHAM\n" "string.text" msgid "Siddham" -msgstr "" +msgstr "Siddham" #: ucsubset.src msgctxt "" @@ -6416,17 +6406,16 @@ "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 @@ "RID_SUBSETSTR_TIRHUTA\n" "string.text" msgid "Tirhuta" -msgstr "" +msgstr "Tirhuta" #: ucsubset.src msgctxt "" @@ -6444,7 +6433,7 @@ "RID_SUBSETSTR_WARANG_CITI\n" "string.text" msgid "Warang Citi" -msgstr "" +msgstr "Warang Citi" #: ucsubset.src msgctxt "" @@ -6453,7 +6442,7 @@ "RID_SUBSETSTR_AHOM\n" "string.text" msgid "Ahom" -msgstr "" +msgstr "Ahom" #: ucsubset.src msgctxt "" @@ -6462,7 +6451,7 @@ "RID_SUBSETSTR_ANATOLIAN_HIEROGLYPHS\n" "string.text" msgid "Anatolian Hieroglyphs" -msgstr "" +msgstr "Anatoliske hieroglyfer" #: ucsubset.src msgctxt "" @@ -6471,17 +6460,16 @@ "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 @@ "RID_SUBSETSTR_EARLY_DYNASTIC_CUNEIFORM\n" "string.text" msgid "Early Dynastic Cuneiform" -msgstr "" +msgstr "Tidlig dynastisk kileskrift" #: ucsubset.src msgctxt "" @@ -6499,7 +6487,7 @@ "RID_SUBSETSTR_HATRAN\n" "string.text" msgid "Hatran" -msgstr "" +msgstr "Hatran" #: ucsubset.src msgctxt "" @@ -6508,7 +6496,7 @@ "RID_SUBSETSTR_MULTANI\n" "string.text" msgid "Multani" -msgstr "" +msgstr "Multani" #: ucsubset.src msgctxt "" @@ -6517,7 +6505,7 @@ "RID_SUBSETSTR_OLD_HUNGARIAN\n" "string.text" msgid "Old Hungarian" -msgstr "" +msgstr "Gammael Ungarsk" #: ucsubset.src msgctxt "" @@ -6526,7 +6514,7 @@ "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 @@ "RID_SUBSETSTR_SUTTON_SIGNWRITING\n" "string.text" msgid "Sutton Signwriting" -msgstr "" +msgstr "Sutton signwriting" diff -Nru libreoffice-5.1.1~rc2/translations/source/nb/svx/source/form.po libreoffice-5.1.2~rc2/translations/source/nb/svx/source/form.po --- libreoffice-5.1.1~rc2/translations/source/nb/svx/source/form.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/nb/svx/source/form.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "\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 @@ "\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 @@ "RID_STR_OBJECT_LABEL\n" "string.text" msgid "#object# label" -msgstr "#objekt# merkelapp" +msgstr "#object# merkelapp" #: formshell.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/nb/svx/source/items.po libreoffice-5.1.2~rc2/translations/source/nb/svx/source/items.po --- libreoffice-5.1.1~rc2/translations/source/nb/svx/source/items.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/nb/svx/source/items.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "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 @@ "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 @@ "Character blinking\n" "itemlist.text" msgid "Character blinking" -msgstr "" +msgstr "Tegnblinking" #: svxitems.src msgctxt "" @@ -541,7 +541,7 @@ "Paragraph spacing\n" "itemlist.text" msgid "Paragraph spacing" -msgstr "" +msgstr "Avstand mellom avsnitt" #: svxitems.src msgctxt "" @@ -550,7 +550,7 @@ "Paragraph indent\n" "itemlist.text" msgid "Paragraph indent" -msgstr "" +msgstr "Innrykk for avsnitt" #: svxitems.src msgctxt "" @@ -775,7 +775,7 @@ "Character scaling\n" "itemlist.text" msgid "Character scaling" -msgstr "" +msgstr "Skalering av tegn" #: svxitems.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/nb/svx/source/stbctrls.po libreoffice-5.1.2~rc2/translations/source/nb/svx/source/stbctrls.po --- libreoffice-5.1.1~rc2/translations/source/nb/svx/source/stbctrls.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/nb/svx/source/stbctrls.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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 @@ "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 @@ "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 @@ "RID_SVXSTR_ZOOM_25\n" "string.text" msgid "25%" -msgstr "" +msgstr "25%" #: stbctrls.src msgctxt "" @@ -187,7 +187,7 @@ "RID_SVXSTR_ZOOM_50\n" "string.text" msgid "50%" -msgstr "" +msgstr "50%" #: stbctrls.src msgctxt "" @@ -195,7 +195,7 @@ "RID_SVXSTR_ZOOM_75\n" "string.text" msgid "75%" -msgstr "" +msgstr "75 %" #: stbctrls.src msgctxt "" @@ -203,7 +203,7 @@ "RID_SVXSTR_ZOOM_100\n" "string.text" msgid "100%" -msgstr "" +msgstr "100%" #: stbctrls.src msgctxt "" @@ -211,7 +211,7 @@ "RID_SVXSTR_ZOOM_150\n" "string.text" msgid "150%" -msgstr "" +msgstr "100%" #: stbctrls.src msgctxt "" @@ -219,7 +219,7 @@ "RID_SVXSTR_ZOOM_200\n" "string.text" msgid "200%" -msgstr "" +msgstr "200%" #: stbctrls.src msgctxt "" @@ -279,7 +279,7 @@ "ZOOM_50\n" "menuitem.text" msgid "50%" -msgstr "" +msgstr "50%" #: stbctrls.src msgctxt "" @@ -288,7 +288,7 @@ "ZOOM_75\n" "menuitem.text" msgid "75%" -msgstr "" +msgstr "75 %" #: stbctrls.src msgctxt "" @@ -297,7 +297,7 @@ "ZOOM_100\n" "menuitem.text" msgid "100%" -msgstr "" +msgstr "100%" #: stbctrls.src msgctxt "" @@ -306,7 +306,7 @@ "ZOOM_150\n" "menuitem.text" msgid "150%" -msgstr "" +msgstr "150%" #: stbctrls.src msgctxt "" @@ -315,7 +315,7 @@ "ZOOM_200\n" "menuitem.text" msgid "200%" -msgstr "" +msgstr "200%" #: stbctrls.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/nb/svx/source/svdraw.po libreoffice-5.1.2~rc2/translations/source/nb/svx/source/svdraw.po --- libreoffice-5.1.1~rc2/translations/source/nb/svx/source/svdraw.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/nb/svx/source/svdraw.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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 @@ "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 @@ "STR_EqualizeWidthMarkedObjects\n" "string.text" msgid "Equalize Width %1" -msgstr "" +msgstr "Samme bredde %1" #: svdstr.src msgctxt "" @@ -1574,7 +1574,7 @@ "STR_EqualizeHeightMarkedObjects\n" "string.text" msgid "Equalize Height %1" -msgstr "" +msgstr "Samme høyde %1" #: svdstr.src msgctxt "" @@ -3854,7 +3854,7 @@ "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 @@ "STR_TABLE_DELETE_CELL_CONTENTS\n" "string.text" msgid "Delete cell contents" -msgstr "" +msgstr "Slett celleinneholdet" #: svdstr.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/nb/svx/source/tbxctrls.po libreoffice-5.1.2~rc2/translations/source/nb/svx/source/tbxctrls.po --- libreoffice-5.1.1~rc2/translations/source/nb/svx/source/tbxctrls.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/nb/svx/source/tbxctrls.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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 @@ "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 @@ "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 @@ "RID_SVXSTR_EXTRAS_CHARBACKGROUND\n" "string.text" msgid "Highlight Color" -msgstr "" +msgstr "Uthevingsfarge" #: tbcontrl.src msgctxt "" @@ -688,4 +688,4 @@ "RID_SVXSTR_FINDBAR_SEARCHFORMATTED\n" "string.text" msgid "Search Formatted Display String" -msgstr "" +msgstr "Søk etter formatert visingsstreng" diff -Nru libreoffice-5.1.1~rc2/translations/source/nb/svx/uiconfig/ui.po libreoffice-5.1.2~rc2/translations/source/nb/svx/uiconfig/ui.po --- libreoffice-5.1.1~rc2/translations/source/nb/svx/uiconfig/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/nb/svx/uiconfig/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 @@ "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 @@ "title\n" "string.text" msgid "Manage Changes" -msgstr "" +msgstr "Behandle endringer" #: acceptrejectchangesdialog.ui msgctxt "" @@ -71,24 +71,22 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ "label\n" "string.text" msgid "_Browse..." -msgstr "" +msgstr "_Bla gjennom ..." #: addinstancedialog.ui msgctxt "" @@ -321,14 +314,13 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ msgstr "_Rediger uttrykk …" #: chineseconversiondialog.ui -#, fuzzy msgctxt "" "chineseconversiondialog.ui\n" "label2\n" @@ -873,7 +851,7 @@ "label\n" "string.text" msgid "Recent" -msgstr "" +msgstr "Nylig" #: colorwindow.ui msgctxt "" @@ -882,7 +860,7 @@ "label\n" "string.text" msgid "Custom Color…" -msgstr "" +msgstr "Selvalgt farge" #: compressgraphicdialog.ui msgctxt "" @@ -891,10 +869,9 @@ "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 @@ msgstr "Tapsfri komprimering" #: compressgraphicdialog.ui -#, fuzzy msgctxt "" "compressgraphicdialog.ui\n" "checkbox-reduce-resolution\n" @@ -932,14 +908,13 @@ 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 @@ "label\n" "string.text" msgid "Compression Options" -msgstr "" +msgstr "Komprimeringsvalg" #: compressgraphicdialog.ui -#, fuzzy msgctxt "" "compressgraphicdialog.ui\n" "label7\n" @@ -1024,7 +998,6 @@ msgstr "Opprinnelig størrelse" #: compressgraphicdialog.ui -#, fuzzy msgctxt "" "compressgraphicdialog.ui\n" "label8\n" @@ -1034,7 +1007,6 @@ msgstr "Visningsstørrelse:" #: compressgraphicdialog.ui -#, fuzzy msgctxt "" "compressgraphicdialog.ui\n" "label9\n" @@ -1044,7 +1016,6 @@ msgstr "Bildekapasitet:" #: compressgraphicdialog.ui -#, fuzzy msgctxt "" "compressgraphicdialog.ui\n" "label10\n" @@ -1123,7 +1094,7 @@ "label\n" "string.text" msgid "_Models" -msgstr "" +msgstr "_Modeller" #: datanavigator.ui msgctxt "" @@ -1135,7 +1106,6 @@ msgstr "Instans" #: datanavigator.ui -#, fuzzy msgctxt "" "datanavigator.ui\n" "submissions\n" @@ -1145,24 +1115,22 @@ 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 @@ "label\n" "string.text" msgid "_Remove..." -msgstr "" +msgstr "_Fjern" #: datanavigator.ui msgctxt "" @@ -1198,7 +1166,7 @@ "label\n" "string.text" msgid "_Show Details" -msgstr "" +msgstr "_Vis detaljer" #: datanavigator.ui msgctxt "" @@ -1225,7 +1193,7 @@ "label\n" "string.text" msgid "_Remove" -msgstr "" +msgstr "_Fjern" #: deletefooterdialog.ui msgctxt "" @@ -1288,7 +1256,7 @@ "title\n" "string.text" msgid "3D Effects" -msgstr "" +msgstr "3D-effekter" #: docking3deffects.ui msgctxt "" @@ -1297,7 +1265,7 @@ "label\n" "string.text" msgid "R_ounded edges" -msgstr "" +msgstr "Avrundede hjørner" #: docking3deffects.ui msgctxt "" @@ -1306,7 +1274,7 @@ "label\n" "string.text" msgid "_Scaled depth" -msgstr "" +msgstr "_Skalert dybde" #: docking3deffects.ui msgctxt "" @@ -1315,17 +1283,16 @@ "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 @@ "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 @@ "label\n" "string.text" msgid "Segments" -msgstr "" +msgstr "Segmenter" #: docking3deffects.ui msgctxt "" @@ -1372,7 +1337,7 @@ "tooltip_text\n" "string.text" msgid "Object-Specific" -msgstr "" +msgstr "Objektspesifikk" #: docking3deffects.ui msgctxt "" @@ -1390,7 +1355,7 @@ "tooltip_text\n" "string.text" msgid "Spherical" -msgstr "" +msgstr "Kuleformet" #: docking3deffects.ui msgctxt "" @@ -1399,7 +1364,7 @@ "tooltip_text\n" "string.text" msgid "Invert Normals" -msgstr "" +msgstr "Inverter normaler" #: docking3deffects.ui msgctxt "" @@ -1408,7 +1373,7 @@ "tooltip_text\n" "string.text" msgid "Double-Sided Illumination" -msgstr "" +msgstr "Dobbeltsidet belysning" #: docking3deffects.ui msgctxt "" @@ -1417,7 +1382,7 @@ "tooltip_text\n" "string.text" msgid "Double-Sided" -msgstr "" +msgstr "Tosidig" #: docking3deffects.ui msgctxt "" @@ -1426,7 +1391,7 @@ "label\n" "string.text" msgid "Normals" -msgstr "" +msgstr "Normaler" #: docking3deffects.ui msgctxt "" @@ -1435,7 +1400,7 @@ "tooltip_text\n" "string.text" msgid "Convert to 3D" -msgstr "" +msgstr "Gjør om til 3D" #: docking3deffects.ui msgctxt "" @@ -1444,7 +1409,7 @@ "tooltip_text\n" "string.text" msgid "Convert to Rotation Object" -msgstr "" +msgstr "Konverter til rotatsjonsobjekt" #: docking3deffects.ui msgctxt "" @@ -1453,7 +1418,7 @@ "tooltip_text\n" "string.text" msgid "Perspective On/Off" -msgstr "" +msgstr "Perspektiv pÃ¥/av" #: docking3deffects.ui msgctxt "" @@ -1462,7 +1427,7 @@ "AtkObject::accessible-name\n" "string.text" msgid "3D Preview" -msgstr "" +msgstr "3D ForhÃ¥ndsvisning" #: docking3deffects.ui msgctxt "" @@ -1471,7 +1436,7 @@ "AtkObject::accessible-name\n" "string.text" msgid "Color Light Preview" -msgstr "" +msgstr "ForhÃ¥ndsvisning av fargelys" #: docking3deffects.ui msgctxt "" @@ -1480,7 +1445,7 @@ "label\n" "string.text" msgid "_Mode" -msgstr "" +msgstr "_Modus" #: docking3deffects.ui msgctxt "" @@ -1498,7 +1463,7 @@ "1\n" "stringlist.text" msgid "Phong" -msgstr "" +msgstr "Phong" #: docking3deffects.ui msgctxt "" @@ -1507,7 +1472,7 @@ "2\n" "stringlist.text" msgid "Gouraud" -msgstr "" +msgstr "Gouraud" #: docking3deffects.ui msgctxt "" @@ -1516,7 +1481,7 @@ "label\n" "string.text" msgid "Shading" -msgstr "" +msgstr "Skyggelegging" #: docking3deffects.ui msgctxt "" @@ -1525,7 +1490,7 @@ "label\n" "string.text" msgid "S_urface angle" -msgstr "" +msgstr "Overflatevinkel" #: docking3deffects.ui msgctxt "" @@ -1534,7 +1499,7 @@ "tooltip_text\n" "string.text" msgid "3D Shadowing On/Off" -msgstr "" +msgstr "3D-skygge pÃ¥/av" #: docking3deffects.ui msgctxt "" @@ -1543,7 +1508,7 @@ "label\n" "string.text" msgid "Shadow" -msgstr "" +msgstr "Skygge" #: docking3deffects.ui msgctxt "" @@ -1552,17 +1517,16 @@ "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 @@ "label\n" "string.text" msgid "Camera" -msgstr "" +msgstr "Kamera" #: docking3deffects.ui msgctxt "" @@ -1580,7 +1544,7 @@ "label\n" "string.text" msgid "_Light source" -msgstr "" +msgstr "_Lyskilde" #: docking3deffects.ui msgctxt "" @@ -1589,7 +1553,7 @@ "tooltip_text\n" "string.text" msgid "Colors Dialog" -msgstr "" +msgstr "Fargevelger" #: docking3deffects.ui msgctxt "" @@ -1598,7 +1562,7 @@ "tooltip_text\n" "string.text" msgid "Colors Dialog" -msgstr "" +msgstr "Fargevelger" #: docking3deffects.ui msgctxt "" @@ -1607,7 +1571,7 @@ "label\n" "string.text" msgid "_Ambient light" -msgstr "" +msgstr "_Bakgrunnslys" #: docking3deffects.ui msgctxt "" @@ -1616,7 +1580,7 @@ "tooltip_text\n" "string.text" msgid "Light Source 1" -msgstr "" +msgstr "Lyskilde 1" #: docking3deffects.ui msgctxt "" @@ -1625,7 +1589,7 @@ "tooltip_text\n" "string.text" msgid "Light Source 2" -msgstr "" +msgstr "Lyskilde 2" #: docking3deffects.ui msgctxt "" @@ -1634,7 +1598,7 @@ "tooltip_text\n" "string.text" msgid "Light Source 3" -msgstr "" +msgstr "Lyskilde 3" #: docking3deffects.ui msgctxt "" @@ -1643,7 +1607,7 @@ "tooltip_text\n" "string.text" msgid "Light Source 4" -msgstr "" +msgstr "Lyskilde 4" #: docking3deffects.ui msgctxt "" @@ -1652,7 +1616,7 @@ "tooltip_text\n" "string.text" msgid "Light Source 5" -msgstr "" +msgstr "Lyskilde 5" #: docking3deffects.ui msgctxt "" @@ -1661,7 +1625,7 @@ "tooltip_text\n" "string.text" msgid "Light Source 6" -msgstr "" +msgstr "Lyskilde 6" #: docking3deffects.ui msgctxt "" @@ -1670,7 +1634,7 @@ "tooltip_text\n" "string.text" msgid "Light Source 7" -msgstr "" +msgstr "Lyskilde 7" #: docking3deffects.ui msgctxt "" @@ -1679,7 +1643,7 @@ "tooltip_text\n" "string.text" msgid "Light Source 8" -msgstr "" +msgstr "Lyskilde 8" #: docking3deffects.ui msgctxt "" @@ -1688,7 +1652,7 @@ "label\n" "string.text" msgid "Illumination" -msgstr "" +msgstr "Lyssetting" #: docking3deffects.ui msgctxt "" @@ -1697,7 +1661,7 @@ "label\n" "string.text" msgid "_Type" -msgstr "" +msgstr "_Type" #: docking3deffects.ui msgctxt "" @@ -1706,7 +1670,7 @@ "label\n" "string.text" msgid "_Mode" -msgstr "" +msgstr "_Modus" #: docking3deffects.ui msgctxt "" @@ -1715,7 +1679,7 @@ "label\n" "string.text" msgid "_Projection X" -msgstr "" +msgstr "_Projeksjon X" #: docking3deffects.ui msgctxt "" @@ -1724,7 +1688,7 @@ "label\n" "string.text" msgid "P_rojection Y" -msgstr "" +msgstr "Projeksjon Y" #: docking3deffects.ui msgctxt "" @@ -1733,7 +1697,7 @@ "label\n" "string.text" msgid "_Filtering" -msgstr "" +msgstr "_Filtrering" #: docking3deffects.ui msgctxt "" @@ -1742,17 +1706,16 @@ "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 @@ "tooltip_text\n" "string.text" msgid "Only Texture" -msgstr "" +msgstr "Bare tekstur" #: docking3deffects.ui msgctxt "" @@ -1770,7 +1733,7 @@ "tooltip_text\n" "string.text" msgid "Texture and Shading" -msgstr "" +msgstr "Tekstur og skygge" #: docking3deffects.ui msgctxt "" @@ -1779,7 +1742,7 @@ "tooltip_text\n" "string.text" msgid "Object-Specific" -msgstr "" +msgstr "Objektspesifikk" #: docking3deffects.ui msgctxt "" @@ -1788,7 +1751,7 @@ "tooltip_text\n" "string.text" msgid "Parallel" -msgstr "" +msgstr "Parallell" #: docking3deffects.ui msgctxt "" @@ -1797,7 +1760,7 @@ "tooltip_text\n" "string.text" msgid "Circular" -msgstr "" +msgstr "Sirkulær" #: docking3deffects.ui msgctxt "" @@ -1806,7 +1769,7 @@ "tooltip_text\n" "string.text" msgid "Object-Specific" -msgstr "" +msgstr "Objektspesifikk" #: docking3deffects.ui msgctxt "" @@ -1815,7 +1778,7 @@ "tooltip_text\n" "string.text" msgid "Parallel" -msgstr "" +msgstr "Parallell" #: docking3deffects.ui msgctxt "" @@ -1824,7 +1787,7 @@ "tooltip_text\n" "string.text" msgid "Circular" -msgstr "" +msgstr "Sirkulær" #: docking3deffects.ui msgctxt "" @@ -1833,7 +1796,7 @@ "tooltip_text\n" "string.text" msgid "Filtering On/Off" -msgstr "" +msgstr "Filtrering pÃ¥/av" #: docking3deffects.ui msgctxt "" @@ -1842,7 +1805,7 @@ "tooltip_text\n" "string.text" msgid "Texture, Shadow and Color" -msgstr "" +msgstr "Tekstur, skygge og farge" #: docking3deffects.ui msgctxt "" @@ -1851,7 +1814,7 @@ "label\n" "string.text" msgid "Textures" -msgstr "" +msgstr "Teksturer" #: docking3deffects.ui msgctxt "" @@ -1860,7 +1823,7 @@ "label\n" "string.text" msgid "_Favorites" -msgstr "" +msgstr "_Favoritter" #: docking3deffects.ui msgctxt "" @@ -1869,7 +1832,7 @@ "label\n" "string.text" msgid "_Object color" -msgstr "" +msgstr "_Objektfarge" #: docking3deffects.ui msgctxt "" @@ -1878,7 +1841,7 @@ "label\n" "string.text" msgid "_Illumination color" -msgstr "" +msgstr "_Belysningsfarge" #: docking3deffects.ui msgctxt "" @@ -1887,7 +1850,7 @@ "0\n" "stringlist.text" msgid "User-defined" -msgstr "" +msgstr "Bruker definert" #: docking3deffects.ui msgctxt "" @@ -1896,7 +1859,7 @@ "1\n" "stringlist.text" msgid "Metal" -msgstr "" +msgstr "Metall" #: docking3deffects.ui msgctxt "" @@ -1905,7 +1868,7 @@ "2\n" "stringlist.text" msgid "Gold" -msgstr "" +msgstr "Gull" #: docking3deffects.ui msgctxt "" @@ -1914,7 +1877,7 @@ "3\n" "stringlist.text" msgid "Chrome" -msgstr "" +msgstr "Krom" #: docking3deffects.ui msgctxt "" @@ -1923,7 +1886,7 @@ "4\n" "stringlist.text" msgid "Plastic" -msgstr "" +msgstr "Plast" #: docking3deffects.ui msgctxt "" @@ -1932,7 +1895,7 @@ "5\n" "stringlist.text" msgid "Wood" -msgstr "" +msgstr "Tre" #: docking3deffects.ui msgctxt "" @@ -1941,7 +1904,7 @@ "tooltip_text\n" "string.text" msgid "Colors Dialog" -msgstr "" +msgstr "Fargevelger" #: docking3deffects.ui msgctxt "" @@ -1950,7 +1913,7 @@ "tooltip_text\n" "string.text" msgid "Colors Dialog" -msgstr "" +msgstr "Fargevelger" #: docking3deffects.ui msgctxt "" @@ -1959,17 +1922,16 @@ "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 @@ "label\n" "string.text" msgid "I_ntensity" -msgstr "" +msgstr "Intensitet" #: docking3deffects.ui msgctxt "" @@ -1987,7 +1949,7 @@ "tooltip_text\n" "string.text" msgid "Colors Dialog" -msgstr "" +msgstr "Fargevelger" #: docking3deffects.ui msgctxt "" @@ -1996,7 +1958,7 @@ "label\n" "string.text" msgid "Specular" -msgstr "" +msgstr "Refleksjon" #: docking3deffects.ui msgctxt "" @@ -2005,7 +1967,7 @@ "tooltip_text\n" "string.text" msgid "Assign" -msgstr "" +msgstr "Tilordne" #: docking3deffects.ui msgctxt "" @@ -2014,7 +1976,7 @@ "tooltip_text\n" "string.text" msgid "Update" -msgstr "" +msgstr "Oppdater" #: docking3deffects.ui msgctxt "" @@ -2023,7 +1985,7 @@ "tooltip_text\n" "string.text" msgid "Material" -msgstr "" +msgstr "Materiale" #: docking3deffects.ui msgctxt "" @@ -2032,7 +1994,7 @@ "tooltip_text\n" "string.text" msgid "Textures" -msgstr "" +msgstr "Teksturer" #: docking3deffects.ui msgctxt "" @@ -2041,7 +2003,7 @@ "tooltip_text\n" "string.text" msgid "Illumination" -msgstr "" +msgstr "Belysning" #: docking3deffects.ui msgctxt "" @@ -2050,7 +2012,7 @@ "tooltip_text\n" "string.text" msgid "Shading" -msgstr "" +msgstr "Skyggelegging" #: docking3deffects.ui msgctxt "" @@ -2059,7 +2021,7 @@ "tooltip_text\n" "string.text" msgid "Geometry" -msgstr "" +msgstr "Geometri" #: dockingcolorreplace.ui msgctxt "" @@ -2068,7 +2030,7 @@ "title\n" "string.text" msgid "Color Replacer" -msgstr "" +msgstr "Fargeerstatter" #: dockingcolorreplace.ui msgctxt "" @@ -2077,7 +2039,7 @@ "label\n" "string.text" msgid "Source color" -msgstr "" +msgstr "Kildefarge" #: dockingcolorreplace.ui msgctxt "" @@ -2086,7 +2048,7 @@ "label\n" "string.text" msgid "Tolerance" -msgstr "" +msgstr "Fargetoleranse" #: dockingcolorreplace.ui msgctxt "" @@ -2095,10 +2057,9 @@ "label\n" "string.text" msgid "Replace with..." -msgstr "" +msgstr "Erstatt med..." #: dockingcolorreplace.ui -#, fuzzy msgctxt "" "dockingcolorreplace.ui\n" "cbx5\n" @@ -2108,14 +2069,13 @@ 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 @@ "label\n" "string.text" msgid "Pipette" -msgstr "" +msgstr "Pipette" #: dockingfontwork.ui msgctxt "" @@ -2142,7 +2102,7 @@ "title\n" "string.text" msgid "Fontwork" -msgstr "" +msgstr "Skriftforming" #: dockingfontwork.ui msgctxt "" @@ -2151,7 +2111,7 @@ "tooltip_text\n" "string.text" msgid "Off" -msgstr "" +msgstr "Av" #: dockingfontwork.ui msgctxt "" @@ -2160,7 +2120,7 @@ "tooltip_text\n" "string.text" msgid "Rotate" -msgstr "" +msgstr "Roter" #: dockingfontwork.ui msgctxt "" @@ -2169,7 +2129,7 @@ "tooltip_text\n" "string.text" msgid "Upright" -msgstr "" +msgstr "Oppreist" #: dockingfontwork.ui msgctxt "" @@ -2178,7 +2138,7 @@ "tooltip_text\n" "string.text" msgid "Slant Horizontal" -msgstr "" +msgstr "Vannrett skrÃ¥stilling" #: dockingfontwork.ui msgctxt "" @@ -2187,7 +2147,7 @@ "tooltip_text\n" "string.text" msgid "Slant Vertical" -msgstr "" +msgstr "SkrÃ¥still loddrett" #: dockingfontwork.ui msgctxt "" @@ -2196,7 +2156,7 @@ "tooltip_text\n" "string.text" msgid "Orientation" -msgstr "" +msgstr "Retning" #: dockingfontwork.ui msgctxt "" @@ -2205,7 +2165,7 @@ "tooltip_text\n" "string.text" msgid "Align Left" -msgstr "" +msgstr "Venstrejuster" #: dockingfontwork.ui msgctxt "" @@ -2223,7 +2183,7 @@ "tooltip_text\n" "string.text" msgid "Align Right" -msgstr "" +msgstr "Høyrejuster" #: dockingfontwork.ui msgctxt "" @@ -2232,17 +2192,16 @@ "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 @@ "tooltip_text\n" "string.text" msgid "Contour" -msgstr "" +msgstr "Omriss" #: dockingfontwork.ui msgctxt "" @@ -2269,7 +2228,7 @@ "tooltip_text\n" "string.text" msgid "Text Contour" -msgstr "" +msgstr "Tekstomriss" #: dockingfontwork.ui msgctxt "" @@ -2278,17 +2237,16 @@ "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 @@ "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 @@ "tooltip_text\n" "string.text" msgid "Shadow Color" -msgstr "" +msgstr "Skyggefarge" #: docrecoverybrokendialog.ui msgctxt "" @@ -2335,7 +2291,7 @@ "title\n" "string.text" msgid "%PRODUCTNAME %PRODUCTVERSION" -msgstr "" +msgstr "%PRODUCTNAME %PRODUCTVERSION" #: docrecoverybrokendialog.ui msgctxt "" @@ -2344,7 +2300,7 @@ "label\n" "string.text" msgid "_Save" -msgstr "" +msgstr "_Lagre" #: docrecoverybrokendialog.ui msgctxt "" @@ -2357,6 +2313,9 @@ "\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 @@ "label\n" "string.text" msgid "Documents:" -msgstr "" +msgstr "Dokumenter:" #: docrecoverybrokendialog.ui msgctxt "" @@ -2374,7 +2333,7 @@ "label\n" "string.text" msgid "_Save to:" -msgstr "" +msgstr "_Lagre til:" #: docrecoverybrokendialog.ui msgctxt "" @@ -2383,7 +2342,7 @@ "label\n" "string.text" msgid "Chan_ge..." -msgstr "" +msgstr "_Endre …" #: docrecoveryprogressdialog.ui msgctxt "" @@ -2392,7 +2351,7 @@ "title\n" "string.text" msgid "Documents Are Being Saved" -msgstr "" +msgstr "Dokumentene blir lagret." #: docrecoveryprogressdialog.ui msgctxt "" @@ -2401,7 +2360,7 @@ "label\n" "string.text" msgid "Progress of saving:" -msgstr "" +msgstr "Framdrift for lagring: " #: docrecoveryrecoverdialog.ui msgctxt "" @@ -2410,7 +2369,7 @@ "title\n" "string.text" msgid "%PRODUCTNAME %PRODUCTVERSION" -msgstr "" +msgstr "%PRODUCTNAME %PRODUCTVERSION" #: docrecoveryrecoverdialog.ui msgctxt "" @@ -2419,7 +2378,7 @@ "label\n" "string.text" msgid "_Start Recovery >" -msgstr "" +msgstr "_Start gjenoppretting >" #: docrecoveryrecoverdialog.ui msgctxt "" @@ -2428,7 +2387,7 @@ "label\n" "string.text" msgid "Discard Recovery Data" -msgstr "" +msgstr "Fjern gjenopprettingsdata" #: docrecoveryrecoverdialog.ui msgctxt "" @@ -2443,6 +2402,11 @@ "\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 @@ "label\n" "string.text" msgid "Status of recovered documents:" -msgstr "" +msgstr "Status for gjenopprettede dokumenter:" #: docrecoveryrecoverdialog.ui msgctxt "" @@ -2460,7 +2424,7 @@ "label\n" "string.text" msgid "Document Name" -msgstr "" +msgstr "Dokumentnavn" #: docrecoveryrecoverdialog.ui msgctxt "" @@ -2478,7 +2442,7 @@ "label\n" "string.text" msgid "Recovering document:" -msgstr "" +msgstr "Gjenoppretter dokument:" #: docrecoveryrecoverdialog.ui msgctxt "" @@ -2487,7 +2451,7 @@ "label\n" "string.text" msgid "%PRODUCTNAME Document Recovery" -msgstr "" +msgstr "%PRODUCTNAME Dokumentgjenoppretting" #: docrecoverysavedialog.ui msgctxt "" @@ -2496,7 +2460,7 @@ "title\n" "string.text" msgid "%PRODUCTNAME %PRODUCTVERSION" -msgstr "" +msgstr "%PRODUCTNAME %PRODUCTVERSION" #: docrecoverysavedialog.ui msgctxt "" @@ -2505,7 +2469,7 @@ "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 @@ "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 @@ "label\n" "string.text" msgid "%PRODUCTNAME Document Recovery" -msgstr "" +msgstr "%PRODUCTNAME Dokumentgjenoppretting" #: extrustiondepthdialog.ui msgctxt "" @@ -2568,7 +2532,7 @@ "label\n" "string.text" msgid "_Find Next" -msgstr "" +msgstr "_Finn Neste" #: findreplacedialog.ui msgctxt "" @@ -2580,7 +2544,6 @@ msgstr "Søk etter _alle" #: findreplacedialog.ui -#, fuzzy msgctxt "" "findreplacedialog.ui\n" "label1\n" @@ -2608,14 +2571,13 @@ 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 @@ 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 @@ "label\n" "string.text" msgid "Similarities..." -msgstr "" +msgstr "Likheter..." #: findreplacedialog.ui msgctxt "" @@ -2742,7 +2703,7 @@ "label\n" "string.text" msgid "Sounds..." -msgstr "" +msgstr "Lyder..." #: findreplacedialog.ui msgctxt "" @@ -2763,14 +2724,13 @@ 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 @@ 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 @@ 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 @@ "label\n" "string.text" msgid "Search formatted display string" -msgstr "" +msgstr "Søk etter formatert visingsstreng" #: findreplacedialog.ui msgctxt "" @@ -2880,7 +2838,7 @@ "title\n" "string.text" msgid "Contour Editor" -msgstr "" +msgstr "Omrissredigering" #: floatingcontour.ui msgctxt "" @@ -2889,7 +2847,7 @@ "label\n" "string.text" msgid "Apply" -msgstr "" +msgstr "Bruk" #: floatingcontour.ui msgctxt "" @@ -2898,7 +2856,7 @@ "label\n" "string.text" msgid "Workspace" -msgstr "" +msgstr "ArbeidsomrÃ¥de" #: floatingcontour.ui msgctxt "" @@ -2907,7 +2865,7 @@ "label\n" "string.text" msgid "Select" -msgstr "" +msgstr "Velg" #: floatingcontour.ui msgctxt "" @@ -2934,7 +2892,7 @@ "label\n" "string.text" msgid "Polygon" -msgstr "" +msgstr "Polygon" #: floatingcontour.ui msgctxt "" @@ -2943,7 +2901,7 @@ "label\n" "string.text" msgid "Edit Points" -msgstr "" +msgstr "Rediger punkter" #: floatingcontour.ui msgctxt "" @@ -2952,7 +2910,7 @@ "label\n" "string.text" msgid "Move Points" -msgstr "" +msgstr "Flytt punkter" #: floatingcontour.ui msgctxt "" @@ -2961,7 +2919,7 @@ "label\n" "string.text" msgid "Insert Points" -msgstr "" +msgstr "Sett inn punkter" #: floatingcontour.ui msgctxt "" @@ -2970,7 +2928,7 @@ "label\n" "string.text" msgid "Delete Points" -msgstr "" +msgstr "Slett punkter" #: floatingcontour.ui msgctxt "" @@ -2979,7 +2937,7 @@ "label\n" "string.text" msgid "AutoContour" -msgstr "" +msgstr "Autoomriss" #: floatingcontour.ui msgctxt "" @@ -2988,17 +2946,16 @@ "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 @@ "label\n" "string.text" msgid "Pipette" -msgstr "" +msgstr "Pipette" #: floatingcontour.ui msgctxt "" @@ -3016,7 +2973,7 @@ "tooltip_text\n" "string.text" msgid "Color Tolerance" -msgstr "" +msgstr "Fargetoleranse" #: fontworkgallerydialog.ui msgctxt "" @@ -3028,14 +2985,13 @@ 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 @@ 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 @@ "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 @@ "\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 @@ "label\n" "string.text" msgid "_Edit" -msgstr "" +msgstr "_Rediger" #: headfootformatpage.ui msgctxt "" @@ -3219,7 +3177,7 @@ "title\n" "string.text" msgid "ImageMap Editor" -msgstr "" +msgstr "Bildekartredigering" #: imapdialog.ui msgctxt "" @@ -3228,7 +3186,7 @@ "label\n" "string.text" msgid "Apply" -msgstr "" +msgstr "Bruk" #: imapdialog.ui msgctxt "" @@ -3237,7 +3195,7 @@ "label\n" "string.text" msgid "Open..." -msgstr "" +msgstr "Ã…pne..." #: imapdialog.ui msgctxt "" @@ -3246,7 +3204,7 @@ "label\n" "string.text" msgid "Save..." -msgstr "" +msgstr "Lagre …" #: imapdialog.ui msgctxt "" @@ -3255,7 +3213,7 @@ "label\n" "string.text" msgid "Select" -msgstr "" +msgstr "Velg" #: imapdialog.ui msgctxt "" @@ -3282,7 +3240,7 @@ "label\n" "string.text" msgid "Polygon" -msgstr "" +msgstr "Polygon" #: imapdialog.ui msgctxt "" @@ -3291,7 +3249,7 @@ "label\n" "string.text" msgid "Freeform Polygon" -msgstr "" +msgstr "FrihÃ¥ndsmangekant" #: imapdialog.ui msgctxt "" @@ -3300,7 +3258,7 @@ "label\n" "string.text" msgid "Edit Points" -msgstr "" +msgstr "Rediger punkter" #: imapdialog.ui msgctxt "" @@ -3309,7 +3267,7 @@ "label\n" "string.text" msgid "Move Points" -msgstr "" +msgstr "Flytt punkter" #: imapdialog.ui msgctxt "" @@ -3318,7 +3276,7 @@ "label\n" "string.text" msgid "Insert Points" -msgstr "" +msgstr "Sett inn punkter" #: imapdialog.ui msgctxt "" @@ -3327,7 +3285,7 @@ "label\n" "string.text" msgid "Delete Points" -msgstr "" +msgstr "Slett punkter" #: imapdialog.ui msgctxt "" @@ -3336,17 +3294,16 @@ "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 @@ "label\n" "string.text" msgid "Active" -msgstr "" +msgstr "Aktiv" #: imapdialog.ui msgctxt "" @@ -3364,7 +3321,7 @@ "label\n" "string.text" msgid "Macro..." -msgstr "" +msgstr "Makro …" #: imapdialog.ui msgctxt "" @@ -3373,7 +3330,7 @@ "label\n" "string.text" msgid "Properties..." -msgstr "" +msgstr "Egenskaper..." #: imapdialog.ui msgctxt "" @@ -3382,7 +3339,7 @@ "label\n" "string.text" msgid "Address:" -msgstr "" +msgstr "Adresse:" #: imapdialog.ui msgctxt "" @@ -3391,7 +3348,7 @@ "label\n" "string.text" msgid "Frame:" -msgstr "" +msgstr "Ramme:" #: imapdialog.ui msgctxt "" @@ -3400,7 +3357,7 @@ "label\n" "string.text" msgid "Text:" -msgstr "" +msgstr "Tekst:" #: linkwarndialog.ui msgctxt "" @@ -3655,14 +3612,13 @@ 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 @@ 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 @@ "label\n" "string.text" msgid "Spacing: 1" -msgstr "" +msgstr "Avstand: 1" #: paralinespacingcontrol.ui msgctxt "" @@ -3737,7 +3690,7 @@ "label\n" "string.text" msgid "Spacing: 1.15" -msgstr "" +msgstr "Avstand: 1,15" #: paralinespacingcontrol.ui msgctxt "" @@ -3746,7 +3699,7 @@ "label\n" "string.text" msgid "Spacing: 1.5" -msgstr "" +msgstr "Avstand: 1,5" #: paralinespacingcontrol.ui msgctxt "" @@ -3755,17 +3708,16 @@ "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 @@ "0\n" "stringlist.text" msgid "Single" -msgstr "" +msgstr "Enkel" #: paralinespacingcontrol.ui msgctxt "" @@ -3783,7 +3735,7 @@ "1\n" "stringlist.text" msgid "1.5 Lines" -msgstr "" +msgstr "1,5 linjer" #: paralinespacingcontrol.ui msgctxt "" @@ -3792,7 +3744,7 @@ "2\n" "stringlist.text" msgid "Double" -msgstr "" +msgstr "Dobbel" #: paralinespacingcontrol.ui msgctxt "" @@ -3801,7 +3753,7 @@ "3\n" "stringlist.text" msgid "Proportional" -msgstr "" +msgstr "Proporsjonal" #: paralinespacingcontrol.ui msgctxt "" @@ -3810,7 +3762,7 @@ "4\n" "stringlist.text" msgid "At least" -msgstr "" +msgstr "Minst" #: paralinespacingcontrol.ui msgctxt "" @@ -3819,7 +3771,7 @@ "5\n" "stringlist.text" msgid "Leading" -msgstr "" +msgstr "Ledende" #: paralinespacingcontrol.ui msgctxt "" @@ -3828,17 +3780,16 @@ "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 @@ "label\n" "string.text" msgid "Custom Value" -msgstr "" +msgstr "Selvvalgt verdi" #: passwd.ui msgctxt "" @@ -3859,17 +3810,15 @@ 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 @@ 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 @@ 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 @@ 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 @@ "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 @@ "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 @@ "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 @@ "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 @@ msgstr "Endringer" #: savemodifieddialog.ui -#, fuzzy msgctxt "" "savemodifieddialog.ui\n" "SaveModifiedDialog\n" @@ -4413,7 +4351,7 @@ "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 @@ "tooltip_markup\n" "string.text" msgid "Fill gradient from." -msgstr "" +msgstr "Fyll fargeovergang fra." #: sidebararea.ui msgctxt "" @@ -4494,7 +4432,7 @@ "tooltip_text\n" "string.text" msgid "Fill gradient from." -msgstr "" +msgstr "Fyll fargeovergang fra." #: sidebararea.ui msgctxt "" @@ -4656,7 +4594,7 @@ "tooltip_markup\n" "string.text" msgid "Fill gradient to." -msgstr "" +msgstr "Fyll overgang til." #: sidebararea.ui msgctxt "" @@ -4665,7 +4603,7 @@ "tooltip_text\n" "string.text" msgid "Fill gradient to." -msgstr "" +msgstr "Fyll overgang til." #: sidebararea.ui msgctxt "" @@ -4674,7 +4612,7 @@ "tooltip_markup\n" "string.text" msgid "Select the gradient angle." -msgstr "" +msgstr "Velg overgangsvinkel." #: sidebararea.ui msgctxt "" @@ -4683,20 +4621,18 @@ "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 @@ msgstr "Aksial" #: sidebararea.ui -#, fuzzy msgctxt "" "sidebararea.ui\n" "gradientstyle\n" @@ -4716,7 +4651,6 @@ msgstr "Radial" #: sidebararea.ui -#, fuzzy msgctxt "" "sidebararea.ui\n" "gradientstyle\n" @@ -4726,7 +4660,6 @@ msgstr "Elliptisk" #: sidebararea.ui -#, fuzzy msgctxt "" "sidebararea.ui\n" "gradientstyle\n" @@ -4736,7 +4669,6 @@ msgstr "Kvadratisk" #: sidebararea.ui -#, fuzzy msgctxt "" "sidebararea.ui\n" "gradientstyle\n" @@ -4752,7 +4684,7 @@ "tooltip_markup\n" "string.text" msgid "Select the gradient style." -msgstr "" +msgstr "Velg overgangsstil." #: sidebararea.ui msgctxt "" @@ -4761,10 +4693,9 @@ "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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ "label\n" "string.text" msgid "Enable" -msgstr "" +msgstr "Aktiver" #: sidebarshadow.ui msgctxt "" @@ -5911,37 +5836,34 @@ "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 @@ "label\n" "string.text" msgid "Add Item" -msgstr "" +msgstr "Legg til element" #: xformspage.ui msgctxt "" @@ -6040,7 +5962,7 @@ "label\n" "string.text" msgid "Add Element" -msgstr "" +msgstr "Legg til element" #: xformspage.ui msgctxt "" @@ -6049,7 +5971,7 @@ "label\n" "string.text" msgid "Add Attribute" -msgstr "" +msgstr "Legg til egenskap" #: xformspage.ui msgctxt "" @@ -6058,7 +5980,7 @@ "label\n" "string.text" msgid "Edit" -msgstr "" +msgstr "Rediger" #: xformspage.ui msgctxt "" @@ -6067,4 +5989,4 @@ "label\n" "string.text" msgid "Delete" -msgstr "" +msgstr "Slett" diff -Nru libreoffice-5.1.1~rc2/translations/source/nb/sw/source/ui/app.po libreoffice-5.1.2~rc2/translations/source/nb/sw/source/ui/app.po --- libreoffice-5.1.1~rc2/translations/source/nb/sw/source/ui/app.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/nb/sw/source/ui/app.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "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 @@ "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 @@ "STR_SHAPE_DEFNAME\n" "string.text" msgid "Shape" -msgstr "" +msgstr "Form" #: app.src msgctxt "" @@ -1150,14 +1150,13 @@ 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 @@ 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 @@ 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 @@ "FN_COPY_HYPERLINK_LOCATION\n" "menuitem.text" msgid "Copy Hyper~link" -msgstr "" +msgstr "Kopier hyperlenke" #: mn.src msgctxt "" @@ -1550,7 +1547,7 @@ "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 @@ "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 @@ "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 @@ "FN_INSERT_CAPTION\n" "menuitem.text" msgid "Insert ~Caption..." -msgstr "" +msgstr "Sett inn ~bildetekst …" #: mn.src msgctxt "" @@ -1586,7 +1583,7 @@ "FN_TABLE_INSERT_ROW_BEFORE\n" "menuitem.text" msgid "Rows Above" -msgstr "" +msgstr "Rader over" #: mn.src msgctxt "" @@ -1595,7 +1592,7 @@ "FN_TABLE_INSERT_ROW_AFTER\n" "menuitem.text" msgid "Rows Below" -msgstr "" +msgstr "Rader under" #: mn.src msgctxt "" @@ -1604,7 +1601,7 @@ "FN_TABLE_INSERT_ROW_DLG\n" "menuitem.text" msgid "~Rows..." -msgstr "" +msgstr "~Rader …" #: mn.src msgctxt "" @@ -1613,7 +1610,7 @@ "FN_TABLE_INSERT_COL_BEFORE\n" "menuitem.text" msgid "Columns Left" -msgstr "" +msgstr "Kolonner til venstre" #: mn.src msgctxt "" @@ -1622,7 +1619,7 @@ "FN_TABLE_INSERT_COL_AFTER\n" "menuitem.text" msgid "Columns Right" -msgstr "" +msgstr "Kolonner til høyre" #: mn.src msgctxt "" @@ -1631,7 +1628,7 @@ "FN_TABLE_INSERT_COL_DLG\n" "menuitem.text" msgid "~Columns..." -msgstr "" +msgstr "~Kolonner …" #: mn.src msgctxt "" @@ -1640,10 +1637,9 @@ "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 @@ msgstr "Rader" #: mn.src -#, fuzzy msgctxt "" "mn.src\n" "MN_TABLE.DUMMY+1\n" @@ -1663,14 +1658,13 @@ 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 @@ 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 @@ "FN_TABLE_SELECT_CELL\n" "menuitem.text" msgid "C~ell" -msgstr "" +msgstr "Celle" #: mn.src msgctxt "" @@ -1781,7 +1772,7 @@ "FN_TABLE_SET_COL_WIDTH\n" "menuitem.text" msgid "~Column Width..." -msgstr "" +msgstr "~Kolonnebredde …" #: mn.src msgctxt "" @@ -1790,7 +1781,7 @@ "FN_TABLE_ADJUST_CELLS\n" "menuitem.text" msgid "~Optimal Column Width" -msgstr "" +msgstr "~Beste kolonnebredde" #: mn.src msgctxt "" @@ -1799,7 +1790,7 @@ "FN_TABLE_BALANCE_CELLS\n" "menuitem.text" msgid "~Distribute Columns Equally" -msgstr "" +msgstr "~Fordel kolonner jevnt" #: mn.src msgctxt "" @@ -1808,7 +1799,7 @@ "FN_TABLE_SET_ROW_HEIGHT\n" "menuitem.text" msgid "~Row Height..." -msgstr "" +msgstr "~Radhøyde" #: mn.src msgctxt "" @@ -1817,7 +1808,7 @@ "FN_TABLE_OPTIMAL_HEIGHT\n" "menuitem.text" msgid "Optimal Row ~Height" -msgstr "" +msgstr "~Beste Radhøyde" #: mn.src msgctxt "" @@ -1826,7 +1817,7 @@ "FN_TABLE_BALANCE_ROWS\n" "menuitem.text" msgid "Distribute Rows ~Equally" -msgstr "" +msgstr "Fordel radene jevnt" #: mn.src msgctxt "" @@ -1835,7 +1826,7 @@ "DUMMY+4\n" "menuitem.text" msgid "Si~ze" -msgstr "" +msgstr "~Størrelse" #: mn.src msgctxt "" @@ -1853,7 +1844,7 @@ "FN_FORMAT_TABLE_DLG\n" "menuitem.text" msgid "~Table Properties..." -msgstr "" +msgstr "~Tabellegenskaper" #: mn.src msgctxt "" @@ -1964,14 +1955,13 @@ 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 @@ "FN_FRAME_WRAP_CONTOUR\n" "menuitem.text" msgid "Enable ~Contour" -msgstr "" +msgstr "SlÃ¥ pÃ¥ ~Omriss" #: mn.src msgctxt "" @@ -2041,7 +2031,7 @@ "FN_FRAME_WRAP_LEFT\n" "menuitem.text" msgid "Wrap ~Before" -msgstr "" +msgstr "Bryt ~før" #: mn.src msgctxt "" @@ -2050,7 +2040,7 @@ "FN_FRAME_WRAP_RIGHT\n" "menuitem.text" msgid "Wrap ~After" -msgstr "" +msgstr "Bryt ~etter" #: mn.src msgctxt "" @@ -2361,7 +2351,7 @@ "SID_MENU_MANAGE_GRAPHIC\n" "menuitem.text" msgid "~Rotate" -msgstr "" +msgstr "~Roter" #: mn.src msgctxt "" @@ -2370,7 +2360,7 @@ "FN_FORMAT_GRAFIC_DLG\n" "menuitem.text" msgid "Format ~Image..." -msgstr "" +msgstr "Formater ~bilde…" #: mn.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/nb/sw/source/ui/dochdl.po libreoffice-5.1.2~rc2/translations/source/nb/sw/source/ui/dochdl.po --- libreoffice-5.1.1~rc2/translations/source/nb/sw/source/ui/dochdl.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/nb/sw/source/ui/dochdl.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 @@ "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 @@ "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 @@ "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 -Nru libreoffice-5.1.1~rc2/translations/source/nb/sw/source/ui/envelp.po libreoffice-5.1.2~rc2/translations/source/nb/sw/source/ui/envelp.po --- libreoffice-5.1.1~rc2/translations/source/nb/sw/source/ui/envelp.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/nb/sw/source/ui/envelp.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,18 +3,18 @@ msgstr "" "Project-Id-Version: PACKAGE 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 @@ "STR_CUSTOM\n" "string.text" msgid "[User]" -msgstr "[Selvvalgt]" +msgstr "[Bruker]" #: labfmt.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/nb/sw/source/ui/misc.po libreoffice-5.1.2~rc2/translations/source/nb/sw/source/ui/misc.po --- libreoffice-5.1.1~rc2/translations/source/nb/sw/source/ui/misc.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/nb/sw/source/ui/misc.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,17 +4,17 @@ "Project-Id-Version: PACKAGE VERSION\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 @@ "Graphics\n" "itemlist.text" msgid "Graphics" -msgstr "" +msgstr "Grafikk" #: numberingtypelistbox.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/nb/sw/source/uibase/lingu.po libreoffice-5.1.2~rc2/translations/source/nb/sw/source/uibase/lingu.po --- libreoffice-5.1.1~rc2/translations/source/nb/sw/source/uibase/lingu.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/nb/sw/source/uibase/lingu.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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 @@ "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 @@ msgstr "~Legg til i ordlista" #: olmenu.src -#, fuzzy msgctxt "" "olmenu.src\n" "MN_SPELL_POPUP\n" diff -Nru libreoffice-5.1.1~rc2/translations/source/nb/sw/source/uibase/utlui.po libreoffice-5.1.2~rc2/translations/source/nb/sw/source/uibase/utlui.po --- libreoffice-5.1.1~rc2/translations/source/nb/sw/source/uibase/utlui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/nb/sw/source/uibase/utlui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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 @@ "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 @@ msgstr "Innholdsvisning" #: navipi.src -#, fuzzy msgctxt "" "navipi.src\n" "STR_OUTLINE_LEVEL\n" @@ -1698,7 +1697,6 @@ msgstr "DisposisjonsnivÃ¥" #: navipi.src -#, fuzzy msgctxt "" "navipi.src\n" "STR_DRAGMODE\n" @@ -1707,7 +1705,6 @@ msgstr "Dra-modus" #: navipi.src -#, fuzzy msgctxt "" "navipi.src\n" "STR_HYPERLINK\n" @@ -1716,7 +1713,6 @@ msgstr "Sett inn som hyperlenke" #: navipi.src -#, fuzzy msgctxt "" "navipi.src\n" "STR_LINK_REGION\n" @@ -1725,7 +1721,6 @@ msgstr "Sett inn som lenke" #: navipi.src -#, fuzzy msgctxt "" "navipi.src\n" "STR_COPY_REGION\n" @@ -1734,7 +1729,6 @@ msgstr "Sett inn som kopi" #: navipi.src -#, fuzzy msgctxt "" "navipi.src\n" "STR_DISPLAY\n" @@ -1743,7 +1737,6 @@ msgstr "Vis" #: navipi.src -#, fuzzy msgctxt "" "navipi.src\n" "STR_ACTIVE_VIEW\n" @@ -1752,7 +1745,6 @@ msgstr "Aktivt vindu" #: navipi.src -#, fuzzy msgctxt "" "navipi.src\n" "STR_HIDDEN\n" @@ -1761,7 +1753,6 @@ msgstr "skjult" #: navipi.src -#, fuzzy msgctxt "" "navipi.src\n" "STR_ACTIVE\n" @@ -1770,7 +1761,6 @@ msgstr "aktivt" #: navipi.src -#, fuzzy msgctxt "" "navipi.src\n" "STR_INACTIVE\n" @@ -1779,7 +1769,6 @@ msgstr "inaktiv" #: navipi.src -#, fuzzy msgctxt "" "navipi.src\n" "STR_EDIT_ENTRY\n" @@ -1788,7 +1777,6 @@ msgstr "Rediger …" #: navipi.src -#, fuzzy msgctxt "" "navipi.src\n" "STR_UPDATE\n" @@ -1797,7 +1785,6 @@ msgstr "~Oppdater" #: navipi.src -#, fuzzy msgctxt "" "navipi.src\n" "STR_EDIT_CONTENT\n" @@ -1806,7 +1793,6 @@ msgstr "Rediger" #: navipi.src -#, fuzzy msgctxt "" "navipi.src\n" "STR_EDIT_LINK\n" @@ -1815,7 +1801,6 @@ msgstr "Rediger lenke" #: navipi.src -#, fuzzy msgctxt "" "navipi.src\n" "STR_EDIT_INSERT\n" @@ -1824,7 +1809,6 @@ msgstr "Sett inn" #: navipi.src -#, fuzzy msgctxt "" "navipi.src\n" "STR_INDEX\n" @@ -1833,7 +1817,6 @@ msgstr "~Register" #: navipi.src -#, fuzzy msgctxt "" "navipi.src\n" "STR_FILE\n" @@ -1842,7 +1825,6 @@ msgstr "Fil" #: navipi.src -#, fuzzy msgctxt "" "navipi.src\n" "STR_NEW_FILE\n" @@ -1851,7 +1833,6 @@ msgstr "Nytt dokument" #: navipi.src -#, fuzzy msgctxt "" "navipi.src\n" "STR_INSERT_TEXT\n" @@ -1860,7 +1841,6 @@ msgstr "Tekst" #: navipi.src -#, fuzzy msgctxt "" "navipi.src\n" "STR_DELETE\n" @@ -1869,7 +1849,6 @@ msgstr "Slett" #: navipi.src -#, fuzzy msgctxt "" "navipi.src\n" "STR_DELETE_ENTRY\n" @@ -1878,7 +1857,6 @@ msgstr "~Slett" #: navipi.src -#, fuzzy msgctxt "" "navipi.src\n" "STR_UPDATE_SEL\n" @@ -1887,7 +1865,6 @@ msgstr "Utvalg" #: navipi.src -#, fuzzy msgctxt "" "navipi.src\n" "STR_UPDATE_INDEX\n" @@ -1896,7 +1873,6 @@ msgstr "Registre" #: navipi.src -#, fuzzy msgctxt "" "navipi.src\n" "STR_UPDATE_LINK\n" @@ -1905,7 +1881,6 @@ msgstr "Lenker" #: navipi.src -#, fuzzy msgctxt "" "navipi.src\n" "STR_UPDATE_ALL\n" @@ -1914,7 +1889,6 @@ msgstr "Alle" #: navipi.src -#, fuzzy msgctxt "" "navipi.src\n" "STR_REMOVE_INDEX\n" @@ -1923,7 +1897,6 @@ msgstr "~Fjern indeks" #: navipi.src -#, fuzzy msgctxt "" "navipi.src\n" "STR_REMOVE_TBL_PROTECTION\n" @@ -1932,7 +1905,6 @@ msgstr "~Fjern beskyttelse" #: navipi.src -#, fuzzy msgctxt "" "navipi.src\n" "STR_INVISIBLE\n" @@ -1941,7 +1913,6 @@ msgstr "skjult" #: navipi.src -#, fuzzy msgctxt "" "navipi.src\n" "STR_BROKEN_LINK\n" @@ -1950,7 +1921,6 @@ msgstr "Fant ikke fila: " #: navipi.src -#, fuzzy msgctxt "" "navipi.src\n" "STR_RENAME\n" @@ -1959,7 +1929,6 @@ msgstr "~Endre navn" #: navipi.src -#, fuzzy msgctxt "" "navipi.src\n" "STR_READONLY_IDX\n" @@ -1968,7 +1937,6 @@ msgstr "Skrive~beskyttet" #: navipi.src -#, fuzzy msgctxt "" "navipi.src\n" "STR_POSTIT_SHOW\n" @@ -1977,7 +1945,6 @@ msgstr "Vis alle" #: navipi.src -#, fuzzy msgctxt "" "navipi.src\n" "STR_POSTIT_HIDE\n" @@ -1986,7 +1953,6 @@ msgstr "Skjul alle" #: navipi.src -#, fuzzy msgctxt "" "navipi.src\n" "STR_POSTIT_DELETE\n" @@ -2016,7 +1982,7 @@ "STR_VIEWLAYOUT_MULTI\n" "string.text" msgid "Multiple-page view" -msgstr "" +msgstr "Flersidevisning" #: statusbar.src msgctxt "" @@ -2032,7 +1998,7 @@ "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 -Nru libreoffice-5.1.1~rc2/translations/source/nb/sw/uiconfig/swriter/ui.po libreoffice-5.1.2~rc2/translations/source/nb/sw/uiconfig/swriter/ui.po --- libreoffice-5.1.1~rc2/translations/source/nb/sw/uiconfig/swriter/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/nb/sw/uiconfig/swriter/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 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 @@ "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 @@ "label\n" "string.text" msgid "Highlighting" -msgstr "" +msgstr "Utheving" #: characterproperties.ui msgctxt "" @@ -2966,7 +2966,7 @@ "label\n" "string.text" msgid "Password..." -msgstr "" +msgstr "Passord …" #: editsectiondialog.ui msgctxt "" @@ -5454,10 +5454,9 @@ "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 @@ "label\n" "string.text" msgid "_Accept" -msgstr "" +msgstr "_Godta" #: managechangessidebar.ui msgctxt "" @@ -7534,7 +7533,7 @@ "label\n" "string.text" msgid "_Reject" -msgstr "" +msgstr "_Avvis" #: managechangessidebar.ui msgctxt "" @@ -7543,7 +7542,7 @@ "label\n" "string.text" msgid "A_ccept All" -msgstr "" +msgstr "_Godta alt" #: managechangessidebar.ui msgctxt "" @@ -7552,7 +7551,7 @@ "label\n" "string.text" msgid "R_eject All" -msgstr "" +msgstr "Avvis alt" #: mergeconnectdialog.ui msgctxt "" @@ -9160,7 +9159,7 @@ "label\n" "string.text" msgid "Edit Style" -msgstr "" +msgstr "Rediger stil" #: numparapage.ui msgctxt "" @@ -9533,7 +9532,7 @@ "label\n" "string.text" msgid "Take it into account when comparing" -msgstr "" +msgstr "Ta med ved sammenligning" #: optcomparison.ui msgctxt "" @@ -9542,7 +9541,7 @@ "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 @@ "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 @@ "label\n" "string.text" msgid "Enable cursor" -msgstr "" +msgstr "SlÃ¥ pÃ¥ markør" #: optformataidspage.ui msgctxt "" @@ -9947,7 +9946,7 @@ "label\n" "string.text" msgid "Ignore protection" -msgstr "" +msgstr "Ignorer beskyttelse" #: optformataidspage.ui msgctxt "" @@ -9956,7 +9955,7 @@ "label\n" "string.text" msgid "Protected Areas" -msgstr "" +msgstr "Beskyttede omrÃ¥der" #: optgeneralpage.ui msgctxt "" @@ -10433,7 +10432,7 @@ "label\n" "string.text" msgid "New Table Defaults" -msgstr "" +msgstr "Standardvalg for nye tabeller" #: opttablepage.ui msgctxt "" @@ -10580,7 +10579,6 @@ msgstr "K_olonne:" #: opttablepage.ui -#, fuzzy msgctxt "" "opttablepage.ui\n" "label14\n" @@ -12283,7 +12281,7 @@ "label\n" "string.text" msgid "Password..." -msgstr "" +msgstr "Passord …" #: sectionpage.ui msgctxt "" @@ -12628,7 +12626,6 @@ msgstr "Marg" #: sidebartheme.ui -#, fuzzy msgctxt "" "sidebartheme.ui\n" "label1\n" @@ -12638,7 +12635,6 @@ msgstr "Skrift" #: sidebartheme.ui -#, fuzzy msgctxt "" "sidebartheme.ui\n" "label2\n" @@ -12762,7 +12758,7 @@ "label\n" "string.text" msgid "Enable Contour" -msgstr "" +msgstr "Aktiver kontur" #: sidebarwrap.ui msgctxt "" @@ -12771,7 +12767,7 @@ "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 @@ "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 @@ "label\n" "string.text" msgid "Edit Contour" -msgstr "" +msgstr "Rediger omrisset" #: sidebarwrap.ui msgctxt "" @@ -12798,7 +12794,7 @@ "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 @@ "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 @@ "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 @@ "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 @@ "label\n" "string.text" msgid "Custom" -msgstr "" +msgstr "Tilpass" #: sidebarwrap.ui -#, fuzzy msgctxt "" "sidebarwrap.ui\n" "spacinglist\n" @@ -12863,7 +12857,7 @@ "1\n" "stringlist.text" msgid "Extra Small (0.16cm)" -msgstr "" +msgstr "Ekstra liten (0,16 cm)" #: sidebarwrap.ui msgctxt "" @@ -12872,7 +12866,7 @@ "2\n" "stringlist.text" msgid "Small (0.32cm)" -msgstr "" +msgstr "Liten (0,32cm)" #: sidebarwrap.ui msgctxt "" @@ -12881,7 +12875,7 @@ "3\n" "stringlist.text" msgid "Small Medium (0.64cm)" -msgstr "" +msgstr "Middels liten (0,64 cm)" #: sidebarwrap.ui msgctxt "" @@ -12890,7 +12884,7 @@ "4\n" "stringlist.text" msgid "Medium (0.95cm)" -msgstr "" +msgstr "Middels (0,95 cm)" #: sidebarwrap.ui msgctxt "" @@ -12899,7 +12893,7 @@ "5\n" "stringlist.text" msgid "Medium Large (1.27cm)" -msgstr "" +msgstr "Middels stor (1,27 cm)" #: sidebarwrap.ui msgctxt "" @@ -12908,7 +12902,7 @@ "6\n" "stringlist.text" msgid "Large (1.9cm)" -msgstr "" +msgstr "Stor (1,9 cm)" #: sidebarwrap.ui msgctxt "" @@ -12917,7 +12911,7 @@ "7\n" "stringlist.text" msgid "Extra Large (2.54cm)" -msgstr "" +msgstr "Ekstra stor (2,54 cm)" #: sortdialog.ui msgctxt "" @@ -13097,7 +13091,7 @@ "label\n" "string.text" msgid "Select..." -msgstr "" +msgstr "Velg..." #: sortdialog.ui msgctxt "" @@ -13709,7 +13703,7 @@ "label\n" "string.text" msgid "Highlighting" -msgstr "" +msgstr "Utheving" #: templatedialog1.ui msgctxt "" @@ -13898,7 +13892,7 @@ "label\n" "string.text" msgid "Highlighting" -msgstr "" +msgstr "Utheving" #: templatedialog2.ui msgctxt "" @@ -14546,7 +14540,7 @@ "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 @@ "label\n" "string.text" msgid "Index or Table of Contents" -msgstr "" +msgstr "Sett inn register eller innholdsfortegnelse" #: tocdialog.ui msgctxt "" @@ -15140,7 +15134,7 @@ "label\n" "string.text" msgid "Create Index or Table of Contents" -msgstr "" +msgstr "Lag register eller innholdsfortegnelse" #: tocindexpage.ui msgctxt "" @@ -15224,14 +15218,13 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/nb/uui/source.po libreoffice-5.1.2~rc2/translations/source/nb/uui/source.po --- libreoffice-5.1.1~rc2/translations/source/nb/uui/source.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/nb/uui/source.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 @@ "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 -Nru libreoffice-5.1.1~rc2/translations/source/nb/uui/uiconfig/ui.po libreoffice-5.1.2~rc2/translations/source/nb/uui/uiconfig/ui.po --- libreoffice-5.1.1~rc2/translations/source/nb/uui/uiconfig/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/nb/uui/uiconfig/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 @@ "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 @@ msgstr "_Husk passord" #: logindialog.ui -#, fuzzy msgctxt "" "logindialog.ui\n" "accountft\n" @@ -73,7 +71,6 @@ msgstr "_Konto" #: logindialog.ui -#, fuzzy msgctxt "" "logindialog.ui\n" "passwordft\n" @@ -83,24 +80,22 @@ 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 @@ "label\n" "string.text" msgid "_Browse…" -msgstr "" +msgstr "_Bla gjennom …" #: logindialog.ui -#, fuzzy msgctxt "" "logindialog.ui\n" "loginrealm\n" @@ -184,17 +178,15 @@ 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 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/nb/vcl/source/src.po libreoffice-5.1.2~rc2/translations/source/nb/vcl/source/src.po --- libreoffice-5.1.1~rc2/translations/source/nb/vcl/source/src.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/nb/vcl/source/src.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 @@ "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 @@ "SV_APP_CPUTHREADS\n" "string.text" msgid "CPU Threads: " -msgstr "" +msgstr "CPU trÃ¥der" #: app.src msgctxt "" @@ -30,7 +30,7 @@ "SV_APP_OSVERSION\n" "string.text" msgid "OS Version: " -msgstr "" +msgstr "Operativsystemversjon:" #: app.src msgctxt "" @@ -38,7 +38,7 @@ "SV_APP_UIRENDER\n" "string.text" msgid "UI Render: " -msgstr "" +msgstr "Brukergrensesnitt gjengiver:" #: app.src msgctxt "" @@ -46,7 +46,7 @@ "SV_APP_GL\n" "string.text" msgid "GL" -msgstr "" +msgstr "GL" #: app.src msgctxt "" @@ -54,7 +54,7 @@ "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 -Nru libreoffice-5.1.1~rc2/translations/source/nb/wizards/source/formwizard.po libreoffice-5.1.2~rc2/translations/source/nb/wizards/source/formwizard.po --- libreoffice-5.1.1~rc2/translations/source/nb/wizards/source/formwizard.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/nb/wizards/source/formwizard.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "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 @@ "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 @@ msgstr "hent den største av" #: dbwizres.src -#, fuzzy msgctxt "" "dbwizres.src\n" "RID_DB_QUERY_WIZARD_START + 44\n" diff -Nru libreoffice-5.1.1~rc2/translations/source/ne/cui/uiconfig/ui.po libreoffice-5.1.2~rc2/translations/source/ne/cui/uiconfig/ui.po --- libreoffice-5.1.1~rc2/translations/source/ne/cui/uiconfig/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ne/cui/uiconfig/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 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 @@ "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 @@ 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 @@ 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 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/ne/dbaccess/uiconfig/ui.po libreoffice-5.1.2~rc2/translations/source/ne/dbaccess/uiconfig/ui.po --- libreoffice-5.1.1~rc2/translations/source/ne/dbaccess/uiconfig/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ne/dbaccess/uiconfig/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,15 +4,17 @@ "Project-Id-Version: PACKAGE VERSION\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 @@ 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 @@ msgstr "" #: queryfilterdialog.ui +#, fuzzy msgctxt "" "queryfilterdialog.ui\n" "cond1\n" "4\n" "stringlist.text" msgid ">" -msgstr "" +msgstr ">" #: queryfilterdialog.ui msgctxt "" @@ -3015,58 +3020,64 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/ne/extensions/uiconfig/sabpilot/ui.po libreoffice-5.1.2~rc2/translations/source/ne/extensions/uiconfig/sabpilot/ui.po --- libreoffice-5.1.1~rc2/translations/source/ne/extensions/uiconfig/sabpilot/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ne/extensions/uiconfig/sabpilot/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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 @@ "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 @@ msgstr "" #: gridfieldsselectionpage.ui +#, fuzzy msgctxt "" "gridfieldsselectionpage.ui\n" "fieldright\n" "label\n" "string.text" msgid "->" -msgstr "" +msgstr "->" #: gridfieldsselectionpage.ui msgctxt "" @@ -299,13 +300,14 @@ msgstr "" #: gridfieldsselectionpage.ui +#, fuzzy msgctxt "" "gridfieldsselectionpage.ui\n" "fieldleft\n" "label\n" "string.text" msgid "<-" -msgstr "" +msgstr "<-" #: gridfieldsselectionpage.ui msgctxt "" @@ -380,22 +382,24 @@ 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 @@ msgstr "" #: tableselectionpage.ui +#, fuzzy msgctxt "" "tableselectionpage.ui\n" "search\n" "label\n" "string.text" msgid "_..." -msgstr "" +msgstr "_..." #: tableselectionpage.ui msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/ne/formula/source/core/resource.po libreoffice-5.1.2~rc2/translations/source/ne/formula/source/core/resource.po --- libreoffice-5.1.1~rc2/translations/source/ne/formula/source/core/resource.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ne/formula/source/core/resource.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\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-29 16:07+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff -Nru libreoffice-5.1.1~rc2/translations/source/ne/helpcontent2/source/text/scalc/01.po libreoffice-5.1.2~rc2/translations/source/ne/helpcontent2/source/text/scalc/01.po --- libreoffice-5.1.1~rc2/translations/source/ne/helpcontent2/source/text/scalc/01.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ne/helpcontent2/source/text/scalc/01.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\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 @@ "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 @@ 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 @@ msgstr "भनà¥à¤¦à¤¾ कम" #: 12090103.xhp +#, fuzzy msgctxt "" "12090103.xhp\n" "par_id3155335\n" "17\n" "help.text" msgid ">" -msgstr "" +msgstr ">" #: 12090103.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/ne/helpcontent2/source/text/shared/00.po libreoffice-5.1.2~rc2/translations/source/ne/helpcontent2/source/text/shared/00.po --- libreoffice-5.1.1~rc2/translations/source/ne/helpcontent2/source/text/shared/00.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ne/helpcontent2/source/text/shared/00.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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 @@ "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 @@ msgstr "" #: 00000021.xhp +#, fuzzy msgctxt "" "00000021.xhp\n" "par_id100120091238112\n" "help.text" msgid "-" -msgstr "" +msgstr "-" #: 00000021.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/ne/helpcontent2/source/text/shared/01.po libreoffice-5.1.2~rc2/translations/source/ne/helpcontent2/source/text/shared/01.po --- libreoffice-5.1.1~rc2/translations/source/ne/helpcontent2/source/text/shared/01.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ne/helpcontent2/source/text/shared/01.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 @@ "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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ msgstr "वà¥à¤¯à¤¾à¤–à¥à¤¯à¤¾" #: 05020301.xhp +#, fuzzy msgctxt "" "05020301.xhp\n" "par_id3152801\n" "5\n" "help.text" msgid "#" -msgstr "" +msgstr "#" #: 05020301.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/ne/helpcontent2/source/text/shared/02.po libreoffice-5.1.2~rc2/translations/source/ne/helpcontent2/source/text/shared/02.po --- libreoffice-5.1.1~rc2/translations/source/ne/helpcontent2/source/text/shared/02.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ne/helpcontent2/source/text/shared/02.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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 @@ "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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/ne/helpcontent2/source/text/shared/autopi.po libreoffice-5.1.2~rc2/translations/source/ne/helpcontent2/source/text/shared/autopi.po --- libreoffice-5.1.1~rc2/translations/source/ne/helpcontent2/source/text/shared/autopi.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ne/helpcontent2/source/text/shared/autopi.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 @@ "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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/ne/helpcontent2/source/text/shared/explorer/database.po libreoffice-5.1.2~rc2/translations/source/ne/helpcontent2/source/text/shared/explorer/database.po --- libreoffice-5.1.1~rc2/translations/source/ne/helpcontent2/source/text/shared/explorer/database.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ne/helpcontent2/source/text/shared/explorer/database.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\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 @@ "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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ msgstr "<ahelp hid=\".\">फाà¤à¤Ÿ सूचना समà¥à¤ªà¤¾à¤¦à¤¨ गरà¥à¤¨à¤•à¤¾ लागि à¤à¤‰à¤Ÿà¤¾ फाà¤à¤Ÿ चयन गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥ ।</ahelp>" #: tablewizard02.xhp +#, fuzzy msgctxt "" "tablewizard02.xhp\n" "par_idN10574\n" "help.text" msgid "-" -msgstr "" +msgstr "-" #: tablewizard02.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/ne/helpcontent2/source/text/swriter/01.po libreoffice-5.1.2~rc2/translations/source/ne/helpcontent2/source/text/swriter/01.po --- libreoffice-5.1.1~rc2/translations/source/ne/helpcontent2/source/text/swriter/01.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ne/helpcontent2/source/text/swriter/01.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 @@ "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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/ne/helpcontent2/source/text/swriter/02.po libreoffice-5.1.2~rc2/translations/source/ne/helpcontent2/source/text/swriter/02.po --- libreoffice-5.1.1~rc2/translations/source/ne/helpcontent2/source/text/swriter/02.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ne/helpcontent2/source/text/swriter/02.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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 @@ "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 @@ msgstr "घटाउनà¥" #: 14020000.xhp +#, fuzzy msgctxt "" "14020000.xhp\n" "par_id3150087\n" "12\n" "help.text" msgid "-" -msgstr "" +msgstr "-" #: 14020000.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/ne/librelogo/source/pythonpath.po libreoffice-5.1.2~rc2/translations/source/ne/librelogo/source/pythonpath.po --- libreoffice-5.1.1~rc2/translations/source/ne/librelogo/source/pythonpath.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ne/librelogo/source/pythonpath.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,18 +3,18 @@ msgstr "" "Project-Id-Version: LibO 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 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/ne/officecfg/registry/data/org/openoffice/Office.po libreoffice-5.1.2~rc2/translations/source/ne/officecfg/registry/data/org/openoffice/Office.po --- libreoffice-5.1.1~rc2/translations/source/ne/officecfg/registry/data/org/openoffice/Office.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ne/officecfg/registry/data/org/openoffice/Office.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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 @@ "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 @@ msgstr "" #: PresentationMinimizer.xcu +#, fuzzy msgctxt "" "PresentationMinimizer.xcu\n" "..PresentationMinimizer.Strings\n" "STR_FILESIZESEPARATOR\n" "value.text" msgid "." -msgstr "" +msgstr "." #: PresentationMinimizer.xcu msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/ne/reportdesign/uiconfig/dbreport/ui.po libreoffice-5.1.2~rc2/translations/source/ne/reportdesign/uiconfig/dbreport/ui.po --- libreoffice-5.1.1~rc2/translations/source/ne/reportdesign/uiconfig/dbreport/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ne/reportdesign/uiconfig/dbreport/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 @@ "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 @@ msgstr "" #: conditionwin.ui +#, fuzzy msgctxt "" "conditionwin.ui\n" "lhsButton\n" "label\n" "string.text" msgid "..." -msgstr "" +msgstr "..." #: conditionwin.ui msgctxt "" @@ -215,13 +216,14 @@ msgstr "" #: conditionwin.ui +#, fuzzy msgctxt "" "conditionwin.ui\n" "rhsButton\n" "label\n" "string.text" msgid "..." -msgstr "" +msgstr "..." #: conditionwin.ui msgctxt "" @@ -278,13 +280,14 @@ msgstr "" #: conditionwin.ui +#, fuzzy msgctxt "" "conditionwin.ui\n" "removeButton\n" "label\n" "string.text" msgid "-" -msgstr "" +msgstr "-" #: conditionwin.ui msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/ne/sc/source/ui/src.po libreoffice-5.1.2~rc2/translations/source/ne/sc/source/ui/src.po --- libreoffice-5.1.1~rc2/translations/source/ne/sc/source/ui/src.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ne/sc/source/ui/src.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 @@ "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 @@ msgstr "पाठ विशेषताहरू" #: globstr.src +#, fuzzy msgctxt "" "globstr.src\n" "RID_GLOBSTR\n" "STR_HFCMD_DELIMITER\n" "string.text" msgid "\\" -msgstr "" +msgstr "\\" #: globstr.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/ne/scaddins/source/analysis.po libreoffice-5.1.2~rc2/translations/source/ne/scaddins/source/analysis.po --- libreoffice-5.1.1~rc2/translations/source/ne/scaddins/source/analysis.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ne/scaddins/source/analysis.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-11-24 04:39-0500\n" +"POT-Creation-Date: 2016-03-29 16:07+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff -Nru libreoffice-5.1.1~rc2/translations/source/ne/sd/source/ui/app.po libreoffice-5.1.2~rc2/translations/source/ne/sd/source/ui/app.po --- libreoffice-5.1.1~rc2/translations/source/ne/sd/source/ui/app.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ne/sd/source/ui/app.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 @@ "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 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/ne/sd/uiconfig/simpress/ui.po libreoffice-5.1.2~rc2/translations/source/ne/sd/uiconfig/simpress/ui.po --- libreoffice-5.1.1~rc2/translations/source/ne/sd/uiconfig/simpress/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ne/sd/uiconfig/simpress/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 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 @@ "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 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/ne/starmath/source.po libreoffice-5.1.2~rc2/translations/source/ne/starmath/source.po --- libreoffice-5.1.1~rc2/translations/source/ne/starmath/source.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ne/starmath/source.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\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-12 13:26+0200\n" +"POT-Creation-Date: 2016-03-29 16:07+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff -Nru libreoffice-5.1.1~rc2/translations/source/ne/sw/source/core/undo.po libreoffice-5.1.2~rc2/translations/source/ne/sw/source/core/undo.po --- libreoffice-5.1.1~rc2/translations/source/ne/sw/source/core/undo.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ne/sw/source/core/undo.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 @@ "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 @@ 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 @@ msgstr "कà¥à¤²à¤¿à¤ªà¤¬à¥‹à¤°à¥à¤¡ टाà¤à¤¸à¥à¤¨à¥à¤¹à¥‹à¤¸à¥" #: undo.src +#, fuzzy msgctxt "" "undo.src\n" "STR_YIELDS\n" "string.text" msgid "->" -msgstr "" +msgstr "->" #: undo.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/ne/sw/source/ui/dbui.po libreoffice-5.1.2~rc2/translations/source/ne/sw/source/ui/dbui.po --- libreoffice-5.1.1~rc2/translations/source/ne/sw/source/ui/dbui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ne/sw/source/ui/dbui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 @@ "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 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/ne/sw/source/ui/index.po libreoffice-5.1.2~rc2/translations/source/ne/sw/source/ui/index.po --- libreoffice-5.1.1~rc2/translations/source/ne/sw/source/ui/index.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ne/sw/source/ui/index.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,17 +3,18 @@ msgstr "" "Project-Id-Version: PACKAGE 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 @@ 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 @@ msgstr "" #: cnttab.src +#, fuzzy msgctxt "" "cnttab.src\n" "STR_TOKEN_PAGE_NUMS\n" "string.text" msgid "#" -msgstr "" +msgstr "#" #: cnttab.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/ne/sw/source/ui/misc.po libreoffice-5.1.2~rc2/translations/source/ne/sw/source/ui/misc.po --- libreoffice-5.1.1~rc2/translations/source/ne/sw/source/ui/misc.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ne/sw/source/ui/misc.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 @@ "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 @@ msgstr "यो वरà¥à¤— मेटà¥à¤¨à¥à¤¹à¥‹à¤¸à¥ " #: glossary.src +#, fuzzy msgctxt "" "glossary.src\n" "STR_QUERY_DELETE_GROUP2\n" "string.text" msgid "?" -msgstr "" +msgstr "?" #: glossary.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/ne/sw/source/ui/utlui.po libreoffice-5.1.2~rc2/translations/source/ne/sw/source/ui/utlui.po --- libreoffice-5.1.1~rc2/translations/source/ne/sw/source/ui/utlui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ne/sw/source/ui/utlui.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE 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-20 11:58+0100\n" +"POT-Creation-Date: 2016-03-29 16:07+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff -Nru libreoffice-5.1.1~rc2/translations/source/ne/sw/uiconfig/swriter/ui.po libreoffice-5.1.2~rc2/translations/source/ne/sw/uiconfig/swriter/ui.po --- libreoffice-5.1.1~rc2/translations/source/ne/sw/uiconfig/swriter/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ne/sw/uiconfig/swriter/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 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 @@ "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 @@ msgstr "तालिकालाई पाठमा रूपानà¥à¤¤à¤°à¤£ गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥" #: converttexttable.ui +#, fuzzy msgctxt "" "converttexttable.ui\n" "othered\n" "text\n" "string.text" msgid "," -msgstr "" +msgstr "," #: converttexttable.ui msgctxt "" @@ -2476,13 +2477,14 @@ msgstr "" #: createaddresslist.ui +#, fuzzy msgctxt "" "createaddresslist.ui\n" "PREV\n" "label\n" "string.text" msgid "<" -msgstr "" +msgstr "<" #: createaddresslist.ui msgctxt "" @@ -2494,13 +2496,14 @@ msgstr "" #: createaddresslist.ui +#, fuzzy msgctxt "" "createaddresslist.ui\n" "NEXT\n" "label\n" "string.text" msgid ">" -msgstr "" +msgstr ">" #: createaddresslist.ui msgctxt "" @@ -4393,13 +4396,14 @@ msgstr "कà¥à¤¨à¥ˆ पनि होइन" #: fldvarpage.ui +#, fuzzy msgctxt "" "fldvarpage.ui\n" "separator\n" "text\n" "string.text" msgid "." -msgstr "" +msgstr "." #: fldvarpage.ui msgctxt "" @@ -5353,22 +5357,24 @@ 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 @@ 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 @@ msgstr "" #: mmpreparepage.ui +#, fuzzy msgctxt "" "mmpreparepage.ui\n" "prev\n" "label\n" "string.text" msgid "<" -msgstr "" +msgstr "<" #: mmpreparepage.ui msgctxt "" @@ -8636,13 +8644,14 @@ msgstr "" #: mmpreparepage.ui +#, fuzzy msgctxt "" "mmpreparepage.ui\n" "next\n" "label\n" "string.text" msgid ">" -msgstr "" +msgstr ">" #: mmpreparepage.ui #, fuzzy @@ -9496,13 +9505,14 @@ msgstr "सà¥à¤¥à¤¾à¤¨" #: optcaptionpage.ui +#, fuzzy msgctxt "" "optcaptionpage.ui\n" "numseparator\n" "text\n" "string.text" msgid ". " -msgstr "" +msgstr ". " #: optcaptionpage.ui msgctxt "" @@ -15551,40 +15561,44 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/ne/vcl/source/src.po libreoffice-5.1.2~rc2/translations/source/ne/vcl/source/src.po --- libreoffice-5.1.1~rc2/translations/source/ne/vcl/source/src.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ne/vcl/source/src.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 @@ "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 @@ 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 @@ 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 @@ 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 @@ msgstr "" #: units.src +#, fuzzy msgctxt "" "units.src\n" "SV_FUNIT_STRINGS\n" "°\n" "itemlist.text" msgid "°" -msgstr "" +msgstr "°" #: units.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/ne/wizards/source/formwizard.po libreoffice-5.1.2~rc2/translations/source/ne/wizards/source/formwizard.po --- libreoffice-5.1.1~rc2/translations/source/ne/wizards/source/formwizard.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ne/wizards/source/formwizard.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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 @@ "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 @@ msgstr "" #: dbwizres.src +#, fuzzy msgctxt "" "dbwizres.src\n" "RID_DB_TABLE_WIZARD_START + 22\n" "string.text" msgid "-" -msgstr "" +msgstr "-" #: dbwizres.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/nl/formula/source/core/resource.po libreoffice-5.1.2~rc2/translations/source/nl/formula/source/core/resource.po --- libreoffice-5.1.1~rc2/translations/source/nl/formula/source/core/resource.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/nl/formula/source/core/resource.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\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-29 16:07+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff -Nru libreoffice-5.1.1~rc2/translations/source/nl/helpcontent2/source/text/sbasic/shared.po libreoffice-5.1.2~rc2/translations/source/nl/helpcontent2/source/text/sbasic/shared.po --- libreoffice-5.1.1~rc2/translations/source/nl/helpcontent2/source/text/sbasic/shared.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/nl/helpcontent2/source/text/sbasic/shared.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\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-09-03 07:50+0000\n" -"Last-Translator: kees538 <kees538@gmail.com>\n" +"PO-Revision-Date: 2016-03-04 13:38+0000\n" +"Last-Translator: vpanter <leo.moons@telenet.be>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: nl\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1441266634.000000\n" +"X-POOTLE-MTIME: 1457098727.000000\n" #: 00000002.xhp msgctxt "" @@ -9177,7 +9177,7 @@ "4\n" "help.text" msgid "Open FileName As String [For Mode] [Access IOMode] [Protected] As [#]FileNumber As Integer [Len = DatasetLength]" -msgstr "Open BestandsNaam As String [Voor Modus] [Access IOMode] [Beveiligd] As [#]BestandsNummer As Integer [Len = DatasetLength]" +msgstr "Open FileName As String [For Mode] [Access IOMode] [Protected] As [#]FileNumber As Integer [Len = DatasetLength]" #: 03020103.xhp msgctxt "" @@ -22115,7 +22115,7 @@ "6\n" "help.text" msgid "While Condition [Statement] Wend" -msgstr "While Voorwaarde [Instructie] Wend" +msgstr "While Condition [Statement] Wend" #: 03090203.xhp msgctxt "" @@ -28447,7 +28447,7 @@ "9\n" "help.text" msgid "<emph>[Dimension]:</emph> Integer that specifies which dimension to return the upper (<emph>Ubound</emph>) or the lower (<emph>LBound</emph>) boundary for. If a value is not specified, the first dimension is assumed." -msgstr "<emph>[Dimensie]:</emph> Integer die specificeert welke dimensie moet worden teruggegeven voor de boven- (<emph>Ubound</emph>) of ondergrens (<emph>LBound</emph>). Als er geen waarde is gespecificeerd, wordt de eerste dimensie aangenomen." +msgstr "<emph>[Dimension]:</emph> Integer die specificeert welke dimensie moet worden teruggegeven voor de boven (<emph>Ubound</emph>) of ondergrens (<emph>LBound</emph>). Als er geen waarde is gespecificeerd, wordt de eerste dimensie aangenomen." #: 03102900.xhp msgctxt "" @@ -28589,7 +28589,7 @@ "9\n" "help.text" msgid "<emph>[Dimension]:</emph> Integer that specifies which dimension to return the upper(<emph>Ubound</emph>) or lower (<emph>LBound</emph>) boundary for. If no value is specified, the boundary of the first dimension is returned." -msgstr "<emph>[Dimensie]:</emph> Integer die specificeert welke dimensie wordt teruggegeven voor de boven- (<emph>Ubound</emph>) of ondergrens (<emph>LBound</emph>). Als er geen waarde is gespecificeerd, wordt de grenswaarde van de eerste dimensie teruggegeven." +msgstr "<emph>[Dimension]:</emph> Integer die specificeert welke dimensie wordt teruggegeven voor de boven (<emph>Ubound</emph>) of ondergrens (<emph>LBound</emph>). Als er geen waarde is gespecificeerd, wordt de grenswaarde van de eerste dimensie teruggegeven." #: 03103000.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/nl/helpcontent2/source/text/scalc/01.po libreoffice-5.1.2~rc2/translations/source/nl/helpcontent2/source/text/scalc/01.po --- libreoffice-5.1.1~rc2/translations/source/nl/helpcontent2/source/text/scalc/01.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/nl/helpcontent2/source/text/scalc/01.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\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-06 10:31+0000\n" -"Last-Translator: Cor Nouws <cor.nouws@documentfoundation.org>\n" +"PO-Revision-Date: 2016-03-28 08:32+0000\n" +"Last-Translator: kees538 <kees538@gmail.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: nl\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1454754707.000000\n" +"X-POOTLE-MTIME: 1459153929.000000\n" #: 01120000.xhp msgctxt "" @@ -556,7 +556,7 @@ "hd_id3145251\n" "help.text" msgid "<link href=\"text/scalc/01/02120000.xhp\" name=\"Headers & Footers\">Headers & Footers</link>" -msgstr "<link href=\"text/scalc/01/02120100.xhp\" name=\"Koptekst/Voettekst\">Koptekst/Voettekst</link>" +msgstr "<link href=\"text/scalc/01/02120000.xhp\" name=\"Kopteksten & Voetteksten\">Kopteksten & Voetteksten</link>" #: 02120000.xhp msgctxt "" @@ -564,7 +564,7 @@ "par_id3151073\n" "help.text" msgid "<variable id=\"kopfundfusszeilentext\"><ahelp hid=\".\">Allows you to define and format headers and footers.</ahelp> </variable>" -msgstr "<variable id=\"kopfundfusszeilentext\">Definieer en bepaal de opmaak van kop- en voetteksten.</ahelp></variable>" +msgstr "<variable id=\"kopfundfusszeilentext\"><ahelp hid=\".\">Definieer en bepaal de opmaak van kop- en voetteksten.</ahelp></variable>" #: 02120000.xhp msgctxt "" @@ -1712,7 +1712,7 @@ "par_id2308201415431874867\n" "help.text" msgid "<ahelp hid=\".\">The distribution function for the random number generator.</ahelp>" -msgstr "<ahelp hid=\"\">De verdelingsfunctie van de willekeurige nummergenerator.</ahelp>" +msgstr "<ahelp hid=\".\">De verdelingsfunctie van de willekeurige nummergenerator.</ahelp>" #: 02140700.xhp msgctxt "" @@ -2732,7 +2732,7 @@ "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\">Somt de bladen in het huidige document op. Druk, om een blad te selecteren, op de pijltjestoetsen naar boven of beneden om een blad in de lijst te verplaatsen. Houd Ctrl (Mac: Command) ingedrukt bij het drukken op de pijltjestoetsen en druk dan op de spatiebalk om een blad aan de selectie toe te voegen. Houd Shift ingedrukt en druk op de pijltjestoetsen om een bereik van bladen te selecteren. </ahelp>" +msgstr "<ahelp hid=\"HID_SELECTTABLES\" visibility=\"visible\">Somt de bladen in het huidige document op. Druk, om een blad te selecteren, op de pijltjestoetsen naar boven of beneden om een blad in de lijst te verplaatsen. Om een blad bij te selectie toe te voegen, houd <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> ingedrukt bij het drukken op de pijltjestoetsen en druk dan op de spatiebalk. Houd Shift ingedrukt en druk op de pijltjestoetsen om een bereik van bladen te selecteren. </ahelp>" #: 03070000.xhp msgctxt "" @@ -2780,7 +2780,7 @@ "par_id3156441\n" "help.text" msgid "You can also set the view of the column and row headers in <switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"menuitem\">%PRODUCTNAME - Preferences</item></caseinline><defaultinline><item type=\"menuitem\">Tools - Options</item></defaultinline></switchinline><emph> - <link href=\"text/shared/optionen/01060100.xhp\" name=\"Spreadsheet - View\">%PRODUCTNAME Calc - View</link></emph>." -msgstr "U kunt ook de weergave van de kolom- en rijkoppen instellen in <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Voorkeuren</caseinline><defaultinline>Extra - Opties</defaultinline></switchinline> - <link href=\"text/shared/optionen/01060100.xhp\" name=\"Spreadsheet - View\">%PRODUCTNAME Calc - Weergave</link></emph>." +msgstr "U kunt ook de weergave van kolom en rijkoppen instellen in <switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"menuitem\">%PRODUCTNAME - Voorkeuren</item></caseinline><defaultinline><item type=\"menuitem\">Tools - Opties</item></defaultinline></switchinline><emph> - <link href=\"text/shared/optionen/01060100.xhp\" name=\"Spreadsheet - View\">%PRODUCTNAME Calc - Weergave</link></emph>." #: 03080000.xhp msgctxt "" @@ -2812,7 +2812,7 @@ "par_id3154366\n" "help.text" msgid "<ahelp hid=\".\">Displays cell contents in different colors, depending on type.</ahelp>" -msgstr "<ahelp hid=\".uno:ViewValueHighlighting\">Geeft celinhoud in verschillende kleuren weer, afhankelijk van het type.</ahelp>" +msgstr "<ahelp hid=\".\">Geeft celinhoud in verschillende kleuren weer, afhankelijk van het type.</ahelp>" #: 03080000.xhp msgctxt "" @@ -2868,7 +2868,7 @@ "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\">Door dit menu-item te markeren wordt de Formulebalk weergegeven. Deze wordt gebruikt om formules in te voeren en te bewerken en is het belangrijkste instrument bij het werken met werkbladen.</ahelp>" +msgstr "<ahelp hid=\".\">Door dit menu-item te markeren wordt de Formulebalk weergegeven. Deze wordt gebruikt om formules in te voeren en te bewerken en is het belangrijkste instrument bij het werken met werkbladen.</ahelp>" #: 03090000.xhp msgctxt "" @@ -16179,7 +16179,7 @@ "620\n" "help.text" msgid "Example assumption: You have entered invoices into a table. Column A contains the date value of the invoice, column B the amounts. You want to find a formula that you can use to return the total of all amounts only for a specific month, e.g. only the amount for the period >=2008-01-01 to <2008-02-01. The range with the date values covers A1:A40, the range containing the amounts to be totaled is B1:B40. C1 contains the start date, 2008<item type=\"input\">-01-01</item>, of the invoices to be included and C2 the date, 2008<item type=\"input\">-02-01</item>, that is no longer included." -msgstr "Voorbeeld uitgaande van: U heeft rekeningen in een tabel ingevoerd. Kolom A bevat de datumwaarde van de rekening, kolom B de bedragen. U wilt een formule vinden die u kunt gebruiken om het totaal van alle bedragen te berekenen, maar alleen voor een bepaalde maand, bijvoorbeeld alleen het bedrag voor de periode >=01-01-2008 tot <01-02-2008. Het bereik met de datumwaarden betreft A1:A40, het bereik dat de bedragen bevat die moeten worden getotaliseerd is B1:B40. C1 bevat de startdatum, 01-01-<item type=\"input\">2008</item>, van de rekeningen die moeten worden gebruikt en C2 de datum, 01-02-<item type=\"input\">2008</item>, die niet langer moet worden gebruikt." +msgstr "Voorbeeld uitgaande van: U heeft rekeningen in een tabel ingevoerd. Kolom A bevat de datumwaarde van de rekening, kolom B de bedragen. U wilt een formule vinden die u kunt gebruiken om het totaal van alle bedragen te berekenen, maar alleen voor een bepaalde maand, bijvoorbeeld alleen het bedrag voor de periode >=01-01-2008 tot <01-02-2008. Het bereik met de datumwaarden betreft A1:A40, het bereik dat de bedragen bevat die moeten worden getotaliseerd is B1:B40. C1 bevat de startdatum, 01-01<item type=\"input\">-2008</item>, van de rekeningen die moeten worden gebruikt en C2 de datum, 01-02<item type=\"input\">-2008</item>, die niet langer moet worden gebruikt." #: 04060106.xhp msgctxt "" @@ -18056,7 +18056,7 @@ "285\n" "help.text" msgid "You can also create a \"normal\" formula in which the reference range, such as parameters, indicate an array formula. The result is obtained from the intersection of the reference range and the rows or columns in which the formula is found. If there is no intersection or if the range at the intersection covers several rows or columns, a #VALUE! error message appears. The following example illustrates this concept:" -msgstr "U kunt ook een \"normale\" formule maken waarin het referentiebereik, zoals parameters, een matrixformule aanduiden. Het resultaat wordt verkregen uit de doorsnede van het referentiebereik en de rijen of kolommen waarin de formule wordt aangetroffen. Als er geen doorsnede is of als het bereik bij de doorsnede meerdere rijen of kolommen beslaat, verschijnt het foutbericht #WAARDE!. In het volgende voorbeeld wordt dit concept nader toegelicht:" +msgstr "U kunt ook een \"normale\" formule maken waarin het referentiebereik zoals parameters, een matrixformule aanduiden. Het resultaat wordt verkregen uit de doorsnede van het referentiebereik en de rijen of kolommen waarin de formule wordt aangetroffen. Als er geen doorsnede is of als het bereik bij de doorsnede meerdere rijen of kolommen beslaat, verschijnt het foutbericht #WAARDE!. In het volgende voorbeeld wordt dit concept nader toegelicht:" #: 04060107.xhp msgctxt "" @@ -24676,7 +24676,7 @@ "18\n" "help.text" msgid "<item type=\"input\">=DOLLAR(255)</item> returns $255.00." -msgstr "<item type=\"input\">=EUR(255)</item> geeft €255,00 terug." +msgstr "<item type=\"input\">=EUR(255)</item> geeft € 255,00 terug." #: 04060110.xhp msgctxt "" @@ -40208,7 +40208,7 @@ "85\n" "help.text" msgid "<item type=\"input\">=BINOM.INV(8;0.6;0.9)</item> returns 7, the smallest value for which the cumulative binomial distribution is greater than or equal to a criterion value." -msgstr "<item type=\"input\">=BINOM_INV(8;0,6;0,9)<item> geeft 7 terug, de kleinste waarde waarvoor de cumulatieve binomiale verdeling groter is dan of gelijk aan een criteriumwaarde." +msgstr "<item type=\"input\">=BINOM.INV(8;0,6;0,9)</item> geeft 7 terug, de kleinste waarde waarvoor de cumulatieve binomiale verdeling groter is dan of gelijk aan een criteriumwaarde." #: 04060181.xhp msgctxt "" @@ -41340,7 +41340,7 @@ "156\n" "help.text" msgid "<ahelp hid=\"HID_FUNC_CHIVERT_MS\">Returns the probability value from the indicated Chi square that a hypothesis is confirmed.</ahelp> CHISQ.DIST.RT compares the Chi square value to be given for a random sample that is calculated from the sum of (observed value-expected value)^2/expected value for all values with the theoretical Chi square distribution and determines from this the probability of error for the hypothesis to be tested." -msgstr "<ahelp hid=\"HID_FUNC_CHISQDIST_MS\">Geeft de waarschijnlijkheidswaarde van het aangegeven Chi-kwadraat dat een hypothese bevestigd wordt.</ahelp> CHI.KWADRAAT vergelijkt de te geven Chi-kwadraatswaarde voor een willekeurige steekproef die berekend wordt uit de som van (waargenomen waarde-verwachte waarde)^2/verwachte waarde voor alle waarden met de theoretische Chi-kwadraatsverdeling, en haalt hieruit de foutkans voor de hypothese die getest moet worden." +msgstr "<ahelp hid=\"HID_FUNC_CHIVERT_MS\">Geeft de waarschijnlijkheidswaarde van het aangegeven Chi-kwadraat dat een hypothese bevestigd wordt.</ahelp> CHI.KWADRAAT vergelijkt de te geven Chi-kwadraatswaarde voor een willekeurige steekproef die berekend wordt uit de som van (waargenomen waarde-verwachte waarde)^2/verwachte waarde voor alle waarden met de theoretische Chi-kwadraatsverdeling, en haalt hieruit de foutkans voor de hypothese die getest moet worden." #: 04060181.xhp msgctxt "" @@ -45028,7 +45028,7 @@ "77\n" "help.text" msgid "<ahelp hid=\"HID_FUNC_LOGNORMDIST_MS\">Returns the values of a lognormal distribution.</ahelp>" -msgstr "<ahelp hid=\"HID_FUNC_NORMDIST_MS\">Geeft de waarden van een lognormale verdeling als resultaat.</ahelp>" +msgstr "<ahelp hid=\"HID_FUNC_LOGNORMDIST_MS\">Geeft de waarden van een lognormale verdeling als resultaat.</ahelp>" #: 04060183.xhp msgctxt "" @@ -52396,7 +52396,7 @@ "par_id3151118\n" "help.text" msgid "<variable id=\"function_list_text\"><ahelp hid=\"HID_SC_FUNCTIONLIST\">Opens the Function List deck of the Sidebar, which displays all functions that can be inserted into your document.</ahelp></variable> The <emph>Function List</emph> deck is similar to the <emph>Functions</emph> tab page of the <link href=\"text/scalc/01/04060000.xhp\" name=\"Function Wizard\">Function Wizard</link>. The functions are inserted with placeholders to be replaced with your own values." -msgstr "<variable id=\"funktionslistetext\"><ahelp hid=\"HID_SC_FUNCTIONLIST\">Deze opdracht opent het venster <emph>Functielijst</emph> met alle functies die u in uw document kunt invoegen.</ahelp></variable> Het venster <emph>Functielijst</emph> lijkt op het tabblad <emph>Functies</emph> van de <link href=\"text/scalc/01/04060000.xhp\" name=\"Functie-Assistent\">Functie-Assistent</link>. De functies worden met tijdelijke aanduidingen ingevoegd die moeten worden vervangen door uw eigen waarden." +msgstr "<variable id=\"function_list_text\"><ahelp hid=\"HID_SC_FUNCTIONLIST\">Opent de functielijst van de Zijbalk met alle functies die u in uw document kunt invoegen.</ahelp></variable> Het venster <emph>Functielijst</emph> lijkt op het tabblad <emph>Functies</emph> van de <link href=\"text/scalc/01/04060000.xhp\" name=\"Functie-Assistent\">Functie-Assistent</link>. De functies worden met tijdelijke aanduidingen ingevoegd die moeten worden vervangen door uw eigen waarden." #: 04080000.xhp msgctxt "" @@ -56429,7 +56429,7 @@ "tit\n" "help.text" msgid "Freeze Rows and Columns" -msgstr "Rijen en kolommen bevriezen" +msgstr "Rijen en kolommen fixeren" #: 07090000.xhp msgctxt "" @@ -56445,7 +56445,7 @@ "par_id3156289\n" "help.text" msgid "<ahelp hid=\".\">Divides the sheet at the top left corner of the active cell and the area to the top left is no longer scrollable.</ahelp>" -msgstr "<ahelp hid=\".uno:FreezePanes\" visibility=\"visible\">Hiermee verdeelt u het scherm vanaf de linkerbovenhoek van de actieve cel en het gebied linksboven is niet langer verschuifbaar.</ahelp>" +msgstr "<ahelp hid=\".\">Hiermee verdeelt u het scherm vanaf de linkerbovenhoek van de actieve cel en het gebied linksboven is niet langer verschuifbaar.</ahelp>" #: 12010000.xhp msgctxt "" @@ -62374,7 +62374,7 @@ "par_id45123108916423\n" "help.text" msgid "Note that if the <emph>Average_Range</emph> is not specified, <emph>Range</emph> is used for both, the calculation of the mean and the search according to the condition. If the <emph>Average_Range</emph> is specified, the <emph>Range</emph> is used only for the condition test, while <emph>Average_Range</emph> is used for the mean calculation.<br/>The <emph>Criterion</emph> needs to be a string expression, in particular, the <emph>Criterion</emph> needs to be enclosed in quotation marks (\"Criterion\") with the exception of the names of functions, cell references and an operation of a string concatenation (&)." -msgstr "Merk op dat <emph>Gemiddelde_bereik</emph> niet gedefinieerd is, <emph>Bereik</emph> gebruikt wordt voor zowel de berekening van het gemiddelde als het zoeken naar de voorwaarde. Als <emph>Gemiddelde_bereik</emph> wel gedefinieerd is, wordt <emph>Bereik</emph> voor de berekening van het gemiddelde gebruikt. <emph>Criterium</emph> moet een expressie zijn van een tekenreeks en moet vooral tussen aanhalingstekens staan (\"criterium\"), met uitzondering van de namen van de functies, celverwijzingen en bij gebruik van een samenvoegingsoperator (&)." +msgstr "Merk op dat <emph>Gemiddelde_bereik</emph> niet gedefinieerd is, <emph>Bereik</emph> gebruikt wordt voor zowel de berekening van het gemiddelde als het zoeken naar de voorwaarde. Als <emph>Gemiddelde_bereik</emph> wel gedefinieerd is, wordt <emph>Bereik</emph> gebruikt voor de test van de voorwaarde terwijl <emph>Gemiddeld_bereik</emph> gebruikt wordt voor de berekening van het gemiddelde. <br/>Het <emph>Criterium</emph> moet een expressie zijn van een tekenreeks en <emph>Criterium</emph> moet tussen aanhalingstekens staan (\"Criterium\"), met uitzondering van de namen van de functies, celverwijzingen en bij gebruik van een samenvoegingsoperator (&)." #: func_averageif.xhp msgctxt "" @@ -62614,7 +62614,7 @@ "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\">GEMIDDELDE</link>, <link href=\"text/scalc/01/04060184.xhp#averagea\">GEMIDDELDE.A</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\">GROOT</link>, <link href=\"text/scalc/01/04060183.xhp#small\">KLEIN</link>" +msgstr "<link href=\"text/scalc/01/04060184.xhp#average\">GEMIDDELDE</link>, <link href=\"text/scalc/01/04060184.xhp#averagea\">GEMIDDELDEA</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\">GROOT</link>, <link href=\"text/scalc/01/04060183.xhp#small\">KLEIN</link>" #: func_averageifs.xhp msgctxt "" @@ -62846,7 +62846,7 @@ "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\">GEMIDDELDE</link>, <link href=\"text/scalc/01/04060184.xhp#averagea\">GEMIDDELDE.A</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\">GEMIDDELDE</link>, <link href=\"text/scalc/01/04060184.xhp#averagea\">GEMIDDELDEA</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 @@ "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\">AANTAL</link>, <link href=\"text/scalc/01/04060181.xhp#countif\">AANTAL.ALS</link>, <link href=\"text/scalc/01/04060181.xhp#counta\">AANTAL.A</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\">AANTAL</link>, <link href=\"text/scalc/01/04060181.xhp#countif\">AANTAL.ALS</link>, <link href=\"text/scalc/01/04060181.xhp#counta\">AANTALA</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 "" @@ -64238,7 +64238,7 @@ "par_id121020152053408216\n" "help.text" msgid "#NUM!" -msgstr "#GETAL!" +msgstr "#NUM!" #: func_error_type.xhp msgctxt "" @@ -65938,7 +65938,7 @@ "par_id1191767622119\n" "help.text" msgid "In all examples below, ranges for sum calculation contain the row #6, but it is ignored, because it contains text." -msgstr "In alle onderstaande voorbeelden, bevatten bereiken de berekening van het aantal rij # 6, maar deze wordt genegeerd, omdat deze tekst bevat." +msgstr "In alle onderstaande voorbeelden, bevatten bereiken voor berekening van de som rij #6, maar deze wordt genegeerd, omdat deze tekst bevat." #: func_sumifs.xhp msgctxt "" @@ -66058,7 +66058,7 @@ "par_id11921178730928\n" "help.text" msgid "<link href=\"text/scalc/01/04060106.xhp#Section16\">SUM</link>, <link href=\"text/scalc/01/04060106.xhp#Section15\">SUMIF</link>, <embedvar href=\"text/scalc/01/func_countifs.xhp#countifs_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/04060106.xhp#Section16\">AANTAL</link>, <link href=\"text/scalc/01/04060106.xhp#Section15\">AANTAL.ALS</link>, <embedvar href=\"text/scalc/01/func_countifs.xhp#countifs_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/04060106.xhp#Section16\">SOM</link>, <link href=\"text/scalc/01/04060106.xhp#Section15\">SOM.ALS</link>, <embedvar href=\"text/scalc/01/func_countifs.xhp#countifs_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_time.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/nl/helpcontent2/source/text/scalc/04.po libreoffice-5.1.2~rc2/translations/source/nl/helpcontent2/source/text/scalc/04.po --- libreoffice-5.1.1~rc2/translations/source/nl/helpcontent2/source/text/scalc/04.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/nl/helpcontent2/source/text/scalc/04.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-25 08:12+0000\n" +"PO-Revision-Date: 2016-03-28 08:32+0000\n" "Last-Translator: kees538 <kees538@gmail.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: nl\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1437811949.000000\n" +"X-POOTLE-MTIME: 1459153952.000000\n" #: 01020000.xhp msgctxt "" @@ -48,7 +48,7 @@ "3\n" "help.text" msgid "To fill a selected cell range with the formula that you entered on the <emph>Input line</emph>, press <switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline>+Enter. Hold down <switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline>+Enter+Shift to apply the cell format of the input cell to the entire cell range." -msgstr "Druk op <switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline>+Enter om een geselecteerd celbereik te vullen met de formule die u op de <emph>Invoerregel</emph> ingevoerd hebt. Houd <switchinline select=\"sys\"><caseinline select=\"MAC\">Option </caseinline><defaultinline>Alt</defaultinline></switchinline>+Enter+Shift ingedrukt om de celopmaak van de invoercel op het hele celbereik toe te passen." +msgstr "Druk op <switchinline select=\"sys\"><caseinline select=\"MAC\">Optie</caseinline><defaultinline>Alt</defaultinline></switchinline>+Enter om een geselecteerd celbereik te vullen met de formule die u op de <emph>Invoerregel</emph> ingevoerd hebt. Houd <switchinline select=\"sys\"><caseinline select=\"MAC\">Optie</caseinline><defaultinline>Alt</defaultinline></switchinline>+Enter+Shift ingedrukt om de celopmaak van de invoercel op het hele celbereik toe te passen." #: 01020000.xhp msgctxt "" @@ -57,7 +57,7 @@ "84\n" "help.text" msgid "To create a matrix in which all the cells contain the same information as what you entered on the <emph>Input line</emph>, press Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Enter. You cannot edit the components of the matrix." -msgstr "Druk op Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Enter om een matrix te maken waarin alle cellen dezelfde informatie bevatten als die welke u op de <emph>Invoerregel</emph> hebt ingevoerd. U kunt de componenten van de matrix niet bewerken." +msgstr "Druk op Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Commando</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Enter om een matrix te maken waarin alle cellen dezelfde informatie bevatten als die welke u op de <emph>Invoerregel</emph> hebt ingevoerd. U kunt de componenten van de matrix niet bewerken." #: 01020000.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/nl/helpcontent2/source/text/scalc/05.po libreoffice-5.1.2~rc2/translations/source/nl/helpcontent2/source/text/scalc/05.po --- libreoffice-5.1.1~rc2/translations/source/nl/helpcontent2/source/text/scalc/05.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/nl/helpcontent2/source/text/scalc/05.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-08-09 08:38+0000\n" +"PO-Revision-Date: 2016-03-28 08:33+0000\n" "Last-Translator: kees538 <kees538@gmail.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: nl\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1439109518.000000\n" +"X-POOTLE-MTIME: 1459154031.000000\n" #: 02140000.xhp msgctxt "" @@ -64,7 +64,7 @@ "bm_id3154634\n" "help.text" msgid "<bookmark_value>invalid references; error messages</bookmark_value> <bookmark_value>error messages;invalid references</bookmark_value> <bookmark_value>#REF error message</bookmark_value>" -msgstr "<bookmark_value>ongeldige verwijzingen;foutmeldingen</bookmark_value> <bookmark_value>foutmeldingen;ongeldige verwijzingen</bookmark_value> <bookmark_value>foutmelding #VERW</bookmark_value>" +msgstr "<bookmark_value>ongeldige verwijzingen; foutmeldingen</bookmark_value> <bookmark_value>foutmeldingen;ongeldige verwijzingen</bookmark_value> <bookmark_value>foutmelding #VERW</bookmark_value>" #: 02140000.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/nl/helpcontent2/source/text/scalc/guide.po libreoffice-5.1.2~rc2/translations/source/nl/helpcontent2/source/text/scalc/guide.po --- libreoffice-5.1.1~rc2/translations/source/nl/helpcontent2/source/text/scalc/guide.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/nl/helpcontent2/source/text/scalc/guide.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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-22 20:02+0000\n" -"Last-Translator: vpanter <leo.moons@telenet.be>\n" +"PO-Revision-Date: 2016-03-27 08:56+0000\n" +"Last-Translator: kees538 <kees538@gmail.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: nl\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1448222536.000000\n" +"X-POOTLE-MTIME: 1459068998.000000\n" #: address_auto.xhp msgctxt "" @@ -1891,7 +1891,7 @@ "par_idN106C0\n" "help.text" msgid "To protect the cells from being changed / viewed / printed according to your settings in the <emph>Format - Cells</emph> dialog, choose <item type=\"menuitem\">Tools - Protect Document - Sheet</item>." -msgstr "Kies <item type=\"menu-item\">Extra - Document beveiligen - Blad</item> om te voorkomen dat de cellen volgens uw instellingen in het dialoogvenster <emph>Opmaak - Cellen</emph> gewijzigd, bekeken of afgedrukt worden." +msgstr "Om te voorkomen dat de cellen volgens uw instellingen in het dialoogvenster <emph>Opmaak - Cellen</emph> gewijzigd, bekeken of afgedrukt worden, kies <item type=\"menuitem\">Extra - Document beveiligen - Blad</item> ." #: cell_protect.xhp msgctxt "" @@ -4187,7 +4187,7 @@ "2\n" "help.text" msgid "The <emph>pivot table</emph> (formerly known as <emph>DataPilot</emph>) allows you to combine, compare, and analyze large amounts of data. You can view different summaries of the source data, you can display the details of areas of interest, and you can create reports." -msgstr "Met de <emph>draaitabel</emph> (vroeger gekend als <emph>DataPiloot<\\emph>) kunt u grote hoeveelheden gegevens samenvoegen, vergelijken en analyseren. U kunt verschillende samenvattingen van de brongegevens bekijken, de details van interessante gebieden weergeven en u kunt rapporten maken." +msgstr "Met de <emph>draaitabel</emph> (vroeger gekend als <emph>DataPiloot</emph>) kunt u grote hoeveelheden gegevens samenvoegen, vergelijken en analyseren. U kunt verschillende samenvattingen van de brongegevens bekijken, de details van interessante gebieden weergeven en u kunt rapporten maken." #: datapilot.xhp msgctxt "" @@ -6562,7 +6562,7 @@ "15\n" "help.text" msgid "Let us assume that the interest rate <item type=\"literal\">i</item> of 7.5% and the number of years <item type=\"literal\">n</item> (1) will remain constant. However, you want to know how much the investment capital <item type=\"literal\">C</item> would have to be modified in order to attain a particular return <item type=\"literal\">I</item>. For this example, calculate how much capital <item type=\"literal\">C</item> would be required if you want an annual return of $15,000." -msgstr "Stel dat de rentevoet <item type=\"literal\">(r)</item> van 7,5% en het aantal jaren <item type=\"literal\">(n)</item> van 1 jaar constant blijven. U wilt echter weten met welk bedrag het investeringskapitaal <item type=\"literal\">(K)</item> gewijzigd moet worden om een bepaald rendement <item type=\"literal\">(R)</item> te verkrijgen. In dit voorbeeld wordt berekend hoeveel kapitaal <item type=\"literal\">(K)</item> vereist is als u een jaarlijks rendement van 15.000 Euro wilt bereiken." +msgstr "Stel dat de rentevoet <item type=\"literal\">i</item> van 7,5% en het aantal jaren <item type=\"literal\">n</item> (1) constant blijven. U wilt echter weten met welk bedrag het investeringskapitaal <item type=\"literal\">C</item> gewijzigd moet worden om een bepaald rendement <item type=\"literal\">I</item> te verkrijgen. In dit voorbeeld wordt berekend hoeveel kapitaal <item type=\"literal\">C</item> vereist is als u een jaarlijks rendement van 15.000 Euro wilt bereiken." #: goalseek.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/nl/helpcontent2/source/text/scalc.po libreoffice-5.1.2~rc2/translations/source/nl/helpcontent2/source/text/scalc.po --- libreoffice-5.1.1~rc2/translations/source/nl/helpcontent2/source/text/scalc.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/nl/helpcontent2/source/text/scalc.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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-21 08:01+0000\n" -"Last-Translator: kees538 <kees538@gmail.com>\n" +"PO-Revision-Date: 2016-03-04 13:40+0000\n" +"Last-Translator: vpanter <leo.moons@telenet.be>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: nl\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1448092872.000000\n" +"X-POOTLE-MTIME: 1457098850.000000\n" #: main0000.xhp msgctxt "" @@ -165,7 +165,7 @@ "hd_id0914201502131542\n" "help.text" msgid "<link href=\"text/shared/01/02200000.xhp\" name=\"Object\">Object</link>" -msgstr "<link href=\"text/shared/01/01020000.xhp\" name=\"Object\">Object</link>" +msgstr "<link href=\"text/shared/01/02200000.xhp\" name=\"Object\">Object</link>" #: main0103.xhp msgctxt "" @@ -365,7 +365,7 @@ "par_id3145171\n" "help.text" msgid "<ahelp hid=\".\">The <emph>Format</emph> menu contains commands for formatting selected cells, <link href=\"text/shared/00/00000005.xhp#objekt\" name=\"objects\">objects</link>, and cell contents in your document.</ahelp>" -msgstr "<ahelp hid=\".uno:FormatMenu\">Het menu <emph>Opmaak</emph> bevat opdrachten voor het opmaken van geselecteerde cellen, <link href=\"text/shared/00/00000005.xhp#objekt\" name=\"objecten\">objecten</link> en de celinhoud in uw document.</ahelp>" +msgstr "<ahelp hid=\".\">Het menu <emph>Format</emph> bevat opdrachten voor het opmaken van geselecteerde cellen, <link href=\"text/shared/00/00000005.xhp#objekt\" name=\"objects\">objecten</link> en de celinhoud in uw document.</ahelp>" #: main0105.xhp msgctxt "" @@ -524,7 +524,7 @@ "par_id3150398\n" "help.text" msgid "<ahelp hid=\".\">Contains commands for manipulating and displaying document windows.</ahelp>" -msgstr "<ahelp hid=\".uno:WindowList\">Bevat opdrachten voor het manipuleren en weergeven van documentvensters.</ahelp>" +msgstr "<ahelp hid=\".\">Bevat opdrachten voor het manipuleren en weergeven van documentvensters.</ahelp>" #: main0112.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/nl/helpcontent2/source/text/schart/01.po libreoffice-5.1.2~rc2/translations/source/nl/helpcontent2/source/text/schart/01.po --- libreoffice-5.1.1~rc2/translations/source/nl/helpcontent2/source/text/schart/01.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/nl/helpcontent2/source/text/schart/01.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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-28 09:21+0000\n" -"Last-Translator: kees538 <kees538@gmail.com>\n" +"PO-Revision-Date: 2016-03-05 13:35+0000\n" +"Last-Translator: vpanter <leo.moons@telenet.be>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: nl\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1448702492.000000\n" +"X-POOTLE-MTIME: 1457184955.000000\n" #: 03010000.xhp msgctxt "" @@ -6358,7 +6358,7 @@ "par_id9759514\n" "help.text" msgid "In Calc, an example data range would be \"$Sheet1.$B$3:$B$14\". Note that a data range may consist of more than one region in a spreadsheet, e.g. \"$Sheet1.A1:A5;$Sheet1.D1:D5\" is also a valid data range. In Writer, an example data range would be \"Table1.A1:E4\"." -msgstr "In Calc zou een voorbeeld van een gegevensreeks kunnen zijn \"$Blad1.$B$3:$B$14\". Merk op dat een gegevensreeks uit meer dan één gebied mag bestaan, bijvoorbeeld \"$Blad1.A1:A5;$Blad1.D1:D5\" is ook een geldig gegevensbereik. In Writer kan een voorbeeld van een gegevensreeks bijvoorbeeld \"Tabel1.A1:E4\" zijn." +msgstr "In Calc zou een voorbeeld van een gegevensreeks kunnen zijn \"$Blad1.$B$3:$B$14\". Merk op dat een gegevensreeks uit meer dan één gebied mag bestaan, bijvoorbeeld \"$Blad1.A1:A5;$Blad1.D1:D5\" ook een geldig gegevensbereik is. In Writer kan een voorbeeld van een gegevensreeks bijvoorbeeld \"Tabel1.A1:E4\" zijn." #: type_stock.xhp msgctxt "" @@ -7510,7 +7510,7 @@ "par_id5626392\n" "help.text" msgid "In Calc, an example data range would be \"$Sheet1.$B$3:$B$14\". Note that a data range may consist of more than one region in a spreadsheet, e.g. \"$Sheet1.A1:A5;$Sheet1.D1:D5\" is also a valid data range. In Writer, an example data range would be \"Table1.A1:E4\"." -msgstr "In Calc zou een voorbeeld van een gegevensreeks kunnen zijn \"$Blad1.$B$3:$B$14\". Merk op dat een gegevensreeks uit meer dan één gebied mag bestaan, bijvoorbeeld \"$Blad1.A1:A5;$Blad1.D1:D5\" is ook een geldig gegevensbereik. In Writer kan een voorbeeld van een gegevensreeks bijvoorbeeld zijn \"Tabel1.A1:E4\"." +msgstr "In Calc zou een voorbeeld van een gegevensreeks \"$Blad1.$B$3:$B$14\" kunnen zijn. Merk op dat een gegevensreeks uit meer dan één gebied mag bestaan, bijvoorbeeld \"$Blad1.A1:A5;$Blad1.D1:D5\" is ook een geldig gegevensbereik. In Writer kan een voorbeeld van een gegevensreeks bijvoorbeeld zijn \"Tabel1.A1:E4\"." #: wiz_data_range.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/nl/helpcontent2/source/text/shared/00.po libreoffice-5.1.2~rc2/translations/source/nl/helpcontent2/source/text/shared/00.po --- libreoffice-5.1.1~rc2/translations/source/nl/helpcontent2/source/text/shared/00.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/nl/helpcontent2/source/text/shared/00.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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-27 10:59+0000\n" -"Last-Translator: kees538 <kees538@gmail.com>\n" +"PO-Revision-Date: 2016-03-05 13:40+0000\n" +"Last-Translator: vpanter <leo.moons@telenet.be>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: nl\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1448621961.000000\n" +"X-POOTLE-MTIME: 1457185207.000000\n" #: 00000001.xhp msgctxt "" @@ -1083,7 +1083,7 @@ "142\n" "help.text" msgid "<link href=\"text/shared/00/00000002.xhp#html\" name=\"HTML\">HTML</link> pages contain certain structural and formatting instructions called tags. Tags are code words enclosed by brackets in the document description language HTML. Many tags contain text or hyperlink references between the opening and closing brackets. For example, titles are marked by the tags <h1> at the beginning and </h1> at the end of the title. Some tags only appear on their own such as <br> for a line break or <img ...> to link a graphic." -msgstr "<link href=\"text/shared/00/00000002.xhp#html\" name=\"HTML\">HTML</link>-pagina's bevatten bepaalde structurele en opmaakinstructies die tags worden genoemd. Tags zijn codewoorden die in de document beschrijvingstaal HTML tussen haakjes worden geplaatst. Vele tags bevatten tekst of hyperlink verwijzingen tussen de haakjes openen en sluiten. Titels worden bijvoorbeeld aangeduid door de tags <h1> aan het begin en </h1> aan het eind van de titel. Sommige tags verschijnen alleen, zonder sluitingstags, zoals <br> voor een regeleinde of <img ...> om een afbeelding te koppelen." +msgstr "<link href=\"text/shared/00/00000002.xhp#html\" name=\"HTML\">HTML</link> pagina's bevatten bepaalde structurele en opmaakinstructies die tags worden genoemd. Tags zijn codewoorden die in de document beschrijvingstaal HTML tussen haakjes worden geplaatst. Vele tags bevatten tekst of hyperlink verwijzingen tussen de haakjes openen en sluiten. Titels worden bijvoorbeeld aangeduid door de tags <h1> aan het begin en </h1> aan het einde van de titel. Sommige tags verschijnen alleen, zonder sluitingstags, zoals <br> voor een regeleinde of <img ...> om een afbeelding te koppelen." #: 00000002.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/nl/helpcontent2/source/text/shared/01.po libreoffice-5.1.2~rc2/translations/source/nl/helpcontent2/source/text/shared/01.po --- libreoffice-5.1.1~rc2/translations/source/nl/helpcontent2/source/text/shared/01.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/nl/helpcontent2/source/text/shared/01.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\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-12 09:59+0000\n" -"Last-Translator: Donux <info@donux.nl>\n" +"PO-Revision-Date: 2016-03-28 08:37+0000\n" +"Last-Translator: kees538 <kees538@gmail.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: nl\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1455271164.000000\n" +"X-POOTLE-MTIME: 1459154250.000000\n" #: 01010000.xhp msgctxt "" @@ -1134,7 +1134,7 @@ "26\n" "help.text" msgid "<ahelp hid=\"modules/swriter/ui/cardmediumpage/type\">Select the size format that you want to use. The available formats depend on the brand on what you selected in the <emph>Brand</emph> list. If you want to use a custom label format, select <emph>[User]</emph>, and then click the <link href=\"text/shared/01/01010202.xhp\" name=\"Format\"><emph>Format</emph></link> tab to define the format.</ahelp>" -msgstr "<ahelp hid=\"modules/swriter/ui/cardmediumpage/type\">Selecteer het formaat dat u wilt gebruiken. De beschikbare formaten zijn afhankelijk van het merk dat u hebt geselecteerd in de lijst <emph>Merk</emph>. Als u een eigengemaakt etiketformaat wilt gebruiken, kiest u <emph>Gebruiker</emph> op het tabblad <link href=\"text/shared/01/01010202.xhp\" name=\"Formaat\"><emph>Formaat</emph></link> om dat formaat te gebruiken.</ahelp>" +msgstr "<ahelp hid=\"modules/swriter/ui/cardmediumpage/type\">Selecteer het formaat dat u wilt gebruiken. De beschikbare formaten zijn afhankelijk van het merk dat u hebt geselecteerd in de lijst <emph>Merk</emph>. Als u een eigengemaakt etiketformaat wilt gebruiken, selecteer <emph>[Gebruiker]</emph> en klik dan de tab <link href=\"text/shared/01/01010202.xhp\" name=\"Format\"><emph>Formaat</emph></link> om dat formaat te definiëren.</ahelp>" #: 01010201.xhp msgctxt "" @@ -1706,7 +1706,7 @@ "12\n" "help.text" msgid "<ahelp hid=\"HID_BUSINESS_FMT_PAGE_TYPE\">Select the size format that you want to use. The available formats depend on what you selected in the <emph>Brand</emph> list. If you want to use a custom size format, select <emph>[User]</emph>, and then click the <link href=\"text/shared/01/01010202.xhp\" name=\"Format\"><emph>Format</emph></link> tab to define the format.</ahelp>" -msgstr "<ahelp hid=\"HID_BUSINESS_FMT_PAGE_TYPE\">Selecteer het formaat dat u wilt gebruiken. De beschikbare formaten zijn afhankelijk van wat u hebt geselecteerd in de lijst <emph>Merk</emph>. Als u een eigengemaakt formaat wilt gebruiken, selecteert u <emph>[Gebruiker]</emph> en klikt u vervolgens op de tab <link href=\"text/shared/01/01010202.xhp\" name=\"Formaat\"><emph>Formaat</emph></link> om het formaat te definiëren.</ahelp>" +msgstr "<ahelp hid=\"HID_BUSINESS_FMT_PAGE_TYPE\">Selecteer het formaat dat u wilt gebruiken. De beschikbare formaten zijn afhankelijk van wat u hebt geselecteerd in de lijst <emph>Merk</emph>. Als u een eigengemaakt formaat wilt gebruiken, selecteert u <emph>[Gebruiker]</emph> en klikt u vervolgens op de tab <link href=\"text/shared/01/01010202.xhp\" name=\"Format\"><emph>Formaat</emph></link> om het formaat te definiëren.</ahelp>" #: 01010301.xhp msgctxt "" @@ -2187,7 +2187,7 @@ "109\n" "help.text" msgid "The following sections describe the <item type=\"productname\">%PRODUCTNAME</item> <emph>Open</emph> dialog box. To activate the <item type=\"productname\">%PRODUCTNAME</item> <emph>Open</emph> and <emph>Save</emph> dialog boxes, choose <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01010600.xhp\" name=\"%PRODUCTNAME - General\">%PRODUCTNAME- General</link></emph>, and then select the <emph>Use %PRODUCTNAME dialogs</emph> in the <emph>Open/Save dialogs</emph> area." -msgstr "De volgende secties beschrijven het dialoogvenster <item type=\"productname\">%PRODUCTNAME</item><emph>Openen</emph>. Kies <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Voorkeuren</caseinline><defaultinline>Extra - Opties</defaultinline></switchinline> - <link href=\"text/shared/optionen/01010600.xhp\" name=\"%PRODUCTNAME - Algemeen\">%PRODUCTNAME - Algemeen</link></emph> en selecteer dan <emph>%PRODUCTNAME dialoogvensters gebruiken</emph> in het gebied <emph>dialoogvensters Openen/Opslaan</emph> om de dialoogvensters <emph>%PRODUCTNAME Openen</emph> en <emph>Opslaan</emph> te activeren." +msgstr "De volgende secties beschrijven het dialoogvenster <item type=\"productname\">%PRODUCTNAME</item> <emph>Openen</emph>. Om de dialoogvensters <item type=\"productname\">%PRODUCTNAME</item> <emph>Openen</emph> en <emph>Opslaan</emph> te gebruiken, kies <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Voorhkeuren</caseinline><defaultinline>Extra - Opties</defaultinline></switchinline> - <link href=\"text/shared/optionen/01010600.xhp\" name=\"%PRODUCTNAME - Algemeen\">%PRODUCTNAME- General</link></emph>, en selecteer de <emph>Use %PRODUCTNAME dialoogvensters</emph> in het gebied <emph>Dialoogvensters Openen/Opslaan</emph>." #: 01020000.xhp msgctxt "" @@ -2886,7 +2886,7 @@ "64\n" "help.text" msgid "The following sections describe the <emph><item type=\"productname\">%PRODUCTNAME</item> Save as</emph> dialog. To activate the <emph><item type=\"productname\">%PRODUCTNAME</item> Open</emph> and <emph>Save</emph> dialog boxes, choose <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01010600.xhp\" name=\"%PRODUCTNAME - General\">%PRODUCTNAME- General</link></emph>, and then select the <emph>Use %PRODUCTNAME dialogs</emph> in the <emph>Open/Save dialogs</emph> area." -msgstr "De volgende secties beschrijven het dialoogvenster <emph><item type=\"productname\">%PRODUCTNAME</item>Opslaan als</emph>. Kies <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Voorkeuren</caseinline><defaultinline>Extra - Opties</defaultinline></switchinline> - <link href=\"text/shared/optionen/01010600.xhp\" name=\"%PRODUCTNAME - Algemeen\">%PRODUCTNAME - Algemeen</link></emph> en selecteer dan <emph>%PRODUCTNAME dialoogvensters gebruiken</emph> in het gebied <emph>dialoogvensters Openen/Opslaan</emph> om de dialoogvensters <emph>%PRODUCTNAME Openen</emph> en <emph>Opslaan</emph> te activeren." +msgstr "De volgende secties beschrijven het dialoogvenster <emph><item type=\"productname\">%PRODUCTNAME</item> Opslaan als</emph> dialog. Om de dialoogvensters <emph><item type=\"productname\">%PRODUCTNAME</item> Openen</emph> en <emph>Opslaan</emph> te activeren, kies <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Voorkeuren</caseinline><defaultinline>Extra - Opties</defaultinline></switchinline> - <link href=\"text/shared/optionen/01010600.xhp\" name=\"%PRODUCTNAME - General\">%PRODUCTNAME- Algemeen</link></emph>, en selecteer dan the <emph>Use %PRODUCTNAME dialoogvensters</emph> in het gebied <emph>Dialoogvensters Openen/Opslaan</emph> area." #: 01070000.xhp msgctxt "" @@ -15695,7 +15695,6 @@ msgstr "Geen extra nullen weergeven." #: 05020301.xhp -#, fuzzy msgctxt "" "05020301.xhp\n" "par_id3152802\n" @@ -15863,7 +15862,7 @@ "242\n" "help.text" msgid "0.???" -msgstr "" +msgstr "0,???" #: 05020301.xhp msgctxt "" @@ -35323,7 +35322,7 @@ "15\n" "help.text" msgid "Word is <name of language>" -msgstr "Woord is in <naam van de taal>" +msgstr "Woord is in <name of language>" #: 06040500.xhp msgctxt "" @@ -35341,7 +35340,7 @@ "17\n" "help.text" msgid "Paragraph is <name of language>" -msgstr "Alinea is <naam van de taal>" +msgstr "Alinea is <name of language>" #: 06040500.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/nl/helpcontent2/source/text/shared/05.po libreoffice-5.1.2~rc2/translations/source/nl/helpcontent2/source/text/shared/05.po --- libreoffice-5.1.1~rc2/translations/source/nl/helpcontent2/source/text/shared/05.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/nl/helpcontent2/source/text/shared/05.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,18 +3,18 @@ msgstr "" "Project-Id-Version: PACKAGE 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-13 07:21+0000\n" -"Last-Translator: kees538 <kees538@hotmail.com>\n" +"POT-Creation-Date: 2015-04-22 23:39+0200\n" +"PO-Revision-Date: 2016-03-28 08:39+0000\n" +"Last-Translator: kees538 <kees538@gmail.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: nl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: LibreOffice\n" +"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1373700108.0\n" +"X-POOTLE-MTIME: 1459154367.000000\n" #: 00000001.xhp msgctxt "" @@ -739,7 +739,7 @@ "par_id992156\n" "help.text" msgid "Enable or disable the tips on <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME - General</emph>." -msgstr "Schakel de tips in of uit in <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Voorkeuren</caseinline><defaultinline>Extra - Opties</defaultinline></switchinline> - %PRODUCTNAME - Algemeen</emph>." +msgstr "Schakel de tips aan of uit in <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Voorkeuren</caseinline><defaultinline>Extra - Opties</defaultinline></switchinline> - %PRODUCTNAME - Algemeen</emph>." #: 00000120.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/nl/helpcontent2/source/text/shared/guide.po libreoffice-5.1.2~rc2/translations/source/nl/helpcontent2/source/text/shared/guide.po --- libreoffice-5.1.1~rc2/translations/source/nl/helpcontent2/source/text/shared/guide.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/nl/helpcontent2/source/text/shared/guide.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-25 08:38+0000\n" +"PO-Revision-Date: 2016-03-28 08:46+0000\n" "Last-Translator: kees538 <kees538@gmail.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: nl\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1451032706.000000\n" +"X-POOTLE-MTIME: 1459154813.000000\n" #: aaa_start.xhp msgctxt "" @@ -9900,7 +9900,7 @@ "4\n" "help.text" msgid "If you want to open up draw objects from the center instead of dragging from one corner to the other, hold down the <switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline> key while dragging. <switchinline select=\"sys\"><caseinline select=\"UNIX\">With some window managers, you may need to hold down also the meta key.</caseinline></switchinline>" -msgstr "Als u tekenobjecten wilt openen vanuit het midden, in plaats van te slepen van het ene naar het andere hoekpunt, houdt u de <switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"keycode\">Option </item></caseinline><defaultinline><item type=\"keycode\">Alt</item></defaultinline></switchinline>-toets ingedrukt terwijl u sleept. <switchinline select=\"sys\"><caseinline select=\"UNIX\">Bij bepaalde programma's voor vensterbeheer moet u ook de meta-toets ingedrukt houden. </caseinline></switchinline>" +msgstr "Als u tekenobjecten wilt openen vanuit het midden, in plaats van te slepen van het ene naar het andere hoekpunt, houdt u de <switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"keycode\">Option </item></caseinline><defaultinline><item type=\"keycode\">Alt</item></defaultinline></switchinline>-toets ingedrukt terwijl u sleept. <switchinline select=\"sys\"><caseinline select=\"UNIX\">Bij bepaalde programma's voor vensterbeheer moet u ook de meta-toets ingedrukt houden.</caseinline></switchinline>" #: insert_graphic_drawit.xhp msgctxt "" @@ -14841,7 +14841,7 @@ "bm_id380260\n" "help.text" msgid "<bookmark_value>Format Paintbrush</bookmark_value> <bookmark_value>clone formatting</bookmark_value> <bookmark_value>formatting;copying</bookmark_value> <bookmark_value>copying;formatting</bookmark_value> <bookmark_value>Paintbrush</bookmark_value>" -msgstr "<bookmark_value>Opmaak van Paintbrush</bookmark_value><bookmark_value>klonen;opmaak</bookmark_value><bookmark_value>kopiëren;opmaak</bookmark_value><bookmark_value>Paintbrush</bookmark_value>" +msgstr "<bookmark_value>Opmaak van Paintbrush</bookmark_value> <bookmark_value>klonen;opmaak</bookmark_value> <bookmark_value>opmaak;kopiëren</bookmark_value> <bookmark_value>kopiëren;opmaak</bookmark_value> <bookmark_value>Paintbrush</bookmark_value>" #: paintbrush.xhp msgctxt "" @@ -16430,7 +16430,7 @@ "par_id3153884\n" "help.text" msgid "<emph>Edit - Track Changes - Previous Change</emph>: <ahelp hid=\".uno:PreviousTrackedChange\">Jumps to and selects the previous change in the document, if any.</ahelp>" -msgstr "<emph>Bewerken - Wijzigingen - Vorige wijziging</emph>: <ahelp hid=\".uno:NextTrackedChange\">Springt naar en selecteert de vorige wijziging in het document, als deze er is.</ahelp>" +msgstr "<emph>Bewerken - Wijzigingen - Vorige wijziging</emph>: <ahelp hid=\".uno:PreviousTrackedChange\">Springt naar en selecteert de vorige wijziging in het document, als deze er is.</ahelp>" #: redlining_navigation.xhp msgctxt "" @@ -17876,7 +17876,7 @@ "17\n" "help.text" msgid "Neither the start-up logo nor the initial program window will be visible. However, the $[officename] software can be controlled and documents and dialogs opened via the <link href=\"http://api.libreoffice.org\" name=\"API\">API</link>." -msgstr "Het opstartlogo en het eerste programmavenster zullen niet zichtbaar zijn. De $[officename]-software kan echter beheerd worden, en documenten en dialoogvensters kunnen geopend worden via de <link href=\"http://api.openoffice.org\" name=\"API\">API</link>." +msgstr "Het opstartlogo en het eerste programmavenster zullen niet zichtbaar zijn. De $[officename]-software kan echter beheerd worden, en documenten en dialoogvensters kunnen geopend worden via de <link href=\"http://api.libreoffice.org\" name=\"API\">API</link>." #: start_parameters.xhp msgctxt "" @@ -18223,7 +18223,7 @@ "58\n" "help.text" msgid "This special mode can be used when the application is controlled by external clients via the <link href=\"http://api.libreoffice.org\" name=\"API\">API</link>." -msgstr "Deze speciale modus kan gebruikt worden wanneer de toepassing beheerd wordt door externe clients via de <link href=\"http://api.openoffice.org\" name=\"API\">API</link>." +msgstr "Deze speciale modus kan gebruikt worden wanneer de toepassing beheerd wordt door externe clients via de <link href=\"http://api.libreoffice.org\" name=\"API\">API</link>." #: start_parameters.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/nl/helpcontent2/source/text/simpress/01.po libreoffice-5.1.2~rc2/translations/source/nl/helpcontent2/source/text/simpress/01.po --- libreoffice-5.1.1~rc2/translations/source/nl/helpcontent2/source/text/simpress/01.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/nl/helpcontent2/source/text/simpress/01.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "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-11-27 14:04+0000\n" -"Last-Translator: kees538 <kees538@gmail.com>\n" +"PO-Revision-Date: 2016-03-27 09:19+0000\n" +"Last-Translator: vpanter <leo.moons@telenet.be>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: nl\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1448633094.000000\n" +"X-POOTLE-MTIME: 1459070341.000000\n" #: 01170000.xhp msgctxt "" @@ -84,7 +84,7 @@ "7\n" "help.text" msgid "If you choose \"HTML Document\" as your file format, the <emph>HTML Export </emph><link href=\"text/shared/autopi/01110000.xhp\" name=\"AutoPilot\">Wizard</link> appears. This wizard guides you through the export process and includes the option to save the pictures in your presentation in GIF or JPG format." -msgstr "Als u 'HTML-document' als bestandsindeling kiest, wordt de <link href=\"text/shared/autopi/01110000.xhp\" name=\"Assistent\">Assistent</link> <emph>HTML-export </emph> geopend. Deze Assistent leidt u door het exportproces en biedt u de optie om de afbeeldingen in uw presentatie in GIF- of JPG-indeling op te slaan." +msgstr "Als u \"HTML-document\" als bestandsindeling kiest, wordt de <emph>HTML-export </emph><link href=\"text/shared/autopi/01110000.xhp\" name=\"AutoPilot\">Assistent</link> geopend. Deze Assistent leidt u door het exportproces en biedt u de optie om de afbeeldingen in uw presentatie in GIF- of JPG-indeling op te slaan." #: 01170000.xhp msgctxt "" @@ -1630,7 +1630,7 @@ "par_id3150715\n" "help.text" msgid "The <emph>Text Formatting</emph> bar contains the following icons for slide titles:<link href=\"text/shared/02/06060000.xhp\" name=\"Promote\">Promote</link>, <link href=\"text/shared/02/06050000.xhp\" name=\"Demote\">Demote</link>, <link href=\"text/shared/02/06100000.xhp\" name=\"Move Up\">Move Up</link> and <link href=\"text/shared/02/06110000.xhp\" name=\"Move Down\">Move Down</link>. If you want to reorder slide titles with the keyboard, ensure that the cursor is at the beginning of a title and press Tab to move the title one level lower in the hierarchy. To move the title up one level, press Shift+Tab." -msgstr "Voor diatitels bevat de werkbalk <emph>Tekstopmaak</emph> heeft de volgende pictogrammen:<link href=\"text/shared/02/06060000.xhp\" name=\"Hoger niveau\">Hoger niveau</link>, <link href=\"text/shared/02/06050000.xhp\" name=\"Lager niveau\">Lager niveau</link>, <link href=\"text/shared/02/06100000.xhp\" name=\"Omhoog\">Omhoog</link> en <link href=\"text/shared/02/06110000.xhp\" name=\"Omlaag \">Omlaag</link>. Wilt u de volgorde van de diatitels met het toetsenbord veranderen, dan zet u de cursor aan het begin van een titel en drukt u op de <item type=\"keycode\">Tab</item>-toets om de titel één niveau lager in de hiërarchie te zetten. Druk op <item type=\"keycode\">Shift+Tab</item> om de titel één niveau hoger te zetten." +msgstr "Voor diatitels bevat de werkbalk <emph>Tekstopmaak</emph> heeft de volgende pictogrammen:<link href=\"text/shared/02/06060000.xhp\" name=\"Hoger niveau\">Hoger niveau</link>, <link href=\"text/shared/02/06050000.xhp\" name=\"Lager niveau\">Lager niveau</link>, <link href=\"text/shared/02/06100000.xhp\" name=\"Omhoog\">Omhoog</link> en <link href=\"text/shared/02/06110000.xhp\" name=\"Omlaag \">Omlaag</link>. Wilt u de volgorde van de diatitels met het toetsenbord veranderen, dan zet u de cursor aan het begin van een titel en drukt u op de Tab-toets om de titel één niveau lager in de hiërarchie te zetten. Druk op Shift+Tab om de titel één niveau hoger te zetten." #: 03090000.xhp msgctxt "" @@ -3580,7 +3580,7 @@ "2\n" "help.text" msgid "<ahelp hid=\".uno:InsertAuthorField\">Inserts the first and last names listed in the $[officename] user data into the active slide.</ahelp>" -msgstr "<ahelp hid=\".uno:InsertAuthorField\">Hier vult u uw voor- en achternaam als velden in het document in.</ahelp>" +msgstr "<ahelp hid=\".uno:InsertAuthorField\">Voegt de voor- en achternamen, vermeld in de $[officename] gebruikersgegevens in de actieve dia in.</ahelp>" #: 04990600.xhp msgctxt "" @@ -7545,7 +7545,7 @@ "9\n" "help.text" msgid "<ahelp hid=\"modules/sdraw/ui/vectorize/colors\">Enter the number of colors to be displayed in the converted image. $[officename] generates a polygon for each occurrence of a color in the image.</ahelp>" -msgstr "<ahelp hid=\"modules/sdraw/ui/vectorize/colors\">Geef op hoeveel kleuren in de geconverteerde afbeelding moeten worden weergegeven. Voor elke instantie van een kleur in de afbeelding wordt een veelhoek gegenereerd.</ahelp>" +msgstr "<ahelp hid=\"modules/sdraw/ui/vectorize/colors\">Geef op hoeveel kleuren in de geconverteerde afbeelding moeten worden weergegeven. $[officename] genereert een polygeen voor elke maal dat een kleur in de afbeelding voorkomt.</ahelp>" #: 13050200.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/nl/helpcontent2/source/text/simpress/02.po libreoffice-5.1.2~rc2/translations/source/nl/helpcontent2/source/text/simpress/02.po --- libreoffice-5.1.1~rc2/translations/source/nl/helpcontent2/source/text/simpress/02.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/nl/helpcontent2/source/text/simpress/02.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\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-26 06:01+0000\n" -"Last-Translator: kees538 <kees538@gmail.com>\n" +"PO-Revision-Date: 2016-03-05 14:23+0000\n" +"Last-Translator: vpanter <leo.moons@telenet.be>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: nl\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1440568871.000000\n" +"X-POOTLE-MTIME: 1457187828.000000\n" #: 04010000.xhp msgctxt "" @@ -2751,7 +2751,7 @@ "98\n" "help.text" msgid "<ahelp hid=\".uno:Freeline\">Draws a freeform line where you drag in the slide. When you release, $[officename] creates a closed shape by drawing a straight line segment from the endpoint to the starting point of the line. The shape within the lines will be filled with the current area color.</ahelp>" -msgstr "<ahelp hid=\".uno:Freeline\">Klik op dit pictogram om een vrije-handlijn te tekenen. Wanneer u de muisknop loslaat, wordt vanaf het eindpunt van de lijn tot het beginpunt een recht lijnsegment getekend, waardoor een gesloten vorm ontstaat. De vorm binnen de lijnen wordt gevuld met de huidige opvulkleur.</ahelp>" +msgstr "<ahelp hid=\".uno:Freeline\">Tekent een vrije-handlijn wanneer u de muis in de dia sleept. Wanneer u de muisknop loslaat, maakt $[officename] een gesloten vorm door een rechte lijn te tekenen vanaf het eindpunt van de lijn tot het beginpunt. De vorm binnen de lijnen wordt gevuld met de huidige opvulkleur.</ahelp>" #: 10080000.xhp msgctxt "" @@ -5131,7 +5131,7 @@ "2\n" "help.text" msgid "<ahelp hid=\".uno:OutlineFormat\">Shows or hides the character formatting of the slide headings. To change the character formatting of a heading, open the <emph>Styles and Formatting</emph> window, right-click a style, and then choose <emph>Modify</emph>.</ahelp>" -msgstr "<ahelp hid=\".uno:OutlineFormat\">Gebruik dit pictogram om de weergave van tekst op de overzichtpagina te wisselen tussen opgemaakte (met tekstattributen als op de dia) en niet-opgemaakte. Om de standaardopmaakinstellingen in de Stylist te wijzigen: Open de Stylist en open het contextmenu van een presentatie-Opmaakprofiel. Selecteer <emph>Wijzigen</emph> in het contextmenu.</ahelp>" +msgstr "<ahelp hid=\".uno:OutlineFormat\">Toont of verbergt de tekenopmaak van de koppen van de dia's. Om de tekenopmaak van een kop te wijzigen, open het venster <emph>Stijlen en Opmaak</emph>, klik met rechts op een stijl en kies dan <emph>Wijzigen</emph>.</ahelp>" #: 11100000.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/nl/helpcontent2/source/text/simpress/guide.po libreoffice-5.1.2~rc2/translations/source/nl/helpcontent2/source/text/simpress/guide.po --- libreoffice-5.1.1~rc2/translations/source/nl/helpcontent2/source/text/simpress/guide.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/nl/helpcontent2/source/text/simpress/guide.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\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-07-28 04:25+0000\n" -"Last-Translator: vpanter <leo.moons@telenet.be>\n" +"PO-Revision-Date: 2016-03-28 08:48+0000\n" +"Last-Translator: kees538 <kees538@gmail.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: nl\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1438057552.000000\n" +"X-POOTLE-MTIME: 1459154893.000000\n" #: 3d_create.xhp msgctxt "" @@ -30,7 +30,7 @@ "bm_id3150207\n" "help.text" msgid "<bookmark_value>3D rotation objects; generating</bookmark_value><bookmark_value>3D objects; generating</bookmark_value><bookmark_value>3D scenes; creating</bookmark_value><bookmark_value>converting; to curves, polygons, 3D</bookmark_value><bookmark_value>extrusion objects</bookmark_value>" -msgstr "<bookmark_value>3D-rotatieobjecten; genereren</bookmark_value><bookmark_value>3D-objecten; genereren</bookmark_value><bookmark_value>converteren; naar bogen, veelhoeken, 3D</bookmark_value><bookmark_value>extrusieobjecten</bookmark_value>" +msgstr "<bookmark_value>3D-rotatieobjecten; genereren</bookmark_value><bookmark_value>3D-objecten; genereren</bookmark_value><bookmark_value>3D scenes; maken</bookmark_value><bookmark_value>converteren naar bogen, veelhoeken, 3D</bookmark_value><bookmark_value>extrusieobjecten</bookmark_value>" #: 3d_create.xhp msgctxt "" @@ -1440,7 +1440,7 @@ "par_id2521439\n" "help.text" msgid "Click the Date Area and move the time and date field. Select the <date/time> field and apply some formatting to change the format for the date and time on all slides. The same applies to the Footer Area and the Slide Number Area." -msgstr "Klik op het Datumgebied en verplaats het tijd en datumveld. Selecteer het veld <datum/tijd> en voeg opmaak toe om de opmaak voor datum en tijd op alle dia's te wijzigen. Hetzelfde geldt voor het Voettekstgebied en Dianummergebied." +msgstr "Klik op het Datumgebied en verplaats het tijd en datumveld. Selecteer het veld <date/time> en voeg opmaak toe om de opmaak voor datum en tijd op alle dia's te wijzigen. Hetzelfde geldt voor het Voettekstgebied en Dianummergebied." #: footer.xhp msgctxt "" @@ -3540,7 +3540,7 @@ "tit\n" "help.text" msgid "Instructions for Using $[officename] Impress" -msgstr "Instructies voor het gebruik van %PRODUCTNAME Impress" +msgstr "Instructies voor het gebruik van $[officename] Impress" #: main.xhp msgctxt "" @@ -4202,7 +4202,7 @@ "76\n" "help.text" msgid "Locate the color list that you want to load, and then click <emph>Open</emph>. A color list file has the format [filename].soc." -msgstr "Zoek de kleurenlijst die u wilt laden en klik op <emph>Openen</emph>. Een kleurenlijst heeft de bestandsextensie .soc." +msgstr "Zoek de kleurenlijst die u wilt laden en klik op <emph>Openen</emph>. Een kleurenlijst heeft het formaat [bestandsnaam].soc." #: palette_files.xhp msgctxt "" @@ -4264,7 +4264,7 @@ "81\n" "help.text" msgid "Locate the gradient list that you want to load, and then click <emph>Open</emph>. A gradient list file has the format [filename].sog." -msgstr "Zoek de gewenste lijst met kleurovergangen en klik op <emph>Openen</emph>. Een lijst met kleurovergangen heeft de bestandsextensie .SOG." +msgstr "Zoek de gewenste lijst met kleurovergangen en klik op <emph>Openen</emph>. Een lijst met kleurovergangen heeft het formaat [bestandsnaam].sog." #: palette_files.xhp msgctxt "" @@ -4309,7 +4309,7 @@ "86\n" "help.text" msgid "Locate the hatches list that you want to load, and then click <emph>Open</emph>. A hatches list file has the format [filename].soh." -msgstr "Zoek de gewenste lijst met arceringen en klik op <emph>Openen</emph>. Een lijst met arceringen heeft de bestandsextensie *.soh." +msgstr "Zoek de gewenste lijst met arceringen en klik op <emph>Openen</emph>. Een lijst met arceringen heeft het formaat [bestandsnaam].soh." #: palette_files.xhp msgctxt "" @@ -4718,7 +4718,7 @@ "16\n" "help.text" msgid "Prepare the slides, start the show using a special icon, tell your imaginary audience what you want to tell for the first slide, then advance to the next slide and so on. $[officename] records the display time for each slide, so the next time you play the show with automatic slide changes, the timing will be as recorded." -msgstr "Maak de dia’s, start de presentatie met een speciaal pictogram, vertel uw toehoorders eventueel iets voor de eerste dia en ga naar de volgende dia, enzovoort. De weergavetijd voor elke dia wordt vastgelegd, en de volgende keer dat u de presentatie met automatische diawissels uitvoert, worden de vastgelegde tijdsinstellingen gebruikt." +msgstr "Maak de dia’s, start de presentatie met een speciaal pictogram, vertel uw toehoorders eventueel iets over de eerste dia en ga naar de volgende dia, enzovoort. $[officename] legt de weergavetijd voor elke dia vast, en de volgende keer dat u de presentatie met automatische diawissels uitvoert, worden de vastgelegde tijdsinstellingen gebruikt." #: rehearse_timings.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/nl/helpcontent2/source/text/smath/00.po libreoffice-5.1.2~rc2/translations/source/nl/helpcontent2/source/text/smath/00.po --- libreoffice-5.1.1~rc2/translations/source/nl/helpcontent2/source/text/smath/00.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/nl/helpcontent2/source/text/smath/00.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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-27 14:07+0000\n" -"Last-Translator: kees538 <kees538@gmail.com>\n" +"PO-Revision-Date: 2016-03-05 14:35+0000\n" +"Last-Translator: vpanter <leo.moons@telenet.be>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: nl\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1448633271.000000\n" +"X-POOTLE-MTIME: 1457188551.000000\n" #: 00000004.xhp msgctxt "" @@ -691,7 +691,7 @@ "par_id3153803\n" "help.text" msgid "<variable id=\"etsmim\">Choose <emph>Tools - Import MathML from Clipboard</emph></variable>" -msgstr "<variable id=\"etsfim\">Kies <emph>Extra - Formule importeren</emph></variable>" +msgstr "<variable id=\"etsmim\">Kies <emph>Extra - Formule importeren</emph></variable>" #: 00000004.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/nl/helpcontent2/source/text/smath/01.po libreoffice-5.1.2~rc2/translations/source/nl/helpcontent2/source/text/smath/01.po --- libreoffice-5.1.1~rc2/translations/source/nl/helpcontent2/source/text/smath/01.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/nl/helpcontent2/source/text/smath/01.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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-28 10:10+0000\n" -"Last-Translator: Cor Nouws <cor.nouws@documentfoundation.org>\n" +"PO-Revision-Date: 2016-03-28 08:48+0000\n" +"Last-Translator: kees538 <kees538@gmail.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: nl\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1448705417.000000\n" +"X-POOTLE-MTIME: 1459154933.000000\n" #: 02080000.xhp msgctxt "" @@ -424,7 +424,7 @@ "bm_id3150342\n" "help.text" msgid "<bookmark_value>unary operators</bookmark_value><bookmark_value>binary operators</bookmark_value><bookmark_value>operators; unary and binary</bookmark_value><bookmark_value>plus signs</bookmark_value><bookmark_value>plus/minus signs</bookmark_value><bookmark_value>minus/plus signs</bookmark_value><bookmark_value>multiplication signs</bookmark_value><bookmark_value>NOT operator</bookmark_value><bookmark_value>AND operator</bookmark_value><bookmark_value>logical operators</bookmark_value><bookmark_value>Boolean operators</bookmark_value><bookmark_value>OR operator</bookmark_value><bookmark_value>concatenating math symbols</bookmark_value><bookmark_value>addition signs</bookmark_value><bookmark_value>subtraction signs</bookmark_value><bookmark_value>minus signs</bookmark_value><bookmark_value>slash division sign</bookmark_value><bookmark_value>backslash division sign</bookmark_value><bookmark_value>indexes; adding to formulas</bookmark_value><bookmark_value>powers</bookmark_value><bookmark_value>division signs</bookmark_value><bookmark_value>user-defined operators;unary and binary</bookmark_value>" -msgstr "<bookmark_value>unaire operatoren</bookmark_value><bookmark_value>binaire operatoren</bookmark_value><bookmark_value>operatoren; unaire en binaire</bookmark_value><bookmark_value>plustekens</bookmark_value><bookmark_value>plusminustekens</bookmark_value><bookmark_value>minusplustekens</bookmark_value><bookmark_value>vermenigvuldigingstekens</bookmark_value><bookmark_value>NOT-operator</bookmark_value><bookmark_value>AND-operator</bookmark_value><bookmark_value>logische operatoren</bookmark_value><bookmark_value>Booleaanse operatoren</bookmark_value><bookmark_value>OR-operator</bookmark_value><bookmark_value>samenvoegende wiskundige symbolen</bookmark_value><bookmark_value>opteltekens</bookmark_value><bookmark_value>aftrektekens</bookmark_value><bookmark_value>mintekens</bookmark_value><bookmark_value>slash - deelteken (/)</bookmark_value><bookmark_value>backslash - deelteken (\\)</bookmark_value><bookmark_value>indices; toevoegen aan formules</bookmark_value><bookmark_value>machten</bookmark_value><bookmark_value>deeltekens</bookmark_value><bookmark_value>gebruikergedefinieerde operatoren;unair en binair</bookmark_value>" +msgstr "<bookmark_value>unaire operatoren</bookmark_value><bookmark_value>binaire operatoren</bookmark_value><bookmark_value>operatoren; unaire en binaire</bookmark_value><bookmark_value>plustekens</bookmark_value><bookmark_value>plus/minustekens</bookmark_value><bookmark_value>minus/plustekens</bookmark_value><bookmark_value>vermenigvuldigingstekens</bookmark_value><bookmark_value>NOT-operator</bookmark_value><bookmark_value>AND-operator</bookmark_value><bookmark_value>logische operatoren</bookmark_value><bookmark_value>Booleaanse operatoren</bookmark_value><bookmark_value>OR-operator</bookmark_value><bookmark_value>samenvoegende wiskundige symbolen</bookmark_value><bookmark_value>opteltekens</bookmark_value><bookmark_value>aftrektekens</bookmark_value><bookmark_value>mintekens</bookmark_value><bookmark_value>slash - deelteken</bookmark_value><bookmark_value>backslash - deelteken </bookmark_value><bookmark_value>indices; toevoegen aan formules</bookmark_value><bookmark_value>machten</bookmark_value><bookmark_value>deeltekens</bookmark_value><bookmark_value>gebruikergedefinieerde operatoren;unair en binair</bookmark_value>" #: 03090100.xhp msgctxt "" @@ -966,7 +966,7 @@ "41\n" "help.text" msgid "If you want to use a colon ':' as division sign, choose <emph>Tools - Symbols</emph> or click the <emph>Symbols</emph> icon on the Tools bar. Click the <emph>Edit</emph> button in the dialog that appears, then select the <emph>Special</emph> symbol set. Enter a meaningful name next to <emph>Symbol</emph>, for example, \"divide\" and then click the colon in the set of symbols. Click <emph>Add</emph> and then <emph>OK</emph>. Click <emph>OK</emph> to close the <emph>Symbols</emph> dialog,too. Now you can use the new symbol, in this case the colon, by entering its name in the Commands window, for example, <emph>a %divide b = c</emph>." -msgstr "Als u een dubbelepunt ':' als deelteken wilt gebruiken, kiest u <emph>Extra - Symbolen - Catalogus</emph> of klikt u op het pictogram <emph>Catalogus</emph> op de werkbalk Werktuigen. Klik op de knop <emph>Bewerken</emph> in het opgeroepen dialoogvenster en selecteer dan de symbolenset <emph>Speciaal</emph>. Voer een duidelijke naam in naast <emph>Symbool</emph>, bijvoorbeeld “delingâ€, en klik daarna op de dubbelepunt in de symbolenset. Klik op <emph>Toevoegen</emph> en dan op <emph>OK</emph>. Klik op <emph>OK</emph> om ook het dialoogvenster <emph>Symbolen</emph> te sluiten. U kunt nu het nieuwe symbool gebruiken, in dit geval de dubbelepunt, door de naam in te voeren in het venster Opdrachten, bijvoorbeeld <emph>a %deling b = c</emph>." +msgstr "Als u een dubbelpunt ':' als deelteken wilt gebruiken, kiest u <emph>Extra - Symbolen</emph> of klikt u op het pictogram <emph>Catalogus</emph> op de werkbalk Extra. Klik op de knop <emph>Bewerken</emph> in het opgeroepen dialoogvenster en selecteer dan de symbolenset <emph>Speciaal</emph>. Voer een duidelijke naam in naast <emph>Symbool</emph>, bijvoorbeeld “delingâ€, en klik daarna op de dubbelpunt in de symbolenset. Klik op <emph>Toevoegen</emph> en dan op <emph>OK</emph>. Klik op <emph>OK</emph> om ook het dialoogvenster <emph>Symbolen</emph> te sluiten. U kunt nu het nieuwe symbool gebruiken, in dit geval de dubbelpunt, door de naam in te voeren in het venster Opdrachten, bijvoorbeeld <emph>a %deling b = c</emph>." #: 03090100.xhp msgctxt "" @@ -1790,7 +1790,7 @@ "74\n" "help.text" msgid "To create the <emph>much greater than</emph> relation with two placeholders, type <emph><?> gg <?> </emph>or <emph>>></emph> in the <emph>Commands</emph> window." -msgstr "Voer <emph><?> gg <?> </emph>of <emph>>></emph> in het venster <emph>Opdrachten</emph> in om de relatie <emph>veel groter dan</emph> en twee te vervangen aanduidingen in te voegen." +msgstr "Om de relatie <emph>veel groter dan</emph> met twee plaatshouders te maken, typ <emph><?> gg <?> </emph>of<emph>>></emph> in het venster <emph>Commando</emph>." #: 03090200.xhp msgctxt "" @@ -4394,7 +4394,7 @@ "50\n" "help.text" msgid "For more information about formatting in <emph>%PRODUCTNAME</emph> <emph>Math</emph>, see <link href=\"text/smath/01/03091100.xhp\" name=\"Brackets and Grouping\">Brackets and Grouping</link>." -msgstr "Zie <link href=\"text/smath/01/03091100.xhp\" name=\"Haakjes en groeperen\">Haakjes en groeperen</link> voor meer informatie over opmaak in <emph>%PRODUCTNAME</emph> <emph>Math</emph>." +msgstr "Voor meer informatie over opmaken in <emph>%PRODUCTNAME</emph> <emph>Math</emph>, zie <link href=\"text/smath/01/03091100.xhp\" name=\"Brackets and Grouping\">Haakjes en groeperen</link>." #: 03090600.xhp msgctxt "" @@ -6252,7 +6252,7 @@ "23\n" "help.text" msgid "Using \"left\" and \"right\" makes the above expression valid in $[officename] Math: \"left [2, 3 right )\". However, the brackets do not have any fixed size because they adjust to the argument. Setting a single bracket is a bit cumbersome. Therefore, there you can display single brackets with a fixed size by placing a \"\\\" (backslash) in front of normal brackets. These brackets then act like any other symbol and no longer have the special functionality of brackets; that is they do not work as group builders and their orientation corresponds to that of other symbols. See \"size *2 \\langle x \\rangle\" and \"size *2 langle x rangle\"." -msgstr "Door \"left\" en \"right\" te gebruiken wordt bovenstaande expressie geldig voor $[officename] Math: \"left [2, 3 right )\". De haakjes hebben echter geen vaste grootte omdat zij zich aanpassen aan het argument. Het instellen van een enkel haakje is een beetje omslachtig. Daarom kunt u enkele haakjes met een vaste grootte weergeven door een \"\\\" (backslash) vóór normale haakjes te zetten. Deze haakjes gedragen zich dan als elk ander teken en hebben niet langer de speciale eigenschappen van haakjes; zij kunnen geen groepen meer vormen en hun oriëntatie komt overeen met die van andere tekens. Zie \"size *2 \\langle x angle\" en \"size *2 langle x rangle\"." +msgstr "Door \"left\" en \"right\" te gebruiken wordt bovenstaande expressie geldig voor $[officename] Math: \"left [2, 3 right )\". De haakjes hebben echter geen vaste grootte omdat zij zich aanpassen aan het argument. Het instellen van een enkel haakje is een beetje omslachtig. Daarom kunt u enkele haakjes met een vaste grootte weergeven door een \"\\\" (backslash) vóór normale haakjes te zetten. Deze haakjes gedragen zich dan als elk ander teken en hebben niet langer de speciale eigenschappen van haakjes; zij kunnen geen groepen meer vormen en hun oriëntatie komt overeen met die van andere tekens. Zie \"size *2 \\langle x \\rangle\" en \"size *2 langle x rangle\"." #: 03091100.xhp msgctxt "" @@ -13433,7 +13433,7 @@ "par_id3153917\n" "help.text" msgid "You can import MathML files created by other applications as well. The MathML source must have a <item type=\"code\">math</item> element with an <item type=\"code\">xmlns</item> attribute with value \"http://www.w3.org/1998/Math/MathML\". The languages MathML and StarMath are not fully compatible, therefore you should revise the import result. For details about the language MathML see its <link href=\"http://www.w3.org/TR/#tr_MathML\">specification</link>." -msgstr "U kunt ook MathML-bestanden, die door andere toepassingen gemaakt werden, importeren. De MathML bron moet een <item type=\"code\">math</item>-element met een <item type=\"code\">xmlns</item>-attribuut met de waarde \"http://www.w3.org/1998/Math/MathML\" hebben. De talen MathML en StarMath zijn niet volledig compatibel, daarom moet je het importresultaat herzien. Voor meer informatie over de taal MathML zie haar <link href=\"http://www.w3.org/TR/#tr_MathML\">specificatie</ link>." +msgstr "U kunt ook MathML-bestanden, die door andere toepassingen gemaakt werden, importeren. De MathML bron moet een <item type=\"code\">math</item>-element met een <item type=\"code\">xmlns</item>-attribuut met de waarde \"http://www.w3.org/1998/Math/MathML\" hebben. De talen MathML en StarMath zijn niet volledig compatibel, daarom moet u het importresultaat herzien. Voor meer informatie over de taal MathML zie haar <link href=\"http://www.w3.org/TR/#tr_MathML\">specificatie</link>." #: 06020000.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/nl/helpcontent2/source/text/swriter/00.po libreoffice-5.1.2~rc2/translations/source/nl/helpcontent2/source/text/swriter/00.po --- libreoffice-5.1.1~rc2/translations/source/nl/helpcontent2/source/text/swriter/00.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/nl/helpcontent2/source/text/swriter/00.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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-28 09:25+0000\n" +"PO-Revision-Date: 2016-03-27 12:46+0000\n" "Last-Translator: kees538 <kees538@gmail.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: nl\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1448702741.000000\n" +"X-POOTLE-MTIME: 1459082794.000000\n" #: 00000004.xhp msgctxt "" @@ -577,7 +577,7 @@ "46\n" "help.text" msgid "<variable id=\"feldbefehlseitennummer\">Choose <emph>Insert - Fields - Page Number</emph></variable>" -msgstr "<variable id=\"feldbefehlseitenanzahl\">Kies <emph>Invoegen - Velden - paginanummer</emph></variable>" +msgstr "<variable id=\"feldbefehlseitennummer\">Kies <emph>Invoegen - Velden - Paginanummer</emph></variable>" #: 00000404.xhp msgctxt "" @@ -666,7 +666,7 @@ "56\n" "help.text" msgid "<variable id=\"felddokument\">Choose <emph>Insert - Fields - More Fields - Document</emph> tab </variable>" -msgstr "<variable id=\"felddokumentinfo\">Kies tab <emph>Invoegen - Velden - Meer velden - Document</emph> </variable>" +msgstr "<variable id=\"felddokument\">Kies tab <emph>Invoegen - Velden - Meer velden - Document</emph> </variable>" #: 00000404.xhp msgctxt "" @@ -1851,7 +1851,7 @@ "72\n" "help.text" msgid "Choose <emph>Insert/Format - Image - Macro</emph> tab" -msgstr "Kies <emph>Invoegen/Opmaak - Afbeelding</emph> tabpagina <emph>Macro</emph>" +msgstr "Kies <emph>Invoegen/Opmaak - Afbeelding - Macro</emph> tabpagina" #: 00000405.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/nl/helpcontent2/source/text/swriter/01.po libreoffice-5.1.2~rc2/translations/source/nl/helpcontent2/source/text/swriter/01.po --- libreoffice-5.1.1~rc2/translations/source/nl/helpcontent2/source/text/swriter/01.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/nl/helpcontent2/source/text/swriter/01.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-15 06:37+0000\n" +"PO-Revision-Date: 2016-03-28 08:49+0000\n" "Last-Translator: kees538 <kees538@gmail.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: nl\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1452839840.000000\n" +"X-POOTLE-MTIME: 1459154963.000000\n" #: 01120000.xhp msgctxt "" @@ -2070,7 +2070,7 @@ "76\n" "help.text" msgid "You can also use the macros that are linked to some of the provided AutoText entries in AutoText entries that you create. The AutoText entries must be created with the \"text only\" option. For example, insert the string <field:company> in an AutoText entry, and $[officename] replaces the string with the contents of the corresponding database field." -msgstr "U kunt ook de macro's die gekoppeld zijn aan sommige standaard beschikbare AutoTeksten-items, voor uw eigen AutoTekst-items gebruiken. De AutoTekst-items moeten gemaakt worden met de optie Alleen tekst. Als u bijvoorbeeld de tekenreeks <veld:bedrijf> in een AutoTekst-item invoert, vervangt $[officename] de tekenreeks met de inhoud van het overeenkomstige databaseveld." +msgstr "U kunt ook de macro's die gekoppeld zijn aan sommige standaard beschikbare AutoTeksten-items, voor uw eigen AutoTekst-items gebruiken. De AutoTekst-items moeten gemaakt worden met de optie \"Alleen tekst\". Als u bijvoorbeeld de tekenreeks <field:company> in een AutoTekst-item invoert, vervangt $[officename] de tekenreeks met de inhoud van het overeenkomstige databaseveld." #: 02120000.xhp msgctxt "" @@ -2567,7 +2567,7 @@ "par_id3149036\n" "help.text" msgid "If you click in front of a \"sender\" type field, and then choose <item type=\"menuitem\">Edit - Fields</item>, the <link href=\"text/shared/optionen/01010100.xhp\" name=\"User data\"><emph>User data</emph></link> dialog opens." -msgstr "Als u vóór een \"afzender\"veld klikt en dan <item type=\"menuitem\">Bewerken - Velden</emph> kiest, wordt het dialoogvenster <link href=\"text/shared/optionen/01010100.xhp\" name=\"User data\"><emph>Gebruikersgegevens</emph></link> geopend." +msgstr "Als u vóór een type \"afzender\" veld klikt en dan <item type=\"menuitem\">Bewerken - Velden</item> kiest, wordt het dialoogvenster <link href=\"text/shared/optionen/01010100.xhp\" name=\"User data\"><emph>Gebruikersgegevens</emph></link> geopend." #: 02140000.xhp msgctxt "" @@ -3143,7 +3143,7 @@ "par_id3155896\n" "help.text" msgid "To insert an index entry, select a word in the document, and then choose <link href=\"text/swriter/01/04120100.xhp\" name=\"Insert - Indexes and Tables - Entry\"><item type=\"menuitem\">Insert - </item><item type=\"menuitem\">Table of Contents and </item><item type=\"menuitem\">Index - </item><item type=\"menuitem\">Index </item><item type=\"menuitem\">Entry</item></link>." -msgstr "Om een indexitem in te voegen, selecteer een woord in het document en kies dan <link href=\"text/swriter/01/04120100.xhp\" name=\"Insert - Indexes and Tables - Entry\"><item type=\"menuitem\">Invoegen - </item><item type=\"menuitem\">Inhoudsopgave en registers </item><item type=\"menuitem\">Indexitem</item></link>." +msgstr "Om een indexitem in te voegen, selecteer een woord in het document en kies dan <link href=\"text/swriter/01/04120100.xhp\" name=\"Insert - Indexes and Tables - Entry\"><item type=\"menuitem\">Invoegen - </item><item type=\"menuitem\">Inhoudsopgave en </item><item type=\"menuitem\">Index - </item><item type=\"menuitem\">Index</item><item type=\"menuitem\">Ingave</item></link>." #: 02160000.xhp msgctxt "" @@ -3633,7 +3633,7 @@ "par_id3149287\n" "help.text" msgid "To change the default field display to field names instead of the field contents, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"menuitem\">%PRODUCTNAME - Preferences</item></caseinline><defaultinline><item type=\"menuitem\">Tools - Options</item></defaultinline></switchinline><emph> - %PRODUCTNAME Writer - View</emph>, and then select the <emph>Field codes</emph> checkbox in the <emph>Display</emph> area." -msgstr "Kies, om de standaard weergave van de velden te wijzigen naar de veldnamen in plaats van de inhoud van het veld, <switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"menuitem\">%PRODUCTNAME - Voorkeuren</item></caseinline><defaultinline><item type=\"menuitem\">Extra - Opties</item></defaultinline></switchinline> - %PRODUCTNAME Writer - Weergave</emph> en selecteer dan het keuzevak<emph> Veldcodes </emph>in het gebied <emph>Weergeven</emph>." +msgstr "Kies, om de standaard weergave van de velden te wijzigen naar de veldnamen in plaats van de inhoud van het veld, <switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"menuitem\">%PRODUCTNAME - Voorkeuren</item></caseinline><defaultinline><item type=\"menuitem\">Extra - Opties</item></defaultinline></switchinline><emph> - %PRODUCTNAME Writer - Weergave</emph> en selecteer dan het keuzevak<emph> Veldcodes </emph>in het gebied <emph>Weergeven</emph>." #: 03090000.xhp msgctxt "" @@ -3689,7 +3689,7 @@ "par_id3147511\n" "help.text" msgid "To specify which non-printing characters are displayed, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"menuitem\">%PRODUCTNAME - Preferences</item></caseinline><defaultinline><item type=\"menuitem\">Tools - Options</item></defaultinline></switchinline><emph> - <link href=\"text/shared/optionen/01040600.xhp\" name=\"Writer - Formatting Aids\">%PRODUCTNAME Writer - Formatting Aids</link></emph>, and then select the options that you want in the <emph>Display of</emph> area." -msgstr "Kies <switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"menuitem\">%PRODUCTNAME - Voorkeuren</item></caseinline><defaultinline><item type=\"menuitem\">Extra - Opties</item></defaultinline></switchinline> - <link href=\"text/shared/optionen/01040600.xhp\" name=\"Writer - Opmaakhulp\">%PRODUCTNAME Writer - Opmaakhulp</link></emph> en selecteer dan de opties die u wilt in het gebied <emph>Weergeven van</emph>om te specificeren of niet afdrukbare tekens moeten worden weergegeven." +msgstr "Kies <switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"menuitem\">%PRODUCTNAME - Voorkeuren</item></caseinline><defaultinline><item type=\"menuitem\">Extra - Opties</item></defaultinline></switchinline><emph> - <link href=\"text/shared/optionen/01040600.xhp\" name=\"Writer - Opmaakhulp\">%PRODUCTNAME Writer - Opmaakhulp</link></emph> en selecteer dan de opties die u wilt in het gebied <emph>Weergeven van</emph>om te specificeren of niet afdrukbare tekens moeten worden weergegeven." #: 03120000.xhp msgctxt "" @@ -4141,7 +4141,7 @@ "34\n" "help.text" msgid "The general syntax for a DDE command is: \"<Server> <Topic> <Item>\", where server is the DDE name for the application that contains the data. Topic refers to the location of the Item (usually the file name), and Item represents the actual object." -msgstr "De algemene syntaxis voor een DDE-opdracht is: \"<Toepassing> <Onderwerp> <Item>\". Toepassing is de DDE-naam van de toepassing waar de gegevens zijn opgeslagen. Onderwerp verwijst naar de locatie van het item (meestal de bestandsnaam) en Item staat voor het eigenlijke object." +msgstr "De algemene syntaxis voor een DDE-opdracht is: \"<Server><Topic><Item>\", waar \"Server\" de DDE-naam is voor de toepassing waar de gegevens zijn opgeslagen. \"Topic\" verwijst naar de locatie van het item (meestal de bestandsnaam) en Item staat voor het eigenlijke object." #: 04020100.xhp msgctxt "" @@ -6656,7 +6656,7 @@ "12\n" "help.text" msgid "In an HTML document, these bookmarks become anchors <A name>, which determine the target of hyperlinks for example." -msgstr "In een HTML-document worden deze bladwijzers ankers <Een naam>, die bijvoorbeeld het doel van hyperlinks bepalen." +msgstr "In een HTML-document worden deze bladwijzers ankers <A name>, die bijvoorbeeld het doel van hyperlinks bepalen." #: 04090002.xhp msgctxt "" @@ -8876,7 +8876,7 @@ "12\n" "help.text" msgid "<SDFIELD TYPE=DATETIME SDVAL=\"35843,4239988426\" SDNUM=\"1031;1031;DD/MM/YY\">17/02/98</SDFIELD>" -msgstr "<SDFIELD TYPE=DATETIME SDVAL=\"35843,4239988426\" SDNUM=\"1031;1031;DD/MM/JJ\">17-02-98</SDFIELD>" +msgstr "<SDFIELD TYPE=DATETIME SDVAL=\"35843,4239988426\" SDNUM=\"1031;1031;DD/MM/YY\">17-02-98</SDFIELD>" #: 04090007.xhp msgctxt "" @@ -8894,7 +8894,7 @@ "14\n" "help.text" msgid "<SDFIELD TYPE=DATETIME SDNUM=\"1031;1031;DD/MM/YY\">17/02/98</SDFIELD>" -msgstr "<SDFIELD TYPE=DATETIME SDNUM=\"1031;1031;DD/MM/JJ\">17-02-98</SDFIELD>" +msgstr "<SDFIELD TYPE=DATETIME SDNUM=\"1031;1031;DD/MM/YY\">17-02-98</SDFIELD>" #: 04090007.xhp msgctxt "" @@ -8912,7 +8912,7 @@ "16\n" "help.text" msgid "<SDFIELD TYPE=DATETIME SDVAL=\"35843,4240335648\" SDNUM=\"1031;1031;HH:MM:SS\">10:10:36</SDFIELD>" -msgstr "<SDFIELD TYPE=DATETIME SDVAL=\"35843,4240335648\" SDNUM=\"1031;1031;UU:MM:SS\">10:10:36</SDFIELD>" +msgstr "<SDFIELD TYPE=DATETIME SDVAL=\"35843,4240335648\" SDNUM=\"1031;1031;HH:MM:SS\">10:10:36</SDFIELD>" #: 04090007.xhp msgctxt "" @@ -8930,7 +8930,7 @@ "18\n" "help.text" msgid "<SDFIELD TYPE=DATETIME SDNUM=\"1031;1031;HH:MM:SS\">10:10:36</SDFIELD>" -msgstr "<SDFIELD TYPE=DATETIME SDNUM=\"1031;1031;UU:MM:SS\">10:10:36</SDFIELD>" +msgstr "<SDFIELD TYPE=DATETIME SDNUM=\"1031;1031;HH:MM:SS\">10:10:36</SDFIELD>" #: 04090007.xhp msgctxt "" @@ -9020,7 +9020,7 @@ "32\n" "help.text" msgid "<SDFIELD TYPE=DOCINFO SUBTYPE=CREATE FORMAT=DATE SDNUM=\"1031;1031;QQ YY\">1. Quarter 98</SDFIELD>" -msgstr "<SDFIELD TYPE=DOCINFO SUBTYPE=CREATE FORMAT=DATE SDNUM=\"1031;1031;QQ JJ\">1e kwartaal 98</SDFIELD>" +msgstr "<SDFIELD TYPE=DOCINFO SUBTYPE=CREATE FORMAT=DATE SDNUM=\"1031;1031;QQ YY\">1e kwartaal 98</SDFIELD>" #: 04090007.xhp msgctxt "" @@ -9038,7 +9038,7 @@ "34\n" "help.text" msgid "<SDFIELD TYPE=DOCINFO SUBTYPE=CREATE FORMAT=TIME SDVAL=\"0\" SDNUM=\"1031;1031;HH:MM:SS AM/PM\" SDFIXED>03:58:35 PM</SDFIELD>" -msgstr "<SDFIELD TYPE=DOCINFO SUBTYPE=CREATE FORMAT=TIME SDVAL=\"0\" SDNUM=\"1031;1031;UU:MM:SS AM/PM\" SDFIXED>03:58:35 PM</SDFIELD>" +msgstr "<SDFIELD TYPE=DOCINFO SUBTYPE=CREATE FORMAT=TIME SDVAL=\"0\" SDNUM=\"1031;1031;HH:MM:SS AM/PM\" SDFIXED>03:58:35 PM</SDFIELD>" #: 04090007.xhp msgctxt "" @@ -9056,7 +9056,7 @@ "36\n" "help.text" msgid "<SDFIELD TYPE=DOCINFO SUBTYPE=CHANGE FORMAT=DATE SDNUM=\"1031;1031;NN DD MMM, YY\">Mo 23 Feb, 98</SDFIELD>" -msgstr "<SDFIELD TYPE=DOCINFO SUBTYPE=CHANGE FORMAT=DATE SDNUM=\"1031;1031;NN DD MMM, JJ\">Ma 23 feb, 98</SDFIELD>" +msgstr "<SDFIELD TYPE=DOCINFO SUBTYPE=CHANGE FORMAT=DATE SDNUM=\"1031;1031;NN DD MMM, YY\">Ma 23 feb, 98</SDFIELD>" #: 04090100.xhp msgctxt "" @@ -22146,7 +22146,7 @@ "2\n" "help.text" msgid "Automatically formats the file according to the options that you set under <link href=\"text/shared/01/06040000.xhp\" name=\"Tools - AutoCorrect\"><emph>Tools - AutoCorrect</emph> <emph>Options</emph></link>." -msgstr "Maakt het bestand automatisch op volgens de opties die u instelt onder <link href=\"text/shared/01/06040000.xhp\" name=\"Extra - AutoCorrectie\"</emph> <emph>Extra - Opties voor AutoCorrectie</emph></link>." +msgstr "Maakt het bestand automatisch op volgens de opties die u instelt onder <link href=\"text/shared/01/06040000.xhp\" name=\"Tools - AutoCorrect\"><emph>Extra - Opties voor AutoCorrectie</emph> <emph>Opties</emph></link>." #: 05150000.xhp msgctxt "" @@ -22258,7 +22258,7 @@ "2\n" "help.text" msgid "<variable id=\"autoformattabelle\"><ahelp hid=\"modules/swriter/ui/autoformattable/AutoFormatTableDialog\">Automatically applies formats to the current table, including fonts, shading, and borders.</ahelp></variable>" -msgstr "<variable id=\"autoformattabelle\"><ahelp hid=\"HID_AUTOFMT_TABLE\">Past automatisch opmaak op de huidige tabel toe, inclusief lettertypen, schaduw en randen.</ahelp></variable>" +msgstr "<variable id=\"autoformattabelle\"><ahelp hid=\"modules/swriter/ui/autoformattable/AutoFormatTableDialog\">Past automatisch opmaak op de huidige tabel toe, inclusief lettertypen, schaduw en randen.</ahelp></variable>" #: 05150101.xhp msgctxt "" @@ -23379,7 +23379,7 @@ "19\n" "help.text" msgid "To exclude paragraphs from the automatic hyphenation, select the paragraphs, choose <emph>Format - Paragraph</emph>, click the Text Flow tab, and then clear the <emph>Automatically</emph> check box in the Hyphenation area." -msgstr "U kunt het automatisch afbreken van woorden in bepaalde alinea's opheffen door de alinea's te selecteren, <emph>Opmaak - Alinea</emph>, te klikken op de tab Tekstverloop en dan het selectievakje <emph>Automatisch</emph> uit te schakelen in het gebied <emph>Woordafbreking</emph>." +msgstr "U kunt het automatisch afbreken van woorden in bepaalde alinea's opheffen door de alinea's te selecteren, <emph>Opmaak - Alinea</emph>, te klikken op de tab Tekstverloop en dan het selectievakje <emph>Automatisch</emph> uit te schakelen in het gebied Woordafbreking." #: 06030000.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/nl/helpcontent2/source/text/swriter/guide.po libreoffice-5.1.2~rc2/translations/source/nl/helpcontent2/source/text/swriter/guide.po --- libreoffice-5.1.1~rc2/translations/source/nl/helpcontent2/source/text/swriter/guide.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/nl/helpcontent2/source/text/swriter/guide.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-11-28 10:45+0000\n" +"PO-Revision-Date: 2016-03-28 08:57+0000\n" "Last-Translator: kees538 <kees538@gmail.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: nl\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1448707542.000000\n" +"X-POOTLE-MTIME: 1459155423.000000\n" #: anchor_object.xhp msgctxt "" @@ -277,7 +277,7 @@ "par_id3155139\n" "help.text" msgid "Click a heading in the <emph>Navigator</emph> list, and then click the <emph>Promote Chapter</emph> <image id=\"img_id4217546\" src=\"sw/imglst/sc20174.png\"><alt id=\"alt_id4217546\">Icon</alt></image> or <emph>Demote Chapter</emph> icon <image id=\"img_id6505788\" src=\"sw/imglst/sc20171.png\"><alt id=\"alt_id6505788\">Icon</alt></image>." -msgstr "Klik op een kop in de lijst <emph>Navigator</emph> en dan op het pictogram <emph>Hoofdstuk hoger</emph><image id=\"img_id4217546\" src=\"sw/imglst/sc20174.png\" width=\"0.564cm\" height=\"0.564cm\"><alt id=\"alt_id4217546\">Pictogram</alt></image> of <emph>Hoofdstuk lager</emph> <image id=\"img_id6505788\" src=\"sw/imglst/sc20171.png\" width=\"0.564cm\" height=\"0.564cm\"><alt id=\"alt_id6505788\">Pictogram</alt></image>." +msgstr "Klik op een kop in de lijst <emph>Navigator</emph> en dan op het pictogram <emph>Hoofdstuk hoger</emph><image id=\"img_id4217546\" src=\"sw/imglst/sc20174.png\"><alt id=\"alt_id4217546\">Pictogram</alt></image> of <emph>Hoofdstuk lager</emph> <image id=\"img_id6505788\" src=\"sw/imglst/sc20171.png\"><alt id=\"alt_id6505788\">Pictogram</alt></image>." #: arrange_chapters.xhp msgctxt "" @@ -309,7 +309,7 @@ "par_idN1081C\n" "help.text" msgid "Click the <emph>Promote Level</emph> <image id=\"img_id5564488\" src=\"sw/imglst/sc20172.png\"><alt id=\"alt_id5564488\">Icon</alt></image> or <emph>Demote Level</emph> icon <image id=\"img_id3159363\" src=\"sw/imglst/sc20173.png\"><alt id=\"alt_id3159363\">Icon</alt></image>." -msgstr "Klik op het pictogram <emph>Hoger niveau</emph><image id=\"img_id5564488\" src=\"sw/imglst/sc20172.png\" width=\"0.564cm\" height=\"0.564cm\"><alt id=\"alt_id5564488\">Pictogram</alt></image> of <emph>Lager niveau</emph> <image id=\"img_id3159363\" src=\"sw/imglst/sc20173.png\" width=\"0.564cm\" height=\"0.564cm\"><alt id=\"alt_id3159363\">Pictogram</alt></image>." +msgstr "Klik op het pictogram <emph>Hoger niveau</emph><image id=\"img_id5564488\" src=\"sw/imglst/sc20172.png\"><alt id=\"alt_id5564488\">Pictogram</alt></image> of <emph>Lager niveau</emph> <image id=\"img_id3159363\" src=\"sw/imglst/sc20173.png\"><alt id=\"alt_id3159363\">Pictogram</alt></image>." #: arrange_chapters.xhp msgctxt "" @@ -325,7 +325,7 @@ "par_id3151352\n" "help.text" msgid "Click the <emph>Heading Levels Shown</emph> icon <image id=\"img_id3151310\" src=\"sw/imglst/sc20236.png\"><alt id=\"alt_id3151310\">Icon</alt></image>, and then select a number from the list." -msgstr "Klik op het pictogram <emph>Weergegeven kopregelniveaus</emph> <image id=\"img_id3151310\" src=\"sw/imglst/sc20236.png\" width=\"0.564cm\" height=\"0.564cm\"><alt id=\"alt_id3151310\">Pictogram</alt></image> en selecteer vervolgens een getal in de lijst." +msgstr "Klik op het pictogram <emph>Weergegeven kopregelniveaus</emph> <image id=\"img_id3151310\" src=\"sw/imglst/sc20236.png\"><alt id=\"alt_id3151310\">Pictogram</alt></image> en selecteer vervolgens een getal in de lijst." #: auto_numbering.xhp msgctxt "" @@ -10429,7 +10429,7 @@ "bm_id3155183\n" "help.text" msgid "<bookmark_value>page breaks; inserting and deleting</bookmark_value> <bookmark_value>inserting; page breaks</bookmark_value> <bookmark_value>deleting;page breaks</bookmark_value> <bookmark_value>pages; inserting/deleting page breaks</bookmark_value> <bookmark_value>manual page breaks</bookmark_value> <bookmark_value>tables;deleting page breaks before</bookmark_value>" -msgstr "<bookmark_value>pagina-einden; invoegen en verwijderen</bookmark_value> <bookmark_value>invoegen; pagina-einden</bookmark_value> <bookmark_value>verwijderen;pagina-einden</bookmark_value> <bookmark_value>pagina's; pagina-einden invoegen/verwijderen</bookmark_value> <bookmark_value>handmatige pagina-einden</bookmark_value>" +msgstr "<bookmark_value>pagina-einden; invoegen en verwijderen</bookmark_value> <bookmark_value>invoegen; pagina-einden</bookmark_value> <bookmark_value>verwijderen;pagina-einden</bookmark_value> <bookmark_value>pagina's; pagina-einden invoegen/verwijderen</bookmark_value> <bookmark_value>handmatige pagina-einden</bookmark_value> <bookmark_value>tabllen;pagina-einden ervoor verwijderen</bookmark_value>" #: page_break.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/nl/helpcontent2/source/text/swriter.po libreoffice-5.1.2~rc2/translations/source/nl/helpcontent2/source/text/swriter.po --- libreoffice-5.1.1~rc2/translations/source/nl/helpcontent2/source/text/swriter.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/nl/helpcontent2/source/text/swriter.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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-28 09:25+0000\n" -"Last-Translator: kees538 <kees538@gmail.com>\n" +"PO-Revision-Date: 2016-03-07 19:02+0000\n" +"Last-Translator: Cor Nouws <cor.nouws@documentfoundation.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: nl\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1448702734.000000\n" +"X-POOTLE-MTIME: 1457377376.000000\n" #: main0000.xhp msgctxt "" @@ -292,7 +292,7 @@ "hd_id102720150854018740\n" "help.text" msgid "Hide Whitespace" -msgstr "Spaties verbergen" +msgstr "Witruimte verbergen" #: main0103.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/nl/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-5.1.2~rc2/translations/source/nl/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-5.1.1~rc2/translations/source/nl/officecfg/registry/data/org/openoffice/Office/UI.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/nl/officecfg/registry/data/org/openoffice/Office/UI.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\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-09 07:53+0000\n" -"Last-Translator: kees538 <kees538@gmail.com>\n" +"PO-Revision-Date: 2016-03-21 21:25+0000\n" +"Last-Translator: vpanter <leo.moons@telenet.be>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: nl\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1452325993.000000\n" +"X-POOTLE-MTIME: 1458595550.000000\n" #: BaseWindowState.xcu msgctxt "" @@ -3407,7 +3407,7 @@ "Label\n" "value.text" msgid "~Sheet" -msgstr "~Blad" +msgstr "B~lad" #: CalcCommands.xcu msgctxt "" @@ -14243,7 +14243,7 @@ "Label\n" "value.text" msgid "[placeholder for message]" -msgstr "[berichtenbewaarplaats]" +msgstr "[plaatshouder voor bericht]" #: GenericCommands.xcu msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/nl/sc/uiconfig/scalc/ui.po libreoffice-5.1.2~rc2/translations/source/nl/sc/uiconfig/scalc/ui.po --- libreoffice-5.1.1~rc2/translations/source/nl/sc/uiconfig/scalc/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/nl/sc/uiconfig/scalc/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: LibO 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-22 09:33+0000\n" -"Last-Translator: kees538 <kees538@gmail.com>\n" +"PO-Revision-Date: 2016-03-21 21:26+0000\n" +"Last-Translator: vpanter <leo.moons@telenet.be>\n" "Language-Team: none\n" "Language: nl\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1448184836.000000\n" +"X-POOTLE-MTIME: 1458595601.000000\n" #: advancedfilterdialog.ui msgctxt "" @@ -3143,7 +3143,7 @@ "0\n" "stringlist.text" msgid "Generate #VALUE! error" -msgstr "Algemene fout #WAARDE!" +msgstr "Fout #WAARDE! genereren" #: formulacalculationoptions.ui msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/nl/starmath/source.po libreoffice-5.1.2~rc2/translations/source/nl/starmath/source.po --- libreoffice-5.1.1~rc2/translations/source/nl/starmath/source.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/nl/starmath/source.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,17 +4,17 @@ "Project-Id-Version: PACKAGE VERSION\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-04-25 09:30+0000\n" -"Last-Translator: kees538 <kees538@hotmail.com>\n" +"PO-Revision-Date: 2016-03-21 21:27+0000\n" +"Last-Translator: vpanter <leo.moons@telenet.be>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: nl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: LibreOffice\n" +"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1429954235.000000\n" +"X-POOTLE-MTIME: 1458595652.000000\n" #: commands.src msgctxt "" @@ -1670,7 +1670,7 @@ "RID_XWIDEBSLASHY_HELP\n" "string.text" msgid "Division (counter wideslash)" -msgstr "Deling (\\)" +msgstr "Deling (brede backslash)" #: commands.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/nl/svx/inc.po libreoffice-5.1.2~rc2/translations/source/nl/svx/inc.po --- libreoffice-5.1.1~rc2/translations/source/nl/svx/inc.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/nl/svx/inc.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-08-25 12:33+0200\n" -"PO-Revision-Date: 2015-12-13 08:20+0000\n" -"Last-Translator: kees538 <kees538@gmail.com>\n" +"PO-Revision-Date: 2016-03-09 00:22+0000\n" +"Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: nl\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1449994847.000000\n" +"X-POOTLE-MTIME: 1457482975.000000\n" #: globlmn_tmpl.hrc msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/nn/basic/source/classes.po libreoffice-5.1.2~rc2/translations/source/nn/basic/source/classes.po --- libreoffice-5.1.1~rc2/translations/source/nn/basic/source/classes.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/nn/basic/source/classes.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-08 21:24+0000\n" +"PO-Revision-Date: 2016-03-20 20:35+0000\n" "Last-Translator: Kolbjørn Stuestøl <kolbjoern@stuestoel.no>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: nn\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1452288271.000000\n" +"X-POOTLE-MTIME: 1458506154.000000\n" #: sb.src msgctxt "" @@ -977,7 +977,7 @@ "ERRCODE_BASIC_BAD_BLOCK & ERRCODE_RES_MASK\n" "string.text" msgid "Statement block still open: $(ARG1) missing." -msgstr "Uttrykksblokka er framleis open: ($ARG1) manglar." +msgstr "Uttrykksblokka er framleis open: $(ARG1) manglar." #: sb.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/nn/cui/uiconfig/ui.po libreoffice-5.1.2~rc2/translations/source/nn/cui/uiconfig/ui.po --- libreoffice-5.1.1~rc2/translations/source/nn/cui/uiconfig/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/nn/cui/uiconfig/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 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 14:43+0000\n" +"PO-Revision-Date: 2016-03-20 20:38+0000\n" "Last-Translator: Kolbjørn Stuestøl <kolbjoern@stuestoel.no>\n" "Language-Team: none\n" "Language: nn\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1454510631.000000\n" +"X-POOTLE-MTIME: 1458506305.000000\n" #: aboutconfigdialog.ui msgctxt "" @@ -482,7 +482,7 @@ "label\n" "string.text" msgid "[M]: Replace while modifying existing text" -msgstr "[E]: Byt ut under redigering av tekst som finst" +msgstr "[E]: Byt ut under endring av tekst som finst" #: applyautofmtpage.ui msgctxt "" @@ -1625,7 +1625,7 @@ "label\n" "string.text" msgid "Edit OpenCL Blacklist Entry" -msgstr "Rediger OpenCL blacklist-oppføring" +msgstr "Rediger OpenCL svartliste-oppføring" #: blackorwhitelistentrydialog.ui msgctxt "" @@ -1634,7 +1634,7 @@ "label\n" "string.text" msgid "Create OpenCL Blacklist Entry" -msgstr "Lag OpenCL blacklist-oppføring" +msgstr "Lag OpenCL svartliste-oppføring" #: blackorwhitelistentrydialog.ui msgctxt "" @@ -1643,7 +1643,7 @@ "label\n" "string.text" msgid "Edit OpenCL Whitelist Entry" -msgstr "Rediger OpenCL whitelist-oppføring" +msgstr "Rediger OpenCL kvitliste-oppføring" #: blackorwhitelistentrydialog.ui msgctxt "" @@ -1652,7 +1652,7 @@ "label\n" "string.text" msgid "Create OpenCL Whitelist Entry" -msgstr "Lag OpenCL whitelist-oppføring" +msgstr "Lag OpenCL kvitliste-oppføring" #: blackorwhitelistentrydialog.ui msgctxt "" @@ -11494,7 +11494,7 @@ "label\n" "string.text" msgid "OpenCL blacklist" -msgstr "OpenCL blackliste" +msgstr "OpenCL-svartliste" #: optopenclpage.ui msgctxt "" @@ -11530,7 +11530,7 @@ "label\n" "string.text" msgid "OpenCL whitelist" -msgstr "OpenCL whiteliste" +msgstr "OpenCL-kvitliste" #: optopenclpage.ui msgctxt "" @@ -11539,7 +11539,7 @@ "label\n" "string.text" msgid "OpenCL Options" -msgstr "OpenGL-val" +msgstr "OpenCL-val" #: optpathspage.ui msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/nn/dictionaries/en.po libreoffice-5.1.2~rc2/translations/source/nn/dictionaries/en.po --- libreoffice-5.1.1~rc2/translations/source/nn/dictionaries/en.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/nn/dictionaries/en.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,18 +3,18 @@ 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: 2013-11-20 13:01+0100\n" -"PO-Revision-Date: 2012-12-27 19:50+0000\n" -"Last-Translator: Kolbjørn <kolbjoern@stuestoel.no>\n" +"POT-Creation-Date: 2015-04-22 23:40+0200\n" +"PO-Revision-Date: 2016-03-24 16:06+0000\n" +"Last-Translator: Kolbjørn Stuestøl <kolbjoern@stuestoel.no>\n" "Language-Team: none\n" "Language: nn\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: 1356637843.0\n" +"X-POOTLE-MTIME: 1458835604.000000\n" #: description.xml msgctxt "" @@ -22,4 +22,4 @@ "dispname\n" "description.text" msgid "English spelling dictionaries, hyphenation rules, thesaurus, and grammar checker" -msgstr "Engelsk stavekontroll, orddeling, synonymer, og grammatikkkontroll" +msgstr "Engelsk stavekontroll, orddeling, synonym, og grammatikkkontroll" diff -Nru libreoffice-5.1.1~rc2/translations/source/nn/formula/source/core/resource.po libreoffice-5.1.2~rc2/translations/source/nn/formula/source/core/resource.po --- libreoffice-5.1.1~rc2/translations/source/nn/formula/source/core/resource.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/nn/formula/source/core/resource.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-19 15:42+0000\n" +"PO-Revision-Date: 2016-03-24 16:07+0000\n" "Last-Translator: Kolbjørn Stuestøl <kolbjoern@stuestoel.no>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: nn\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1453218123.000000\n" +"X-POOTLE-MTIME: 1458835626.000000\n" #: core_resource.src msgctxt "" @@ -86,7 +86,7 @@ "SC_OPCODE_TABLE_REF_ITEM_TOTALS\n" "string.text" msgid "#Totals" -msgstr "#SUMMER" +msgstr "#Totalar" #: core_resource.src msgctxt "" @@ -383,7 +383,7 @@ "SC_OPCODE_COSECANT\n" "string.text" msgid "CSC" -msgstr "COSEKANT (CSC pÃ¥ engelsk)" +msgstr "COSEKANT" #: core_resource.src msgctxt "" @@ -3038,7 +3038,7 @@ "SC_OPCODE_F_INV_LT\n" "string.text" msgid "F.INV" -msgstr "F.INVERS (F.INV pÃ¥ engelsk)" +msgstr "F.INVERS" #: core_resource.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/nn/helpcontent2/source/text/sbasic/shared.po libreoffice-5.1.2~rc2/translations/source/nn/helpcontent2/source/text/sbasic/shared.po --- libreoffice-5.1.1~rc2/translations/source/nn/helpcontent2/source/text/sbasic/shared.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/nn/helpcontent2/source/text/sbasic/shared.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-11-03 17:28+0000\n" +"PO-Revision-Date: 2016-03-25 15:12+0000\n" "Last-Translator: Kolbjørn Stuestøl <kolbjoern@stuestoel.no>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: nn\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1446571709.000000\n" +"X-POOTLE-MTIME: 1458918772.000000\n" #: 00000002.xhp msgctxt "" @@ -174,7 +174,7 @@ "110\n" "help.text" msgid "URL notation does not allow certain special characters to be used. These are either replaced by other characters or encoded. A slash (<emph>/</emph>) is used as a path separator. For example, a file referred to as <emph>C:\\My File.sxw</emph> on the local host in \"Windows notation\" becomes <emph>file:///C|/My%20File.sxw</emph> in URL notation." -msgstr "I URL-notasjonen er det ein del spesialteikn som er ulovlege Ã¥ bruka. Desse vert anten byt ut med andre teikn eller vert koda. Det vert brukt skrÃ¥strek (<emph>/</emph>) som skiljeteikn. Ei fil som for eksempel vert skrive som <emph>C:\\fila mi.sxw</emph> pÃ¥ ein Windowsmaskin, vert til <emph>file:///C|/fila%20mi.sxw</emph> i URL-notasjon." +msgstr "I URL-notasjonen er det ein del spesialteikn som er ulovlege Ã¥ bruka. Desse vert anten byt ut med andre teikn eller vert koda. Det vert brukt skrÃ¥strek (<emph>/</emph>) som skiljeteikn. Ei fil som for eksempel vert skrive som <emph>C:\\fila mi.sxw</emph> i «Windowsnotasjon», vert til <emph>file:///C|/fila%20mi.sxw</emph> i URL-notasjon." #: 00000003.xhp msgctxt "" @@ -1678,7 +1678,7 @@ "5\n" "help.text" msgid "What is a Function?" -msgstr "Kva er ein Function (funksjon)?" +msgstr "Kva er ein function (funksjon)?" #: 01010210.xhp msgctxt "" @@ -2682,7 +2682,7 @@ "58\n" "help.text" msgid "A variable defined within a SUB or FUNCTION, only remains valid until the procedure is exited. This is known as a \"local\" variable. In many cases, you need a variable to be valid in all procedures, in every module of all libraries, or after a SUB or FUNCTION is exited." -msgstr "Ein variabel som er definert inne i ein SUB eller ein FUNCTION er gyldig berre inne i prosedyren. Dette er det som vert kalla ein «lokal» variabel. Ofte har du i tillegg ogsÃ¥ bruk for variablar som er tilgjengelege i heile programmet, inne i alle modulane og ogsÃ¥ etter at ein SUB eller FUNCTION er avslutta. " +msgstr "Ein variabel som er definert inne i ein SUB eller ein FUNCTION er gyldig berre inne i prosedyren. Dette er det som vert kalla ein «lokal» variabel. Ofte har du i tillegg ogsÃ¥ bruk for variablar som er tilgjengelege i heile programmet, inne i alle modulane og ogsÃ¥ etter at ein SUB eller FUNCTION er avslutta." #: 01020300.xhp msgctxt "" @@ -11564,7 +11564,7 @@ "6\n" "help.text" msgid "<emph>TextFrom:</emph> Any string expression that specifies the name of the file that you want to copy. The expression can contain optional path and drive information. If you want, you can enter a path in <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>." -msgstr "<emph>TekstFrÃ¥:</emph> Eit strenguttrykk som inneheld namnet pÃ¥ fila som skal kopierast. Uttrykket kan innehalda ein valfri sti og valfri informasjon om lagringsmediumet. Du kan om ønskjeleg skriva inn stien som <link href=\"text/ sbasic/shared/00000002.xhp\" name=\"URL notation\">URL-notasjon</link>." +msgstr "<emph>TekstFrÃ¥:</emph> Eit strenguttrykk som inneheld namnet pÃ¥ fila som skal kopierast. Uttrykket kan innehalda ein valfri sti og valfri informasjon om lagringsmediumet. Du kan om ønskjeleg skriva inn stien som <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL-notasjon</link>." #: 03020406.xhp msgctxt "" @@ -12432,7 +12432,7 @@ "6\n" "help.text" msgid "<emph>Text:</emph> Any string expression that specifies the name and path of the directory that you want to delete. You can also use <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>." -msgstr "<emph>Tekst:</emph> Eit strenguttrykk som inneheld stien og namnet pÃ¥ fila som skal slettast. Du kan om ønskjeleg skriva inn stien som <link href=\"text/ sbasic/shared/00000002.xhp\" name=\"URL notation\">URL-notasjon</link>." +msgstr "<emph>Tekst:</emph> Eit strenguttrykk som inneheld stien og namnet pÃ¥ fila som skal slettast. Du kan om ønskjeleg skriva inn stien som <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL-notasjon</link>." #: 03020413.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/nn/helpcontent2/source/text/scalc/00.po libreoffice-5.1.2~rc2/translations/source/nn/helpcontent2/source/text/scalc/00.po --- libreoffice-5.1.1~rc2/translations/source/nn/helpcontent2/source/text/scalc/00.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/nn/helpcontent2/source/text/scalc/00.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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 12:21+0000\n" +"PO-Revision-Date: 2016-03-25 15:19+0000\n" "Last-Translator: Kolbjørn Stuestøl <kolbjoern@stuestoel.no>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: nn\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1454242871.000000\n" +"X-POOTLE-MTIME: 1458919140.000000\n" #: 00000004.xhp msgctxt "" @@ -47,7 +47,7 @@ "par_idN105AF\n" "help.text" msgid "<variable id=\"optional\">In the %PRODUCTNAME Calc functions, parameters marked as \"optional\" can be left out only when no parameter follows. For example, in a function with four parameters, where the last two parameters are marked as \"optional\", you can leave out parameter 4 or parameters 3 and 4, but you cannot leave out parameter 3 alone. </variable>" -msgstr "<variable id=\"optional\">I funksjonane i %PRODUCTNAME Calc kan ein utelata parametrar som er merkte som valfrie viss det ikkje kjem ein pÃ¥følgjande parameter. For eksempel kan du utelata parameter 4 eller parameter 3 og 4 i ein function med fire parametrar, der dei siste to parametrane er merkte som valfrie, men du kan ikkje utelata berre parameter 3.</variable>" +msgstr "<variable id=\"optional\">I funksjonane i %PRODUCTNAME Calc kan ein utelata parametrar som er merkte som valfrie viss det ikkje kjem ein pÃ¥følgjande parameter. For eksempel kan du utelata parameter 4 eller parameter 3 og 4 i ein funksjon med fire parameterar, der dei siste to parametrane er merkte som valfrie, men du kan ikkje utelata berre parameter 3.</variable>" #: 00000004.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/nn/helpcontent2/source/text/scalc/01.po libreoffice-5.1.2~rc2/translations/source/nn/helpcontent2/source/text/scalc/01.po --- libreoffice-5.1.1~rc2/translations/source/nn/helpcontent2/source/text/scalc/01.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/nn/helpcontent2/source/text/scalc/01.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-03 16:03+0000\n" +"PO-Revision-Date: 2016-03-25 17:02+0000\n" "Last-Translator: Kolbjørn Stuestøl <kolbjoern@stuestoel.no>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: nn\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1454515419.000000\n" +"X-POOTLE-MTIME: 1458925358.000000\n" #: 01120000.xhp msgctxt "" @@ -10717,7 +10717,7 @@ "176\n" "help.text" msgid "<item type=\"input\">=CELL(\"ADDRESS\";Sheet3.D2)</item> returns $Sheet3.$D$2." -msgstr "<item type=\"input\">CELLE(\"ADDRESS\"; Ark3.D2)</item> returnerer $Ark3.$D$2." +msgstr "<item type=\"input\">CELLE(\"ADRESSE\"; Ark3.D2)</item> returnerer $Ark3.$D$2." #: 04060104.xhp msgctxt "" @@ -10726,7 +10726,7 @@ "177\n" "help.text" msgid "<item type=\"input\">=CELL(\"ADDRESS\";'X:\\dr\\test.sxc'#$Sheet1.D2)</item> returns 'file:///X:/dr/test.sxc'#$Sheet1.$D$2." -msgstr "<item type=\"input\">=CELLE(\"ADDRESS\";'X:\\dr\\test.sxc'#$Ark1.D2)</item> returnerer 'file:///X:/dr/test.sxc'#$Ark1.$D$2." +msgstr "<item type=\"input\">=CELLE(\"ADRESSE\";'X:\\dr\\test.sxc'#$Ark1.D2)</item> returnerer 'file:///X:/dr/test.sxc'#$Ark1.$D$2." #: 04060104.xhp msgctxt "" @@ -25683,7 +25683,7 @@ "par_id2958477\n" "help.text" msgid "<item type=\"input\">MIDB(\"中国\";2;2)</item> returns \" \" (byte position 2 points to the last half of the first character in the DBCS string; the 2 bytes asked for therefore constitutes the last half of the first character and the first half of the second character in the string; 2 space characters are therefore returned)." -msgstr "<item type=\"input\">MIDT</item>B(\"中国\";2;2)</item> returnerer « » (den 2. byteposisjonen peikar til den siste halvdelen av det første teiknet i ein DBCS-streng. Dei 2 bytane som vert returnerte er difor den siste halvparten av det første teiknet og den første halvparten av det andre teiknet. Det vert difor returnert 2 mellomrom)." +msgstr "<item type=\"input\">MIDTB(\"中国\";2;2)</item> returnerer « » (den 2. byteposisjonen peikar til den siste halvdelen av det første teiknet i ein DBCS-streng. Dei 2 bytane som vert returnerte er difor den siste halvparten av det første teiknet og den første halvparten av det andre teiknet. Det vert difor returnert 2 mellomrom)." #: 04060110.xhp msgctxt "" @@ -27655,7 +27655,7 @@ "73\n" "help.text" msgid "Add-ins can also be implemented through the %PRODUCTNAME <link href=\"http://api.libreoffice.org/\">API</link>." -msgstr "Tilleggsfunksjonar kan ogsÃ¥ leggjast inn via %PRODUCTNAME <link href=\"http://api.openoffice.org/\">API</link>." +msgstr "Tilleggsfunksjonar kan ogsÃ¥ leggjast inn via %PRODUCTNAME <link href=\"http://api.libreoffice.org/\">API</link>." #: 04060112.xhp msgctxt "" @@ -27698,7 +27698,7 @@ "2\n" "help.text" msgid "$[officename] Calc can be expanded by Add-Ins, which are external programming modules providing additional functions for working with spreadsheets. These are listed in the <emph>Function Wizard</emph> in the <emph>Add-In</emph> category. If you would like to program an Add-In yourself, you can learn here which functions must be exported by the <switchinline select=\"sys\"><caseinline select=\"UNIX\">shared library </caseinline><defaultinline>external DLL</defaultinline></switchinline> so that the Add-In can be successfully attached." -msgstr "$[officename] Calc kan utvidast med programtillegg som er eksterne programmodular som legg fleire funksjonar til i reknearket. Du kan fÃ¥ fram lista over tillegga frÃ¥ menyen <emph>Verktøy → Utvidingar</emph>. Dersom du ønskjer Ã¥ programmera ein tilleggsfunksjon, kan du læra her kva funksjonar som mÃ¥ eksporterast med <switchinline select=\"sys\"><caseinline select=\"UNIX\">det delte biblioteket</caseinline><defaultinline>den eksterne DLL</defaultinline></switchinline> for Ã¥ verta korrekt installert." +msgstr "$[officename] Calc kan utvidast med programtillegg som er eksterne programmodular som legg fleire funksjonar til i reknearket. Desse er lista opp i <emph>funksjonsvegvisaren</emph> under kategorien <emph>Tillegg</emph>. Dersom du ønskjer Ã¥ programmera ein tilleggsfunksjon, kan du læra her kva funksjonar som mÃ¥ eksporterast med <switchinline select=\"sys\"><caseinline select=\"UNIX\">det delte biblioteket</caseinline><defaultinline>den eksterne DLL</defaultinline></switchinline> for Ã¥ verta korrekt installert." #: 04060112.xhp msgctxt "" @@ -36105,7 +36105,7 @@ "194\n" "help.text" msgid "Rate: 9.00 per cent per annum (9% / 12 = 0.0075), Duration: 30 years (payment periods = 30 * 12 = 360), NPV: 125000 currency units." -msgstr "Rente: 9,00 % per Ã¥r (9%/12=0,0075), lengd: 30 Ã¥r (betalingsperiodar = 30 * 12 = 360), noverdi: 125 000 valutaeiningar." +msgstr "Rente: 9,00 % per Ã¥r (9% / 12=0,0075), lengd: 30 Ã¥r (betalingsperiodar = 30 * 12 = 360), noverdi: 125 000 valutaeiningar." #: 04060119.xhp msgctxt "" @@ -40429,7 +40429,7 @@ "132\n" "help.text" msgid "If the (observed) Chi square is greater than or equal to the (theoretical) Chi square CHIINV, the hypothesis will be discarded, since the deviation between theory and experiment is too great. If the observed Chi square is less that CHIINV, the hypothesis is confirmed with the indicated probability of error." -msgstr "Viss det observerte kji-kvadratet er større enn eller lik det teoretiske kji-kvadratet, vert hypotesen forkasta sidan skilnaden mellom teori og forsøk er for stor. Viss det observerte kji-kvadratet er mindre enn INVERS.KJIFORDELING, er hypotesen godtatt med det indikerte feilsannsynet. " +msgstr "Viss det observerte kji-kvadratet er større enn eller lik det teoretiske kji-kvadratet, vert hypotesen forkasta sidan skilnaden mellom teori og forsøk er for stor. Viss det observerte kji-kvadratet er mindre enn INVERS.KJIFORDELING, er hypotesen godtatt med det indikerte feilsannsynet." #: 04060181.xhp msgctxt "" @@ -40438,7 +40438,7 @@ "95\n" "help.text" msgid "<item type=\"input\">=CHIINV(0.05;5)</item> returns 11.07." -msgstr "<item type=\"input\">=LOGINV(0,05;0;1)</item> returnerer 0,19." +msgstr "<item type=\"input\">=INVERS.KJIFORDELING(0,05;5)</item> returnerer 11,07." #: 04060181.xhp msgctxt "" @@ -40554,7 +40554,7 @@ "132\n" "help.text" msgid "If the (observed) Chi square is greater than or equal to the (theoretical) Chi square CHIINV, the hypothesis will be discarded, since the deviation between theory and experiment is too great. If the observed Chi square is less that CHIINV, the hypothesis is confirmed with the indicated probability of error." -msgstr "Viss det observerte kji-kvadratet er større enn eller lik det teoretiske kji-kvadratet, vert hypotesen forkasta sidan skilnaden mellom teori og forsøk er for stor. Viss det observerte kji-kvadratet er mindre enn INVERS.KJIFORDELING, er hypotesen godtatt med det indikerte feilsannsynet. " +msgstr "Viss det observerte kji-kvadratet er større enn eller lik det teoretiske kji-kvadratet, vert hypotesen forkasta sidan skilnaden mellom teori og forsøk er for stor. Viss det observerte kji-kvadratet er mindre enn INVERS.KJIFORDELING, er hypotesen godtatt med det indikerte feilsannsynet." #: 04060181.xhp msgctxt "" @@ -48185,7 +48185,7 @@ "24\n" "help.text" msgid "<emph>Value</emph> is the x value, for which the y value on the linear regression is to be returned." -msgstr "<emph>Verdi</emph> er X-værdien som Y-verdien skal returnerast for pÃ¥ den lineære regressjonen." +msgstr "<emph>Verdi</emph> er X-verdien som Y-verdien skal returnerast for pÃ¥ den lineære regressjonen." #: 04060185.xhp msgctxt "" @@ -48691,7 +48691,7 @@ "49\n" "help.text" msgid "STANDARDIZE(Number; Mean; StDev)" -msgstr "NORMINV(Tal; Middelverdi; StdAv)" +msgstr "NORMALISER(Tal; Middelverdi; StdAv)" #: 04060185.xhp msgctxt "" @@ -50900,7 +50900,7 @@ "175\n" "help.text" msgid "WEIBULL.DIST" -msgstr "WEIBULL.FORDELING (WIBULL.DIST pÃ¥ engelsk)" +msgstr "WEIBULL.FORDELING (WEIBULL.DIST pÃ¥ engelsk)" #: 04060185.xhp msgctxt "" @@ -62718,7 +62718,7 @@ "par_id51531273215056\n" "help.text" msgid "If a cell in a range of values for calculating the mean is empty or contains text, the function AVERAGEIFS ignores this cell.<br/>If a cell contains TRUE, it is treated as 1, if a cell contains FALSE – as 0 (zero).<br/>If the whole range is empty, contains only text or all values of the range do not satisfy the condition (or any combination of those), the function returns the #DIV/0! error.<br/>If the range of values for calculating the mean and any range for finding criterion have unequal sizes, the function returns err:502." -msgstr "Dersom ei celle i eit omrÃ¥de det skal reknast ut gjennomsnitt for er tom eller inneheld tekst, vil funksjonen GJENNOMSNITT.VISS.SETT ignorere denne cella.<br/>Dersom ei celle inneheld SANN, vert dette sett pÃ¥ som 1 og USANN vert sett pÃ¥ som 0 (null). Dersom heile omrÃ¥det er tomt, inneheld berre tekst eller at ingen av cellene i omrÃ¥det oppfyller vilkÃ¥ret eller kombinasjon av vilkÃ¥r, vil funksjonen returnere feilen #DIV/0.<br/>Dersom omrÃ¥det som inneheld verdiar det skal finnast gjennomsnitt for og eitt eller fleire omrÃ¥de som inneheld kriteria har ulike storleikar, vil funksjonen returnere feil:502." +msgstr "Dersom ei celle i eit omrÃ¥de det skal reknast ut gjennomsnitt for er tom eller inneheld tekst, vil funksjonen GJENNOMSNITT.VISS.SETT ignorere denne cella.<br/>Dersom ei celle inneheld SANN, vert dette sett pÃ¥ som 1 og USANN vert sett pÃ¥ som 0 (null). Dersom heile omrÃ¥det er tomt, inneheld berre tekst eller at ingen av cellene i omrÃ¥det oppfyller vilkÃ¥ret eller kombinasjon av vilkÃ¥r, vil funksjonen returnere feilen #DIV/0!.<br/>Dersom omrÃ¥det som inneheld verdiar det skal finnast gjennomsnitt for og eitt eller fleire omrÃ¥de som inneheld kriteria har ulike storleikar, vil funksjonen returnere feil:502." #: func_averageifs.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/nn/helpcontent2/source/text/scalc/05.po libreoffice-5.1.2~rc2/translations/source/nn/helpcontent2/source/text/scalc/05.po --- libreoffice-5.1.1~rc2/translations/source/nn/helpcontent2/source/text/scalc/05.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/nn/helpcontent2/source/text/scalc/05.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\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-19 11:11+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2016-03-25 17:07+0000\n" +"Last-Translator: Kolbjørn Stuestøl <kolbjoern@stuestoel.no>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: nn\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1437304263.000000\n" +"X-POOTLE-MTIME: 1458925665.000000\n" #: 02140000.xhp msgctxt "" @@ -72,7 +72,7 @@ "bm_id3148428\n" "help.text" msgid "<bookmark_value>invalid names; error messages</bookmark_value> <bookmark_value>#NAME error message</bookmark_value>" -msgstr "<bookmark_value>ugyldige namn; feilmeldingar</bookmark_value><bookmark_value>#NAME-feilmeldinga</bookmark_value><bookmark_value>feilmeldinga #NAME</bookmark_value>" +msgstr "<bookmark_value>ugyldige namn; feilmeldingar</bookmark_value><bookmark_value>#NAMN-feilmeldinga</bookmark_value><bookmark_value>feilmeldinga #NAMN</bookmark_value>" #: 02140000.xhp msgctxt "" @@ -188,7 +188,7 @@ "12\n" "help.text" msgid "503<br/>#NUM!" -msgstr "503<br/>#NUM!" +msgstr "503<br/>#TAL!" #: 02140000.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/nn/helpcontent2/source/text/scalc/guide.po libreoffice-5.1.2~rc2/translations/source/nn/helpcontent2/source/text/scalc/guide.po --- libreoffice-5.1.1~rc2/translations/source/nn/helpcontent2/source/text/scalc/guide.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/nn/helpcontent2/source/text/scalc/guide.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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-22 13:52+0000\n" +"PO-Revision-Date: 2016-03-25 17:22+0000\n" "Last-Translator: Kolbjørn Stuestøl <kolbjoern@stuestoel.no>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: nn\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1448200365.000000\n" +"X-POOTLE-MTIME: 1458926545.000000\n" #: address_auto.xhp msgctxt "" @@ -4673,7 +4673,7 @@ "21\n" "help.text" msgid "You can select a named range in which the pivot table is to be created, from the <emph>Results to</emph> box. If the results range does not have a name, enter the coordinates of the upper left cell of the range into the field to the right of the <emph>Results to</emph> box. You can also click on the appropriate cell to have the coordinates entered accordingly." -msgstr "Du kan velja eit namngjeve omrÃ¥de som pivottabellen skal opprettast i frÃ¥ nedtrekkslista <emph>Resultat til</emph>. Dersom omrÃ¥det ikkje har eit namn, skriv du inn koordinata for feltet i til høgre for nedtrekkslista. Du kan ogsÃ¥ klikka direkte i cella for Ã¥ setja inn koordinata." +msgstr "Du kan velja eit namngjeve omrÃ¥de som pivottabellen skal opprettast i frÃ¥ nedtrekkslista <emph>Resultat til</emph>. Dersom omrÃ¥det ikkje har eit namn, skriv du inn koordinata for den øvre, venstre cella i feltet til høgre for nedtrekkslista. Du kan ogsÃ¥ klikka direkte i cella for Ã¥ setja inn koordinata." #: datapilot_tipps.xhp msgctxt "" @@ -6562,7 +6562,7 @@ "15\n" "help.text" msgid "Let us assume that the interest rate <item type=\"literal\">i</item> of 7.5% and the number of years <item type=\"literal\">n</item> (1) will remain constant. However, you want to know how much the investment capital <item type=\"literal\">C</item> would have to be modified in order to attain a particular return <item type=\"literal\">I</item>. For this example, calculate how much capital <item type=\"literal\">C</item> would be required if you want an annual return of $15,000." -msgstr "GÃ¥ ut frÃ¥ at renta <item type=\"literal\">r</item> er pÃ¥ 7,5 % og talet pÃ¥ Ã¥r <item type=\"literal\">n</item> (1) er konstante. Du vil heller vita kor stor investeringskapitalen <item type=\"literal\">K</item> mÃ¥ vere for Ã¥ fÃ¥ ein bestemt gevinst <item type=\"literal\">R</item>. I dette eksemplet skal vi rekna ut den nødvendige kapitalen <item type=\"literal\">K</item> for Ã¥ oppnÃ¥ ein Ã¥rleg gevinst pÃ¥ 15 000 kr." +msgstr "GÃ¥ ut frÃ¥ at renta <item type=\"literal\">r</item> er pÃ¥ 7,5 % og talet pÃ¥ Ã¥r <item type=\"literal\">n</item> (1) er konstant. Du vil heller vita kor stor investeringskapitalen <item type=\"literal\">K</item> mÃ¥ vere for Ã¥ fÃ¥ ein bestemt gevinst <item type=\"literal\">R</item>. I dette eksemplet skal vi rekna ut den nødvendige kapitalen <item type=\"literal\">K</item> for Ã¥ oppnÃ¥ ein Ã¥rleg gevinst pÃ¥ 15 000 kr." #: goalseek.xhp msgctxt "" @@ -7205,7 +7205,7 @@ "bm_id3150770\n" "help.text" msgid "<bookmark_value>HowTos for Calc</bookmark_value><bookmark_value>instructions; $[officename] Calc</bookmark_value>" -msgstr "<bookmark_value>$[officename] Calc; rettleiing</bookmark_value><bookmark_value>rettleiing; $[officename] Calc</bookmark_value>" +msgstr "<bookmark_value>Calc; rettleiing</bookmark_value><bookmark_value>rettleiing; $[officename] Calc</bookmark_value>" #: main.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/nn/helpcontent2/source/text/shared/01.po libreoffice-5.1.2~rc2/translations/source/nn/helpcontent2/source/text/shared/01.po --- libreoffice-5.1.1~rc2/translations/source/nn/helpcontent2/source/text/shared/01.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/nn/helpcontent2/source/text/shared/01.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\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 18:02+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2016-03-20 10:22+0000\n" +"Last-Translator: Kolbjørn Stuestøl <kolbjoern@stuestoel.no>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: nn\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1454263340.000000\n" +"X-POOTLE-MTIME: 1458469366.000000\n" #: 01010000.xhp msgctxt "" @@ -15638,7 +15638,7 @@ "par_id3153624\n" "help.text" msgid "Use zero (0), the number sign (#) or the question mark (?) as placeholders in your number format code to represent numbers. The (#) only displays significant digits, while the (0) displays zeroes if there are fewer digits in the number than in the number format. The (?) works as the (#) but adds a space character to keep decimal alignment if there is a hidden non-significant zero." -msgstr "" +msgstr "Bruk null (0), nummerteiknet (#) eller spørjeteiknet (?) som plasshaldarar i talformatkoden for Ã¥ representera tal. «#» viser berre signifikante siffer, medan «0» viser nullar viss det er færre siffer i talet enn i talformatet. «?» gjer det same som «#» men legg til eit mellomrom for Ã¥ justera desimalteiknet viss det er ein gøymd ikkje-signifikant null." #: 05020301.xhp msgctxt "" @@ -15695,7 +15695,6 @@ msgstr "Viser ikkje ekstra nullar." #: 05020301.xhp -#, fuzzy msgctxt "" "05020301.xhp\n" "par_id3152802\n" @@ -15711,7 +15710,7 @@ "240\n" "help.text" msgid "Displays space characters instead of extra zeros." -msgstr "" +msgstr "Viser mellomrom i staden for ekstra nullar." #: 05020301.xhp msgctxt "" @@ -15854,7 +15853,7 @@ "241\n" "help.text" msgid ".5 as 0.5   (with two extra spaces at the end)" -msgstr "" +msgstr ",5 som 0,5 (med to ekstra mellomrom til slutt)" #: 05020301.xhp msgctxt "" @@ -15863,7 +15862,7 @@ "242\n" "help.text" msgid "0.???" -msgstr "" +msgstr "0,???" #: 05020301.xhp msgctxt "" @@ -25155,7 +25154,7 @@ "3\n" "help.text" msgid "Fill" -msgstr "Fil" +msgstr "Fyll" #: 05210100.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/nn/instsetoo_native/inc_openoffice/windows/msi_languages.po libreoffice-5.1.2~rc2/translations/source/nn/instsetoo_native/inc_openoffice/windows/msi_languages.po --- libreoffice-5.1.1~rc2/translations/source/nn/instsetoo_native/inc_openoffice/windows/msi_languages.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/nn/instsetoo_native/inc_openoffice/windows/msi_languages.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-25 11:14+0000\n" +"PO-Revision-Date: 2016-03-20 20:40+0000\n" "Last-Translator: Kolbjørn Stuestøl <kolbjoern@stuestoel.no>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: nn\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1437822877.000000\n" +"X-POOTLE-MTIME: 1458506429.000000\n" #: ActionTe.ulf msgctxt "" @@ -1670,7 +1670,7 @@ "OOO_CONTROL_124\n" "LngText.text" msgid "Build contributed in collaboration with the community by [Manufacturer]. For credits, see: http://www.documentfoundation.org" -msgstr "Bygd i samarbeid med miljøet rundt The Document Foundation. For meir informasjon, sjÃ¥: http://www.documentfoundation.org" +msgstr "Bygd i samarbeid med miljøet rundt [Manufacturer]. For meir informasjon, sjÃ¥ http://www.documentfoundation.org" #: Control.ulf msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/nn/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-5.1.2~rc2/translations/source/nn/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-5.1.1~rc2/translations/source/nn/officecfg/registry/data/org/openoffice/Office/UI.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/nn/officecfg/registry/data/org/openoffice/Office/UI.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-03 14:26+0000\n" +"PO-Revision-Date: 2016-03-20 10:25+0000\n" "Last-Translator: Kolbjørn Stuestøl <kolbjoern@stuestoel.no>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: nn\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1454509569.000000\n" +"X-POOTLE-MTIME: 1458469513.000000\n" #: BaseWindowState.xcu msgctxt "" @@ -15343,7 +15343,7 @@ "Label\n" "value.text" msgid "Outline Presets" -msgstr "" +msgstr "Førehandsinnstillingar for omriss" #: GenericCommands.xcu msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/nn/readlicense_oo/docs.po libreoffice-5.1.2~rc2/translations/source/nn/readlicense_oo/docs.po --- libreoffice-5.1.1~rc2/translations/source/nn/readlicense_oo/docs.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/nn/readlicense_oo/docs.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-12 09:55+0000\n" +"PO-Revision-Date: 2016-03-20 20:42+0000\n" "Last-Translator: Kolbjørn Stuestøl <kolbjoern@stuestoel.no>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: nn\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1452592545.000000\n" +"X-POOTLE-MTIME: 1458506550.000000\n" #: readme.xrm msgctxt "" @@ -222,7 +222,7 @@ "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 finst mange Linux-distribusjonar, og installasjonalternativa kan variera hos dei ulike leverandørane (KDE kontra GNOME osv.). Ein del distribusjonar kjem med deira «eigen versjon» av ${PRODUCTNAME}, som kan vera ulik den versjonen fellesskapet gjev ut. I mange tilfelle kan bÃ¥de versjonen av ${PRODUCTNAME} frÃ¥ miljøet og den frÃ¥ distribusjonen verta installerte side om side, men det kan hende at det er ønskjeleg eller nødvendig Ã¥ fjerna versjonen som følgde med distribusjonen før installasjon. For detaljert informasjon om korleis dette kan gjerast, sjÃ¥ etter i brukarrettleiinga frÃ¥ Linux-leverandøren." +msgstr "Det finst mange Linux-distribusjonar og installasjonalternativa kan variera hos dei ulike leverandørane (KDE kontra GNOME osv.). Ein del distribusjonar kjem med deira «eigen versjon» av ${PRODUCTNAME}, som kan vera ulik den versjonen fellesskapet gjev ut. I mange tilfelle kan bÃ¥de versjonen av ${PRODUCTNAME} frÃ¥ miljøet og den frÃ¥ distribusjonen verta installerte side om side, men det kan hende at det er ønskjeleg eller nødvendig Ã¥ fjerna versjonen som følgde med distribusjonen før installasjon. For detaljert informasjon om korleis dette kan gjerast, sjÃ¥ etter i brukarrettleiinga frÃ¥ Linux-leverandøren." #: readme.xrm msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/nn/sc/source/ui/src.po libreoffice-5.1.2~rc2/translations/source/nn/sc/source/ui/src.po --- libreoffice-5.1.1~rc2/translations/source/nn/sc/source/ui/src.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/nn/sc/source/ui/src.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-01 19:45+0000\n" +"PO-Revision-Date: 2016-03-21 17:18+0000\n" "Last-Translator: Kolbjørn Stuestøl <kolbjoern@stuestoel.no>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: nn\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1454355955.000000\n" +"X-POOTLE-MTIME: 1458580707.000000\n" #: condformatdlg.src msgctxt "" @@ -10478,7 +10478,7 @@ "1\n" "string.text" msgid "Returns TRUE if the value is an error value not equal to #N/A." -msgstr "Gjev tilbake SANN dersom verdien er ein feilverdi som ikkje er lik #I/T." +msgstr "Returnerer SANN dersom verdien er ein feilverdi som ikkje er lik #I/T." #: scfuncs.src msgctxt "" @@ -10586,7 +10586,7 @@ "1\n" "string.text" msgid "Returns TRUE if value equals #N/A." -msgstr "Gjev tilbake SANN dersom verdien er lik #I/T." +msgstr "Returnerer SANN dersom verdien er lik #I/T." #: scfuncs.src msgctxt "" @@ -11018,7 +11018,7 @@ "1\n" "string.text" msgid "Returns value if not a #N/A error, else alternative." -msgstr "Returnerer verdi dersom han ikkje er ein #I/T-feil, elles alternativet." +msgstr "Returnerer verdien dersom han ikkje er ein #I/T-feil, elles alternativet." #: scfuncs.src msgctxt "" @@ -22036,7 +22036,7 @@ "1\n" "string.text" msgid "Returns a number corresponding to one of the error values or #N/A if no error exists" -msgstr "Returnerer eit tal som svarar til ein av feilverdiane eller #I/T dersom det ikkje er feil." +msgstr "Returnerer eit tal som svarar til ein av feilverdiane eller #I/T dersom det ikkje er feil" #: scfuncs.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/nn/sc/source/ui/StatisticsDialogs.po libreoffice-5.1.2~rc2/translations/source/nn/sc/source/ui/StatisticsDialogs.po --- libreoffice-5.1.1~rc2/translations/source/nn/sc/source/ui/StatisticsDialogs.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/nn/sc/source/ui/StatisticsDialogs.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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-01-12 09:56+0000\n" +"PO-Revision-Date: 2016-03-20 10:25+0000\n" "Last-Translator: Kolbjørn Stuestøl <kolbjoern@stuestoel.no>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: nn\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1452592615.000000\n" +"X-POOTLE-MTIME: 1458469533.000000\n" #: StatisticsDialogs.src msgctxt "" @@ -770,7 +770,7 @@ "STR_LABEL_INTERCEPT\n" "string.text" msgid "Intercept" -msgstr "" +msgstr "Avbryt" #: StatisticsDialogs.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/nn/sc/uiconfig/scalc/ui.po libreoffice-5.1.2~rc2/translations/source/nn/sc/uiconfig/scalc/ui.po --- libreoffice-5.1.1~rc2/translations/source/nn/sc/uiconfig/scalc/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/nn/sc/uiconfig/scalc/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: LibO 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-14 20:25+0000\n" -"Last-Translator: Kolbjørn Stuestøl <kolbjoern@stuestoel.no>\n" +"PO-Revision-Date: 2016-03-09 23:22+0000\n" +"Last-Translator: Olav Dahlum <olav.dahlum@gmail.com>\n" "Language-Team: none\n" "Language: nn\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1447532748.000000\n" +"X-POOTLE-MTIME: 1457565776.000000\n" #: advancedfilterdialog.ui msgctxt "" @@ -3296,7 +3296,7 @@ "label\n" "string.text" msgid "OpenCL Settings" -msgstr "OpenCl-innstillingar" +msgstr "OpenCL-innstillingar" #: goalseekdlg.ui msgctxt "" @@ -5051,7 +5051,7 @@ "label\n" "string.text" msgid "Custom (use OpenCL, conversion of text to numbers, and more):" -msgstr "Tilpass (bruk OpenCl, konvertering av tekst til tal og meir):" +msgstr "Tilpass (bruk OpenCL, konvertering av tekst til tal og meir):" #: optformula.ui msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/nn/svtools/source/misc.po libreoffice-5.1.2~rc2/translations/source/nn/svtools/source/misc.po --- libreoffice-5.1.1~rc2/translations/source/nn/svtools/source/misc.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/nn/svtools/source/misc.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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-14 14:04+0000\n" +"PO-Revision-Date: 2016-03-21 17:19+0000\n" "Last-Translator: Kolbjørn Stuestøl <kolbjoern@stuestoel.no>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: nn\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1447509885.000000\n" +"X-POOTLE-MTIME: 1458580782.000000\n" #: imagemgr.src msgctxt "" @@ -3911,7 +3911,7 @@ "STR_SVT_ESTIMATED_SIZE_VEC\n" "string.text" msgid "The file size is %1 KB." -msgstr "Flisstorleiken er 1% KB." +msgstr "Filstorleiken er 1% KB." #: svtools.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/nn/sw/source/ui/app.po libreoffice-5.1.2~rc2/translations/source/nn/sw/source/ui/app.po --- libreoffice-5.1.1~rc2/translations/source/nn/sw/source/ui/app.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/nn/sw/source/ui/app.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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-14 15:23+0000\n" +"PO-Revision-Date: 2016-03-21 17:20+0000\n" "Last-Translator: Kolbjørn Stuestøl <kolbjoern@stuestoel.no>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: nn\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1447514605.000000\n" +"X-POOTLE-MTIME: 1458580857.000000\n" #: app.src msgctxt "" @@ -359,7 +359,7 @@ "STR_WRITER_DOCUMENT_FULLTYPE\n" "string.text" msgid "%PRODUCTNAME %PRODUCTVERSION Text Document" -msgstr "%PRODUCTNAME%PRODUCTVERSION -tekstdokument" +msgstr "%PRODUCTNAME %PRODUCTVERSION -tekstdokument" #: app.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/nn/sw/source/ui/utlui.po libreoffice-5.1.2~rc2/translations/source/nn/sw/source/ui/utlui.po --- libreoffice-5.1.1~rc2/translations/source/nn/sw/source/ui/utlui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/nn/sw/source/ui/utlui.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\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-12 13:26+0200\n" +"POT-Creation-Date: 2016-03-29 16:07+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff -Nru libreoffice-5.1.1~rc2/translations/source/nn/swext/mediawiki/help.po libreoffice-5.1.2~rc2/translations/source/nn/swext/mediawiki/help.po --- libreoffice-5.1.1~rc2/translations/source/nn/swext/mediawiki/help.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/nn/swext/mediawiki/help.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-18 13:19+0000\n" +"PO-Revision-Date: 2016-03-22 10:12+0000\n" "Last-Translator: Kolbjørn Stuestøl <kolbjoern@stuestoel.no>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: nn\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1437225588.000000\n" +"X-POOTLE-MTIME: 1458641576.000000\n" #: help.tree msgctxt "" @@ -166,7 +166,7 @@ "par_id5328836\n" "help.text" msgid "In the URL textbox, enter the address of a Wiki that you want to connect to." -msgstr "I tekstboksen <emph>Nettadresse</emph> skriv du adressa til wikien du vil kopla til." +msgstr "Skriv adressa til wikien du vil kopla til i tekstboksen <emph>Nettadresse</emph>." #: wiki.xhp msgctxt "" @@ -182,7 +182,7 @@ "par_id5906552\n" "help.text" msgid "In the Username box, enter your user ID for your Wiki account." -msgstr "I boksen <emph>Brukarnamn</emph> skriv du brukar-ID-en din pÃ¥ wikien." +msgstr "Skriv brukar-ID-en din pÃ¥ wikien i boksen <emph>Brukarnamn</emph>." #: wiki.xhp msgctxt "" @@ -198,7 +198,7 @@ "par_id8869594\n" "help.text" msgid "In the Password box, enter the password for your Wiki account, then click OK." -msgstr "I boksen <emph>Passordet</emph> skriv du passordet ditt til wikikontoen din og trykkjer deretter <emph>OK</emph>." +msgstr "Skriv passordet ditt til wikikontoen din i boksen <emph>Passordet</emph> og trykk deretter <emph>OK</emph>." #: wiki.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/nn/vcl/source/src.po libreoffice-5.1.2~rc2/translations/source/nn/vcl/source/src.po --- libreoffice-5.1.1~rc2/translations/source/nn/vcl/source/src.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/nn/vcl/source/src.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-02-22 16:54+0000\n" +"PO-Revision-Date: 2016-03-20 10:25+0000\n" "Last-Translator: Kolbjørn Stuestøl <kolbjoern@stuestoel.no>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: nn\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1456160059.000000\n" +"X-POOTLE-MTIME: 1458469558.000000\n" #: app.src msgctxt "" @@ -54,7 +54,7 @@ "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 -Nru libreoffice-5.1.1~rc2/translations/source/nn/wizards/source/formwizard.po libreoffice-5.1.2~rc2/translations/source/nn/wizards/source/formwizard.po --- libreoffice-5.1.1~rc2/translations/source/nn/wizards/source/formwizard.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/nn/wizards/source/formwizard.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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-17 13:39+0000\n" +"PO-Revision-Date: 2016-03-22 10:14+0000\n" "Last-Translator: Kolbjørn Stuestøl <kolbjoern@stuestoel.no>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: nn\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1447767553.000000\n" +"X-POOTLE-MTIME: 1458641697.000000\n" #: dbwizres.src msgctxt "" @@ -1940,7 +1940,7 @@ "RID_DB_REPORT_WIZARD_START + 65\n" "string.text" msgid "The query with the statement <BR>'<STATEMENT>' <BR> could not be run. <BR> Check your data source." -msgstr "Klarte ikkje køyra spørjinga med uttrykket <BR>«<STATEMENT>». <BR> Kontroller datakjelda." +msgstr "Klarte ikkje køyra spørjinga med uttrykket <BR>'<STATEMENT>'<BR>. <BR> Kontroller datakjelda." #: dbwizres.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/nr/cui/uiconfig/ui.po libreoffice-5.1.2~rc2/translations/source/nr/cui/uiconfig/ui.po --- libreoffice-5.1.1~rc2/translations/source/nr/cui/uiconfig/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/nr/cui/uiconfig/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 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:31+0000\n" +"PO-Revision-Date: 2016-03-08 23:25+0000\n" "Last-Translator: system user <>\n" "Language-Team: none\n" "Language: nr\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1452263488.000000\n" +"X-POOTLE-MTIME: 1457479511.000000\n" #: aboutconfigdialog.ui msgctxt "" @@ -14068,31 +14068,34 @@ 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 @@ msgstr "(ayikho)" #: 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 "" @@ -17430,40 +17437,44 @@ msgstr "(ayikho)" #: 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 -Nru libreoffice-5.1.1~rc2/translations/source/nr/dbaccess/uiconfig/ui.po libreoffice-5.1.2~rc2/translations/source/nr/dbaccess/uiconfig/ui.po --- libreoffice-5.1.1~rc2/translations/source/nr/dbaccess/uiconfig/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/nr/dbaccess/uiconfig/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: LibO 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 12:00+0000\n" -"Last-Translator: Anonymous Pootle User\n" +"PO-Revision-Date: 2016-03-08 23:29+0000\n" +"Last-Translator: system user <>\n" "Language-Team: none\n" "Language: nr\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: 1366027218.0\n" +"X-POOTLE-MTIME: 1457479799.000000\n" #: admindialog.ui msgctxt "" @@ -1927,22 +1927,24 @@ 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 @@ msgstr "" #: queryfilterdialog.ui +#, fuzzy msgctxt "" "queryfilterdialog.ui\n" "cond1\n" "4\n" "stringlist.text" msgid ">" -msgstr "" +msgstr ">" #: queryfilterdialog.ui msgctxt "" @@ -3016,58 +3019,64 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/nr/extensions/uiconfig/sabpilot/ui.po libreoffice-5.1.2~rc2/translations/source/nr/extensions/uiconfig/sabpilot/ui.po --- libreoffice-5.1.1~rc2/translations/source/nr/extensions/uiconfig/sabpilot/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/nr/extensions/uiconfig/sabpilot/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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:09+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: nr\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1435284570.000000\n" +"X-POOTLE-MTIME: 1457480203.000000\n" #: contentfieldpage.ui msgctxt "" @@ -280,13 +280,14 @@ msgstr "" #: gridfieldsselectionpage.ui +#, fuzzy msgctxt "" "gridfieldsselectionpage.ui\n" "fieldright\n" "label\n" "string.text" msgid "->" -msgstr "" +msgstr "->" #: gridfieldsselectionpage.ui msgctxt "" @@ -298,13 +299,14 @@ msgstr "" #: gridfieldsselectionpage.ui +#, fuzzy msgctxt "" "gridfieldsselectionpage.ui\n" "fieldleft\n" "label\n" "string.text" msgid "<-" -msgstr "" +msgstr "<-" #: gridfieldsselectionpage.ui msgctxt "" @@ -379,22 +381,24 @@ 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 @@ msgstr "" #: tableselectionpage.ui +#, fuzzy msgctxt "" "tableselectionpage.ui\n" "search\n" "label\n" "string.text" msgid "_..." -msgstr "" +msgstr "_..." #: tableselectionpage.ui msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/nr/librelogo/source/pythonpath.po libreoffice-5.1.2~rc2/translations/source/nr/librelogo/source/pythonpath.po --- libreoffice-5.1.1~rc2/translations/source/nr/librelogo/source/pythonpath.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/nr/librelogo/source/pythonpath.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,17 +3,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: 2014-05-02 00:06+0200\n" -"PO-Revision-Date: 2013-04-15 12:00+0000\n" -"Last-Translator: Anonymous Pootle User\n" +"POT-Creation-Date: 2015-04-22 23:40+0200\n" +"PO-Revision-Date: 2016-03-08 23:51+0000\n" +"Last-Translator: system user <>\n" "Language-Team: none\n" "Language: nr\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: 1366027225.0\n" +"X-POOTLE-MTIME: 1457481115.000000\n" #: LibreLogo_en_US.properties msgctxt "" @@ -792,20 +792,22 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/nr/officecfg/registry/data/org/openoffice/Office.po libreoffice-5.1.2~rc2/translations/source/nr/officecfg/registry/data/org/openoffice/Office.po --- libreoffice-5.1.1~rc2/translations/source/nr/officecfg/registry/data/org/openoffice/Office.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/nr/officecfg/registry/data/org/openoffice/Office.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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 23:59+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: nr\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1438902163.000000\n" +"X-POOTLE-MTIME: 1457481564.000000\n" #: Addons.xcu msgctxt "" @@ -1436,13 +1436,14 @@ msgstr "" #: PresentationMinimizer.xcu +#, fuzzy msgctxt "" "PresentationMinimizer.xcu\n" "..PresentationMinimizer.Strings\n" "STR_FILESIZESEPARATOR\n" "value.text" msgid "." -msgstr "" +msgstr "." #: PresentationMinimizer.xcu msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/nr/reportdesign/uiconfig/dbreport/ui.po libreoffice-5.1.2~rc2/translations/source/nr/reportdesign/uiconfig/dbreport/ui.po --- libreoffice-5.1.1~rc2/translations/source/nr/reportdesign/uiconfig/dbreport/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/nr/reportdesign/uiconfig/dbreport/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 09:47+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: nr\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1416390474.000000\n" +"X-POOTLE-MTIME: 1457482787.000000\n" #: backgrounddialog.ui msgctxt "" @@ -196,13 +196,14 @@ msgstr "" #: conditionwin.ui +#, fuzzy msgctxt "" "conditionwin.ui\n" "lhsButton\n" "label\n" "string.text" msgid "..." -msgstr "" +msgstr "..." #: conditionwin.ui msgctxt "" @@ -214,13 +215,14 @@ msgstr "" #: conditionwin.ui +#, fuzzy msgctxt "" "conditionwin.ui\n" "rhsButton\n" "label\n" "string.text" msgid "..." -msgstr "" +msgstr "..." #: conditionwin.ui msgctxt "" @@ -277,13 +279,14 @@ msgstr "" #: conditionwin.ui +#, fuzzy msgctxt "" "conditionwin.ui\n" "removeButton\n" "label\n" "string.text" msgid "-" -msgstr "" +msgstr "-" #: conditionwin.ui msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/nr/sc/uiconfig/scalc/ui.po libreoffice-5.1.2~rc2/translations/source/nr/sc/uiconfig/scalc/ui.po --- libreoffice-5.1.1~rc2/translations/source/nr/sc/uiconfig/scalc/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/nr/sc/uiconfig/scalc/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 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:20+0000\n" +"PO-Revision-Date: 2016-03-09 00:42+0000\n" "Last-Translator: system user <>\n" "Language-Team: none\n" "Language: nr\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1435285247.000000\n" +"X-POOTLE-MTIME: 1457484120.000000\n" #: advancedfilterdialog.ui msgctxt "" @@ -6389,22 +6389,24 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/nr/scaddins/source/analysis.po libreoffice-5.1.2~rc2/translations/source/nr/scaddins/source/analysis.po --- libreoffice-5.1.1~rc2/translations/source/nr/scaddins/source/analysis.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/nr/scaddins/source/analysis.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-11-24 04:39-0500\n" +"POT-Creation-Date: 2016-03-29 16:07+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff -Nru libreoffice-5.1.1~rc2/translations/source/nr/sd/source/ui/app.po libreoffice-5.1.2~rc2/translations/source/nr/sd/source/ui/app.po --- libreoffice-5.1.1~rc2/translations/source/nr/sd/source/ui/app.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/nr/sd/source/ui/app.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 05:43+0000\n" +"PO-Revision-Date: 2016-03-09 00:57+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: nr\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1431495819.000000\n" +"X-POOTLE-MTIME: 1457485050.000000\n" #: menuids3_tmpl.src msgctxt "" @@ -3778,12 +3778,13 @@ msgstr "<inomboro>" #: strings.src +#, fuzzy msgctxt "" "strings.src\n" "STR_FIELD_PLACEHOLDER_COUNT\n" "string.text" msgid "<count>" -msgstr "" +msgstr "<count>" #: strings.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/nr/sd/uiconfig/simpress/ui.po libreoffice-5.1.2~rc2/translations/source/nr/sd/uiconfig/simpress/ui.po --- libreoffice-5.1.1~rc2/translations/source/nr/sd/uiconfig/simpress/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/nr/sd/uiconfig/simpress/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 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:21+0000\n" +"PO-Revision-Date: 2016-03-09 00:59+0000\n" "Last-Translator: system user <>\n" "Language-Team: none\n" "Language: nr\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1435285307.000000\n" +"X-POOTLE-MTIME: 1457485177.000000\n" #: assistentdialog.ui msgctxt "" @@ -997,22 +997,24 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/nr/starmath/source.po libreoffice-5.1.2~rc2/translations/source/nr/starmath/source.po --- libreoffice-5.1.1~rc2/translations/source/nr/starmath/source.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/nr/starmath/source.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\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-12 13:26+0200\n" +"POT-Creation-Date: 2016-03-29 16:07+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff -Nru libreoffice-5.1.1~rc2/translations/source/nr/sw/source/core/undo.po libreoffice-5.1.2~rc2/translations/source/nr/sw/source/core/undo.po --- libreoffice-5.1.1~rc2/translations/source/nr/sw/source/core/undo.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/nr/sw/source/core/undo.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 05:52+0000\n" +"PO-Revision-Date: 2016-03-09 01:29+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: nr\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1431496370.000000\n" +"X-POOTLE-MTIME: 1457486985.000000\n" #: undo.src msgctxt "" @@ -807,20 +807,22 @@ msgstr "Ithebula/ikomba itjhugulukile" #: 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 -Nru libreoffice-5.1.1~rc2/translations/source/nr/sw/source/ui/dbui.po libreoffice-5.1.2~rc2/translations/source/nr/sw/source/ui/dbui.po --- libreoffice-5.1.1~rc2/translations/source/nr/sw/source/ui/dbui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/nr/sw/source/ui/dbui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 05:54+0000\n" +"PO-Revision-Date: 2016-03-09 01:32+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: nr\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1431496479.000000\n" +"X-POOTLE-MTIME: 1457487139.000000\n" #: dbui.src msgctxt "" @@ -487,31 +487,34 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/nr/sw/source/ui/index.po libreoffice-5.1.2~rc2/translations/source/nr/sw/source/ui/index.po --- libreoffice-5.1.1~rc2/translations/source/nr/sw/source/ui/index.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/nr/sw/source/ui/index.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,16 +3,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-01-05 14:15+0200\n" -"Last-Translator: Anonymous Pootle User\n" +"POT-Creation-Date: 2015-04-22 23:40+0200\n" +"PO-Revision-Date: 2016-03-09 01:33+0000\n" +"Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: nr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: LibreOffice\n" +"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" +"X-POOTLE-MTIME: 1457487227.000000\n" #: cnttab.src #, fuzzy @@ -56,20 +57,22 @@ 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 @@ msgstr "" #: cnttab.src +#, fuzzy msgctxt "" "cnttab.src\n" "STR_TOKEN_PAGE_NUMS\n" "string.text" msgid "#" -msgstr "" +msgstr "#" #: cnttab.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/nr/sw/source/ui/utlui.po libreoffice-5.1.2~rc2/translations/source/nr/sw/source/ui/utlui.po --- libreoffice-5.1.1~rc2/translations/source/nr/sw/source/ui/utlui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/nr/sw/source/ui/utlui.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE 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-20 11:58+0100\n" +"POT-Creation-Date: 2016-03-29 16:07+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff -Nru libreoffice-5.1.1~rc2/translations/source/nr/sw/uiconfig/swriter/ui.po libreoffice-5.1.2~rc2/translations/source/nr/sw/uiconfig/swriter/ui.po --- libreoffice-5.1.1~rc2/translations/source/nr/sw/uiconfig/swriter/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/nr/sw/uiconfig/swriter/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 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:03+0000\n" +"PO-Revision-Date: 2016-03-09 01:45+0000\n" "Last-Translator: system user <>\n" "Language-Team: none\n" "Language: nr\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1438902207.000000\n" +"X-POOTLE-MTIME: 1457487932.000000\n" #: abstractdialog.ui msgctxt "" @@ -2318,13 +2318,14 @@ msgstr "Tjhugululela Ithebula Kutheksithi" #: converttexttable.ui +#, fuzzy msgctxt "" "converttexttable.ui\n" "othered\n" "text\n" "string.text" msgid "," -msgstr "" +msgstr "," #: converttexttable.ui msgctxt "" @@ -2509,13 +2510,14 @@ msgstr "" #: createaddresslist.ui +#, fuzzy msgctxt "" "createaddresslist.ui\n" "PREV\n" "label\n" "string.text" msgid "<" -msgstr "" +msgstr "<" #: createaddresslist.ui msgctxt "" @@ -2527,13 +2529,14 @@ msgstr "" #: createaddresslist.ui +#, fuzzy msgctxt "" "createaddresslist.ui\n" "NEXT\n" "label\n" "string.text" msgid ">" -msgstr "" +msgstr ">" #: createaddresslist.ui msgctxt "" @@ -4443,13 +4446,14 @@ msgstr "" #: fldvarpage.ui +#, fuzzy msgctxt "" "fldvarpage.ui\n" "separator\n" "text\n" "string.text" msgid "." -msgstr "" +msgstr "." #: fldvarpage.ui msgctxt "" @@ -5428,22 +5432,24 @@ 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 "" @@ -6353,13 +6359,14 @@ msgstr "Ubujamo X" #: insertcaption.ui +#, fuzzy msgctxt "" "insertcaption.ui\n" "separator_edit\n" "text\n" "string.text" msgid ": " -msgstr "" +msgstr ": " #: insertcaption.ui msgctxt "" @@ -6371,13 +6378,14 @@ msgstr "" #: insertcaption.ui +#, fuzzy msgctxt "" "insertcaption.ui\n" "num_separator_edit\n" "text\n" "string.text" msgid ". " -msgstr "" +msgstr ". " #: insertcaption.ui msgctxt "" @@ -8714,13 +8722,14 @@ msgstr "" #: mmpreparepage.ui +#, fuzzy msgctxt "" "mmpreparepage.ui\n" "prev\n" "label\n" "string.text" msgid "<" -msgstr "" +msgstr "<" #: mmpreparepage.ui msgctxt "" @@ -8732,13 +8741,14 @@ msgstr "" #: mmpreparepage.ui +#, fuzzy msgctxt "" "mmpreparepage.ui\n" "next\n" "label\n" "string.text" msgid ">" -msgstr "" +msgstr ">" #: mmpreparepage.ui #, fuzzy @@ -9586,13 +9596,14 @@ msgstr "Ubujamo X" #: optcaptionpage.ui +#, fuzzy msgctxt "" "optcaptionpage.ui\n" "numseparator\n" "text\n" "string.text" msgid ". " -msgstr "" +msgstr ". " #: optcaptionpage.ui #, fuzzy @@ -15711,40 +15722,44 @@ msgstr "[Ayikho]" #: 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 -Nru libreoffice-5.1.1~rc2/translations/source/nr/vcl/source/src.po libreoffice-5.1.2~rc2/translations/source/nr/vcl/source/src.po --- libreoffice-5.1.1~rc2/translations/source/nr/vcl/source/src.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/nr/vcl/source/src.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 19:05+0000\n" +"PO-Revision-Date: 2016-03-09 01:48+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: nr\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1449860728.000000\n" +"X-POOTLE-MTIME: 1457488098.000000\n" #: app.src msgctxt "" @@ -1299,12 +1299,13 @@ msgstr "" #: print.src +#, fuzzy msgctxt "" "print.src\n" "SV_PRINT_INVALID_TXT\n" "string.text" msgid "<ignore>" -msgstr "" +msgstr "<ignore>" #: print.src msgctxt "" @@ -1579,13 +1580,14 @@ msgstr "" #: units.src +#, fuzzy msgctxt "" "units.src\n" "SV_FUNIT_STRINGS\n" "°\n" "itemlist.text" msgid "°" -msgstr "" +msgstr "°" #: units.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/nr/wizards/source/formwizard.po libreoffice-5.1.2~rc2/translations/source/nr/wizards/source/formwizard.po --- libreoffice-5.1.1~rc2/translations/source/nr/wizards/source/formwizard.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/nr/wizards/source/formwizard.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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-04-25 02:58+0000\n" +"PO-Revision-Date: 2016-03-09 01:53+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: nr\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1429930680.000000\n" +"X-POOTLE-MTIME: 1457488438.000000\n" #: dbwizres.src msgctxt "" @@ -1537,12 +1537,13 @@ msgstr "<FIELDNAME> (<SORTMODE>)" #: dbwizres.src +#, fuzzy msgctxt "" "dbwizres.src\n" "RID_DB_QUERY_WIZARD_START + 94\n" "string.text" msgid "<FIELDNAME> <LOGICOPERATOR> <VALUE>" -msgstr "" +msgstr "<FIELDNAME> <LOGICOPERATOR> <VALUE>" #: dbwizres.src msgctxt "" @@ -1553,12 +1554,13 @@ msgstr "<CALCULATEDFUNCTION> <FIELDNAME>" #: dbwizres.src +#, fuzzy msgctxt "" "dbwizres.src\n" "RID_DB_QUERY_WIZARD_START + 96\n" "string.text" msgid "<FIELDNAME> <LOGICOPERATOR> <VALUE>" -msgstr "" +msgstr "<FIELDNAME> <LOGICOPERATOR> <VALUE>" #: dbwizres.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/nso/cui/uiconfig/ui.po libreoffice-5.1.2~rc2/translations/source/nso/cui/uiconfig/ui.po --- libreoffice-5.1.1~rc2/translations/source/nso/cui/uiconfig/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/nso/cui/uiconfig/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 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:33+0000\n" +"PO-Revision-Date: 2016-03-08 23:51+0000\n" "Last-Translator: system user <>\n" "Language-Team: none\n" "Language: nso\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n > 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1452263602.000000\n" +"X-POOTLE-MTIME: 1457481110.000000\n" #: aboutconfigdialog.ui msgctxt "" @@ -14069,31 +14069,34 @@ 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 @@ -17369,40 +17372,44 @@ msgstr "(Ga go na selo)" #: 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 @@ -17425,40 +17432,44 @@ msgstr "(Ga go na selo)" #: 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 -Nru libreoffice-5.1.1~rc2/translations/source/nso/dbaccess/uiconfig/ui.po libreoffice-5.1.2~rc2/translations/source/nso/dbaccess/uiconfig/ui.po --- libreoffice-5.1.1~rc2/translations/source/nso/dbaccess/uiconfig/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/nso/dbaccess/uiconfig/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,17 +4,17 @@ "Project-Id-Version: LibO 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:18+0000\n" -"Last-Translator: Andras <timar74@gmail.com>\n" +"PO-Revision-Date: 2016-03-08 23:56+0000\n" +"Last-Translator: system user <>\n" "Language-Team: none\n" "Language: nso\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -"X-Generator: LibreOffice\n" +"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1361135886.0\n" +"X-POOTLE-MTIME: 1457481403.000000\n" #: admindialog.ui msgctxt "" @@ -1928,22 +1928,24 @@ 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 @@ msgstr "" #: queryfilterdialog.ui +#, fuzzy msgctxt "" "queryfilterdialog.ui\n" "cond1\n" "4\n" "stringlist.text" msgid ">" -msgstr "" +msgstr ">" #: queryfilterdialog.ui msgctxt "" @@ -3017,58 +3020,64 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/nso/extensions/uiconfig/sabpilot/ui.po libreoffice-5.1.2~rc2/translations/source/nso/extensions/uiconfig/sabpilot/ui.po --- libreoffice-5.1.1~rc2/translations/source/nso/extensions/uiconfig/sabpilot/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/nso/extensions/uiconfig/sabpilot/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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-09 00:03+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: nso\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n > 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1435284681.000000\n" +"X-POOTLE-MTIME: 1457481799.000000\n" #: contentfieldpage.ui msgctxt "" @@ -281,13 +281,14 @@ msgstr "" #: gridfieldsselectionpage.ui +#, fuzzy msgctxt "" "gridfieldsselectionpage.ui\n" "fieldright\n" "label\n" "string.text" msgid "->" -msgstr "" +msgstr "->" #: gridfieldsselectionpage.ui msgctxt "" @@ -299,13 +300,14 @@ msgstr "" #: gridfieldsselectionpage.ui +#, fuzzy msgctxt "" "gridfieldsselectionpage.ui\n" "fieldleft\n" "label\n" "string.text" msgid "<-" -msgstr "" +msgstr "<-" #: gridfieldsselectionpage.ui msgctxt "" @@ -380,22 +382,24 @@ 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 @@ msgstr "" #: tableselectionpage.ui +#, fuzzy msgctxt "" "tableselectionpage.ui\n" "search\n" "label\n" "string.text" msgid "_..." -msgstr "" +msgstr "_..." #: tableselectionpage.ui msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/nso/formula/source/core/resource.po libreoffice-5.1.2~rc2/translations/source/nso/formula/source/core/resource.po --- libreoffice-5.1.1~rc2/translations/source/nso/formula/source/core/resource.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/nso/formula/source/core/resource.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\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-29 16:07+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff -Nru libreoffice-5.1.1~rc2/translations/source/nso/librelogo/source/pythonpath.po libreoffice-5.1.2~rc2/translations/source/nso/librelogo/source/pythonpath.po --- libreoffice-5.1.1~rc2/translations/source/nso/librelogo/source/pythonpath.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/nso/librelogo/source/pythonpath.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,18 +3,18 @@ msgstr "" "Project-Id-Version: LibO 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:18+0000\n" -"Last-Translator: Andras <timar74@gmail.com>\n" +"POT-Creation-Date: 2015-04-22 23:40+0200\n" +"PO-Revision-Date: 2016-03-09 00:17+0000\n" +"Last-Translator: system user <>\n" "Language-Team: none\n" "Language: nso\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -"X-Generator: LibreOffice\n" +"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1361135886.0\n" +"X-POOTLE-MTIME: 1457482679.000000\n" #: LibreLogo_en_US.properties msgctxt "" @@ -802,20 +802,22 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/nso/officecfg/registry/data/org/openoffice/Office.po libreoffice-5.1.2~rc2/translations/source/nso/officecfg/registry/data/org/openoffice/Office.po --- libreoffice-5.1.1~rc2/translations/source/nso/officecfg/registry/data/org/openoffice/Office.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/nso/officecfg/registry/data/org/openoffice/Office.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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-09 00:26+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: nso\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n > 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1438902172.000000\n" +"X-POOTLE-MTIME: 1457483205.000000\n" #: Addons.xcu msgctxt "" @@ -1430,13 +1430,14 @@ msgstr "" #: PresentationMinimizer.xcu +#, fuzzy msgctxt "" "PresentationMinimizer.xcu\n" "..PresentationMinimizer.Strings\n" "STR_FILESIZESEPARATOR\n" "value.text" msgid "." -msgstr "" +msgstr "." #: PresentationMinimizer.xcu msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/nso/reportdesign/uiconfig/dbreport/ui.po libreoffice-5.1.2~rc2/translations/source/nso/reportdesign/uiconfig/dbreport/ui.po --- libreoffice-5.1.1~rc2/translations/source/nso/reportdesign/uiconfig/dbreport/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/nso/reportdesign/uiconfig/dbreport/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 10:05+0000\n" +"PO-Revision-Date: 2016-03-09 00:47+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: nso\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n > 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1416391532.000000\n" +"X-POOTLE-MTIME: 1457484467.000000\n" #: backgrounddialog.ui msgctxt "" @@ -197,13 +197,14 @@ msgstr "" #: conditionwin.ui +#, fuzzy msgctxt "" "conditionwin.ui\n" "lhsButton\n" "label\n" "string.text" msgid "..." -msgstr "" +msgstr "..." #: conditionwin.ui msgctxt "" @@ -215,13 +216,14 @@ msgstr "" #: conditionwin.ui +#, fuzzy msgctxt "" "conditionwin.ui\n" "rhsButton\n" "label\n" "string.text" msgid "..." -msgstr "" +msgstr "..." #: conditionwin.ui msgctxt "" @@ -278,13 +280,14 @@ msgstr "" #: conditionwin.ui +#, fuzzy msgctxt "" "conditionwin.ui\n" "removeButton\n" "label\n" "string.text" msgid "-" -msgstr "" +msgstr "-" #: conditionwin.ui msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/nso/sc/uiconfig/scalc/ui.po libreoffice-5.1.2~rc2/translations/source/nso/sc/uiconfig/scalc/ui.po --- libreoffice-5.1.1~rc2/translations/source/nso/sc/uiconfig/scalc/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/nso/sc/uiconfig/scalc/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 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:21+0000\n" +"PO-Revision-Date: 2016-03-09 01:12+0000\n" "Last-Translator: system user <>\n" "Language-Team: none\n" "Language: nso\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n > 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1435285301.000000\n" +"X-POOTLE-MTIME: 1457485953.000000\n" #: advancedfilterdialog.ui msgctxt "" @@ -6390,22 +6390,24 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/nso/sd/uiconfig/simpress/ui.po libreoffice-5.1.2~rc2/translations/source/nso/sd/uiconfig/simpress/ui.po --- libreoffice-5.1.1~rc2/translations/source/nso/sd/uiconfig/simpress/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/nso/sd/uiconfig/simpress/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 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-09 01:30+0000\n" "Last-Translator: system user <>\n" "Language-Team: none\n" "Language: nso\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n > 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1435285487.000000\n" +"X-POOTLE-MTIME: 1457487059.000000\n" #: assistentdialog.ui msgctxt "" @@ -998,22 +998,24 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/nso/starmath/source.po libreoffice-5.1.2~rc2/translations/source/nso/starmath/source.po --- libreoffice-5.1.1~rc2/translations/source/nso/starmath/source.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/nso/starmath/source.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\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-12 13:26+0200\n" +"POT-Creation-Date: 2016-03-29 16:07+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff -Nru libreoffice-5.1.1~rc2/translations/source/nso/sw/source/ui/dbui.po libreoffice-5.1.2~rc2/translations/source/nso/sw/source/ui/dbui.po --- libreoffice-5.1.1~rc2/translations/source/nso/sw/source/ui/dbui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/nso/sw/source/ui/dbui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 06:23+0000\n" +"PO-Revision-Date: 2016-03-09 02:05+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: nso\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n > 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1431498226.000000\n" +"X-POOTLE-MTIME: 1457489114.000000\n" #: dbui.src msgctxt "" @@ -488,31 +488,34 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/nso/sw/source/ui/index.po libreoffice-5.1.2~rc2/translations/source/nso/sw/source/ui/index.po --- libreoffice-5.1.1~rc2/translations/source/nso/sw/source/ui/index.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/nso/sw/source/ui/index.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,17 +3,18 @@ msgstr "" "Project-Id-Version: PACKAGE 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:17+0200\n" -"Last-Translator: Anonymous Pootle User\n" +"POT-Creation-Date: 2015-04-22 23:40+0200\n" +"PO-Revision-Date: 2016-03-09 02:07+0000\n" +"Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: nso\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -"X-Generator: LibreOffice\n" +"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" +"X-POOTLE-MTIME: 1457489222.000000\n" #: cnttab.src #, fuzzy @@ -57,20 +58,22 @@ 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 @@ msgstr "" #: cnttab.src +#, fuzzy msgctxt "" "cnttab.src\n" "STR_TOKEN_PAGE_NUMS\n" "string.text" msgid "#" -msgstr "" +msgstr "#" #: cnttab.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/nso/sw/source/ui/utlui.po libreoffice-5.1.2~rc2/translations/source/nso/sw/source/ui/utlui.po --- libreoffice-5.1.1~rc2/translations/source/nso/sw/source/ui/utlui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/nso/sw/source/ui/utlui.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE 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-20 11:58+0100\n" +"POT-Creation-Date: 2016-03-29 16:07+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff -Nru libreoffice-5.1.1~rc2/translations/source/nso/sw/uiconfig/swriter/ui.po libreoffice-5.1.2~rc2/translations/source/nso/sw/uiconfig/swriter/ui.po --- libreoffice-5.1.1~rc2/translations/source/nso/sw/uiconfig/swriter/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/nso/sw/uiconfig/swriter/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 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:03+0000\n" +"PO-Revision-Date: 2016-03-09 02:18+0000\n" "Last-Translator: system user <>\n" "Language-Team: none\n" "Language: nso\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n > 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1438902229.000000\n" +"X-POOTLE-MTIME: 1457489924.000000\n" #: abstractdialog.ui msgctxt "" @@ -2313,13 +2313,14 @@ msgstr "Fetolela lenaneo go sengwalwa" #: converttexttable.ui +#, fuzzy msgctxt "" "converttexttable.ui\n" "othered\n" "text\n" "string.text" msgid "," -msgstr "" +msgstr "," #: converttexttable.ui msgctxt "" @@ -2505,13 +2506,14 @@ msgstr "" #: createaddresslist.ui +#, fuzzy msgctxt "" "createaddresslist.ui\n" "PREV\n" "label\n" "string.text" msgid "<" -msgstr "" +msgstr "<" #: createaddresslist.ui msgctxt "" @@ -2523,13 +2525,14 @@ msgstr "" #: createaddresslist.ui +#, fuzzy msgctxt "" "createaddresslist.ui\n" "NEXT\n" "label\n" "string.text" msgid ">" -msgstr "" +msgstr ">" #: createaddresslist.ui msgctxt "" @@ -4436,13 +4439,14 @@ msgstr "" #: fldvarpage.ui +#, fuzzy msgctxt "" "fldvarpage.ui\n" "separator\n" "text\n" "string.text" msgid "." -msgstr "" +msgstr "." #: fldvarpage.ui msgctxt "" @@ -5424,22 +5428,24 @@ 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 "" @@ -6349,13 +6355,14 @@ msgstr "Maemo" #: insertcaption.ui +#, fuzzy msgctxt "" "insertcaption.ui\n" "separator_edit\n" "text\n" "string.text" msgid ": " -msgstr "" +msgstr ": " #: insertcaption.ui msgctxt "" @@ -6367,13 +6374,14 @@ 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 @@ msgstr "" #: mmpreparepage.ui +#, fuzzy msgctxt "" "mmpreparepage.ui\n" "prev\n" "label\n" "string.text" msgid "<" -msgstr "" +msgstr "<" #: mmpreparepage.ui msgctxt "" @@ -8727,13 +8736,14 @@ msgstr "" #: mmpreparepage.ui +#, fuzzy msgctxt "" "mmpreparepage.ui\n" "next\n" "label\n" "string.text" msgid ">" -msgstr "" +msgstr ">" #: mmpreparepage.ui #, fuzzy @@ -9581,13 +9591,14 @@ msgstr "Maemo" #: optcaptionpage.ui +#, fuzzy msgctxt "" "optcaptionpage.ui\n" "numseparator\n" "text\n" "string.text" msgid ". " -msgstr "" +msgstr ". " #: optcaptionpage.ui #, fuzzy @@ -15705,40 +15716,44 @@ msgstr "[Ga gona selo]" #: 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 -Nru libreoffice-5.1.1~rc2/translations/source/nso/vcl/source/src.po libreoffice-5.1.2~rc2/translations/source/nso/vcl/source/src.po --- libreoffice-5.1.1~rc2/translations/source/nso/vcl/source/src.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/nso/vcl/source/src.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 19:07+0000\n" +"PO-Revision-Date: 2016-03-09 02:21+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: nso\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n > 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1449860827.000000\n" +"X-POOTLE-MTIME: 1457490114.000000\n" #: app.src msgctxt "" @@ -1195,12 +1195,13 @@ 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 @@ msgstr "" #: units.src +#, fuzzy msgctxt "" "units.src\n" "SV_FUNIT_STRINGS\n" "°\n" "itemlist.text" msgid "°" -msgstr "" +msgstr "°" #: units.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/nso/wizards/source/formwizard.po libreoffice-5.1.2~rc2/translations/source/nso/wizards/source/formwizard.po --- libreoffice-5.1.1~rc2/translations/source/nso/wizards/source/formwizard.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/nso/wizards/source/formwizard.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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 06:28+0000\n" +"PO-Revision-Date: 2016-03-09 02:27+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: nso\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n > 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1431498484.000000\n" +"X-POOTLE-MTIME: 1457490472.000000\n" #: dbwizres.src msgctxt "" @@ -1538,12 +1538,13 @@ msgstr "<FIELDNAME> (<SORTMODE>)" #: dbwizres.src +#, fuzzy msgctxt "" "dbwizres.src\n" "RID_DB_QUERY_WIZARD_START + 94\n" "string.text" msgid "<FIELDNAME> <LOGICOPERATOR> <VALUE>" -msgstr "" +msgstr "<FIELDNAME> <LOGICOPERATOR> <VALUE>" #: dbwizres.src msgctxt "" @@ -1554,12 +1555,13 @@ msgstr "<CALCULATEDFUNCTION> <FIELDNAME>" #: dbwizres.src +#, fuzzy msgctxt "" "dbwizres.src\n" "RID_DB_QUERY_WIZARD_START + 96\n" "string.text" msgid "<FIELDNAME> <LOGICOPERATOR> <VALUE>" -msgstr "" +msgstr "<FIELDNAME> <LOGICOPERATOR> <VALUE>" #: dbwizres.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/oc/cui/uiconfig/ui.po libreoffice-5.1.2~rc2/translations/source/oc/cui/uiconfig/ui.po --- libreoffice-5.1.1~rc2/translations/source/oc/cui/uiconfig/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/oc/cui/uiconfig/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 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-07 13:53+0000\n" +"PO-Revision-Date: 2016-03-25 14:30+0000\n" "Last-Translator: Cédric Valmary <cvalmary@yahoo.fr>\n" "Language-Team: none\n" "Language: oc\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n > 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1454853215.000000\n" +"X-POOTLE-MTIME: 1458916221.000000\n" #: aboutconfigdialog.ui msgctxt "" @@ -3803,7 +3803,7 @@ "label\n" "string.text" msgid "Crop" -msgstr "Rosegar" +msgstr "Retalhar" #: croppage.ui msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/oc/filter/source/config/fragments/filters.po libreoffice-5.1.2~rc2/translations/source/oc/filter/source/config/fragments/filters.po --- libreoffice-5.1.1~rc2/translations/source/oc/filter/source/config/fragments/filters.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/oc/filter/source/config/fragments/filters.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\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-02-07 13:56+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2016-03-25 15:07+0000\n" +"Last-Translator: Cédric Valmary <cvalmary@yahoo.fr>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: oc\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n > 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1454853371.000000\n" +"X-POOTLE-MTIME: 1458918452.000000\n" #: AbiWord.xcu msgctxt "" @@ -509,7 +509,7 @@ "UIName\n" "value.text" msgid "Legacy Mac Database" -msgstr "" +msgstr "Anciana Banca de Donadas Mac" #: MWAW_Drawing.xcu msgctxt "" @@ -518,7 +518,7 @@ "UIName\n" "value.text" msgid "Legacy Mac Drawing" -msgstr "" +msgstr "Ancian Dessenh Mac" #: MWAW_Presentation.xcu msgctxt "" @@ -527,7 +527,7 @@ "UIName\n" "value.text" msgid "Legacy Mac Presentation" -msgstr "" +msgstr "Anciana Presentacion Mac" #: MWAW_Spreadsheet.xcu msgctxt "" @@ -536,7 +536,7 @@ "UIName\n" "value.text" msgid "Legacy Mac Spreadsheet" -msgstr "" +msgstr "Ancian Classador Mac" #: MWAW_Text_Document.xcu msgctxt "" @@ -545,7 +545,7 @@ "UIName\n" "value.text" msgid "Legacy Mac Text Document" -msgstr "" +msgstr "Ancian Document Tèxte Mac" #: MacWrite.xcu msgctxt "" @@ -710,14 +710,13 @@ 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 "Tèxte ODF" +msgstr "Document tèxte Palm" #: Plucker_eBook.xcu msgctxt "" @@ -1113,7 +1112,7 @@ "UIName\n" "value.text" msgid "Gnumeric Spreadsheet" -msgstr "" +msgstr "Classador Gnumeric" #: calc_HTML_WebQuery.xcu msgctxt "" @@ -1140,7 +1139,7 @@ "UIName\n" "value.text" msgid "Microsoft Excel 2007-2016 XML (macro enabled)" -msgstr "" +msgstr "Microsoft Excel 2007-2016 XML (macros possiblas)" #: calc_MS_Excel_2007_XML.xcu msgctxt "" @@ -1197,7 +1196,6 @@ msgstr "PDF - Portable Document Format" #: calc_png_Export.xcu -#, fuzzy msgctxt "" "calc_png_Export.xcu\n" "calc_png_Export\n" @@ -1900,7 +1898,6 @@ msgstr "Modèl HTML OpenOffice.org 1.0" #: writer_web_jpg_Export.xcu -#, fuzzy msgctxt "" "writer_web_jpg_Export.xcu\n" "writer_web_jpg_Export\n" @@ -1919,7 +1916,6 @@ msgstr "PDF - Portable Document Format" #: writer_web_png_Export.xcu -#, fuzzy msgctxt "" "writer_web_png_Export.xcu\n" "writer_web_png_Export\n" diff -Nru libreoffice-5.1.1~rc2/translations/source/oc/filter/source/config/fragments/types.po libreoffice-5.1.2~rc2/translations/source/oc/filter/source/config/fragments/types.po --- libreoffice-5.1.1~rc2/translations/source/oc/filter/source/config/fragments/types.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/oc/filter/source/config/fragments/types.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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-26 07:02+0000\n" +"PO-Revision-Date: 2016-03-25 15:00+0000\n" "Last-Translator: Cédric Valmary <cvalmary@yahoo.fr>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: oc\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n > 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1430031728.000000\n" +"X-POOTLE-MTIME: 1458918024.000000\n" #: MS_Excel_2007_Binary.xcu msgctxt "" @@ -26,14 +26,13 @@ msgstr "Binari Microsoft Excel 2007" #: 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 "XML de Microsoft Excel 2007-2013" +msgstr "XML de Microsoft Excel 2007-2016" #: MS_Excel_2007_XML.xcu msgctxt "" @@ -132,7 +131,7 @@ "UIName\n" "value.text" msgid "Gnumeric Spreadsheet" -msgstr "" +msgstr "Classador Gnumeric" #: calc_MS_Excel_2003_XML.xcu msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/oc/formula/source/core/resource.po libreoffice-5.1.2~rc2/translations/source/oc/formula/source/core/resource.po --- libreoffice-5.1.1~rc2/translations/source/oc/formula/source/core/resource.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/oc/formula/source/core/resource.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\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-29 16:07+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff -Nru libreoffice-5.1.1~rc2/translations/source/oc/fpicker/source/office.po libreoffice-5.1.2~rc2/translations/source/oc/fpicker/source/office.po --- libreoffice-5.1.1~rc2/translations/source/oc/fpicker/source/office.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/oc/fpicker/source/office.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\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-01-19 08:13+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2016-03-25 15:00+0000\n" +"Last-Translator: Cédric Valmary <cvalmary@yahoo.fr>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: oc\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n > 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1421655233.000000\n" +"X-POOTLE-MTIME: 1458918053.000000\n" #: OfficeFilePicker.src msgctxt "" @@ -258,7 +258,7 @@ "STR_SVT_ROOTLABEL\n" "string.text" msgid "Root" -msgstr "" +msgstr "Raiç" #: iodlg.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/oc/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-5.1.2~rc2/translations/source/oc/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-5.1.1~rc2/translations/source/oc/officecfg/registry/data/org/openoffice/Office/UI.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/oc/officecfg/registry/data/org/openoffice/Office/UI.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-11-11 10:02+0000\n" +"PO-Revision-Date: 2016-03-25 15:25+0000\n" "Last-Translator: Cédric Valmary <cvalmary@yahoo.fr>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: oc\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n > 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1447236167.000000\n" +"X-POOTLE-MTIME: 1458919529.000000\n" #: BaseWindowState.xcu msgctxt "" @@ -1499,7 +1499,7 @@ "Label\n" "value.text" msgid "~Regression..." -msgstr "" +msgstr "~Regression..." #: CalcCommands.xcu msgctxt "" @@ -3200,7 +3200,7 @@ "ContextLabel\n" "value.text" msgid "Grid Lines for Sheet" -msgstr "" +msgstr "Linhas de la grasilha el fuèlh actiu" #: CalcCommands.xcu msgctxt "" @@ -3497,7 +3497,7 @@ "Label\n" "value.text" msgid "Export as image" -msgstr "" +msgstr "Exportar coma imatge" #: CalcCommands.xcu msgctxt "" @@ -5903,7 +5903,6 @@ msgstr "~Diapositiva" #: DrawImpressCommands.xcu -#, fuzzy msgctxt "" "DrawImpressCommands.xcu\n" "..DrawImpressCommands.UserInterface.Commands..uno:SlideNavigateMenu\n" @@ -5913,14 +5912,13 @@ msgstr "Navigar" #: DrawImpressCommands.xcu -#, fuzzy msgctxt "" "DrawImpressCommands.xcu\n" "..DrawImpressCommands.UserInterface.Commands..uno:SlideMoveMenu\n" "Label\n" "value.text" msgid "Move" -msgstr "Mòde" +msgstr "Desplaçar" #: DrawImpressCommands.xcu msgctxt "" @@ -6337,7 +6335,6 @@ msgstr "~Apercebut" #: DrawImpressCommands.xcu -#, fuzzy msgctxt "" "DrawImpressCommands.xcu\n" "..DrawImpressCommands.UserInterface.Commands..uno:CustomAnimation\n" @@ -6356,7 +6353,6 @@ msgstr "Jòcs d'animacion..." #: DrawImpressCommands.xcu -#, fuzzy msgctxt "" "DrawImpressCommands.xcu\n" "..DrawImpressCommands.UserInterface.Commands..uno:SlideChangeWindow\n" @@ -6951,7 +6947,6 @@ msgstr "~Inserir un punt/una linha de captura..." #: DrawImpressCommands.xcu -#, fuzzy msgctxt "" "DrawImpressCommands.xcu\n" "..DrawImpressCommands.UserInterface.Commands..uno:ShowRuler\n" @@ -6970,14 +6965,13 @@ msgstr "~Calc..." #: DrawImpressCommands.xcu -#, fuzzy msgctxt "" "DrawImpressCommands.xcu\n" "..DrawImpressCommands.UserInterface.Commands..uno:ModifyPage\n" "Label\n" "value.text" msgid "Slide ~Layout" -msgstr "Mesa en pagina de la diapositiva..." +msgstr "Mesa en ~pagina de la diapositiva" #: DrawImpressCommands.xcu msgctxt "" @@ -7130,7 +7124,7 @@ "Label\n" "value.text" msgid "Display Mode" -msgstr "" +msgstr "Mòde d'afichatge" #: DrawImpressCommands.xcu msgctxt "" @@ -7754,14 +7748,13 @@ msgstr "Clic doble per editar de tèxte" #: DrawImpressCommands.xcu -#, fuzzy msgctxt "" "DrawImpressCommands.xcu\n" "..DrawImpressCommands.UserInterface.Commands..uno:SaveGraphic\n" "Label\n" "value.text" msgid "~Save..." -msgstr "~Pagina..." +msgstr "Enregi~strar..." #: DrawImpressCommands.xcu msgctxt "" @@ -7779,7 +7772,7 @@ "Label\n" "value.text" msgid "~Replace..." -msgstr "" +msgstr "~Remplaçar..." #: DrawImpressCommands.xcu msgctxt "" @@ -7788,27 +7781,25 @@ "Label\n" "value.text" msgid "Co~mpress..." -msgstr "" +msgstr "Co~mpressar..." #: DrawImpressCommands.xcu -#, fuzzy msgctxt "" "DrawImpressCommands.xcu\n" "..DrawImpressCommands.UserInterface.Commands..uno:SelectBackground\n" "Label\n" "value.text" msgid "Set Background Image..." -msgstr "Imatge de rèireplan..." +msgstr "Definir l'imatge de rèireplan..." #: DrawImpressCommands.xcu -#, fuzzy msgctxt "" "DrawImpressCommands.xcu\n" "..DrawImpressCommands.UserInterface.Commands..uno:SaveBackground\n" "Label\n" "value.text" msgid "Save Background Image..." -msgstr "Imatge de rèireplan..." +msgstr "Enregistrar l'imatge de rèireplan..." #: DrawImpressCommands.xcu msgctxt "" @@ -7817,7 +7808,7 @@ "Label\n" "value.text" msgid "Display Master Background" -msgstr "" +msgstr "Afichar lo rèireplan de la masqueta" #: DrawImpressCommands.xcu msgctxt "" @@ -7826,7 +7817,7 @@ "Label\n" "value.text" msgid "Display Master Objects" -msgstr "" +msgstr "Afichar los objèctes de la masqueta" #: DrawImpressCommands.xcu msgctxt "" @@ -8528,7 +8519,7 @@ "Label\n" "value.text" msgid "Go to First Page/Slide" -msgstr "" +msgstr "Anar a la primièra pagina/diapositiva" #: DrawImpressCommands.xcu msgctxt "" @@ -8537,7 +8528,7 @@ "ContextLabel\n" "value.text" msgid "To First Page/Slide" -msgstr "" +msgstr "Anar a la primièra pagina/diapositiva" #: DrawImpressCommands.xcu msgctxt "" @@ -8546,7 +8537,7 @@ "Label\n" "value.text" msgid "Go to Previous Page/Slide" -msgstr "" +msgstr "A la pagina/diapositiva precedenta" #: DrawImpressCommands.xcu msgctxt "" @@ -8555,7 +8546,7 @@ "ContextLabel\n" "value.text" msgid "To Previous Page/Slide" -msgstr "" +msgstr "A la pagina/diapositiva precedenta" #: DrawImpressCommands.xcu msgctxt "" @@ -8585,7 +8576,6 @@ msgstr "" #: DrawImpressCommands.xcu -#, fuzzy msgctxt "" "DrawImpressCommands.xcu\n" "..DrawImpressCommands.UserInterface.Popups..uno:LastPage\n" @@ -11394,7 +11384,6 @@ msgstr "De drecha cap al naut" #: Effects.xcu -#, fuzzy msgctxt "" "Effects.xcu\n" "..Effects.UserInterface.TransitionGroups.subtle\n" @@ -11404,7 +11393,6 @@ msgstr "Discret" #: Effects.xcu -#, fuzzy msgctxt "" "Effects.xcu\n" "..Effects.UserInterface.TransitionGroups.exciting\n" @@ -11432,7 +11420,6 @@ msgstr "" #: Effects.xcu -#, fuzzy msgctxt "" "Effects.xcu\n" "..Effects.UserInterface.TransitionSets.box\n" @@ -11448,7 +11435,7 @@ "Label\n" "value.text" msgid "Checkers" -msgstr "" +msgstr "Damièrs" #: Effects.xcu msgctxt "" @@ -11460,14 +11447,13 @@ msgstr "" #: Effects.xcu -#, fuzzy msgctxt "" "Effects.xcu\n" "..Effects.UserInterface.TransitionSets.cover\n" "Label\n" "value.text" msgid "Cover" -msgstr "Trefuèlh" +msgstr "Cobrir" #: Effects.xcu msgctxt "" @@ -11476,10 +11462,9 @@ "Label\n" "value.text" msgid "Uncover" -msgstr "" +msgstr "Descobrir" #: Effects.xcu -#, fuzzy msgctxt "" "Effects.xcu\n" "..Effects.UserInterface.TransitionSets.wipe\n" @@ -11489,7 +11474,6 @@ msgstr "Balajar" #: Effects.xcu -#, fuzzy msgctxt "" "Effects.xcu\n" "..Effects.UserInterface.TransitionSets.wedge\n" @@ -11499,7 +11483,6 @@ msgstr "Canton" #: Effects.xcu -#, fuzzy msgctxt "" "Effects.xcu\n" "..Effects.UserInterface.TransitionSets.wheel\n" @@ -11518,7 +11501,6 @@ msgstr "" #: Effects.xcu -#, fuzzy msgctxt "" "Effects.xcu\n" "..Effects.UserInterface.TransitionSets.cut\n" @@ -11534,10 +11516,9 @@ "Label\n" "value.text" msgid "Fade" -msgstr "" +msgstr "Fondut" #: Effects.xcu -#, fuzzy msgctxt "" "Effects.xcu\n" "..Effects.UserInterface.TransitionSets.random-bars\n" @@ -11547,17 +11528,15 @@ msgstr "Linhas aleatòrias" #: Effects.xcu -#, fuzzy msgctxt "" "Effects.xcu\n" "..Effects.UserInterface.TransitionSets.shape\n" "Label\n" "value.text" msgid "Shape" -msgstr "~Formas" +msgstr "Forma" #: Effects.xcu -#, fuzzy msgctxt "" "Effects.xcu\n" "..Effects.UserInterface.TransitionSets.split\n" @@ -11573,7 +11552,7 @@ "Label\n" "value.text" msgid "Diagonal" -msgstr "" +msgstr "Diagonala" #: Effects.xcu msgctxt "" @@ -11582,20 +11561,18 @@ "Label\n" "value.text" msgid "Random" -msgstr "" +msgstr "Aleatòri" #: Effects.xcu -#, fuzzy msgctxt "" "Effects.xcu\n" "..Effects.UserInterface.TransitionSets.dissolve\n" "Label\n" "value.text" msgid "Dissolve" -msgstr "Dissòlvre" +msgstr "Dissolucion" #: Effects.xcu -#, fuzzy msgctxt "" "Effects.xcu\n" "..Effects.UserInterface.TransitionSets.finedissolve\n" @@ -11605,7 +11582,6 @@ msgstr "Dissolucion fina" #: Effects.xcu -#, fuzzy msgctxt "" "Effects.xcu\n" "..Effects.UserInterface.TransitionSets.newsflash\n" @@ -11624,7 +11600,6 @@ msgstr "" #: Effects.xcu -#, fuzzy msgctxt "" "Effects.xcu\n" "..Effects.UserInterface.TransitionSets.cube-turning\n" @@ -11634,14 +11609,13 @@ msgstr "Cub" #: Effects.xcu -#, fuzzy msgctxt "" "Effects.xcu\n" "..Effects.UserInterface.TransitionSets.revolving-circles\n" "Label\n" "value.text" msgid "Circles" -msgstr "Cercle" +msgstr "Cercles" #: Effects.xcu msgctxt "" @@ -11650,10 +11624,9 @@ "Label\n" "value.text" msgid "Helix" -msgstr "" +msgstr "Espirala" #: Effects.xcu -#, fuzzy msgctxt "" "Effects.xcu\n" "..Effects.UserInterface.TransitionSets.fall\n" @@ -11663,7 +11636,6 @@ msgstr "Casuda" #: Effects.xcu -#, fuzzy msgctxt "" "Effects.xcu\n" "..Effects.UserInterface.TransitionSets.turn-around\n" @@ -11673,17 +11645,15 @@ msgstr "Virar a l'entorn" #: Effects.xcu -#, fuzzy msgctxt "" "Effects.xcu\n" "..Effects.UserInterface.TransitionSets.turn-down\n" "Label\n" "value.text" msgid "Turn Down" -msgstr "Virar cap al bas" +msgstr "Virar cap aval" #: Effects.xcu -#, fuzzy msgctxt "" "Effects.xcu\n" "..Effects.UserInterface.TransitionSets.iris\n" @@ -11693,7 +11663,6 @@ msgstr "Iris" #: Effects.xcu -#, fuzzy msgctxt "" "Effects.xcu\n" "..Effects.UserInterface.TransitionSets.rochade\n" @@ -11703,7 +11672,6 @@ msgstr "Ròca" #: Effects.xcu -#, fuzzy msgctxt "" "Effects.xcu\n" "..Effects.UserInterface.TransitionSets.static\n" @@ -11719,7 +11687,7 @@ "Label\n" "value.text" msgid "Vortex" -msgstr "" +msgstr "Revolum" #: Effects.xcu msgctxt "" @@ -11728,7 +11696,7 @@ "Label\n" "value.text" msgid "Ripple" -msgstr "" +msgstr "Ondulacion" #: Effects.xcu msgctxt "" @@ -11755,30 +11723,27 @@ "Label\n" "value.text" msgid "Plain" -msgstr "" +msgstr "Brut" #: Effects.xcu -#, fuzzy msgctxt "" "Effects.xcu\n" "..Effects.UserInterface.TransitionVariants.smoothly\n" "Label\n" "value.text" msgid "Smoothly" -msgstr "Adocir" +msgstr "Document" #: Effects.xcu -#, fuzzy msgctxt "" "Effects.xcu\n" "..Effects.UserInterface.TransitionVariants.through-black\n" "Label\n" "value.text" msgid "Through Black" -msgstr "Talhar en negre" +msgstr "Negre continú" #: Effects.xcu -#, fuzzy msgctxt "" "Effects.xcu\n" "..Effects.UserInterface.TransitionVariants.left-right\n" @@ -11794,7 +11759,7 @@ "Label\n" "value.text" msgid "Top Left to Bottom Right" -msgstr "" +msgstr "D'amont cap aval, puèi cap aval a drecha" #: Effects.xcu msgctxt "" @@ -11803,7 +11768,7 @@ "Label\n" "value.text" msgid "Top to Bottom" -msgstr "" +msgstr "D'amont cap aval" #: Effects.xcu msgctxt "" @@ -11815,7 +11780,6 @@ msgstr "" #: Effects.xcu -#, fuzzy msgctxt "" "Effects.xcu\n" "..Effects.UserInterface.TransitionVariants.right-left\n" @@ -11852,7 +11816,6 @@ msgstr "" #: Effects.xcu -#, fuzzy msgctxt "" "Effects.xcu\n" "..Effects.UserInterface.TransitionVariants.vertical\n" @@ -11862,7 +11825,6 @@ msgstr "Vertical" #: Effects.xcu -#, fuzzy msgctxt "" "Effects.xcu\n" "..Effects.UserInterface.TransitionVariants.horizontal\n" @@ -11872,7 +11834,6 @@ msgstr "Orizontal" #: Effects.xcu -#, fuzzy msgctxt "" "Effects.xcu\n" "..Effects.UserInterface.TransitionVariants.in\n" @@ -11882,7 +11843,6 @@ msgstr "A l'interior" #: Effects.xcu -#, fuzzy msgctxt "" "Effects.xcu\n" "..Effects.UserInterface.TransitionVariants.out\n" @@ -11892,7 +11852,6 @@ msgstr "A l'exterior" #: Effects.xcu -#, fuzzy msgctxt "" "Effects.xcu\n" "..Effects.UserInterface.TransitionVariants.across\n" @@ -11902,27 +11861,24 @@ msgstr "De galís" #: Effects.xcu -#, fuzzy msgctxt "" "Effects.xcu\n" "..Effects.UserInterface.TransitionVariants.down\n" "Label\n" "value.text" msgid "Down" -msgstr "Cap al bas" +msgstr "Cap aval" #: Effects.xcu -#, fuzzy msgctxt "" "Effects.xcu\n" "..Effects.UserInterface.TransitionVariants.up\n" "Label\n" "value.text" msgid "Up" -msgstr "Cap al naut" +msgstr "Cap amont" #: Effects.xcu -#, fuzzy msgctxt "" "Effects.xcu\n" "..Effects.UserInterface.TransitionVariants.right\n" @@ -11932,7 +11888,6 @@ msgstr "A drecha" #: Effects.xcu -#, fuzzy msgctxt "" "Effects.xcu\n" "..Effects.UserInterface.TransitionVariants.left\n" @@ -11942,7 +11897,6 @@ msgstr "A esquèrra" #: Effects.xcu -#, fuzzy msgctxt "" "Effects.xcu\n" "..Effects.UserInterface.TransitionVariants.circle\n" @@ -11952,7 +11906,6 @@ msgstr "Cercle" #: Effects.xcu -#, fuzzy msgctxt "" "Effects.xcu\n" "..Effects.UserInterface.TransitionVariants.diamond\n" @@ -11962,7 +11915,6 @@ msgstr "Lausange" #: Effects.xcu -#, fuzzy msgctxt "" "Effects.xcu\n" "..Effects.UserInterface.TransitionVariants.plus\n" @@ -11972,7 +11924,6 @@ msgstr "Mai" #: Effects.xcu -#, fuzzy msgctxt "" "Effects.xcu\n" "..Effects.UserInterface.TransitionVariants.horizontal-in\n" @@ -11982,7 +11933,6 @@ msgstr "Orizontal interior" #: Effects.xcu -#, fuzzy msgctxt "" "Effects.xcu\n" "..Effects.UserInterface.TransitionVariants.horizontal-out\n" @@ -11992,7 +11942,6 @@ msgstr "Orizontal exterior" #: Effects.xcu -#, fuzzy msgctxt "" "Effects.xcu\n" "..Effects.UserInterface.TransitionVariants.vertical-in\n" @@ -12002,7 +11951,6 @@ msgstr "Vertical interior" #: Effects.xcu -#, fuzzy msgctxt "" "Effects.xcu\n" "..Effects.UserInterface.TransitionVariants.vertical-out\n" @@ -12108,7 +12056,7 @@ "Label\n" "value.text" msgid "Inside" -msgstr "" +msgstr "Interior" #: Effects.xcu msgctxt "" @@ -12117,7 +12065,7 @@ "Label\n" "value.text" msgid "Outside" -msgstr "" +msgstr "Exterior" #: Effects.xcu msgctxt "" @@ -12498,14 +12446,13 @@ msgstr "Contraròtles" #: GenericCommands.xcu -#, fuzzy msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Commands..uno:InsertFormMenu\n" "Label\n" "value.text" msgid "Fo~rm Control" -msgstr "Contraròles de formulari" +msgstr "Contraròles de fo~rmulari" #: GenericCommands.xcu msgctxt "" @@ -14773,7 +14720,7 @@ "Label\n" "value.text" msgid "Crop Image..." -msgstr "Rosegar l'imatge..." +msgstr "Retalhar l'imatge..." #: GenericCommands.xcu msgctxt "" @@ -14782,7 +14729,7 @@ "Label\n" "value.text" msgid "Crop Image" -msgstr "Rosegar l'imatge" +msgstr "Retalhar l'imatge" #: GenericCommands.xcu msgctxt "" @@ -14794,14 +14741,13 @@ msgstr "" #: GenericCommands.xcu -#, fuzzy msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Commands..uno:ChangePicture\n" "Label\n" "value.text" msgid "Replace Image" -msgstr "~Remplaçar l'imatge..." +msgstr "Remplaçar l'imatge" #: GenericCommands.xcu msgctxt "" @@ -14810,17 +14756,16 @@ "ContextLabel\n" "value.text" msgid "~Replace..." -msgstr "" +msgstr "~Remplaçar..." #: GenericCommands.xcu -#, fuzzy msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Commands..uno:CompressGraphic\n" "Label\n" "value.text" msgid "Compress Image" -msgstr "Co~mpressar l'imatge..." +msgstr "Compressar l'imatge" #: GenericCommands.xcu msgctxt "" @@ -14829,17 +14774,16 @@ "ContextLabel\n" "value.text" msgid "Co~mpress..." -msgstr "" +msgstr "Compressar..." #: GenericCommands.xcu -#, fuzzy msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Commands..uno:SaveGraphic\n" "Label\n" "value.text" msgid "Save Image" -msgstr "Enregistrar l'imatge..." +msgstr "Enregistrar l'imatge" #: GenericCommands.xcu msgctxt "" @@ -14848,7 +14792,7 @@ "ContextLabel\n" "value.text" msgid "Save..." -msgstr "" +msgstr "Enregistrar..." #: GenericCommands.xcu msgctxt "" @@ -14860,14 +14804,13 @@ msgstr "" #: GenericCommands.xcu -#, fuzzy msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Commands..uno:ToolsFormsMenu\n" "Label\n" "value.text" msgid "~Forms" -msgstr "Formularis" +msgstr "~Formularis" #: GenericCommands.xcu msgctxt "" @@ -14906,14 +14849,13 @@ msgstr "D~obrir..." #: GenericCommands.xcu -#, fuzzy msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Commands..uno:OpenRemote\n" "Label\n" "value.text" msgid "Open Remote ~File..." -msgstr "D~obrir un fichièr distant..." +msgstr "Dobrir un ~fichièr distant..." #: GenericCommands.xcu msgctxt "" @@ -14925,14 +14867,13 @@ msgstr "" #: GenericCommands.xcu -#, fuzzy msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Commands..uno:SaveAsRemote\n" "PopupLabel\n" "value.text" msgid "Save Remote File..." -msgstr "D~obrir un fichièr distant..." +msgstr "Enregistrar lo fichièr distant..." #: GenericCommands.xcu msgctxt "" @@ -15078,7 +15019,7 @@ "Label\n" "value.text" msgid "Print Directly" -msgstr "" +msgstr "Imprimir dirèctament" #: GenericCommands.xcu msgctxt "" @@ -15090,7 +15031,6 @@ msgstr "Joncion lissa" #: GenericCommands.xcu -#, fuzzy msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Commands..uno:ToggleObjectBezierMode\n" @@ -15100,7 +15040,6 @@ msgstr "Editar los punts" #: GenericCommands.xcu -#, fuzzy msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Commands..uno:ToggleObjectBezierMode\n" diff -Nru libreoffice-5.1.1~rc2/translations/source/oc/officecfg/registry/data/org/openoffice/Office.po libreoffice-5.1.2~rc2/translations/source/oc/officecfg/registry/data/org/openoffice/Office.po --- libreoffice-5.1.1~rc2/translations/source/oc/officecfg/registry/data/org/openoffice/Office.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/oc/officecfg/registry/data/org/openoffice/Office.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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-11 09:45+0000\n" +"PO-Revision-Date: 2016-03-25 15:01+0000\n" "Last-Translator: Cédric Valmary <cvalmary@yahoo.fr>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: oc\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n > 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1447235121.000000\n" +"X-POOTLE-MTIME: 1458918080.000000\n" #: Addons.xcu msgctxt "" @@ -1067,7 +1067,7 @@ "STR_REMOVE_CROP_AREA\n" "value.text" msgid "~Delete cropped graphic areas" -msgstr "~Suprimir las zònas graficas rosegadas" +msgstr "~Suprimir las zònas graficas retalhadas" #: PresentationMinimizer.xcu msgctxt "" @@ -1517,10 +1517,9 @@ "Text\n" "value.text" msgid "Restart" -msgstr "" +msgstr "Reaviar" #: PresenterScreen.xcu -#, fuzzy msgctxt "" "PresenterScreen.xcu\n" "..PresenterScreen.PresenterScreenSettings.ToolBars.ToolBar.Entries.m.Normal\n" @@ -1530,7 +1529,6 @@ msgstr "Escambiar" #: PresenterScreen.xcu -#, fuzzy msgctxt "" "PresenterScreen.xcu\n" "..PresenterScreen.PresenterScreenSettings.ToolBars.ToolBar.Entries.o.Normal\n" diff -Nru libreoffice-5.1.1~rc2/translations/source/oc/scaddins/source/analysis.po libreoffice-5.1.2~rc2/translations/source/oc/scaddins/source/analysis.po --- libreoffice-5.1.1~rc2/translations/source/oc/scaddins/source/analysis.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/oc/scaddins/source/analysis.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-11-24 04:39-0500\n" +"POT-Creation-Date: 2016-03-29 16:07+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff -Nru libreoffice-5.1.1~rc2/translations/source/oc/sd/source/ui/app.po libreoffice-5.1.2~rc2/translations/source/oc/sd/source/ui/app.po --- libreoffice-5.1.1~rc2/translations/source/oc/sd/source/ui/app.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/oc/sd/source/ui/app.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\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-11-11 10:49+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2016-03-25 14:30+0000\n" +"Last-Translator: Cédric Valmary <cvalmary@yahoo.fr>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: oc\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n > 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1447238996.000000\n" +"X-POOTLE-MTIME: 1458916258.000000\n" #: menuids3_tmpl.src msgctxt "" @@ -863,7 +863,7 @@ "SID_OBJECT_CROP\n" "menuitem.text" msgid "Crop I~mage" -msgstr "Rosegar l'i~matge" +msgstr "Retalhar l'i~matge" #: menuids_tmpl.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/oc/starmath/source.po libreoffice-5.1.2~rc2/translations/source/oc/starmath/source.po --- libreoffice-5.1.1~rc2/translations/source/oc/starmath/source.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/oc/starmath/source.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-11-10 21:45+0100\n" +"POT-Creation-Date: 2016-03-29 16:07+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff -Nru libreoffice-5.1.1~rc2/translations/source/oc/svx/inc.po libreoffice-5.1.2~rc2/translations/source/oc/svx/inc.po --- libreoffice-5.1.1~rc2/translations/source/oc/svx/inc.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/oc/svx/inc.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\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-11-11 10:53+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2016-03-25 14:31+0000\n" +"Last-Translator: Cédric Valmary <cvalmary@yahoo.fr>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: oc\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n > 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1447239219.000000\n" +"X-POOTLE-MTIME: 1458916262.000000\n" #: globlmn_tmpl.hrc msgctxt "" @@ -374,7 +374,7 @@ "ITEM_OBJECT_CROP\n" "#define.text" msgid "Crop I~mage" -msgstr "Rosegar l'i~matge" +msgstr "Retalhar l'i~matge" #: globlmn_tmpl.hrc msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/oc/svx/source/svdraw.po libreoffice-5.1.2~rc2/translations/source/oc/svx/source/svdraw.po --- libreoffice-5.1.1~rc2/translations/source/oc/svx/source/svdraw.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/oc/svx/source/svdraw.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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-11 11:03+0000\n" +"PO-Revision-Date: 2016-03-25 14:31+0000\n" "Last-Translator: Cédric Valmary <cvalmary@yahoo.fr>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: oc\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n > 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1447239837.000000\n" +"X-POOTLE-MTIME: 1458916270.000000\n" #: svdstr.src msgctxt "" @@ -1790,7 +1790,7 @@ "STR_DragMethCrop\n" "string.text" msgid "Crop %1" -msgstr "Rosegar %1" +msgstr "Retalhar %1" #: svdstr.src msgctxt "" @@ -4806,7 +4806,7 @@ "SIP_SA_GRAFCROP\n" "string.text" msgid "Crop" -msgstr "Rosegar" +msgstr "Retalhar" #: svdstr.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/oc/svx/source/tbxctrls.po libreoffice-5.1.2~rc2/translations/source/oc/svx/source/tbxctrls.po --- libreoffice-5.1.1~rc2/translations/source/oc/svx/source/tbxctrls.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/oc/svx/source/tbxctrls.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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-11 11:04+0000\n" +"PO-Revision-Date: 2016-03-25 14:31+0000\n" "Last-Translator: Cédric Valmary <cvalmary@yahoo.fr>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: oc\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n > 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1447239887.000000\n" +"X-POOTLE-MTIME: 1458916274.000000\n" #: colrctrl.src msgctxt "" @@ -438,7 +438,7 @@ "RID_SVXSTR_GRAFCROP\n" "string.text" msgid "Crop" -msgstr "Rosegar" +msgstr "Retalhar" #: lboxctrl.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/oc/sw/source/ui/utlui.po libreoffice-5.1.2~rc2/translations/source/oc/sw/source/ui/utlui.po --- libreoffice-5.1.1~rc2/translations/source/oc/sw/source/ui/utlui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/oc/sw/source/ui/utlui.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\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-19 20:52+0200\n" +"POT-Creation-Date: 2016-03-29 16:07+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff -Nru libreoffice-5.1.1~rc2/translations/source/oc/sw/uiconfig/swriter/ui.po libreoffice-5.1.2~rc2/translations/source/oc/sw/uiconfig/swriter/ui.po --- libreoffice-5.1.1~rc2/translations/source/oc/sw/uiconfig/swriter/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/oc/sw/uiconfig/swriter/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 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-06 15:14+0000\n" +"PO-Revision-Date: 2016-03-25 14:31+0000\n" "Last-Translator: Cédric Valmary <cvalmary@yahoo.fr>\n" "Language-Team: none\n" "Language: oc\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n > 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1454771697.000000\n" +"X-POOTLE-MTIME: 1458916278.000000\n" #: abstractdialog.ui msgctxt "" @@ -11144,7 +11144,7 @@ "label\n" "string.text" msgid "Crop" -msgstr "Rosegar" +msgstr "Retalhar" #: picturedialog.ui msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/om/cui/uiconfig/ui.po libreoffice-5.1.2~rc2/translations/source/om/cui/uiconfig/ui.po --- libreoffice-5.1.1~rc2/translations/source/om/cui/uiconfig/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/om/cui/uiconfig/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 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:33+0000\n" +"PO-Revision-Date: 2016-03-09 01:02+0000\n" "Last-Translator: system user <>\n" "Language-Team: none\n" "Language: om\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1452263637.000000\n" +"X-POOTLE-MTIME: 1457485332.000000\n" #: aboutconfigdialog.ui msgctxt "" @@ -14080,31 +14080,34 @@ 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 @@ -17388,40 +17391,44 @@ msgstr "(Homaa)" #: 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 @@ -17444,40 +17451,44 @@ msgstr "(Homaa)" #: 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 -Nru libreoffice-5.1.1~rc2/translations/source/om/dbaccess/uiconfig/ui.po libreoffice-5.1.2~rc2/translations/source/om/dbaccess/uiconfig/ui.po --- libreoffice-5.1.1~rc2/translations/source/om/dbaccess/uiconfig/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/om/dbaccess/uiconfig/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: LibO 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:18+0000\n" -"Last-Translator: Andras <timar74@gmail.com>\n" +"PO-Revision-Date: 2016-03-09 01:07+0000\n" +"Last-Translator: system user <>\n" "Language-Team: none\n" "Language: om\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: 1361135926.0\n" +"X-POOTLE-MTIME: 1457485639.000000\n" #: admindialog.ui msgctxt "" @@ -1927,22 +1927,24 @@ 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 @@ msgstr "" #: queryfilterdialog.ui +#, fuzzy msgctxt "" "queryfilterdialog.ui\n" "cond1\n" "4\n" "stringlist.text" msgid ">" -msgstr "" +msgstr ">" #: queryfilterdialog.ui msgctxt "" @@ -3016,58 +3019,64 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/om/extensions/uiconfig/sabpilot/ui.po libreoffice-5.1.2~rc2/translations/source/om/extensions/uiconfig/sabpilot/ui.po --- libreoffice-5.1.1~rc2/translations/source/om/extensions/uiconfig/sabpilot/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/om/extensions/uiconfig/sabpilot/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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:52+0000\n" +"PO-Revision-Date: 2016-03-09 01:15+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: om\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1435287125.000000\n" +"X-POOTLE-MTIME: 1457486104.000000\n" #: contentfieldpage.ui msgctxt "" @@ -280,13 +280,14 @@ msgstr "" #: gridfieldsselectionpage.ui +#, fuzzy msgctxt "" "gridfieldsselectionpage.ui\n" "fieldright\n" "label\n" "string.text" msgid "->" -msgstr "" +msgstr "->" #: gridfieldsselectionpage.ui msgctxt "" @@ -298,13 +299,14 @@ msgstr "" #: gridfieldsselectionpage.ui +#, fuzzy msgctxt "" "gridfieldsselectionpage.ui\n" "fieldleft\n" "label\n" "string.text" msgid "<-" -msgstr "" +msgstr "<-" #: gridfieldsselectionpage.ui msgctxt "" @@ -379,22 +381,24 @@ 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 @@ msgstr "" #: tableselectionpage.ui +#, fuzzy msgctxt "" "tableselectionpage.ui\n" "search\n" "label\n" "string.text" msgid "_..." -msgstr "" +msgstr "_..." #: tableselectionpage.ui msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/om/helpcontent2/source/text/scalc/01.po libreoffice-5.1.2~rc2/translations/source/om/helpcontent2/source/text/scalc/01.po --- libreoffice-5.1.1~rc2/translations/source/om/helpcontent2/source/text/scalc/01.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/om/helpcontent2/source/text/scalc/01.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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:58+0000\n" +"PO-Revision-Date: 2016-03-04 03:06+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: om\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1431377922.000000\n" +"X-POOTLE-MTIME: 1457060772.000000\n" #: 01120000.xhp msgctxt "" @@ -60129,13 +60129,14 @@ msgstr "walqixa" #: 12090103.xhp +#, fuzzy msgctxt "" "12090103.xhp\n" "par_id3154254\n" "15\n" "help.text" msgid "<" -msgstr "" +msgstr "<" #: 12090103.xhp msgctxt "" @@ -60147,13 +60148,14 @@ msgstr "irra xiqqaa" #: 12090103.xhp +#, fuzzy msgctxt "" "12090103.xhp\n" "par_id3155335\n" "17\n" "help.text" msgid ">" -msgstr "" +msgstr ">" #: 12090103.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/om/helpcontent2/source/text/shared/00.po libreoffice-5.1.2~rc2/translations/source/om/helpcontent2/source/text/shared/00.po --- libreoffice-5.1.1~rc2/translations/source/om/helpcontent2/source/text/shared/00.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/om/helpcontent2/source/text/shared/00.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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 03:34+0000\n" +"Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: om\n" "MIME-Version: 1.0\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1441130598.000000\n" +"X-POOTLE-MTIME: 1457062470.000000\n" #: 00000001.xhp msgctxt "" @@ -3971,12 +3971,13 @@ msgstr "" #: 00000021.xhp +#, fuzzy msgctxt "" "00000021.xhp\n" "par_id100120091238112\n" "help.text" msgid "-" -msgstr "" +msgstr "-" #: 00000021.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/om/helpcontent2/source/text/shared/01.po libreoffice-5.1.2~rc2/translations/source/om/helpcontent2/source/text/shared/01.po --- libreoffice-5.1.1~rc2/translations/source/om/helpcontent2/source/text/shared/01.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/om/helpcontent2/source/text/shared/01.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 03:58+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: om\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1452604431.000000\n" +"X-POOTLE-MTIME: 1457063882.000000\n" #: 01010000.xhp msgctxt "" @@ -7487,13 +7487,14 @@ msgstr "Arfiilee kenname bakka bu'a ta'uu baannan ifteefameera." #: 02100001.xhp +#, fuzzy msgctxt "" "02100001.xhp\n" "par_id3152427\n" "19\n" "help.text" msgid "." -msgstr "" +msgstr "." #: 02100001.xhp msgctxt "" @@ -7505,13 +7506,14 @@ msgstr "Arfii baaqqee kamuu cita sararaattii ala ykn cita keewwataa bakka bu'a. Fakkenyaaf jecha \"sh.rt\" lamaanuu deebisa \"qomee fi gabaabaa\"" #: 02100001.xhp +#, fuzzy msgctxt "" "02100001.xhp\n" "par_id3154682\n" "21\n" "help.text" msgid "^" -msgstr "" +msgstr "^" #: 02100001.xhp msgctxt "" @@ -7523,13 +7525,14 @@ msgstr "Jecha barbaadii qofa barbaada. Yoo jechi jalqabaa keewwataa wantoota addayaa kanneen akka dirreewwan duwwa ykn arfii-goodayyaawwan korkodaaye jalqabbiin keewwataa tuffatamaniini. Fakkenyaaf: \"^peter\"." #: 02100001.xhp +#, fuzzy msgctxt "" "02100001.xhp\n" "par_id3159194\n" "23\n" "help.text" msgid "$" -msgstr "" +msgstr "$" #: 02100001.xhp msgctxt "" @@ -7549,13 +7552,14 @@ msgstr "" #: 02100001.xhp +#, fuzzy msgctxt "" "02100001.xhp\n" "par_id3156414\n" "25\n" "help.text" msgid "*" -msgstr "" +msgstr "*" #: 02100001.xhp msgctxt "" @@ -7594,13 +7598,14 @@ msgstr "Diraa baay'ee dheeraa barbaacha kana kan miilu haala keewwata keessaa yeroo hundaa argama. Keewwanni yoo diraa \"Ax4ax4\" karaan hundi shoolame." #: 02100001.xhp +#, fuzzy msgctxt "" "02100001.xhp\n" "par_id3143267\n" "199\n" "help.text" msgid "?" -msgstr "" +msgstr "?" #: 02100001.xhp msgctxt "" @@ -7612,13 +7617,14 @@ msgstr "Arfiilee zeeroo ykn tokkoo fuula dura \"?\" barbaada. Fakkenyaf, \"Barruulee\" barbaa \"Barruu\" fi \"Baruulee\" fi \"x(ab|c)?y\" barbaada \"xy\", \"xaby\" ykn \"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 @@ msgstr "Balballoomsa" #: 05020301.xhp +#, fuzzy msgctxt "" "05020301.xhp\n" "par_id3152801\n" "5\n" "help.text" msgid "#" -msgstr "" +msgstr "#" #: 05020301.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/om/helpcontent2/source/text/shared/02.po libreoffice-5.1.2~rc2/translations/source/om/helpcontent2/source/text/shared/02.po --- libreoffice-5.1.1~rc2/translations/source/om/helpcontent2/source/text/shared/02.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/om/helpcontent2/source/text/shared/02.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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 21:01+0000\n" +"PO-Revision-Date: 2016-03-04 04:08+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: om\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1431378111.000000\n" +"X-POOTLE-MTIME: 1457064506.000000\n" #: 01110000.xhp msgctxt "" @@ -13864,13 +13864,14 @@ 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 @@ 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 @@ 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 @@ msgstr "Fakkeenya" #: 12100200.xhp +#, fuzzy msgctxt "" "12100200.xhp\n" "par_id3158411\n" "42\n" "help.text" msgid "?" -msgstr "" +msgstr "?" #: 12100200.xhp msgctxt "" @@ -15718,13 +15722,14 @@ msgstr "\"M?ller\" deebisa, fakkeenyaaf, Miller fi 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 @@ msgstr "Ibsamoota idileen barbaadi" #: 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 -Nru libreoffice-5.1.1~rc2/translations/source/om/helpcontent2/source/text/shared/autopi.po libreoffice-5.1.2~rc2/translations/source/om/helpcontent2/source/text/shared/autopi.po --- libreoffice-5.1.1~rc2/translations/source/om/helpcontent2/source/text/shared/autopi.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/om/helpcontent2/source/text/shared/autopi.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 21:02+0000\n" +"PO-Revision-Date: 2016-03-04 04:16+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: om\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1431378158.000000\n" +"X-POOTLE-MTIME: 1457064988.000000\n" #: 01000000.xhp msgctxt "" @@ -3421,13 +3421,14 @@ msgstr "<ahelp hid=\"HID_DLGFORM_FIELDSAVAILABLE\">Maqaa dirreewwan kuusaa deetaa gabaticha ykn gaafata filatamee keessatti tarreessa.</ahelp> Dirree filachuuf cuqaasi ykn immoo yeroo dirree tokko ol filachuuf cuqaastuu,furtuu Shiftii ykn <switchinline select=\"sys\"><caseinline select=\"MAC\">Ajajaa </caseinline><defaultinline>Ctrl</defaultinline></switchinline> gadi dhiibi." #: 01090100.xhp +#, fuzzy msgctxt "" "01090100.xhp\n" "hd_id3150443\n" "10\n" "help.text" msgid ">" -msgstr "" +msgstr ">" #: 01090100.xhp msgctxt "" @@ -3457,13 +3458,14 @@ msgstr "<ahelp hid=\"HID_DLGFORM_CMDMOVEALL\">Dirreewwan hunda gara sanduuqa xiyyaan itti akeekateetti jiruu sanatti sochosuf cuqaasi.</ahelp>" #: 01090100.xhp +#, fuzzy msgctxt "" "01090100.xhp\n" "hd_id3155419\n" "14\n" "help.text" msgid "<" -msgstr "" +msgstr "<" #: 01090100.xhp msgctxt "" @@ -3493,12 +3495,13 @@ msgstr "<ahelp hid=\"HID_DLGFORM_CMDREMOVEALL\">Dirreewwan hunda gara sanduuqa xiyyaan itti akeekateetti jiruu sanatti sochosuf cuqaasi.</ahelp>" #: 01090100.xhp +#, fuzzy msgctxt "" "01090100.xhp\n" "par_idN1074A\n" "help.text" msgid "^" -msgstr "" +msgstr "^" #: 01090100.xhp msgctxt "" @@ -4523,13 +4526,14 @@ msgstr "<ahelp hid=\"HID_DLGREPORT_1_FIELDSSELECTED\">Dirreewwan gabaasa haaraa keessatti hammataman hunda mul'isa.</ahelp>" #: 01100100.xhp +#, fuzzy msgctxt "" "01100100.xhp\n" "hd_id3147209\n" "10\n" "help.text" msgid ">" -msgstr "" +msgstr ">" #: 01100100.xhp msgctxt "" @@ -4559,13 +4563,14 @@ msgstr "<ahelp hid=\"HID_DLGREPORT_1_CMDMOVEALL\">Dirreewwan hunda gara sanduuqa xiyyaan itti akeekateetti jiruu sanatti sochosuf cuqaasi.</ahelp>" #: 01100100.xhp +#, fuzzy msgctxt "" "01100100.xhp\n" "hd_id3153146\n" "14\n" "help.text" msgid "<" -msgstr "" +msgstr "<" #: 01100100.xhp msgctxt "" @@ -4719,13 +4724,14 @@ msgstr "<ahelp hid=\"HID_DLGREPORT_2_PREGROUPINGDEST\">Haala gabaasni itti gurmeeffamuu dirreewwan tarreessa. Gurmeeffama sadarkaa tokkoo haquuf, maqaa diree filadhuu kana booda,qabduu <emph><</emph> irrati cuqaasi. Hanga sadarkaalee gurmeeffaman afuritti filachuu dandeessa.</ahelp>" #: 01100200.xhp +#, fuzzy msgctxt "" "01100200.xhp\n" "hd_id3154289\n" "4\n" "help.text" msgid ">" -msgstr "" +msgstr ">" #: 01100200.xhp msgctxt "" @@ -4737,13 +4743,14 @@ msgstr "<ahelp hid=\"HID_DLGREPORT_2_CMDGROUP\">Dirree filatame gara sanduqa xiyyichi agarsiisutti cuqaasi.</ahelp>" #: 01100200.xhp +#, fuzzy msgctxt "" "01100200.xhp\n" "hd_id3154823\n" "5\n" "help.text" msgid "<" -msgstr "" +msgstr "<" #: 01100200.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/om/helpcontent2/source/text/shared/explorer/database.po libreoffice-5.1.2~rc2/translations/source/om/helpcontent2/source/text/shared/explorer/database.po --- libreoffice-5.1.1~rc2/translations/source/om/helpcontent2/source/text/shared/explorer/database.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/om/helpcontent2/source/text/shared/explorer/database.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 21:03+0000\n" +"PO-Revision-Date: 2016-03-04 04:26+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: om\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1431378191.000000\n" +"X-POOTLE-MTIME: 1457065567.000000\n" #: 02000000.xhp msgctxt "" @@ -1759,13 +1759,14 @@ msgstr "...qabiyyeen dirree himannoo adda bahe waliin wal hin gitu." #: 02010100.xhp +#, fuzzy msgctxt "" "02010100.xhp\n" "par_id3153015\n" "48\n" "help.text" msgid ">" -msgstr "" +msgstr ">" #: 02010100.xhp msgctxt "" @@ -1786,13 +1787,14 @@ msgstr "...qabiyyeen dirree irra guddaa himannoo adda baheeti." #: 02010100.xhp +#, fuzzy msgctxt "" "02010100.xhp\n" "par_id3147270\n" "51\n" "help.text" msgid "<" -msgstr "" +msgstr "<" #: 02010100.xhp msgctxt "" @@ -2792,13 +2794,14 @@ msgstr "Lakki" #: 02010100.xhp +#, fuzzy msgctxt "" "02010100.xhp\n" "par_id3150997\n" "239\n" "help.text" msgid "." -msgstr "" +msgstr "." #: 02010100.xhp msgctxt "" @@ -6230,13 +6233,14 @@ 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 @@ msgstr "<ahelp hid=\"dbaccess/ui/dbaseindexdialog/addall\">Kasaa birmaduu hunda filame gara tarree <emph>Kasaalee Gabatee</emph> tti siqsa.</ahelp>" #: 11030100.xhp +#, fuzzy msgctxt "" "11030100.xhp\n" "hd_id3149579\n" "8\n" "help.text" msgid ">" -msgstr "" +msgstr ">" #: 11030100.xhp msgctxt "" @@ -12422,12 +12427,13 @@ msgstr "<ahelp hid=\".\">To'annaa tarree haaraawaa irratti maxxansa(suta).</ahelp>" #: querywizard04.xhp +#, fuzzy msgctxt "" "querywizard04.xhp\n" "par_idN105F1\n" "help.text" msgid "-" -msgstr "" +msgstr "-" #: querywizard04.xhp msgctxt "" @@ -14446,12 +14452,13 @@ msgstr "<ahelp hid=\".\">Odeeffannoo dirree gulaaluuf dirree filadhu.</ahelp>" #: tablewizard02.xhp +#, fuzzy msgctxt "" "tablewizard02.xhp\n" "par_idN10574\n" "help.text" msgid "-" -msgstr "" +msgstr "-" #: tablewizard02.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/om/helpcontent2/source/text/swriter/01.po libreoffice-5.1.2~rc2/translations/source/om/helpcontent2/source/text/swriter/01.po --- libreoffice-5.1.1~rc2/translations/source/om/helpcontent2/source/text/swriter/01.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/om/helpcontent2/source/text/swriter/01.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 21:05+0000\n" +"PO-Revision-Date: 2016-03-04 05:17+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: om\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1431378348.000000\n" +"X-POOTLE-MTIME: 1457068661.000000\n" #: 01120000.xhp msgctxt "" @@ -11032,13 +11032,14 @@ msgstr "<ahelp hid=\"modules/swriter/ui/tocstylespage/styles\">Akkaataa keewwataa isa sadarkaa kasaa filatametti fayyadamuu feetu filadhuutii, qabduu Ramadi (<emph><) </emph>jedhu cuqaasi.</ahelp>" #: 04120201.xhp +#, fuzzy msgctxt "" "04120201.xhp\n" "hd_id3145418\n" "32\n" "help.text" msgid "<" -msgstr "" +msgstr "<" #: 04120201.xhp msgctxt "" @@ -27775,12 +27776,13 @@ msgstr "<ahelp hid=\".\">Dirree filadhutii kan booda, dirree tarree kanbiraatti harkisi.</ahelp>" #: mm_cusaddfie.xhp +#, fuzzy msgctxt "" "mm_cusaddfie.xhp\n" "par_idN10570\n" "help.text" msgid ">" -msgstr "" +msgstr ">" #: mm_cusaddfie.xhp msgctxt "" @@ -27791,12 +27793,13 @@ msgstr "<ahelp hid=\".\">Dirree filataamee tarree miseensa yooyoo irraa gara tarree birraatti ida'a.Dirree kan fakkaatu altokkoo ol ida'uu nidandeessa.</ahelp>" #: mm_cusaddfie.xhp +#, fuzzy msgctxt "" "mm_cusaddfie.xhp\n" "par_idN10577\n" "help.text" msgid "<" -msgstr "" +msgstr "<" #: mm_cusaddfie.xhp msgctxt "" @@ -27983,12 +27986,13 @@ msgstr "<ahelp hid=\".\">Dirree filadhutii kan booda, dirree tarree kanbiraatti harkisi.</ahelp>" #: mm_cusgrelin.xhp +#, fuzzy msgctxt "" "mm_cusgrelin.xhp\n" "par_idN10558\n" "help.text" msgid ">" -msgstr "" +msgstr ">" #: mm_cusgrelin.xhp msgctxt "" @@ -27999,12 +28003,13 @@ msgstr "<ahelp hid=\".\">Dirree filataamee tarree miseensa yooyoo irraa gara tarree birraatti ida'a.Dirree altokkoo ol ida'uu nidandeessa.</ahelp>" #: mm_cusgrelin.xhp +#, fuzzy msgctxt "" "mm_cusgrelin.xhp\n" "par_idN1055F\n" "help.text" msgid "<" -msgstr "" +msgstr "<" #: mm_cusgrelin.xhp msgctxt "" @@ -28439,12 +28444,13 @@ msgstr "<ahelp hid=\".\">Dirree teessoo filitti dirree gara tarree biraatti harkisii.</ahelp>" #: mm_newaddblo.xhp +#, fuzzy msgctxt "" "mm_newaddblo.xhp\n" "par_idN10570\n" "help.text" msgid ">" -msgstr "" +msgstr ">" #: mm_newaddblo.xhp msgctxt "" @@ -28455,12 +28461,13 @@ msgstr "<ahelp hid=\".\">Tarree Miseensa Teessoo irraa dirree filataame gara tarree biraatti ida'a.</ahelp> Dirree kana fakkaatu si'a tokko ol ida'u nidandeessa.s" #: mm_newaddblo.xhp +#, fuzzy msgctxt "" "mm_newaddblo.xhp\n" "par_idN10577\n" "help.text" msgid "<" -msgstr "" +msgstr "<" #: mm_newaddblo.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/om/helpcontent2/source/text/swriter/02.po libreoffice-5.1.2~rc2/translations/source/om/helpcontent2/source/text/swriter/02.po --- libreoffice-5.1.1~rc2/translations/source/om/helpcontent2/source/text/swriter/02.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/om/helpcontent2/source/text/swriter/02.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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:54+0000\n" +"PO-Revision-Date: 2016-03-04 05:19+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: om\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1429808085.000000\n" +"X-POOTLE-MTIME: 1457068779.000000\n" #: 02110000.xhp msgctxt "" @@ -1672,13 +1672,14 @@ msgstr "Hirisuu" #: 14020000.xhp +#, fuzzy msgctxt "" "14020000.xhp\n" "par_id3150087\n" "12\n" "help.text" msgid "-" -msgstr "" +msgstr "-" #: 14020000.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/om/librelogo/source/pythonpath.po libreoffice-5.1.2~rc2/translations/source/om/librelogo/source/pythonpath.po --- libreoffice-5.1.1~rc2/translations/source/om/librelogo/source/pythonpath.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/om/librelogo/source/pythonpath.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,17 +3,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: 2014-05-02 00:06+0200\n" -"PO-Revision-Date: 2013-02-17 21:18+0000\n" -"Last-Translator: Andras <timar74@gmail.com>\n" +"POT-Creation-Date: 2015-04-22 23:40+0200\n" +"PO-Revision-Date: 2016-03-09 01:31+0000\n" +"Last-Translator: system user <>\n" "Language-Team: none\n" "Language: om\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: 1361135926.0\n" +"X-POOTLE-MTIME: 1457487109.000000\n" #: LibreLogo_en_US.properties msgctxt "" @@ -797,20 +797,22 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/om/officecfg/registry/data/org/openoffice/Office.po libreoffice-5.1.2~rc2/translations/source/om/officecfg/registry/data/org/openoffice/Office.po --- libreoffice-5.1.1~rc2/translations/source/om/officecfg/registry/data/org/openoffice/Office.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/om/officecfg/registry/data/org/openoffice/Office.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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 01:41+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: om\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1438902706.000000\n" +"X-POOTLE-MTIME: 1457487670.000000\n" #: Addons.xcu msgctxt "" @@ -1429,13 +1429,14 @@ msgstr "" #: PresentationMinimizer.xcu +#, fuzzy msgctxt "" "PresentationMinimizer.xcu\n" "..PresentationMinimizer.Strings\n" "STR_FILESIZESEPARATOR\n" "value.text" msgid "." -msgstr "" +msgstr "." #: PresentationMinimizer.xcu msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/om/reportdesign/uiconfig/dbreport/ui.po libreoffice-5.1.2~rc2/translations/source/om/reportdesign/uiconfig/dbreport/ui.po --- libreoffice-5.1.1~rc2/translations/source/om/reportdesign/uiconfig/dbreport/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/om/reportdesign/uiconfig/dbreport/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 10:50+0000\n" +"PO-Revision-Date: 2016-03-09 02:04+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: om\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1416394232.000000\n" +"X-POOTLE-MTIME: 1457489055.000000\n" #: backgrounddialog.ui msgctxt "" @@ -196,13 +196,14 @@ msgstr "" #: conditionwin.ui +#, fuzzy msgctxt "" "conditionwin.ui\n" "lhsButton\n" "label\n" "string.text" msgid "..." -msgstr "" +msgstr "..." #: conditionwin.ui msgctxt "" @@ -214,13 +215,14 @@ msgstr "" #: conditionwin.ui +#, fuzzy msgctxt "" "conditionwin.ui\n" "rhsButton\n" "label\n" "string.text" msgid "..." -msgstr "" +msgstr "..." #: conditionwin.ui msgctxt "" @@ -277,13 +279,14 @@ msgstr "" #: conditionwin.ui +#, fuzzy msgctxt "" "conditionwin.ui\n" "removeButton\n" "label\n" "string.text" msgid "-" -msgstr "" +msgstr "-" #: conditionwin.ui msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/om/sc/source/ui/src.po libreoffice-5.1.2~rc2/translations/source/om/sc/source/ui/src.po --- libreoffice-5.1.1~rc2/translations/source/om/sc/source/ui/src.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/om/sc/source/ui/src.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 07:14+0000\n" +"PO-Revision-Date: 2016-03-09 02:23+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: om\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1431501296.000000\n" +"X-POOTLE-MTIME: 1457490214.000000\n" #: condformatdlg.src #, fuzzy @@ -2636,13 +2636,14 @@ msgstr "Amaloota Barruu" #: globstr.src +#, fuzzy msgctxt "" "globstr.src\n" "RID_GLOBSTR\n" "STR_HFCMD_DELIMITER\n" "string.text" msgid "\\" -msgstr "" +msgstr "\\" #: globstr.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/om/sc/uiconfig/scalc/ui.po libreoffice-5.1.2~rc2/translations/source/om/sc/uiconfig/scalc/ui.po --- libreoffice-5.1.1~rc2/translations/source/om/sc/uiconfig/scalc/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/om/sc/uiconfig/scalc/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 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 03:04+0000\n" +"PO-Revision-Date: 2016-03-09 02:28+0000\n" "Last-Translator: system user <>\n" "Language-Team: none\n" "Language: om\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1435287855.000000\n" +"X-POOTLE-MTIME: 1457490519.000000\n" #: advancedfilterdialog.ui msgctxt "" @@ -6389,22 +6389,24 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/om/scaddins/source/analysis.po libreoffice-5.1.2~rc2/translations/source/om/scaddins/source/analysis.po --- libreoffice-5.1.1~rc2/translations/source/om/scaddins/source/analysis.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/om/scaddins/source/analysis.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-11-24 04:39-0500\n" +"POT-Creation-Date: 2016-03-29 16:07+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff -Nru libreoffice-5.1.1~rc2/translations/source/om/sd/uiconfig/simpress/ui.po libreoffice-5.1.2~rc2/translations/source/om/sd/uiconfig/simpress/ui.po --- libreoffice-5.1.1~rc2/translations/source/om/sd/uiconfig/simpress/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/om/sd/uiconfig/simpress/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 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 03:06+0000\n" +"PO-Revision-Date: 2016-03-09 02:50+0000\n" "Last-Translator: system user <>\n" "Language-Team: none\n" "Language: om\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1435287989.000000\n" +"X-POOTLE-MTIME: 1457491821.000000\n" #: assistentdialog.ui msgctxt "" @@ -997,22 +997,24 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/om/sw/source/ui/dbui.po libreoffice-5.1.2~rc2/translations/source/om/sw/source/ui/dbui.po --- libreoffice-5.1.1~rc2/translations/source/om/sw/source/ui/dbui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/om/sw/source/ui/dbui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 07:28+0000\n" +"PO-Revision-Date: 2016-03-09 03:21+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: om\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1431502093.000000\n" +"X-POOTLE-MTIME: 1457493687.000000\n" #: dbui.src msgctxt "" @@ -487,31 +487,34 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/om/sw/source/ui/index.po libreoffice-5.1.2~rc2/translations/source/om/sw/source/ui/index.po --- libreoffice-5.1.1~rc2/translations/source/om/sw/source/ui/index.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/om/sw/source/ui/index.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,16 +3,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-01-05 14:20+0200\n" -"Last-Translator: Anonymous Pootle User\n" +"POT-Creation-Date: 2015-04-22 23:40+0200\n" +"PO-Revision-Date: 2016-03-09 03:22+0000\n" +"Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: om\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: LibreOffice\n" +"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" +"X-POOTLE-MTIME: 1457493775.000000\n" #: cnttab.src #, fuzzy @@ -56,20 +57,22 @@ 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 @@ msgstr "" #: cnttab.src +#, fuzzy msgctxt "" "cnttab.src\n" "STR_TOKEN_PAGE_NUMS\n" "string.text" msgid "#" -msgstr "" +msgstr "#" #: cnttab.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/om/sw/source/ui/utlui.po libreoffice-5.1.2~rc2/translations/source/om/sw/source/ui/utlui.po --- libreoffice-5.1.1~rc2/translations/source/om/sw/source/ui/utlui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/om/sw/source/ui/utlui.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE 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-20 11:58+0100\n" +"POT-Creation-Date: 2016-03-29 16:07+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff -Nru libreoffice-5.1.1~rc2/translations/source/om/sw/uiconfig/swriter/ui.po libreoffice-5.1.2~rc2/translations/source/om/sw/uiconfig/swriter/ui.po --- libreoffice-5.1.1~rc2/translations/source/om/sw/uiconfig/swriter/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/om/sw/uiconfig/swriter/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 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:12+0000\n" +"PO-Revision-Date: 2016-03-09 03:34+0000\n" "Last-Translator: system user <>\n" "Language-Team: none\n" "Language: om\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1438902747.000000\n" +"X-POOTLE-MTIME: 1457494449.000000\n" #: abstractdialog.ui msgctxt "" @@ -2310,13 +2310,14 @@ msgstr "Gabatee Gara Barruuti Jijjiiri" #: converttexttable.ui +#, fuzzy msgctxt "" "converttexttable.ui\n" "othered\n" "text\n" "string.text" msgid "," -msgstr "" +msgstr "," #: converttexttable.ui msgctxt "" @@ -2502,13 +2503,14 @@ msgstr "" #: createaddresslist.ui +#, fuzzy msgctxt "" "createaddresslist.ui\n" "PREV\n" "label\n" "string.text" msgid "<" -msgstr "" +msgstr "<" #: createaddresslist.ui msgctxt "" @@ -2520,13 +2522,14 @@ msgstr "" #: createaddresslist.ui +#, fuzzy msgctxt "" "createaddresslist.ui\n" "NEXT\n" "label\n" "string.text" msgid ">" -msgstr "" +msgstr ">" #: createaddresslist.ui msgctxt "" @@ -4433,13 +4436,14 @@ msgstr "" #: fldvarpage.ui +#, fuzzy msgctxt "" "fldvarpage.ui\n" "separator\n" "text\n" "string.text" msgid "." -msgstr "" +msgstr "." #: fldvarpage.ui msgctxt "" @@ -5421,22 +5425,24 @@ 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 @@ msgstr "Qubannoo" #: insertcaption.ui +#, fuzzy msgctxt "" "insertcaption.ui\n" "separator_edit\n" "text\n" "string.text" msgid ": " -msgstr "" +msgstr ": " #: insertcaption.ui msgctxt "" @@ -6364,13 +6371,14 @@ 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 @@ msgstr "" #: mmpreparepage.ui +#, fuzzy msgctxt "" "mmpreparepage.ui\n" "prev\n" "label\n" "string.text" msgid "<" -msgstr "" +msgstr "<" #: mmpreparepage.ui msgctxt "" @@ -8725,13 +8734,14 @@ msgstr "" #: mmpreparepage.ui +#, fuzzy msgctxt "" "mmpreparepage.ui\n" "next\n" "label\n" "string.text" msgid ">" -msgstr "" +msgstr ">" #: mmpreparepage.ui #, fuzzy @@ -9579,13 +9589,14 @@ msgstr "Qubannoo" #: optcaptionpage.ui +#, fuzzy msgctxt "" "optcaptionpage.ui\n" "numseparator\n" "text\n" "string.text" msgid ". " -msgstr "" +msgstr ". " #: optcaptionpage.ui #, fuzzy @@ -15704,40 +15715,44 @@ msgstr "[Homaa]" #: 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 -Nru libreoffice-5.1.1~rc2/translations/source/om/vcl/source/src.po libreoffice-5.1.2~rc2/translations/source/om/vcl/source/src.po --- libreoffice-5.1.1~rc2/translations/source/om/vcl/source/src.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/om/vcl/source/src.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 19:20+0000\n" +"PO-Revision-Date: 2016-03-09 03:37+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: om\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1449861628.000000\n" +"X-POOTLE-MTIME: 1457494644.000000\n" #: app.src msgctxt "" @@ -1183,12 +1183,13 @@ msgstr "" #: print.src +#, fuzzy msgctxt "" "print.src\n" "SV_PRINT_INVALID_TXT\n" "string.text" msgid "<ignore>" -msgstr "" +msgstr "<ignore>" #: print.src msgctxt "" @@ -1465,13 +1466,14 @@ msgstr "" #: units.src +#, fuzzy msgctxt "" "units.src\n" "SV_FUNIT_STRINGS\n" "°\n" "itemlist.text" msgid "°" -msgstr "" +msgstr "°" #: units.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/or/formula/source/core/resource.po libreoffice-5.1.2~rc2/translations/source/or/formula/source/core/resource.po --- libreoffice-5.1.1~rc2/translations/source/or/formula/source/core/resource.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/or/formula/source/core/resource.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\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-29 16:07+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff -Nru libreoffice-5.1.1~rc2/translations/source/or/officecfg/registry/data/org/openoffice/Office.po libreoffice-5.1.2~rc2/translations/source/or/officecfg/registry/data/org/openoffice/Office.po --- libreoffice-5.1.1~rc2/translations/source/or/officecfg/registry/data/org/openoffice/Office.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/or/officecfg/registry/data/org/openoffice/Office.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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:12+0000\n" +"PO-Revision-Date: 2016-03-09 02:03+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: or\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1438902720.000000\n" +"X-POOTLE-MTIME: 1457489028.000000\n" #: Addons.xcu msgctxt "" @@ -1431,13 +1431,14 @@ msgstr "" #: PresentationMinimizer.xcu +#, fuzzy msgctxt "" "PresentationMinimizer.xcu\n" "..PresentationMinimizer.Strings\n" "STR_FILESIZESEPARATOR\n" "value.text" msgid "." -msgstr "" +msgstr "." #: PresentationMinimizer.xcu msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/or/starmath/source.po libreoffice-5.1.2~rc2/translations/source/or/starmath/source.po --- libreoffice-5.1.1~rc2/translations/source/or/starmath/source.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/or/starmath/source.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\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-12 13:26+0200\n" +"POT-Creation-Date: 2016-03-29 16:07+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff -Nru libreoffice-5.1.1~rc2/translations/source/or/sw/source/ui/dbui.po libreoffice-5.1.2~rc2/translations/source/or/sw/source/ui/dbui.po --- libreoffice-5.1.1~rc2/translations/source/or/sw/source/ui/dbui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/or/sw/source/ui/dbui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "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 07:58+0000\n" +"PO-Revision-Date: 2016-03-09 03:52+0000\n" "Last-Translator: system user <>\n" "Language-Team: Oriya <oriya-it@googlegroups.com>\n" "Language: or\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1431503918.000000\n" +"X-POOTLE-MTIME: 1457495538.000000\n" #: dbui.src msgctxt "" @@ -488,31 +488,34 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/or/sw/source/ui/index.po libreoffice-5.1.2~rc2/translations/source/or/sw/source/ui/index.po --- libreoffice-5.1.1~rc2/translations/source/or/sw/source/ui/index.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/or/sw/source/ui/index.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,18 +3,18 @@ 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-07 10:25+0000\n" -"Last-Translator: mgiri <mgiri@redhat.com>\n" +"POT-Creation-Date: 2015-04-22 23:40+0200\n" +"PO-Revision-Date: 2016-03-09 03:53+0000\n" +"Last-Translator: system user <>\n" "Language-Team: Oriya <oriya-it@googlegroups.com>\n" "Language: or\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: LibreOffice\n" +"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1370600711.0\n" +"X-POOTLE-MTIME: 1457495625.000000\n" #: cnttab.src msgctxt "" @@ -57,20 +57,22 @@ 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 @@ msgstr "" #: cnttab.src +#, fuzzy msgctxt "" "cnttab.src\n" "STR_TOKEN_PAGE_NUMS\n" "string.text" msgid "#" -msgstr "" +msgstr "#" #: cnttab.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/or/sw/source/ui/utlui.po libreoffice-5.1.2~rc2/translations/source/or/sw/source/ui/utlui.po --- libreoffice-5.1.1~rc2/translations/source/or/sw/source/ui/utlui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/or/sw/source/ui/utlui.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE 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-20 11:58+0100\n" +"POT-Creation-Date: 2016-03-29 16:07+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff -Nru libreoffice-5.1.1~rc2/translations/source/pa-IN/accessibility/source/helper.po libreoffice-5.1.2~rc2/translations/source/pa-IN/accessibility/source/helper.po --- libreoffice-5.1.1~rc2/translations/source/pa-IN/accessibility/source/helper.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/pa-IN/accessibility/source/helper.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,17 +3,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-02 00:06+0200\n" -"PO-Revision-Date: 2014-09-26 07:16+0000\n" -"Last-Translator: Amandeep Singh <jimidar@gmail.com>\n" +"POT-Creation-Date: 2015-04-22 23:40+0200\n" +"PO-Revision-Date: 2016-03-11 04:27+0000\n" +"Last-Translator: mangat <mnvsgr0@gmail.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: pa_IN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Pootle 2.5.1\n" +"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1411715764.000000\n" +"X-POOTLE-MTIME: 1457670446.000000\n" #: accessiblestrings.src msgctxt "" @@ -101,7 +101,7 @@ "RID_STR_ACC_PANEL_DESCRIPTION\n" "string.text" msgid "Please press enter to go into child control for more operations" -msgstr "" +msgstr "ਕਿਰਪਾ ਕਰਕੇ ਹੋਰ ਕਾਰਵਾਈਆਂ ਲਈ ਬਾਲ ਕੰਟਰੋਲ ਵਿੱਚ ਜਾਣ ਲਈ à¨à¨‚ਟਰ ਦਬਾਓ" #: accessiblestrings.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/pa-IN/basctl/source/basicide.po libreoffice-5.1.2~rc2/translations/source/pa-IN/basctl/source/basicide.po --- libreoffice-5.1.1~rc2/translations/source/pa-IN/basctl/source/basicide.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/pa-IN/basctl/source/basicide.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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-06-02 18:19+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2016-03-11 04:14+0000\n" +"Last-Translator: A S Alam <apreet.alam@gmail.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: pa_IN\n" "MIME-Version: 1.0\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1401733150.000000\n" +"X-POOTLE-MTIME: 1457669684.000000\n" #: basicprint.src msgctxt "" @@ -859,7 +859,9 @@ "ਲਾਇਬਰੇਰੀ 'ਚ ਇਸ ਨਾਂ ਨਾਲ ਪਹਿਲਾਂ ਹੀ ਡਾਈਲਾਗ ਹੈ:\n" "\n" "$(ARG1)\n" +"\n" "ਮੌਜੂਦਾ ਡਾਈਲਾਗ ਨੂੰ ਰੱਖਣ ਲਈ ਨਾਂ ਬਦਲੋ ਜਾਂ ਮੌਜੂਦਾ ਡਾਈਲਾਗ ਬਦਲ ਦਿਓ।\n" +" " #: basidesh.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/pa-IN/basctl/source/dlged.po libreoffice-5.1.2~rc2/translations/source/pa-IN/basctl/source/dlged.po --- libreoffice-5.1.1~rc2/translations/source/pa-IN/basctl/source/dlged.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/pa-IN/basctl/source/dlged.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\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-03 12:17+0000\n" -"Last-Translator: A S Alam <apreet.alam@gmail.com>\n" +"PO-Revision-Date: 2016-03-11 04:28+0000\n" +"Last-Translator: mangat <mnvsgr0@gmail.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: pa_IN\n" "MIME-Version: 1.0\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1435925838.000000\n" +"X-POOTLE-MTIME: 1457670513.000000\n" #: dlgresid.src msgctxt "" @@ -45,7 +45,7 @@ "RID_STR_DEF_LANG\n" "string.text" msgid "[Default Language]" -msgstr "[ਡਿਫਾਲਟ ਭਾਸ਼ਾ]" +msgstr "[Default Language]" #: dlgresid.src msgctxt "" @@ -53,4 +53,4 @@ "RID_STR_CREATE_LANG\n" "string.text" msgid "<Press 'Add' to create language resources>" -msgstr "" +msgstr "<ਭਾਸ਼ਾ ਸਰੋਤਾਂ ਨੂੰ ਬਣਾਉਣ ਲਈ 'ਜੋੜੋ' ਨੂੰ ਦਬਾਓ >" diff -Nru libreoffice-5.1.1~rc2/translations/source/pa-IN/basctl/uiconfig/basicide/ui.po libreoffice-5.1.2~rc2/translations/source/pa-IN/basctl/uiconfig/basicide/ui.po --- libreoffice-5.1.1~rc2/translations/source/pa-IN/basctl/uiconfig/basicide/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/pa-IN/basctl/uiconfig/basicide/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: LibO 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 08:04+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2016-03-11 04:37+0000\n" +"Last-Translator: mangat <mnvsgr0@gmail.com>\n" "Language-Team: none\n" "Language: pa_IN\n" "MIME-Version: 1.0\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1431504285.000000\n" +"X-POOTLE-MTIME: 1457671068.000000\n" #: basicmacrodialog.ui msgctxt "" @@ -125,7 +125,7 @@ "title\n" "string.text" msgid "Set Default User Interface Language" -msgstr "" +msgstr "ਡਿਫੌਲਟ ਯੂਜ਼ਰ ਇੰਟਰਫੇਸ ਭਾਸ਼ਾ ਸੈਟ ਕਰੋ" #: defaultlanguage.ui msgctxt "" @@ -134,7 +134,7 @@ "label\n" "string.text" msgid "Default language:" -msgstr "" +msgstr "ਡਿਫੌਲਟ ਭਾਸ਼ਾ:" #: defaultlanguage.ui msgctxt "" @@ -143,7 +143,7 @@ "label\n" "string.text" msgid "Available languages:" -msgstr "" +msgstr "ਉਪਲਬਧ ਭਾਸ਼ਾਵਾਂ:" #: defaultlanguage.ui msgctxt "" @@ -152,7 +152,7 @@ "label\n" "string.text" msgid "Select a language to define the default user interface language. All currently present strings will be assigned to the resources created for the selected language." -msgstr "" +msgstr "ਡਿਫੌਲਟ ਯੂਜ਼ਰ ਇੰਟਰਫੇਸ ਭਾਸ਼ਾ ਨੂੰ ਪਰਭਾਸ਼ਿਤ ਕਰਨ ਲਈ ਇੱਕ ਭਾਸ਼ਾ ਨੂੰ ਚà©à¨£à©‡à¥¤ ਚà©à¨£à©€ ਗਈ ਭਾਸ਼ਾ ਲਈ ਬਣਾਠਗਠਸਰੋਤਾਂ ਲਈ ਹਾਲ ਦੀਆਂ ਸਾਰੀਆਂ ਮੌਜੂਦਾ ਸਤਰਾਂ ਨੂੰ ਨਿਰਧਾਰਿਤ ਕੀਤਾ ਜਾਵੇਗਾ।" #: defaultlanguage.ui msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/pa-IN/cui/uiconfig/ui.po libreoffice-5.1.2~rc2/translations/source/pa-IN/cui/uiconfig/ui.po --- libreoffice-5.1.1~rc2/translations/source/pa-IN/cui/uiconfig/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/pa-IN/cui/uiconfig/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 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:36+0000\n" +"PO-Revision-Date: 2016-03-09 01:38+0000\n" "Last-Translator: system user <>\n" "Language-Team: none\n" "Language: pa_IN\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1452263802.000000\n" +"X-POOTLE-MTIME: 1457487499.000000\n" #: aboutconfigdialog.ui msgctxt "" @@ -14134,31 +14134,34 @@ 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 @@ -17448,40 +17451,44 @@ 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 "" @@ -17502,40 +17509,44 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/pa-IN/dbaccess/uiconfig/ui.po libreoffice-5.1.2~rc2/translations/source/pa-IN/dbaccess/uiconfig/ui.po --- libreoffice-5.1.1~rc2/translations/source/pa-IN/dbaccess/uiconfig/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/pa-IN/dbaccess/uiconfig/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,15 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-09 01:43+0000\n" +"Last-Translator: mangat <mnvsgr0@gmail.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: pa_IN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: LibreOffice\n" +"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" +"X-POOTLE-MTIME: 1457487812.000000\n" #: admindialog.ui msgctxt "" @@ -1926,22 +1927,24 @@ 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 @@ msgstr "" #: queryfilterdialog.ui +#, fuzzy msgctxt "" "queryfilterdialog.ui\n" "cond1\n" "4\n" "stringlist.text" msgid ">" -msgstr "" +msgstr ">" #: queryfilterdialog.ui msgctxt "" @@ -3015,58 +3019,64 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/pa-IN/extensions/uiconfig/sabpilot/ui.po libreoffice-5.1.2~rc2/translations/source/pa-IN/extensions/uiconfig/sabpilot/ui.po --- libreoffice-5.1.1~rc2/translations/source/pa-IN/extensions/uiconfig/sabpilot/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/pa-IN/extensions/uiconfig/sabpilot/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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:39+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2016-03-09 01:51+0000\n" +"Last-Translator: mangat <mnvsgr0@gmail.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: pa_IN\n" "MIME-Version: 1.0\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1435286375.000000\n" +"X-POOTLE-MTIME: 1457488308.000000\n" #: contentfieldpage.ui msgctxt "" @@ -280,13 +280,14 @@ msgstr "" #: gridfieldsselectionpage.ui +#, fuzzy msgctxt "" "gridfieldsselectionpage.ui\n" "fieldright\n" "label\n" "string.text" msgid "->" -msgstr "" +msgstr "->" #: gridfieldsselectionpage.ui msgctxt "" @@ -298,13 +299,14 @@ msgstr "" #: gridfieldsselectionpage.ui +#, fuzzy msgctxt "" "gridfieldsselectionpage.ui\n" "fieldleft\n" "label\n" "string.text" msgid "<-" -msgstr "" +msgstr "<-" #: gridfieldsselectionpage.ui msgctxt "" @@ -379,22 +381,24 @@ 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 @@ msgstr "" #: tableselectionpage.ui +#, fuzzy msgctxt "" "tableselectionpage.ui\n" "search\n" "label\n" "string.text" msgid "_..." -msgstr "" +msgstr "_..." #: tableselectionpage.ui msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/pa-IN/formula/source/core/resource.po libreoffice-5.1.2~rc2/translations/source/pa-IN/formula/source/core/resource.po --- libreoffice-5.1.1~rc2/translations/source/pa-IN/formula/source/core/resource.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/pa-IN/formula/source/core/resource.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\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-29 16:07+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff -Nru libreoffice-5.1.1~rc2/translations/source/pa-IN/librelogo/source/pythonpath.po libreoffice-5.1.2~rc2/translations/source/pa-IN/librelogo/source/pythonpath.po --- libreoffice-5.1.1~rc2/translations/source/pa-IN/librelogo/source/pythonpath.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/pa-IN/librelogo/source/pythonpath.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,17 +3,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: 2014-05-02 00:06+0200\n" -"PO-Revision-Date: 2013-08-21 12:08+0000\n" -"Last-Translator: A S <apreet.alam@gmail.com>\n" +"POT-Creation-Date: 2015-04-22 23:40+0200\n" +"PO-Revision-Date: 2016-03-09 02:08+0000\n" +"Last-Translator: mangat <mnvsgr0@gmail.com>\n" "Language-Team: none\n" "Language: pa_IN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: LibreOffice\n" +"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1377086902.0\n" +"X-POOTLE-MTIME: 1457489291.000000\n" #: LibreLogo_en_US.properties msgctxt "" @@ -768,20 +768,22 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/pa-IN/officecfg/registry/data/org/openoffice/Office.po libreoffice-5.1.2~rc2/translations/source/pa-IN/officecfg/registry/data/org/openoffice/Office.po --- libreoffice-5.1.1~rc2/translations/source/pa-IN/officecfg/registry/data/org/openoffice/Office.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/pa-IN/officecfg/registry/data/org/openoffice/Office.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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 02:18+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: pa_IN\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1438902689.000000\n" +"X-POOTLE-MTIME: 1457489891.000000\n" #: Addons.xcu msgctxt "" @@ -1429,13 +1429,14 @@ msgstr "" #: PresentationMinimizer.xcu +#, fuzzy msgctxt "" "PresentationMinimizer.xcu\n" "..PresentationMinimizer.Strings\n" "STR_FILESIZESEPARATOR\n" "value.text" msgid "." -msgstr "" +msgstr "." #: PresentationMinimizer.xcu msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/pa-IN/reportdesign/uiconfig/dbreport/ui.po libreoffice-5.1.2~rc2/translations/source/pa-IN/reportdesign/uiconfig/dbreport/ui.po --- libreoffice-5.1.1~rc2/translations/source/pa-IN/reportdesign/uiconfig/dbreport/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/pa-IN/reportdesign/uiconfig/dbreport/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 11:43+0000\n" +"PO-Revision-Date: 2016-03-09 02:41+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: pa_IN\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1416397395.000000\n" +"X-POOTLE-MTIME: 1457491289.000000\n" #: backgrounddialog.ui msgctxt "" @@ -196,13 +196,14 @@ msgstr "" #: conditionwin.ui +#, fuzzy msgctxt "" "conditionwin.ui\n" "lhsButton\n" "label\n" "string.text" msgid "..." -msgstr "" +msgstr "..." #: conditionwin.ui msgctxt "" @@ -214,13 +215,14 @@ msgstr "" #: conditionwin.ui +#, fuzzy msgctxt "" "conditionwin.ui\n" "rhsButton\n" "label\n" "string.text" msgid "..." -msgstr "" +msgstr "..." #: conditionwin.ui msgctxt "" @@ -277,13 +279,14 @@ msgstr "" #: conditionwin.ui +#, fuzzy msgctxt "" "conditionwin.ui\n" "removeButton\n" "label\n" "string.text" msgid "-" -msgstr "" +msgstr "-" #: conditionwin.ui msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/pa-IN/sc/source/ui/src.po libreoffice-5.1.2~rc2/translations/source/pa-IN/sc/source/ui/src.po --- libreoffice-5.1.1~rc2/translations/source/pa-IN/sc/source/ui/src.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/pa-IN/sc/source/ui/src.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "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-06-26 02:54+0000\n" +"PO-Revision-Date: 2016-03-09 03:01+0000\n" "Last-Translator: system user <>\n" "Language-Team: Punjabi/Panjabi <kde-i18n-doc@kde.org>\n" "Language: pa_IN\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1435287250.000000\n" +"X-POOTLE-MTIME: 1457492508.000000\n" #: condformatdlg.src msgctxt "" @@ -2613,13 +2613,14 @@ msgstr "ਪਾਠ ਗà©à¨£" #: globstr.src +#, fuzzy msgctxt "" "globstr.src\n" "RID_GLOBSTR\n" "STR_HFCMD_DELIMITER\n" "string.text" msgid "\\" -msgstr "" +msgstr "\\" #: globstr.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/pa-IN/sd/uiconfig/simpress/ui.po libreoffice-5.1.2~rc2/translations/source/pa-IN/sd/uiconfig/simpress/ui.po --- libreoffice-5.1.1~rc2/translations/source/pa-IN/sd/uiconfig/simpress/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/pa-IN/sd/uiconfig/simpress/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 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:56+0000\n" +"PO-Revision-Date: 2016-03-09 03:28+0000\n" "Last-Translator: system user <>\n" "Language-Team: none\n" "Language: pa_IN\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1435287419.000000\n" +"X-POOTLE-MTIME: 1457494135.000000\n" #: assistentdialog.ui msgctxt "" @@ -1004,22 +1004,24 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/pa-IN/starmath/source.po libreoffice-5.1.2~rc2/translations/source/pa-IN/starmath/source.po --- libreoffice-5.1.1~rc2/translations/source/pa-IN/starmath/source.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/pa-IN/starmath/source.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\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-12 13:26+0200\n" +"POT-Creation-Date: 2016-03-29 16:07+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff -Nru libreoffice-5.1.1~rc2/translations/source/pa-IN/sw/source/core/undo.po libreoffice-5.1.2~rc2/translations/source/pa-IN/sw/source/core/undo.po --- libreoffice-5.1.1~rc2/translations/source/pa-IN/sw/source/core/undo.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/pa-IN/sw/source/core/undo.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\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 08:31+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2016-03-09 03:58+0000\n" +"Last-Translator: mangat <mnvsgr0@gmail.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: pa_IN\n" "MIME-Version: 1.0\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1431505895.000000\n" +"X-POOTLE-MTIME: 1457495906.000000\n" #: undo.src msgctxt "" @@ -793,20 +793,22 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/pa-IN/sw/source/ui/dbui.po libreoffice-5.1.2~rc2/translations/source/pa-IN/sw/source/ui/dbui.po --- libreoffice-5.1.1~rc2/translations/source/pa-IN/sw/source/ui/dbui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/pa-IN/sw/source/ui/dbui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "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 08:33+0000\n" +"PO-Revision-Date: 2016-03-09 04:01+0000\n" "Last-Translator: system user <>\n" "Language-Team: Punjabi/Panjabi <punjabi-users@lists.sf.net>\n" "Language: pa_IN\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1431505994.000000\n" +"X-POOTLE-MTIME: 1457496066.000000\n" #: dbui.src msgctxt "" @@ -488,31 +488,34 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/pa-IN/sw/source/ui/index.po libreoffice-5.1.2~rc2/translations/source/pa-IN/sw/source/ui/index.po --- libreoffice-5.1.1~rc2/translations/source/pa-IN/sw/source/ui/index.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/pa-IN/sw/source/ui/index.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,17 +3,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: 2013-09-17 14:04+0000\n" -"Last-Translator: A S <apreet.alam@gmail.com>\n" +"POT-Creation-Date: 2015-04-22 23:40+0200\n" +"PO-Revision-Date: 2016-03-09 04:02+0000\n" +"Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: pa_IN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: LibreOffice\n" +"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1379426679.0\n" +"X-POOTLE-MTIME: 1457496168.000000\n" #: cnttab.src msgctxt "" @@ -56,20 +56,22 @@ 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 +106,13 @@ msgstr "" #: cnttab.src +#, fuzzy msgctxt "" "cnttab.src\n" "STR_TOKEN_PAGE_NUMS\n" "string.text" msgid "#" -msgstr "" +msgstr "#" #: cnttab.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/pa-IN/sw/source/ui/misc.po libreoffice-5.1.2~rc2/translations/source/pa-IN/sw/source/ui/misc.po --- libreoffice-5.1.1~rc2/translations/source/pa-IN/sw/source/ui/misc.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/pa-IN/sw/source/ui/misc.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 08:33+0000\n" +"PO-Revision-Date: 2016-03-09 04:03+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: pa_IN\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1431506028.000000\n" +"X-POOTLE-MTIME: 1457496185.000000\n" #: glossary.src msgctxt "" @@ -40,12 +40,13 @@ msgstr "ਕੀ ਕੈਟਾਗਰੀ ਹਟਾਉਣੀ ਹੈ " #: glossary.src +#, fuzzy msgctxt "" "glossary.src\n" "STR_QUERY_DELETE_GROUP2\n" "string.text" msgid "?" -msgstr "" +msgstr "?" #: glossary.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/pa-IN/sw/uiconfig/swriter/ui.po libreoffice-5.1.2~rc2/translations/source/pa-IN/sw/uiconfig/swriter/ui.po --- libreoffice-5.1.1~rc2/translations/source/pa-IN/sw/uiconfig/swriter/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/pa-IN/sw/uiconfig/swriter/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 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:12+0000\n" +"PO-Revision-Date: 2016-03-09 04:16+0000\n" "Last-Translator: system user <>\n" "Language-Team: none\n" "Language: pa_IN\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1438902747.000000\n" +"X-POOTLE-MTIME: 1457496977.000000\n" #: abstractdialog.ui msgctxt "" @@ -2294,13 +2294,14 @@ msgstr "ਟੇਬਲ ਤੋਂ ਪਾਠ ਤਬਦੀਲ" #: converttexttable.ui +#, fuzzy msgctxt "" "converttexttable.ui\n" "othered\n" "text\n" "string.text" msgid "," -msgstr "" +msgstr "," #: converttexttable.ui msgctxt "" @@ -2475,13 +2476,14 @@ msgstr "" #: createaddresslist.ui +#, fuzzy msgctxt "" "createaddresslist.ui\n" "PREV\n" "label\n" "string.text" msgid "<" -msgstr "" +msgstr "<" #: createaddresslist.ui msgctxt "" @@ -2493,13 +2495,14 @@ msgstr "" #: createaddresslist.ui +#, fuzzy msgctxt "" "createaddresslist.ui\n" "NEXT\n" "label\n" "string.text" msgid ">" -msgstr "" +msgstr ">" #: createaddresslist.ui msgctxt "" @@ -4392,13 +4395,14 @@ msgstr "ਕੋਈ ਨਹੀਂ" #: fldvarpage.ui +#, fuzzy msgctxt "" "fldvarpage.ui\n" "separator\n" "text\n" "string.text" msgid "." -msgstr "" +msgstr "." #: fldvarpage.ui msgctxt "" @@ -5352,22 +5356,24 @@ 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 @@ 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 @@ msgstr "" #: mmpreparepage.ui +#, fuzzy msgctxt "" "mmpreparepage.ui\n" "prev\n" "label\n" "string.text" msgid "<" -msgstr "" +msgstr "<" #: mmpreparepage.ui msgctxt "" @@ -8636,13 +8644,14 @@ msgstr "" #: mmpreparepage.ui +#, fuzzy msgctxt "" "mmpreparepage.ui\n" "next\n" "label\n" "string.text" msgid ">" -msgstr "" +msgstr ">" #: mmpreparepage.ui #, fuzzy @@ -9488,13 +9497,14 @@ msgstr "ਸਥਿਤੀ" #: optcaptionpage.ui +#, fuzzy msgctxt "" "optcaptionpage.ui\n" "numseparator\n" "text\n" "string.text" msgid ". " -msgstr "" +msgstr ". " #: optcaptionpage.ui msgctxt "" @@ -15553,40 +15563,44 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/pa-IN/vcl/source/src.po libreoffice-5.1.2~rc2/translations/source/pa-IN/vcl/source/src.po --- libreoffice-5.1.1~rc2/translations/source/pa-IN/vcl/source/src.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/pa-IN/vcl/source/src.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 19:34+0000\n" +"PO-Revision-Date: 2016-03-09 04:20+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: pa_IN\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1449862469.000000\n" +"X-POOTLE-MTIME: 1457497242.000000\n" #: app.src msgctxt "" @@ -1175,12 +1175,13 @@ msgstr "" #: print.src +#, fuzzy msgctxt "" "print.src\n" "SV_PRINT_INVALID_TXT\n" "string.text" msgid "<ignore>" -msgstr "" +msgstr "<ignore>" #: print.src msgctxt "" @@ -1340,13 +1341,14 @@ msgstr "pc" #: units.src +#, fuzzy msgctxt "" "units.src\n" "SV_FUNIT_STRINGS\n" "\"\n" "itemlist.text" msgid "\"" -msgstr "" +msgstr "\"" #: units.src msgctxt "" @@ -1367,13 +1369,14 @@ msgstr "ਇੰਚ" #: units.src +#, fuzzy msgctxt "" "units.src\n" "SV_FUNIT_STRINGS\n" "'\n" "itemlist.text" msgid "'" -msgstr "" +msgstr "'" #: units.src msgctxt "" @@ -1457,13 +1460,14 @@ msgstr "" #: units.src +#, fuzzy msgctxt "" "units.src\n" "SV_FUNIT_STRINGS\n" "°\n" "itemlist.text" msgid "°" -msgstr "" +msgstr "°" #: units.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/pa-IN/wizards/source/formwizard.po libreoffice-5.1.2~rc2/translations/source/pa-IN/wizards/source/formwizard.po --- libreoffice-5.1.1~rc2/translations/source/pa-IN/wizards/source/formwizard.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/pa-IN/wizards/source/formwizard.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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 08:37+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2016-03-09 04:26+0000\n" +"Last-Translator: mangat <mnvsgr0@gmail.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: pa_IN\n" "MIME-Version: 1.0\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1431506230.000000\n" +"X-POOTLE-MTIME: 1457497591.000000\n" #: dbwizres.src msgctxt "" @@ -2528,12 +2528,13 @@ msgstr "" #: dbwizres.src +#, fuzzy msgctxt "" "dbwizres.src\n" "RID_DB_TABLE_WIZARD_START + 22\n" "string.text" msgid "-" -msgstr "" +msgstr "-" #: dbwizres.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/pl/basic/source/classes.po libreoffice-5.1.2~rc2/translations/source/pl/basic/source/classes.po --- libreoffice-5.1.1~rc2/translations/source/pl/basic/source/classes.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/pl/basic/source/classes.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-08-25 12:33+0200\n" -"PO-Revision-Date: 2016-02-10 21:43+0000\n" -"Last-Translator: Konrad Kmieciak <raknor@wp.pl>\n" +"PO-Revision-Date: 2016-03-26 13:11+0000\n" +"Last-Translator: Mateusz Zasuwik <mzasuwik@gmail.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: pl\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1455140627.000000\n" +"X-POOTLE-MTIME: 1458997884.000000\n" #: sb.src msgctxt "" @@ -683,7 +683,6 @@ msgstr "BÅ‚Ä…d przy automatyzacji OLE." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -693,7 +692,6 @@ msgstr "Ta akcja nie jest obsÅ‚ugiwana przez podany obiekt." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -703,7 +701,6 @@ msgstr "Nazwane argumenty nie sÄ… obsÅ‚ugiwane przez podany obiekt." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -713,7 +710,6 @@ msgstr "Bieżące ustawienie narodowe nie jest obsÅ‚ugiwane przez podany obiekt." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -723,7 +719,6 @@ msgstr "Nie znaleziono nazwanego argumentu." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -733,7 +728,6 @@ msgstr "Argument nie jest opcjonalny." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -743,7 +737,6 @@ msgstr "NieprawidÅ‚owa liczba argumentów." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -753,7 +746,6 @@ msgstr "Obiekt nie jest listÄ…." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -763,7 +755,6 @@ msgstr "NieprawidÅ‚owa liczba porzÄ…dkowa." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -773,7 +764,6 @@ msgstr "Podanej funkcji DLL nie znaleziono." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -783,7 +773,6 @@ msgstr "NieprawidÅ‚owy format zawartoÅ›ci schowka." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -793,7 +782,6 @@ msgstr "Obiekt nie ma tej wÅ‚aÅ›ciwoÅ›ci." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -803,7 +791,6 @@ msgstr "Obiekt nie ma tej metody." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -813,7 +800,6 @@ msgstr "Brakuje wymaganego argumentu." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -823,7 +809,6 @@ msgstr "NieprawidÅ‚owa liczba argumentów." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -833,7 +818,6 @@ msgstr "BÅ‚Ä…d wykonania metody." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -843,7 +827,6 @@ msgstr "Nie można ustawić wÅ‚aÅ›ciwoÅ›ci." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -853,7 +836,6 @@ msgstr "Nie można ustalić wÅ‚aÅ›ciwoÅ›ci." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -863,7 +845,6 @@ msgstr "Nieoczekiwany symbol: $(ARG1)." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -873,7 +854,6 @@ msgstr "Oczekiwano: $(ARG1)." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -883,7 +863,6 @@ msgstr "Oczekiwano symbolu." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -893,7 +872,6 @@ msgstr "Oczekiwano zmiennej." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -903,7 +881,6 @@ msgstr "Oczekiwano etykiety." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -913,7 +890,6 @@ msgstr "Nie można zastosować wartoÅ›ci." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -923,7 +899,6 @@ msgstr "Zmienna $(ARG1) zostaÅ‚a już zdefiniowana." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -933,7 +908,6 @@ msgstr "Procedura lub funkcja zostaÅ‚a już zdefiniowana $(ARG1)." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -943,7 +917,6 @@ msgstr "Etykieta $(ARG1) już jest zdefiniowana." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -953,7 +926,6 @@ msgstr "Zmiennej $(ARG1) nie znaleziono." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -963,7 +935,6 @@ msgstr "Nie znaleziono tablicy lub procedury $(ARG1)." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -973,7 +944,6 @@ msgstr "Nie znaleziono procedury $(ARG1)." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -983,7 +953,6 @@ msgstr "Etykieta $(ARG1) nie jest zdefiniowana." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -993,7 +962,6 @@ msgstr "Nieznany typ danych $(ARG1)." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -1003,7 +971,6 @@ msgstr "Oczekiwano zakoÅ„czenia $(ARG1)." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -1013,7 +980,6 @@ msgstr "Otwarty blok instrukcji: brak $(ARG1)." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -1023,7 +989,6 @@ msgstr "Niezgodność nawiasów." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -1033,7 +998,6 @@ msgstr "Symbol $(ARG1) zostaÅ‚ już inaczej zdefiniowany." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -1043,7 +1007,6 @@ msgstr "Parametry nie odpowiadajÄ… procedurze." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -1053,7 +1016,6 @@ msgstr "NieprawidÅ‚owy znak w liczbie." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -1063,7 +1025,6 @@ msgstr "TablicÄ™ należy zwymiarować." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -1073,7 +1034,6 @@ msgstr "Else/Endif bez If." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -1083,7 +1043,6 @@ msgstr "$(ARG1) jest niedozwolony w procedurze." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -1093,7 +1052,6 @@ msgstr "$(ARG1) jest niedozwolony poza procedurÄ…." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -1103,7 +1061,6 @@ msgstr "Dane wymiarowe nie sÄ… zgodne." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -1113,7 +1070,6 @@ msgstr "Nieznana opcja: $(ARG1)." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -1123,7 +1079,6 @@ msgstr "StaÅ‚a $(ARG1) zdefiniowana ponownie." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -1133,7 +1088,6 @@ msgstr "Program jest zbyt duży." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" diff -Nru libreoffice-5.1.1~rc2/translations/source/pl/cui/uiconfig/ui.po libreoffice-5.1.2~rc2/translations/source/pl/cui/uiconfig/ui.po --- libreoffice-5.1.1~rc2/translations/source/pl/cui/uiconfig/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/pl/cui/uiconfig/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: LibO 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-10 21:22+0000\n" -"Last-Translator: Konrad Kmieciak <raknor@wp.pl>\n" +"PO-Revision-Date: 2016-03-26 15:11+0000\n" +"Last-Translator: Mateusz Zasuwik <mzasuwik@gmail.com>\n" "Language-Team: none\n" "Language: pl\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1455139336.000000\n" +"X-POOTLE-MTIME: 1459005099.000000\n" #: aboutconfigdialog.ui msgctxt "" @@ -179,14 +179,13 @@ msgstr "%PRODUCTNAME to nowoczesny i Å‚atwy w użyciu zestaw programów biurowych, do których należą m.in. edytor tekstów, arkusz kalkulacyjny, program do prezentacji i wiÄ™cej." #: aboutdialog.ui -#, fuzzy msgctxt "" "aboutdialog.ui\n" "copyright\n" "label\n" "string.text" msgid "Copyright © 2000–2016 LibreOffice contributors." -msgstr "Copyright © 2000 - 2015. Prawa autorskie należą do autorów LibreOffice." +msgstr "Copyright © 2000–2016. Prawa autorskie należą do autorów LibreOffice." #: aboutdialog.ui msgctxt "" @@ -11351,7 +11350,7 @@ "label\n" "string.text" msgid "_Send OS version & simple hardware info." -msgstr "" +msgstr "UdostÄ™pnij podstawowe informacje o _systemie oraz o sprzÄ™cie komputerowym." #: optonlineupdatepage.ui msgctxt "" @@ -11360,7 +11359,7 @@ "tooltip_text\n" "string.text" msgid "This information lets us optimize for your hardware & OS." -msgstr "" +msgstr "Informacje te pozwolÄ… zoptymalizować LibreOffice pod twój system i sprzÄ™t komputerowy." #: optonlineupdatepage.ui msgctxt "" @@ -11369,7 +11368,7 @@ "label\n" "string.text" msgid "User Agent:" -msgstr "" +msgstr "Agent użytkownika:" #: optonlineupdatepage.ui msgctxt "" @@ -11378,7 +11377,7 @@ "label\n" "string.text" msgid "Hit apply to update" -msgstr "" +msgstr "WciÅ›nij \"Zastosuj\", aby zaktualizować" #: optonlineupdatepage.ui msgctxt "" @@ -11405,7 +11404,7 @@ "label\n" "string.text" msgid "Allow use of Software Interpreter (even when OpenCL is not available)" -msgstr "" +msgstr "Zezwól na użycie Interpretatora Oprogramowani (nawet jeÅ›li OpenCL nie jest dostÄ™pny)" #: optopenclpage.ui msgctxt "" @@ -15650,14 +15649,13 @@ msgstr "Znaki:" #: specialcharacters.ui -#, fuzzy msgctxt "" "specialcharacters.ui\n" "decimallabel\n" "label\n" "string.text" msgid "Decimal:" -msgstr "DziesiÄ™_tny" +msgstr "DziesiÄ™tny:" #: specialcharacters.ui msgctxt "" @@ -15666,7 +15664,7 @@ "label\n" "string.text" msgid "Hexadecimal:" -msgstr "" +msgstr "Heksadecymalny:" #: spellingdialog.ui msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/pl/dbaccess/source/ui/dlg.po libreoffice-5.1.2~rc2/translations/source/pl/dbaccess/source/ui/dlg.po --- libreoffice-5.1.1~rc2/translations/source/pl/dbaccess/source/ui/dlg.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/pl/dbaccess/source/ui/dlg.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-01 16:30+0000\n" +"PO-Revision-Date: 2016-03-26 13:29+0000\n" "Last-Translator: Mateusz Zasuwik <mzasuwik@gmail.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: pl\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1438446630.000000\n" +"X-POOTLE-MTIME: 1458998982.000000\n" #: AutoControls.src msgctxt "" @@ -86,7 +86,7 @@ "STR_COMMONURL\n" "string.text" msgid "Datasource URL (e.g. postgresql://host:port/database)" -msgstr "" +msgstr "URL źródÅ‚a danych (np. postgresql://host:port/database)" #: AutoControls.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/pl/desktop/source/deployment/gui.po libreoffice-5.1.2~rc2/translations/source/pl/desktop/source/deployment/gui.po --- libreoffice-5.1.1~rc2/translations/source/pl/desktop/source/deployment/gui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/pl/desktop/source/deployment/gui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-08-25 12:33+0200\n" -"PO-Revision-Date: 2014-11-22 17:10+0000\n" -"Last-Translator: Mateusz Zasuwik <mzasuwik@gmail.com>\n" +"PO-Revision-Date: 2016-03-28 12:34+0000\n" +"Last-Translator: MichaÅ‚ Newiak <manveru1986@gmail.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: pl\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1416676248.000000\n" +"X-POOTLE-MTIME: 1459168451.000000\n" #: dp_gui_dialog.src msgctxt "" @@ -126,7 +126,7 @@ "RID_STR_EXIT_BTN\n" "string.text" msgid "Quit" -msgstr "Zamknij" +msgstr "ZakoÅ„cz" #: dp_gui_dialog.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/pl/desktop/uiconfig/ui.po libreoffice-5.1.2~rc2/translations/source/pl/desktop/uiconfig/ui.po --- libreoffice-5.1.1~rc2/translations/source/pl/desktop/uiconfig/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/pl/desktop/uiconfig/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: LibO 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: 2014-12-25 09:20+0000\n" -"Last-Translator: MichaÅ‚ Newiak <manveru1986@gmail.com>\n" +"PO-Revision-Date: 2016-03-26 13:30+0000\n" +"Last-Translator: Mateusz Zasuwik <mzasuwik@gmail.com>\n" "Language-Team: none\n" "Language: pl\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1419499232.000000\n" +"X-POOTLE-MTIME: 1458999003.000000\n" #: cmdlinehelp.ui msgctxt "" @@ -215,7 +215,6 @@ msgstr "2." #: licensedialog.ui -#, fuzzy msgctxt "" "licensedialog.ui\n" "label4\n" diff -Nru libreoffice-5.1.1~rc2/translations/source/pl/filter/source/config/fragments/filters.po libreoffice-5.1.2~rc2/translations/source/pl/filter/source/config/fragments/filters.po --- libreoffice-5.1.1~rc2/translations/source/pl/filter/source/config/fragments/filters.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/pl/filter/source/config/fragments/filters.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\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 19:10+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2016-03-26 13:39+0000\n" +"Last-Translator: Mateusz Zasuwik <mzasuwik@gmail.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: pl\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1449861007.000000\n" +"X-POOTLE-MTIME: 1458999552.000000\n" #: AbiWord.xcu msgctxt "" @@ -500,7 +500,7 @@ "UIName\n" "value.text" msgid "Legacy Mac Bitmap" -msgstr "" +msgstr "Starsza mapa bitowa Mac" #: MWAW_Database.xcu msgctxt "" @@ -509,7 +509,7 @@ "UIName\n" "value.text" msgid "Legacy Mac Database" -msgstr "" +msgstr "Starsza baza danych Mac" #: MWAW_Drawing.xcu msgctxt "" @@ -518,7 +518,7 @@ "UIName\n" "value.text" msgid "Legacy Mac Drawing" -msgstr "" +msgstr "Starszy rysunek Mac" #: MWAW_Presentation.xcu msgctxt "" @@ -527,7 +527,7 @@ "UIName\n" "value.text" msgid "Legacy Mac Presentation" -msgstr "" +msgstr "Starsza prezentacja Mac" #: MWAW_Spreadsheet.xcu msgctxt "" @@ -536,7 +536,7 @@ "UIName\n" "value.text" msgid "Legacy Mac Spreadsheet" -msgstr "" +msgstr "Starszy arkusz kalkulacyjny Mac" #: MWAW_Text_Document.xcu msgctxt "" @@ -545,7 +545,7 @@ "UIName\n" "value.text" msgid "Legacy Mac Text Document" -msgstr "" +msgstr "Starszy dokument tekstowy Mac" #: MacWrite.xcu msgctxt "" @@ -710,14 +710,13 @@ 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 "Dokument tekstowy OpenDocument" +msgstr "Dokument tekstowy Palm" #: Plucker_eBook.xcu msgctxt "" @@ -1899,7 +1898,6 @@ msgstr "Szablon HTML OpenOffice.org 1.0" #: writer_web_jpg_Export.xcu -#, fuzzy msgctxt "" "writer_web_jpg_Export.xcu\n" "writer_web_jpg_Export\n" @@ -1918,7 +1916,6 @@ msgstr "PDF - Portable Document Format" #: writer_web_png_Export.xcu -#, fuzzy msgctxt "" "writer_web_png_Export.xcu\n" "writer_web_png_Export\n" diff -Nru libreoffice-5.1.1~rc2/translations/source/pl/formula/source/core/resource.po libreoffice-5.1.2~rc2/translations/source/pl/formula/source/core/resource.po --- libreoffice-5.1.1~rc2/translations/source/pl/formula/source/core/resource.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/pl/formula/source/core/resource.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\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-29 16:07+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -3143,7 +3143,7 @@ "SC_OPCODE_WEEKNUM_OOO\n" "string.text" msgid "WEEKNUM_OOO" -msgstr "" +msgstr "NUM.TYG_OOO" #: core_resource.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/pl/fpicker/source/office.po libreoffice-5.1.2~rc2/translations/source/pl/fpicker/source/office.po --- libreoffice-5.1.1~rc2/translations/source/pl/fpicker/source/office.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/pl/fpicker/source/office.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\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-14 21:50+0000\n" -"Last-Translator: Konrad Kmieciak <raknor@wp.pl>\n" +"PO-Revision-Date: 2016-03-26 15:13+0000\n" +"Last-Translator: Mateusz Zasuwik <mzasuwik@gmail.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: pl\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1423950642.000000\n" +"X-POOTLE-MTIME: 1459005193.000000\n" #: OfficeFilePicker.src msgctxt "" @@ -251,6 +251,8 @@ "Are you sure you want to delete the service?\n" "\"$servicename$\"" msgstr "" +"Czy na pewno chcesz usunąć usÅ‚ugÄ™?\n" +"\"$servicename$\"" #: iodlg.src msgctxt "" @@ -258,7 +260,7 @@ "STR_SVT_ROOTLABEL\n" "string.text" msgid "Root" -msgstr "" +msgstr "Root" #: iodlg.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/pl/fpicker/uiconfig/ui.po libreoffice-5.1.2~rc2/translations/source/pl/fpicker/uiconfig/ui.po --- libreoffice-5.1.1~rc2/translations/source/pl/fpicker/uiconfig/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/pl/fpicker/uiconfig/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\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 05:32+0000\n" -"Last-Translator: Konrad Kmieciak <raknor@wp.pl>\n" +"PO-Revision-Date: 2016-03-26 13:44+0000\n" +"Last-Translator: Mateusz Zasuwik <mzasuwik@gmail.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: pl\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1429939978.000000\n" +"X-POOTLE-MTIME: 1458999888.000000\n" #: explorerfiledialog.ui msgctxt "" @@ -149,7 +149,7 @@ "title\n" "string.text" msgid "Remote Files" -msgstr "" +msgstr "Pliki z_dalne" #: remotefilesdialog.ui msgctxt "" @@ -158,7 +158,7 @@ "label\n" "string.text" msgid "Service:" -msgstr "" +msgstr "UsÅ‚uga:" #: remotefilesdialog.ui msgctxt "" @@ -167,10 +167,9 @@ "label\n" "string.text" msgid "Add service" -msgstr "" +msgstr "Dodaj usÅ‚ugÄ™" #: remotefilesdialog.ui -#, fuzzy msgctxt "" "remotefilesdialog.ui\n" "new_folder\n" @@ -180,7 +179,6 @@ msgstr "Utwórz nowy folder" #: remotefilesdialog.ui -#, fuzzy msgctxt "" "remotefilesdialog.ui\n" "new_folder\n" @@ -196,17 +194,16 @@ "label\n" "string.text" msgid "Filter" -msgstr "" +msgstr "Filtr" #: remotefilesdialog.ui -#, fuzzy msgctxt "" "remotefilesdialog.ui\n" "nameLabel\n" "label\n" "string.text" msgid "File name" -msgstr "_Nazwa pliku:" +msgstr "Nazwa pliku" #: remotefilesdialog.ui msgctxt "" @@ -215,7 +212,7 @@ "label\n" "string.text" msgid "_Edit service" -msgstr "" +msgstr "_Edytuj usÅ‚ugÄ™" #: remotefilesdialog.ui msgctxt "" @@ -224,7 +221,7 @@ "label\n" "string.text" msgid "_Delete service" -msgstr "" +msgstr "UsuÅ„ usÅ‚ugÄ™" #: remotefilesdialog.ui msgctxt "" @@ -233,4 +230,4 @@ "label\n" "string.text" msgid "_Change password" -msgstr "" +msgstr "ZmieÅ„ hasÅ‚o" diff -Nru libreoffice-5.1.1~rc2/translations/source/pl/framework/source/classes.po libreoffice-5.1.2~rc2/translations/source/pl/framework/source/classes.po --- libreoffice-5.1.1~rc2/translations/source/pl/framework/source/classes.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/pl/framework/source/classes.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\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-12-25 09:20+0000\n" -"Last-Translator: MichaÅ‚ Newiak <manveru1986@gmail.com>\n" +"PO-Revision-Date: 2016-03-26 13:45+0000\n" +"Last-Translator: Mateusz Zasuwik <mzasuwik@gmail.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: pl\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1419499259.000000\n" +"X-POOTLE-MTIME: 1458999950.000000\n" #: resource.src msgctxt "" @@ -148,7 +148,7 @@ "STR_OPEN_REMOTE\n" "string.text" msgid "Open remote file" -msgstr "" +msgstr "Otwórz plik zdalny" #: resource.src msgctxt "" @@ -156,7 +156,7 @@ "STR_REMOTE_TITLE\n" "string.text" msgid " (Remote)" -msgstr "" +msgstr " (Zdalny)" #: resource.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/pl/helpcontent2/source/text/scalc.po libreoffice-5.1.2~rc2/translations/source/pl/helpcontent2/source/text/scalc.po --- libreoffice-5.1.1~rc2/translations/source/pl/helpcontent2/source/text/scalc.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/pl/helpcontent2/source/text/scalc.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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-31 12:42+0000\n" -"Last-Translator: Konrad Kmieciak <raknor@wp.pl>\n" +"PO-Revision-Date: 2016-03-27 20:22+0000\n" +"Last-Translator: MichaÅ‚ Newiak <manveru1986@gmail.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: pl\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1441024974.000000\n" +"X-POOTLE-MTIME: 1459110160.000000\n" #: main0000.xhp msgctxt "" @@ -104,7 +104,6 @@ msgstr "Plik" #: main0101.xhp -#, fuzzy msgctxt "" "main0101.xhp\n" "hd_id3156023\n" @@ -113,7 +112,6 @@ msgstr "<link href=\"text/scalc/main0101.xhp\" name=\"Plik\">Plik</link>" #: main0101.xhp -#, fuzzy msgctxt "" "main0101.xhp\n" "par_id3151112\n" diff -Nru libreoffice-5.1.1~rc2/translations/source/pl/helpcontent2/source/text/shared/01.po libreoffice-5.1.2~rc2/translations/source/pl/helpcontent2/source/text/shared/01.po --- libreoffice-5.1.1~rc2/translations/source/pl/helpcontent2/source/text/shared/01.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/pl/helpcontent2/source/text/shared/01.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\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" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2016-03-28 12:33+0000\n" +"Last-Translator: MichaÅ‚ Newiak <manveru1986@gmail.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: pl\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1452604399.000000\n" +"X-POOTLE-MTIME: 1459168435.000000\n" #: 01010000.xhp msgctxt "" @@ -45115,7 +45115,7 @@ "par_id9186681\n" "help.text" msgid "The HTML formatted copy is written to the temporary files folder that you can select in <item type=\"menuitem\"><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME - Paths</item>. When you quit %PRODUCTNAME, the HTML file will be deleted." -msgstr "Kopia w formacie HTML jest zapisywana w domyÅ›lnym systemowym folderze plików tymczasowych. Folder można skonfigurować w menu <item type=\"menuitem\"><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME – Preferencje</caseinline><defaultinline>NarzÄ™dzia – Opcje</defaultinline></switchinline> – %PRODUCTNAME – Åšcieżka</item>. Po zamkniÄ™ciu programu %PRODUCTNAME plik HTML zostanie usuniÄ™ty." +msgstr "Kopia w formacie HTML jest zapisywana w domyÅ›lnym systemowym folderze plików tymczasowych. Folder można skonfigurować w menu <item type=\"menuitem\"><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME – Preferencje</caseinline><defaultinline>NarzÄ™dzia – Opcje</defaultinline></switchinline> – %PRODUCTNAME – Åšcieżka</item>. Po zakoÅ„czeniu programu %PRODUCTNAME plik HTML zostanie usuniÄ™ty." #: webhtml.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/pl/helpcontent2/source/text/shared/02.po libreoffice-5.1.2~rc2/translations/source/pl/helpcontent2/source/text/shared/02.po --- libreoffice-5.1.1~rc2/translations/source/pl/helpcontent2/source/text/shared/02.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/pl/helpcontent2/source/text/shared/02.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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 11:04+0000\n" -"Last-Translator: Konrad Kmieciak <raknor@wp.pl>\n" +"PO-Revision-Date: 2016-03-28 12:34+0000\n" +"Last-Translator: MichaÅ‚ Newiak <manveru1986@gmail.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: pl\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1441105453.000000\n" +"X-POOTLE-MTIME: 1459168440.000000\n" #: 01110000.xhp msgctxt "" @@ -15895,7 +15895,7 @@ "54\n" "help.text" msgid "<ahelp hid=\"cui/ui/fmsearchdialog/close\">Closes the dialog. The settings of the last search will be saved until you quit <item type=\"productname\">%PRODUCTNAME</item>.</ahelp>" -msgstr "<ahelp hid=\"cui/ui/fmsearchdialog/close\">Zamyka okno dialogowe. Ustawienia ostatniego wyszukiwania sÄ… zapisywane do chwili zamkniÄ™cia programu <item type=\"productname\">%PRODUCTNAME</item>.</ahelp>" +msgstr "<ahelp hid=\"cui/ui/fmsearchdialog/close\">Zamyka okno dialogowe. Ustawienia ostatniego wyszukiwania sÄ… zapisywane do chwili zakoÅ„czenia programu <item type=\"productname\">%PRODUCTNAME</item>.</ahelp>" #: 12100200.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/pl/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-5.1.2~rc2/translations/source/pl/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-5.1.1~rc2/translations/source/pl/officecfg/registry/data/org/openoffice/Office/UI.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/pl/officecfg/registry/data/org/openoffice/Office/UI.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\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-30 18:17+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2016-03-26 15:09+0000\n" +"Last-Translator: Mateusz Zasuwik <mzasuwik@gmail.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: pl\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1454177844.000000\n" +"X-POOTLE-MTIME: 1459004985.000000\n" #: BaseWindowState.xcu msgctxt "" @@ -4766,7 +4766,7 @@ "Label\n" "value.text" msgid "Show/Hide Axis Description(s)" -msgstr "Pokaż/Ukryj opisy osi" +msgstr "Pokaż/Ukryj opis(y) osi" #: ChartCommands.xcu msgctxt "" @@ -5903,7 +5903,6 @@ msgstr "S~lajd" #: DrawImpressCommands.xcu -#, fuzzy msgctxt "" "DrawImpressCommands.xcu\n" "..DrawImpressCommands.UserInterface.Commands..uno:SlideNavigateMenu\n" @@ -5913,14 +5912,13 @@ msgstr "Nawigator" #: DrawImpressCommands.xcu -#, fuzzy msgctxt "" "DrawImpressCommands.xcu\n" "..DrawImpressCommands.UserInterface.Commands..uno:SlideMoveMenu\n" "Label\n" "value.text" msgid "Move" -msgstr "Tryb" +msgstr "PrzenieÅ›" #: DrawImpressCommands.xcu msgctxt "" @@ -6337,7 +6335,6 @@ msgstr "Po~dglÄ…d" #: DrawImpressCommands.xcu -#, fuzzy msgctxt "" "DrawImpressCommands.xcu\n" "..DrawImpressCommands.UserInterface.Commands..uno:CustomAnimation\n" @@ -6356,7 +6353,6 @@ msgstr "Schematy animacji..." #: DrawImpressCommands.xcu -#, fuzzy msgctxt "" "DrawImpressCommands.xcu\n" "..DrawImpressCommands.UserInterface.Commands..uno:SlideChangeWindow\n" @@ -6951,7 +6947,6 @@ msgstr "W~staw punkt/liniÄ™ przyciÄ…gania..." #: DrawImpressCommands.xcu -#, fuzzy msgctxt "" "DrawImpressCommands.xcu\n" "..DrawImpressCommands.UserInterface.Commands..uno:ShowRuler\n" @@ -6970,14 +6965,13 @@ msgstr "Wars~twa..." #: DrawImpressCommands.xcu -#, fuzzy msgctxt "" "DrawImpressCommands.xcu\n" "..DrawImpressCommands.UserInterface.Commands..uno:ModifyPage\n" "Label\n" "value.text" msgid "Slide ~Layout" -msgstr "UkÅ‚ad slajdu" +msgstr "UkÅ‚ad s~lajdu" #: DrawImpressCommands.xcu msgctxt "" @@ -7130,7 +7124,7 @@ "Label\n" "value.text" msgid "Display Mode" -msgstr "" +msgstr "Tryb wyÅ›wietlania" #: DrawImpressCommands.xcu msgctxt "" @@ -7139,7 +7133,7 @@ "Label\n" "value.text" msgid "Toggle Tab Bar Visibility" -msgstr "" +msgstr "PrzeÅ‚Ä…cznik widoku paska zakÅ‚adek" #: DrawImpressCommands.xcu msgctxt "" @@ -7148,7 +7142,7 @@ "ContextLabel\n" "value.text" msgid "Modes Tab Bar" -msgstr "" +msgstr "Tryby paska zakÅ‚adek" #: DrawImpressCommands.xcu msgctxt "" @@ -7754,14 +7748,13 @@ msgstr "Edycja tekstu przez dwukrotne klikniÄ™cie" #: DrawImpressCommands.xcu -#, fuzzy msgctxt "" "DrawImpressCommands.xcu\n" "..DrawImpressCommands.UserInterface.Commands..uno:SaveGraphic\n" "Label\n" "value.text" msgid "~Save..." -msgstr "Zapisz..." +msgstr "Zapi~sz..." #: DrawImpressCommands.xcu msgctxt "" @@ -7773,7 +7766,6 @@ msgstr "Rozmiar ~oryginalny" #: DrawImpressCommands.xcu -#, fuzzy msgctxt "" "DrawImpressCommands.xcu\n" "..DrawImpressCommands.UserInterface.Commands..uno:ChangePicture\n" @@ -7783,7 +7775,6 @@ msgstr "~ZamieÅ„..." #: DrawImpressCommands.xcu -#, fuzzy msgctxt "" "DrawImpressCommands.xcu\n" "..DrawImpressCommands.UserInterface.Commands..uno:CompressGraphic\n" @@ -7817,7 +7808,7 @@ "Label\n" "value.text" msgid "Display Master Background" -msgstr "" +msgstr "WyÅ›wietl tÅ‚o wzorca" #: DrawImpressCommands.xcu msgctxt "" @@ -7826,7 +7817,7 @@ "Label\n" "value.text" msgid "Display Master Objects" -msgstr "" +msgstr "WyÅ›wietl obiekty wzorca" #: DrawImpressCommands.xcu msgctxt "" @@ -7988,7 +7979,7 @@ "Label\n" "value.text" msgid "Zoom & Pan (CTRL to Zoom Out, SHIFT to Pan)" -msgstr "Kadrowanie (CTRL, aby oddalić. SHIFT, aby przesunąć)" +msgstr "Zmiana rozmiaru i przesuwanie (CTRL, aby zmniejszyć. SHIFT, aby przesunąć)" #: DrawImpressCommands.xcu msgctxt "" @@ -8528,7 +8519,7 @@ "Label\n" "value.text" msgid "Go to First Page/Slide" -msgstr "" +msgstr "Przejdź do pierwszej strony/slajdu" #: DrawImpressCommands.xcu msgctxt "" @@ -8537,7 +8528,7 @@ "ContextLabel\n" "value.text" msgid "To First Page/Slide" -msgstr "" +msgstr "Do pierwszej strony/slajdu" #: DrawImpressCommands.xcu msgctxt "" @@ -8546,7 +8537,7 @@ "Label\n" "value.text" msgid "Go to Previous Page/Slide" -msgstr "" +msgstr "Przejdź do poprzedniej strony/slajdu" #: DrawImpressCommands.xcu msgctxt "" @@ -8555,7 +8546,7 @@ "ContextLabel\n" "value.text" msgid "To Previous Page/Slide" -msgstr "" +msgstr "Do poprzedniej strony/slajdu" #: DrawImpressCommands.xcu msgctxt "" @@ -8564,7 +8555,7 @@ "Label\n" "value.text" msgid "Go to Next Page/Slide" -msgstr "" +msgstr "Przejdź do nastÄ™pnej strony/slajdu" #: DrawImpressCommands.xcu msgctxt "" @@ -8573,7 +8564,7 @@ "ContextLabel\n" "value.text" msgid "To Next Page/Slide" -msgstr "" +msgstr "Do nastÄ™pnej strony/slajdu" #: DrawImpressCommands.xcu msgctxt "" @@ -8582,17 +8573,16 @@ "Label\n" "value.text" msgid "Go to Last Page" -msgstr "" +msgstr "Przejdź do ostatniej strony" #: DrawImpressCommands.xcu -#, fuzzy msgctxt "" "DrawImpressCommands.xcu\n" "..DrawImpressCommands.UserInterface.Popups..uno:LastPage\n" "ContextLabel\n" "value.text" msgid "To Last Page/Slide" -msgstr "Format strony/slajdu" +msgstr "Do ostatniej strony/slajdu" #: DrawImpressCommands.xcu msgctxt "" @@ -8601,7 +8591,7 @@ "Label\n" "value.text" msgid "Move Page/Slide to Start" -msgstr "" +msgstr "PrzenieÅ› stronÄ™/slajd na poczÄ…tek" #: DrawImpressCommands.xcu msgctxt "" @@ -8610,7 +8600,7 @@ "ContextLabel\n" "value.text" msgid "Page/Slide to Start" -msgstr "" +msgstr "Strona/slajd na poczÄ…tek" #: DrawImpressCommands.xcu msgctxt "" @@ -8619,7 +8609,7 @@ "Label\n" "value.text" msgid "Move Page/Slide Up" -msgstr "" +msgstr "PrzenieÅ› stronÄ™/slajd w górÄ™" #: DrawImpressCommands.xcu msgctxt "" @@ -8628,7 +8618,7 @@ "ContextLabel\n" "value.text" msgid "Page/Slide Up" -msgstr "" +msgstr "Strona/slajd w górÄ™" #: DrawImpressCommands.xcu msgctxt "" @@ -8637,7 +8627,7 @@ "Label\n" "value.text" msgid "Move Page/Slide Down" -msgstr "" +msgstr "PrzenieÅ› stronÄ™/slajd w dół" #: DrawImpressCommands.xcu msgctxt "" @@ -8646,7 +8636,7 @@ "ContextLabel\n" "value.text" msgid "Page/Slide Down" -msgstr "" +msgstr "Strona/slajd w dół" #: DrawImpressCommands.xcu msgctxt "" @@ -8655,7 +8645,7 @@ "Label\n" "value.text" msgid "Move Page/Slide to End" -msgstr "" +msgstr "PrzenieÅ› stronÄ™/slajd na koniec" #: DrawImpressCommands.xcu msgctxt "" @@ -8664,7 +8654,7 @@ "ContextLabel\n" "value.text" msgid "Page/Slide to End" -msgstr "" +msgstr "Strona/slajd na koniec" #: DrawWindowState.xcu msgctxt "" @@ -11724,7 +11714,7 @@ "Label\n" "value.text" msgid "Honeycomb" -msgstr "" +msgstr "Plaster miodu" #: Effects.xcu msgctxt "" @@ -12456,7 +12446,6 @@ msgstr "Formanty" #: GenericCommands.xcu -#, fuzzy msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Commands..uno:InsertFormMenu\n" @@ -14812,7 +14801,7 @@ "Label\n" "value.text" msgid "Gr~id and Helplines" -msgstr "" +msgstr "S~iatka i linie pomocnicze" #: GenericCommands.xcu msgctxt "" @@ -14878,14 +14867,13 @@ msgstr "Zapi~sz na serwerze zdalnym" #: GenericCommands.xcu -#, fuzzy msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Commands..uno:SaveAsRemote\n" "PopupLabel\n" "value.text" msgid "Save Remote File..." -msgstr "~Otwórz plik zdalny..." +msgstr "Otwórz plik zdalny..." #: GenericCommands.xcu msgctxt "" @@ -15043,7 +15031,6 @@ msgstr "PÅ‚ynne przejÅ›cie" #: GenericCommands.xcu -#, fuzzy msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Commands..uno:ToggleObjectBezierMode\n" @@ -15053,7 +15040,6 @@ msgstr "Edycja punktów" #: GenericCommands.xcu -#, fuzzy msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Commands..uno:ToggleObjectBezierMode\n" @@ -15699,7 +15685,7 @@ "Label\n" "value.text" msgid "~New Style..." -msgstr "" +msgstr "~Nowy styl..." #: GenericCommands.xcu msgctxt "" @@ -16383,10 +16369,9 @@ "Label\n" "value.text" msgid "~Object and Shape" -msgstr "" +msgstr "~Obiekt i ksztaÅ‚t" #: GenericCommands.xcu -#, fuzzy msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Commands..uno:FormatImageFiltersMenu\n" @@ -16558,34 +16543,31 @@ msgstr "K~sztaÅ‚t" #: GenericCommands.xcu -#, fuzzy msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Commands..uno:ShapesLineMenu\n" "Label\n" "value.text" msgid "~Line" -msgstr "Linia" +msgstr "~Linia" #: GenericCommands.xcu -#, fuzzy msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Commands..uno:ShapesBasicMenu\n" "Label\n" "value.text" msgid "~Basic" -msgstr "Podstawowe" +msgstr "Podsta~wowe" #: GenericCommands.xcu -#, fuzzy msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Commands..uno:ShapesSymbolMenu\n" "Label\n" "value.text" msgid "~Symbol" -msgstr "~Symbole…" +msgstr "~Symbol" #: GenericCommands.xcu msgctxt "" @@ -18691,7 +18673,7 @@ "Label\n" "value.text" msgid "Toggle Design Mode" -msgstr "" +msgstr "PrzeÅ‚Ä…cz tryb projektu" #: GenericCommands.xcu msgctxt "" @@ -18700,7 +18682,7 @@ "ContextLabel\n" "value.text" msgid "Design Mode" -msgstr "" +msgstr "Tryb projektu" #: GenericCommands.xcu msgctxt "" @@ -22309,7 +22291,7 @@ "Label\n" "value.text" msgid "Insert Table of Contents, Index or Bibliography" -msgstr "" +msgstr "Wstaw spis treÅ›ci, indeks lub bibliografiÄ™" #: WriterCommands.xcu msgctxt "" @@ -22318,7 +22300,7 @@ "ContextLabel\n" "value.text" msgid "Table of Contents, ~Index or Bibliography..." -msgstr "" +msgstr "Spis treÅ›ci, ~indeks lub bibliografia..." #: WriterCommands.xcu msgctxt "" @@ -22906,7 +22888,6 @@ msgstr "Wstaw obiekt" #: WriterCommands.xcu -#, fuzzy msgctxt "" "WriterCommands.xcu\n" "..WriterCommands.UserInterface.Commands..uno:FormatObjectMenu\n" @@ -23678,7 +23659,7 @@ "Label\n" "value.text" msgid "Align Top to Anchor" -msgstr "" +msgstr "Wyrównaj górÄ™ do kotwicy" #: WriterCommands.xcu msgctxt "" @@ -23687,7 +23668,7 @@ "Label\n" "value.text" msgid "Align Bottom to Anchor" -msgstr "" +msgstr "Wyrównaj dół do kotwicy" #: WriterCommands.xcu msgctxt "" @@ -23696,7 +23677,7 @@ "Label\n" "value.text" msgid "Align Middle to Anchor" -msgstr "" +msgstr "Wyrównaj Å›rodek do kotwicy" #: WriterCommands.xcu msgctxt "" @@ -23984,7 +23965,7 @@ "Label\n" "value.text" msgid "Optimize Size" -msgstr "" +msgstr "Optymalizuj rozmiar" #: WriterCommands.xcu msgctxt "" @@ -25967,7 +25948,6 @@ msgstr "Tekst wstÄ™pnie s~formatowany" #: WriterCommands.xcu -#, fuzzy msgctxt "" "WriterCommands.xcu\n" "..WriterCommands.UserInterface.Popups..uno:StyleApply?Style:string=Text body&FamilyName:string=ParagraphStyles\n" diff -Nru libreoffice-5.1.1~rc2/translations/source/pl/readlicense_oo/docs.po libreoffice-5.1.2~rc2/translations/source/pl/readlicense_oo/docs.po --- libreoffice-5.1.1~rc2/translations/source/pl/readlicense_oo/docs.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/pl/readlicense_oo/docs.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-01 16:18+0000\n" +"PO-Revision-Date: 2016-03-26 14:13+0000\n" "Last-Translator: Mateusz Zasuwik <mzasuwik@gmail.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: pl\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1438445920.000000\n" +"X-POOTLE-MTIME: 1459001610.000000\n" #: readme.xrm msgctxt "" @@ -585,7 +585,6 @@ msgstr "Skróty klawiaturowe" #: readme.xrm -#, fuzzy msgctxt "" "readme.xrm\n" "w32e1\n" diff -Nru libreoffice-5.1.1~rc2/translations/source/pl/sc/source/ui/src.po libreoffice-5.1.2~rc2/translations/source/pl/sc/source/ui/src.po --- libreoffice-5.1.1~rc2/translations/source/pl/sc/source/ui/src.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/pl/sc/source/ui/src.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\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-12-18 07:09+0000\n" -"Last-Translator: MichaÅ‚ Newiak <manveru1986@gmail.com>\n" +"PO-Revision-Date: 2016-03-26 14:13+0000\n" +"Last-Translator: Mateusz Zasuwik <mzasuwik@gmail.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: pl\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1450422589.000000\n" +"X-POOTLE-MTIME: 1459001623.000000\n" #: condformatdlg.src msgctxt "" @@ -5706,7 +5706,6 @@ msgstr "Wklej specj~alnie..." #: hdrcont.src -#, fuzzy msgctxt "" "hdrcont.src\n" "RID_POPUP_ROWHEADER\n" diff -Nru libreoffice-5.1.1~rc2/translations/source/pl/sd/source/ui/app.po libreoffice-5.1.2~rc2/translations/source/pl/sd/source/ui/app.po --- libreoffice-5.1.1~rc2/translations/source/pl/sd/source/ui/app.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/pl/sd/source/ui/app.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\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-11-16 22:11+0000\n" -"Last-Translator: Konrad Kmieciak <raknor@wp.pl>\n" +"PO-Revision-Date: 2016-03-26 14:20+0000\n" +"Last-Translator: Mateusz Zasuwik <mzasuwik@gmail.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: pl\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1447711903.000000\n" +"X-POOTLE-MTIME: 1459002005.000000\n" #: menuids3_tmpl.src msgctxt "" @@ -1873,7 +1873,6 @@ msgstr "Zamknij wielokÄ…t" #: strings.src -#, fuzzy msgctxt "" "strings.src\n" "STR_SLIDE_SORTER_MODE\n" @@ -1882,22 +1881,20 @@ msgstr "Sortowanie slajdów" #: strings.src -#, fuzzy msgctxt "" "strings.src\n" "STR_NORMAL_MODE\n" "string.text" msgid "Normal" -msgstr "Widok slajdu" +msgstr "Normalny" #: strings.src -#, fuzzy msgctxt "" "strings.src\n" "STR_SLIDE_MASTER_MODE\n" "string.text" msgid "Slide Master" -msgstr "Sortowanie slajdów" +msgstr "Wzorzec slajdu" #: strings.src msgctxt "" @@ -1921,16 +1918,15 @@ "STR_NOTES_MASTER_MODE\n" "string.text" msgid "Notes Master" -msgstr "" +msgstr "Wzorzec notatek" #: strings.src -#, fuzzy msgctxt "" "strings.src\n" "STR_HANDOUT_MASTER_MODE\n" "string.text" msgid "Handout" -msgstr "Widok materiałów informacyjnych" +msgstr "MateriaÅ‚y informacyjne" #: strings.src msgctxt "" @@ -2122,16 +2118,15 @@ "STR_DISPLAYMODE_EDITMODES\n" "string.text" msgid "Edit Modes" -msgstr "" +msgstr "Tryby edycji" #: strings.src -#, fuzzy msgctxt "" "strings.src\n" "STR_DISPLAYMODE_MASTERMODES\n" "string.text" msgid "Master Modes" -msgstr "Wzorce stron" +msgstr "Tryby wzorców" #: strings.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/pl/sd/source/ui/view.po libreoffice-5.1.2~rc2/translations/source/pl/sd/source/ui/view.po --- libreoffice-5.1.1~rc2/translations/source/pl/sd/source/ui/view.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/pl/sd/source/ui/view.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\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-03 14:58+0000\n" -"Last-Translator: Konrad Kmieciak <raknor@wp.pl>\n" +"PO-Revision-Date: 2016-03-26 14:20+0000\n" +"Last-Translator: Mateusz Zasuwik <mzasuwik@gmail.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: pl\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1401807502.000000\n" +"X-POOTLE-MTIME: 1459002022.000000\n" #: DocumentRenderer.src msgctxt "" @@ -104,7 +104,7 @@ "According to layout\n" "itemlist.text" msgid "According to layout" -msgstr "" +msgstr "Zgodnie z ukÅ‚adem" #: DocumentRenderer.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/pl/sfx2/uiconfig/ui.po libreoffice-5.1.2~rc2/translations/source/pl/sfx2/uiconfig/ui.po --- libreoffice-5.1.1~rc2/translations/source/pl/sfx2/uiconfig/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/pl/sfx2/uiconfig/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: LibO 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:49+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2016-03-26 14:38+0000\n" +"Last-Translator: Mateusz Zasuwik <mzasuwik@gmail.com>\n" "Language-Team: none\n" "Language: pl\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1452264568.000000\n" +"X-POOTLE-MTIME: 1459003108.000000\n" #: alienwarndialog.ui msgctxt "" @@ -746,7 +746,6 @@ msgstr "_Pokaż licencjÄ™" #: licensedialog.ui -#, fuzzy msgctxt "" "licensedialog.ui\n" "label\n" @@ -769,7 +768,7 @@ "\n" "Wszystkie znaki towarowe wymienione w niniejszym dokumencie sÄ… wÅ‚asnoÅ›ciÄ… ich wÅ‚aÅ›cicieli.\n" "\n" -"Copyright © 2000, 2015. Prawa autorskie należą do autorów LibreOffice. Wszystkie prawa zastrzeżone.\n" +"Copyright © 2000–2016. Prawa autorskie należą do autorów LibreOffice. Wszystkie prawa zastrzeżone.\n" "\n" "Produkt ten zostaÅ‚ utworzony przez %OOOVENDOR w oparciu o OpenOffice.org, do którego prawa autorskie (2010, 2011) posiada firma Oracle i/lub jej filie. %OOOVENDOR dziÄ™kuje caÅ‚ej spoÅ‚ecznoÅ›ci. Aby poznać wiÄ™cej szczegółów, odwiedź proszÄ™ http://www.libreoffice.org/" @@ -1539,7 +1538,6 @@ msgstr "_Otwórz plik" #: startcenter.ui -#, fuzzy msgctxt "" "startcenter.ui\n" "open_remote\n" diff -Nru libreoffice-5.1.1~rc2/translations/source/pl/svtools/source/dialogs.po libreoffice-5.1.2~rc2/translations/source/pl/svtools/source/dialogs.po --- libreoffice-5.1.1~rc2/translations/source/pl/svtools/source/dialogs.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/pl/svtools/source/dialogs.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-08-25 12:33+0200\n" -"PO-Revision-Date: 2016-02-10 21:33+0000\n" -"Last-Translator: Konrad Kmieciak <raknor@wp.pl>\n" +"PO-Revision-Date: 2016-03-26 14:22+0000\n" +"Last-Translator: Mateusz Zasuwik <mzasuwik@gmail.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: pl\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1455140002.000000\n" +"X-POOTLE-MTIME: 1459002132.000000\n" #: addresstemplate.src msgctxt "" @@ -302,7 +302,7 @@ "STR_SVT_DEFAULT_SERVICE_LABEL\n" "string.text" msgid "$user$'s $service$" -msgstr "" +msgstr "$user$'s $service$" #: formats.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/pl/svx/inc.po libreoffice-5.1.2~rc2/translations/source/pl/svx/inc.po --- libreoffice-5.1.1~rc2/translations/source/pl/svx/inc.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/pl/svx/inc.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\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-02 18:29+0000\n" -"Last-Translator: Konrad Kmieciak <raknor@wp.pl>\n" +"PO-Revision-Date: 2016-03-26 14:22+0000\n" +"Last-Translator: Mateusz Zasuwik <mzasuwik@gmail.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: pl\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1441218557.000000\n" +"X-POOTLE-MTIME: 1459002145.000000\n" #: globlmn_tmpl.hrc msgctxt "" @@ -451,7 +451,7 @@ "SID_EQUALIZEWIDTH\n" "menuitem.text" msgid "Equalize ~Width" -msgstr "" +msgstr "~Wyrównaj szerokość" #: globlmn_tmpl.hrc msgctxt "" @@ -460,7 +460,7 @@ "SID_EQUALIZEHEIGHT\n" "menuitem.text" msgid "Equalize ~Height" -msgstr "" +msgstr "Wyrównaj w~ysokość" #: globlmn_tmpl.hrc msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/pl/svx/source/tbxctrls.po libreoffice-5.1.2~rc2/translations/source/pl/svx/source/tbxctrls.po --- libreoffice-5.1.1~rc2/translations/source/pl/svx/source/tbxctrls.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/pl/svx/source/tbxctrls.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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-30 20:30+0000\n" -"Last-Translator: Konrad Kmieciak <raknor@wp.pl>\n" +"PO-Revision-Date: 2016-03-26 14:25+0000\n" +"Last-Translator: Mateusz Zasuwik <mzasuwik@gmail.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: pl\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1448915416.000000\n" +"X-POOTLE-MTIME: 1459002308.000000\n" #: colrctrl.src msgctxt "" @@ -688,4 +688,4 @@ "RID_SVXSTR_FINDBAR_SEARCHFORMATTED\n" "string.text" msgid "Search Formatted Display String" -msgstr "" +msgstr "UwzglÄ™dnij formatowanie komórki" diff -Nru libreoffice-5.1.1~rc2/translations/source/pl/sw/source/ui/dochdl.po libreoffice-5.1.2~rc2/translations/source/pl/sw/source/ui/dochdl.po --- libreoffice-5.1.1~rc2/translations/source/pl/sw/source/ui/dochdl.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/pl/sw/source/ui/dochdl.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\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-01-30 21:20+0000\n" -"Last-Translator: Mateusz Zasuwik <mzasuwik@gmail.com>\n" +"PO-Revision-Date: 2016-03-26 14:27+0000\n" +"Last-Translator: MichaÅ‚ Newiak <manveru1986@gmail.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: pl\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1422652855.000000\n" +"X-POOTLE-MTIME: 1459002461.000000\n" #: dochdl.src msgctxt "" @@ -30,7 +30,7 @@ "STR_NO_TABLE\n" "string.text" msgid "A table with no rows or no cells cannot be inserted" -msgstr "" +msgstr "Nie można wstawić tabeli bez wierszy lub bez komórek" #: dochdl.src msgctxt "" @@ -38,7 +38,7 @@ "STR_TABLE_TOO_LARGE\n" "string.text" msgid "The table cannot be inserted because it is too large" -msgstr "" +msgstr "Nie można wstawić tabeli, ponieważ jest ona zbyt duża" #: dochdl.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/pl/vcl/source/src.po libreoffice-5.1.2~rc2/translations/source/pl/vcl/source/src.po --- libreoffice-5.1.1~rc2/translations/source/pl/vcl/source/src.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/pl/vcl/source/src.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\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 19:50+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2016-03-28 12:35+0000\n" +"Last-Translator: MichaÅ‚ Newiak <manveru1986@gmail.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: pl\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1449863441.000000\n" +"X-POOTLE-MTIME: 1459168507.000000\n" #: app.src msgctxt "" @@ -22,7 +22,7 @@ "SV_APP_CPUTHREADS\n" "string.text" msgid "CPU Threads: " -msgstr "" +msgstr "WÄ…tki CPU: " #: app.src msgctxt "" @@ -30,7 +30,7 @@ "SV_APP_OSVERSION\n" "string.text" msgid "OS Version: " -msgstr "" +msgstr "Wersja OS: " #: app.src msgctxt "" @@ -38,7 +38,7 @@ "SV_APP_UIRENDER\n" "string.text" msgid "UI Render: " -msgstr "" +msgstr "UI Render: " #: app.src msgctxt "" @@ -46,7 +46,7 @@ "SV_APP_GL\n" "string.text" msgid "GL" -msgstr "" +msgstr "GL" #: app.src msgctxt "" @@ -54,7 +54,7 @@ "SV_APP_DEFAULT\n" "string.text" msgid "default" -msgstr "" +msgstr "domyÅ›lny" #. This is used on buttons for platforms other than windows, there should be a ~ mnemonic in this string #: btntext.src @@ -753,7 +753,7 @@ "SV_MENU_MAC_QUITAPP\n" "string.text" msgid "Quit %PRODUCTNAME" -msgstr "Zamknij %PRODUCTNAME" +msgstr "ZakoÅ„cz %PRODUCTNAME" #: print.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/pt/chart2/uiconfig/ui.po libreoffice-5.1.2~rc2/translations/source/pt/chart2/uiconfig/ui.po --- libreoffice-5.1.1~rc2/translations/source/pt/chart2/uiconfig/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/pt/chart2/uiconfig/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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-01-12 22:23+0000\n" -"Last-Translator: Sérgio Marques <smarquespt@gmail.com>\n" +"PO-Revision-Date: 2016-03-09 02:04+0000\n" +"Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: pt\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1452637421.000000\n" +"X-POOTLE-MTIME: 1457489083.000000\n" #: 3dviewdialog.ui msgctxt "" @@ -311,7 +311,7 @@ "1\n" "stringlist.text" msgid "Center" -msgstr "Centrar" +msgstr "Centro" #: dlg_DataLabel.ui msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/pt/connectivity/source/resource.po libreoffice-5.1.2~rc2/translations/source/pt/connectivity/source/resource.po --- libreoffice-5.1.1~rc2/translations/source/pt/connectivity/source/resource.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/pt/connectivity/source/resource.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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-16 22:23+0000\n" -"Last-Translator: Sérgio Marques <smarquespt@gmail.com>\n" +"PO-Revision-Date: 2016-03-09 02:06+0000\n" +"Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: pt\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1450304582.000000\n" +"X-POOTLE-MTIME: 1457489175.000000\n" #: conn_error_message.src msgctxt "" @@ -980,7 +980,7 @@ "STR_UNKNOWN_PARA_TYPE\n" "string.text" msgid "The type of parameter at position '$position$' is unknown." -msgstr "O tipo de parâmetro na posição \"$position$\" é desconhecido." +msgstr "Tipo de parâmetro desconhecido na posição \"$position$\"." #: conn_shared_res.src msgctxt "" @@ -988,7 +988,7 @@ "STR_UNKNOWN_COLUMN_TYPE\n" "string.text" msgid "The type of column at position '$position$' is unknown." -msgstr "O tipo de coluna na posição \"$position$\" é desconhecido." +msgstr "Tipo de coluna desconhecido na posição \"$position$\"." #: conn_shared_res.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/pt/cui/source/customize.po libreoffice-5.1.2~rc2/translations/source/pt/cui/source/customize.po --- libreoffice-5.1.1~rc2/translations/source/pt/cui/source/customize.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/pt/cui/source/customize.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "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-11-22 22:01+0000\n" -"Last-Translator: Sérgio Marques <smarquespt@gmail.com>\n" +"PO-Revision-Date: 2016-03-09 02:06+0000\n" +"Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: pt\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1448229686.000000\n" +"X-POOTLE-MTIME: 1457489216.000000\n" #: acccfg.src msgctxt "" @@ -491,7 +491,7 @@ "RID_SVXSTR_EVENT_SUBCOMPONENT_OPENED\n" "string.text" msgid "Loaded a sub component" -msgstr "Subcomponente carregado" +msgstr "Ao carregar um subcomponente" #: macropg.src msgctxt "" @@ -779,7 +779,7 @@ "RID_SVXSTR_EVENT_LOADDOCFINISHED\n" "string.text" msgid "Document loading finished" -msgstr "Terminado o carregamento do documento" +msgstr "Ao terminar de carregar o documento" #: macropg.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/pt/cui/source/dialogs.po libreoffice-5.1.2~rc2/translations/source/pt/cui/source/dialogs.po --- libreoffice-5.1.1~rc2/translations/source/pt/cui/source/dialogs.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/pt/cui/source/dialogs.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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-17 22:01+0000\n" -"Last-Translator: Sérgio Marques <smarquespt@gmail.com>\n" +"PO-Revision-Date: 2016-03-09 02:07+0000\n" +"Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: pt\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1442527292.000000\n" +"X-POOTLE-MTIME: 1457489248.000000\n" #: cuires.src msgctxt "" @@ -351,7 +351,7 @@ "RID_SVXSTR_HYPDLG_NOVALIDFILENAME\n" "string.text" msgid "Please type in a valid file name." -msgstr "Introduza um nome de ficheiro válido." +msgstr "Digite um nome de ficheiro válido." #: hyperdlg.src msgctxt "" @@ -367,7 +367,7 @@ "RID_SVXSTR_HYPERDLG_HLINETTP_HELP\n" "string.text" msgid "This is where you create a hyperlink to a Web page or FTP server connection." -msgstr "Aqui pode criar uma hiperligação a uma página web ou servidor FTP." +msgstr "Aqui pode criar uma hiperligação para uma página web ou servidor FTP." #: hyperdlg.src msgctxt "" @@ -383,7 +383,7 @@ "RID_SVXSTR_HYPERDLG_HLMAILTP_HELP\n" "string.text" msgid "This is where you create a hyperlink to an e-mail address." -msgstr "Aqui pode criar uma hiperligação a um endereço de correio eletrónico." +msgstr "Aqui pode criar uma hiperligação para um endereço de correio eletrónico." #: hyperdlg.src msgctxt "" @@ -399,7 +399,7 @@ "RID_SVXSTR_HYPERDLG_HLDOCTP_HELP\n" "string.text" msgid "This is where you create a hyperlink to an existing document or a target within a document." -msgstr "Aqui pode criar uma hiperligação a um documento existente ou a um destino de um documento." +msgstr "Aqui pode criar uma hiperligação para um documento existente ou para um destino dentro de um documento." #: hyperdlg.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/pt/cui/uiconfig/ui.po libreoffice-5.1.2~rc2/translations/source/pt/cui/uiconfig/ui.po --- libreoffice-5.1.1~rc2/translations/source/pt/cui/uiconfig/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/pt/cui/uiconfig/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: LibO 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-13 18:54+0000\n" -"Last-Translator: Sérgio Marques <smarquespt@gmail.com>\n" +"PO-Revision-Date: 2016-03-09 02:21+0000\n" +"Last-Translator: system user <>\n" "Language-Team: none\n" "Language: pt\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1455389686.000000\n" +"X-POOTLE-MTIME: 1457490102.000000\n" #: aboutconfigdialog.ui msgctxt "" @@ -2354,7 +2354,7 @@ "2\n" "stringlist.text" msgid "Center" -msgstr "Centrar" +msgstr "Centro" #: cellalignment.ui msgctxt "" @@ -4172,7 +4172,7 @@ "label\n" "string.text" msgid "Show _measurement units" -msgstr "_Mostrar unidade de medida" +msgstr "_Mostrar unidades de medida" #: dimensionlinestabpage.ui msgctxt "" @@ -5558,7 +5558,7 @@ "title\n" "string.text" msgid "Enter Title" -msgstr "Escreva o título" +msgstr "Introduza o título" #: gallerytitledialog.ui msgctxt "" @@ -10900,7 +10900,7 @@ "label\n" "string.text" msgid "_User interface:" -msgstr "Interface do _utilizador:" +msgstr "Interface de _utilizador:" #: optlanguagespage.ui msgctxt "" @@ -11323,7 +11323,7 @@ "label\n" "string.text" msgid "_Download updates automatically" -msgstr "Transferir atuali_zações automaticamente" +msgstr "_Descarregar atualizações automaticamente" #: optonlineupdatepage.ui msgctxt "" @@ -11332,7 +11332,7 @@ "label\n" "string.text" msgid "Download destination:" -msgstr "Destino da transferência:" +msgstr "Destino da descarga:" #: optonlineupdatepage.ui msgctxt "" @@ -12796,7 +12796,7 @@ "label\n" "string.text" msgid "User Interface" -msgstr "Interface do utilizador" +msgstr "Interface de utilizador" #: optviewpage.ui msgctxt "" @@ -13963,7 +13963,7 @@ "label\n" "string.text" msgid "Enter password to allow editing" -msgstr "Introduza a palavra-passe para permitir a edição" +msgstr "Introduza a palavra-passe para editar" #: password.ui msgctxt "" @@ -14764,7 +14764,7 @@ "text\n" "string.text" msgid "The name you have entered already exists." -msgstr "O nome que introduziu já existe." +msgstr "O nome escolhido já existe." #: queryduplicatedialog.ui msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/pt/dbaccess/source/ui/browser.po libreoffice-5.1.2~rc2/translations/source/pt/dbaccess/source/ui/browser.po --- libreoffice-5.1.1~rc2/translations/source/pt/dbaccess/source/ui/browser.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/pt/dbaccess/source/ui/browser.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,18 +3,18 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2014-11-18 11:23+0100\n" -"PO-Revision-Date: 2014-11-20 23:28+0000\n" -"Last-Translator: Sérgio <smarquespt@gmail.com>\n" +"POT-Creation-Date: 2015-04-22 23:40+0200\n" +"PO-Revision-Date: 2016-03-09 02:23+0000\n" +"Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: pt\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: 1416526097.000000\n" +"X-POOTLE-MTIME: 1457490189.000000\n" #: sbabrw.src msgctxt "" @@ -126,7 +126,7 @@ "STR_OPENTABLES_WARNINGS\n" "string.text" msgid "Warnings encountered" -msgstr "Foram encontrados avisos" +msgstr "Avisos encontrados" #: sbabrw.src msgctxt "" @@ -150,7 +150,7 @@ "STR_LOADING_QUERY\n" "string.text" msgid "Loading query $name$ ..." -msgstr "A carregar consulta $name$ ..." +msgstr "A carregar a consulta $name$ ..." #: sbabrw.src msgctxt "" @@ -158,7 +158,7 @@ "STR_LOADING_TABLE\n" "string.text" msgid "Loading table $name$ ..." -msgstr "A carregar tabela $name$ ..." +msgstr "A carregar a tabela $name$ ..." #: sbabrw.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/pt/dbaccess/source/ui/dlg.po libreoffice-5.1.2~rc2/translations/source/pt/dbaccess/source/ui/dlg.po --- libreoffice-5.1.1~rc2/translations/source/pt/dbaccess/source/ui/dlg.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/pt/dbaccess/source/ui/dlg.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\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-12-11 23:00+0000\n" -"Last-Translator: Sérgio Marques <smarquespt@gmail.com>\n" +"PO-Revision-Date: 2016-03-09 02:24+0000\n" +"Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: pt\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1449874806.000000\n" +"X-POOTLE-MTIME: 1457490244.000000\n" #: AutoControls.src msgctxt "" @@ -158,7 +158,7 @@ "STR_JDBCDRIVER_SUCCESS\n" "string.text" msgid "The JDBC driver was loaded successfully." -msgstr "O controlador JDBC foi corretamente carregado." +msgstr "O controlador JDBC foi carregado com sucesso." #: ConnectionPage.src msgctxt "" @@ -214,7 +214,7 @@ "STR_ERROR_PASSWORDS_NOT_IDENTICAL\n" "string.text" msgid "The passwords do not match. Please enter the password again." -msgstr "As palavras-passe não são iguais. Indique-as novamente." +msgstr "As palavras-passe não são iguais. Introduza-as novamente." #: dbadmin.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/pt/dbaccess/source/ui/tabledesign.po libreoffice-5.1.2~rc2/translations/source/pt/dbaccess/source/ui/tabledesign.po --- libreoffice-5.1.1~rc2/translations/source/pt/dbaccess/source/ui/tabledesign.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/pt/dbaccess/source/ui/tabledesign.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\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-10 12:39+0000\n" -"Last-Translator: Sérgio Marques <smarquespt@gmail.com>\n" +"PO-Revision-Date: 2016-03-09 02:24+0000\n" +"Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: pt\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1439210392.000000\n" +"X-POOTLE-MTIME: 1457490299.000000\n" #: table.src msgctxt "" @@ -216,7 +216,7 @@ "STR_TABED_UNDO_TYPE_CHANGED\n" "string.text" msgid "Modify field type" -msgstr "Modificar tipo de campo" +msgstr "Alterar tipo de campo" #: table.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/pt/dbaccess/uiconfig/ui.po libreoffice-5.1.2~rc2/translations/source/pt/dbaccess/uiconfig/ui.po --- libreoffice-5.1.1~rc2/translations/source/pt/dbaccess/uiconfig/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/pt/dbaccess/uiconfig/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\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-16 22:05+0000\n" -"Last-Translator: Sérgio Marques <smarquespt@gmail.com>\n" +"PO-Revision-Date: 2016-03-09 02:27+0000\n" +"Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: pt\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1439762720.000000\n" +"X-POOTLE-MTIME: 1457490446.000000\n" #: admindialog.ui msgctxt "" @@ -2738,7 +2738,7 @@ "label\n" "string.text" msgid "Respect the result set type from the database driver" -msgstr "Respeita o tipo do conjunto de resultados do controlador da base de dados" +msgstr "Respeitar tipo do conjunto de resultados do controlador da base de dados" #: specialsettingspage.ui msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/pt/desktop/source/deployment/gui.po libreoffice-5.1.2~rc2/translations/source/pt/desktop/source/deployment/gui.po --- libreoffice-5.1.1~rc2/translations/source/pt/desktop/source/deployment/gui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/pt/desktop/source/deployment/gui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\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-17 12:46+0000\n" -"Last-Translator: Sérgio Marques <smarquespt@gmail.com>\n" +"PO-Revision-Date: 2016-03-09 02:27+0000\n" +"Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: pt\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1434545189.000000\n" +"X-POOTLE-MTIME: 1457490477.000000\n" #: dp_gui_dialog.src msgctxt "" @@ -386,7 +386,7 @@ "RID_DLG_UPDATE_INSTALL_ERROR_DOWNLOAD\n" "string.text" msgid "Error while downloading extension %NAME. " -msgstr "Erro ao transferir a extensão %NAME. " +msgstr "Erro ao descarregar a extensão %NAME. " #: dp_gui_updateinstalldialog.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/pt/desktop/source/deployment/registry/component.po libreoffice-5.1.2~rc2/translations/source/pt/desktop/source/deployment/registry/component.po --- libreoffice-5.1.1~rc2/translations/source/pt/desktop/source/deployment/registry/component.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/pt/desktop/source/deployment/registry/component.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,18 +3,18 @@ msgstr "" "Project-Id-Version: PACKAGE 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: 2012-12-01 15:42+0000\n" -"Last-Translator: Sérgio <smarquespt@gmail.com>\n" +"POT-Creation-Date: 2015-04-22 23:40+0200\n" +"PO-Revision-Date: 2016-03-09 02:28+0000\n" +"Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: pt\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: 1354376546.0\n" +"X-POOTLE-MTIME: 1457490489.000000\n" #: dp_component.src msgctxt "" @@ -54,7 +54,7 @@ "RID_STR_RDB_TYPELIB\n" "string.text" msgid "UNO RDB Type Library" -msgstr "Biblioteca de tipos de RDB UNO" +msgstr "Biblioteca de tipo UNO RDB" #: dp_component.src msgctxt "" @@ -62,4 +62,4 @@ "RID_STR_JAVA_TYPELIB\n" "string.text" msgid "UNO Java Type Library" -msgstr "Biblioteca de tipo Java do UNO" +msgstr "Biblioteca de tipo UNO Java" diff -Nru libreoffice-5.1.1~rc2/translations/source/pt/desktop/source/deployment/unopkg.po libreoffice-5.1.2~rc2/translations/source/pt/desktop/source/deployment/unopkg.po --- libreoffice-5.1.1~rc2/translations/source/pt/desktop/source/deployment/unopkg.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/pt/desktop/source/deployment/unopkg.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,18 +3,18 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2013-11-20 13:01+0100\n" -"PO-Revision-Date: 2013-05-25 14:12+0000\n" -"Last-Translator: Sérgio <smarquespt@gmail.com>\n" +"POT-Creation-Date: 2015-04-22 23:40+0200\n" +"PO-Revision-Date: 2016-03-09 02:28+0000\n" +"Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: pt\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: 1369491167.0\n" +"X-POOTLE-MTIME: 1457490504.000000\n" #: unopkg.src msgctxt "" @@ -30,7 +30,7 @@ "RID_STR_UNOPKG_ACCEPT_LIC_2\n" "string.text" msgid "Read the complete License Agreement displayed above. Accept the License Agreement by typing \"yes\" on the console then press the Return key. Type \"no\" to decline and to abort the extension setup." -msgstr "Leia na íntegra o contrato de licenciamento acima exibido. Aceite o contrato escrevendo \"Sim\" na consola e, em seguida, prima a tecla Enter. Escreva \"Não\" para rejeitar e cancelar a instalação da extensão." +msgstr "Leia na íntegra o contrato de licenciamento acima exibido. Aceite o contrato digite \"Sim\" na consola e, em seguida, prima a tecla Enter. Digite \"Não\" para rejeitar e cancelar a instalação da extensão." #: unopkg.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/pt/desktop/uiconfig/ui.po libreoffice-5.1.2~rc2/translations/source/pt/desktop/uiconfig/ui.po --- libreoffice-5.1.1~rc2/translations/source/pt/desktop/uiconfig/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/pt/desktop/uiconfig/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: LibO 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-12-11 23:00+0000\n" -"Last-Translator: Sérgio Marques <smarquespt@gmail.com>\n" +"PO-Revision-Date: 2016-03-09 02:28+0000\n" +"Last-Translator: system user <>\n" "Language-Team: none\n" "Language: pt\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1449874826.000000\n" +"X-POOTLE-MTIME: 1457490519.000000\n" #: cmdlinehelp.ui msgctxt "" @@ -347,7 +347,7 @@ "title\n" "string.text" msgid "Download and Installation" -msgstr "Transferência e instalação" +msgstr "Descarga e instalação" #: updateinstalldialog.ui msgctxt "" @@ -356,7 +356,7 @@ "label\n" "string.text" msgid "Downloading extensions..." -msgstr "A transferir extensões..." +msgstr "A descarregar extensões..." #: updateinstalldialog.ui msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/pt/editeng/source/items.po libreoffice-5.1.2~rc2/translations/source/pt/editeng/source/items.po --- libreoffice-5.1.1~rc2/translations/source/pt/editeng/source/items.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/pt/editeng/source/items.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\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: 2016-01-15 11:36+0000\n" -"Last-Translator: Sérgio Marques <smarquespt@gmail.com>\n" +"PO-Revision-Date: 2016-03-09 02:32+0000\n" +"Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: pt\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1452857815.000000\n" +"X-POOTLE-MTIME: 1457490742.000000\n" #: page.src msgctxt "" @@ -1214,7 +1214,7 @@ "RID_SVXITEMS_FMTKEEP_TRUE\n" "string.text" msgid "Keep with next paragraph" -msgstr "Manter com o próximo parágrafo" +msgstr "Manter com o parágrafo seguinte" #: svxitems.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/pt/extensions/source/propctrlr.po libreoffice-5.1.2~rc2/translations/source/pt/extensions/source/propctrlr.po --- libreoffice-5.1.1~rc2/translations/source/pt/extensions/source/propctrlr.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/pt/extensions/source/propctrlr.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\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-04 23:26+0000\n" -"Last-Translator: Sérgio Marques <smarquespt@gmail.com>\n" +"PO-Revision-Date: 2016-03-09 02:35+0000\n" +"Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: pt\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1449271590.000000\n" +"X-POOTLE-MTIME: 1457490936.000000\n" #: formlinkdialog.src msgctxt "" @@ -372,7 +372,7 @@ "RID_STR_SHOW_RECORDACTIONS\n" "string.text" msgid "Acting on a record" -msgstr "Com ação num registo" +msgstr "Agir sobre um registo" #: formres.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/pt/extensions/source/update/check.po libreoffice-5.1.2~rc2/translations/source/pt/extensions/source/update/check.po --- libreoffice-5.1.1~rc2/translations/source/pt/extensions/source/update/check.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/pt/extensions/source/update/check.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-16 22:06+0000\n" +"PO-Revision-Date: 2016-03-09 02:36+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: pt\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1439762780.000000\n" +"X-POOTLE-MTIME: 1457490962.000000\n" #: updatehdl.src msgctxt "" @@ -57,7 +57,7 @@ "\n" "A versão instalada é o %PRODUCTNAME %PRODUCTVERSION.\n" "\n" -"Nota: antes de transferir a atualização, certifique-se que tem permissão para a instalar.\n" +"Nota: antes de descarregar a atualização, certifique-se de que tem permissão para a instalar.\n" "Pode ser necessária a palavra-passe de administrador ou \"root\" consoante o sistema operativo." #: updatehdl.src @@ -74,7 +74,7 @@ "RID_UPDATE_STR_DOWNLOAD_PAUSE\n" "string.text" msgid "Downloading %PRODUCTNAME %NEXTVERSION paused at..." -msgstr "A transferência de %PRODUCTNAME %NEXTVERSION foi pausada em..." +msgstr "A descarga de %PRODUCTNAME %NEXTVERSION foi pausada em..." #: updatehdl.src msgctxt "" @@ -82,7 +82,7 @@ "RID_UPDATE_STR_DOWNLOAD_ERR\n" "string.text" msgid "Downloading %PRODUCTNAME %NEXTVERSION stalled at" -msgstr "A transferência de %PRODUCTNAME %NEXTVERSION parou em" +msgstr "A descarga de %PRODUCTNAME %NEXTVERSION parou em" #: updatehdl.src msgctxt "" @@ -94,7 +94,7 @@ "\n" "Under Tools – Options... - %PRODUCTNAME – Online Update you can change the download location." msgstr "" -"O local para a transferência é: %DOWNLOAD_PATH.\n" +"A localização para a descarga é: %DOWNLOAD_PATH.\n" "\n" "Em Ferramentas – Opções... - %PRODUCTNAME – Atualização online, pode alterar esta localização." @@ -104,7 +104,7 @@ "RID_UPDATE_STR_DOWNLOAD_DESCR\n" "string.text" msgid "%FILE_NAME has been downloaded to %DOWNLOAD_PATH." -msgstr "O %FILE_NAME foi transferido para %DOWNLOAD_PATH." +msgstr "O %FILE_NAME foi guardado em %DOWNLOAD_PATH." #: updatehdl.src msgctxt "" @@ -116,9 +116,9 @@ "\n" "Click 'Download...' to download %PRODUCTNAME %NEXTVERSION manually from the web site." msgstr "" -"Atualmente, não está disponível a transferência automática de atualizações.\n" +"Atualmente, não está disponível a descarga automática de atualizações.\n" "\n" -"Clique em \"Transferir...\" para transferir manualmente o %PRODUCTNAME %NEXTVERSION a partir do sítio web." +"Clique em \"Descarregar...\" para descarregar manualmente o %PRODUCTNAME %NEXTVERSION a partir do sítio web." #: updatehdl.src msgctxt "" @@ -126,7 +126,7 @@ "RID_UPDATE_STR_DOWNLOADING\n" "string.text" msgid "Downloading %PRODUCTNAME %NEXTVERSION..." -msgstr "A transferir o %PRODUCTNAME %NEXTVERSION..." +msgstr "A descarregar o %PRODUCTNAME %NEXTVERSION..." #: updatehdl.src msgctxt "" @@ -134,7 +134,7 @@ "RID_UPDATE_STR_READY_INSTALL\n" "string.text" msgid "Download of %PRODUCTNAME %NEXTVERSION completed. Ready for installation." -msgstr "Transferência do %PRODUCTNAME %NEXTVERSION concluída. Pronto a instalar." +msgstr "O %PRODUCTNAME %NEXTVERSION foi descarregado e está pronto para instalação." #: updatehdl.src msgctxt "" @@ -150,7 +150,7 @@ "RID_UPDATE_STR_CANCEL_DOWNLOAD\n" "string.text" msgid "Do you really want to cancel the download?" -msgstr "Pretende cancelar a transferência?" +msgstr "Deseja mesmo cancelar a descarga?" #: updatehdl.src msgctxt "" @@ -198,7 +198,7 @@ "RID_UPDATE_STR_RELOAD_WARNING\n" "string.text" msgid "A file with the name '%FILENAME' already exists in '%DOWNLOAD_PATH'! Do you want to continue with the download or delete and reload the file?" -msgstr "Já existe um ficheiro com o nome \"%FILENAME\" em \"%DOWNLOAD_PATH\"! Pretende continuar com a transferência ou eliminar e recarregar o ficheiro?" +msgstr "Já existe um ficheiro com o nome \"%FILENAME\" em \"%DOWNLOAD_PATH\"! Pretende continuar com a descarga ou eliminar e recarregar o ficheiro?" #: updatehdl.src msgctxt "" @@ -254,7 +254,7 @@ "RID_UPDATE_BTN_DOWNLOAD\n" "string.text" msgid "~Download" -msgstr "~Transferir" +msgstr "~Descarregar" #: updatehdl.src msgctxt "" @@ -302,7 +302,7 @@ "RID_UPDATE_BUBBLE_UPDATE_AVAIL\n" "string.text" msgid "Click the icon to start the download." -msgstr "Clique no ícone para iniciar a transferência." +msgstr "Clique no ícone para iniciar a descarga." #: updatehdl.src msgctxt "" @@ -334,7 +334,7 @@ "RID_UPDATE_BUBBLE_AUTO_START\n" "string.text" msgid "Download of update begins." -msgstr "Transferência da atualização iniciada." +msgstr "Descarga da atualização iniciada" #: updatehdl.src msgctxt "" @@ -342,7 +342,7 @@ "RID_UPDATE_BUBBLE_T_DOWNLOADING\n" "string.text" msgid "Download of update in progress" -msgstr "Transferência da atualização em curso" +msgstr "A descarregar a atualização" #: updatehdl.src msgctxt "" @@ -350,7 +350,7 @@ "RID_UPDATE_BUBBLE_T_DOWNLOAD_PAUSED\n" "string.text" msgid "Download of update paused" -msgstr "Transferência da atualização em pausa" +msgstr "Descarga da atualização em pausa" #: updatehdl.src msgctxt "" @@ -366,7 +366,7 @@ "RID_UPDATE_BUBBLE_T_ERROR_DOWNLOADING\n" "string.text" msgid "Download of update stalled" -msgstr "Transferência da atualização parada" +msgstr "Descarga da atualização parada" #: updatehdl.src msgctxt "" @@ -382,7 +382,7 @@ "RID_UPDATE_BUBBLE_T_DOWNLOAD_AVAIL\n" "string.text" msgid "Download of update completed" -msgstr "Transferência da atualização concluída" +msgstr "Descarga da atualização concluída" #: updatehdl.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/pt/extensions/uiconfig/spropctrlr/ui.po libreoffice-5.1.2~rc2/translations/source/pt/extensions/uiconfig/spropctrlr/ui.po --- libreoffice-5.1.1~rc2/translations/source/pt/extensions/uiconfig/spropctrlr/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/pt/extensions/uiconfig/spropctrlr/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,18 +3,18 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2014-11-18 11:23+0100\n" -"PO-Revision-Date: 2015-04-07 21:09+0000\n" -"Last-Translator: Sérgio <smarquespt@gmail.com>\n" +"POT-Creation-Date: 2015-04-22 23:40+0200\n" +"PO-Revision-Date: 2016-03-09 02:37+0000\n" +"Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: pt\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: 1428440945.000000\n" +"X-POOTLE-MTIME: 1457491053.000000\n" #: controlfontdialog.ui msgctxt "" @@ -59,7 +59,7 @@ "label\n" "string.text" msgid "Type a name for the new data type:" -msgstr "Escreva o nome do novo tipo de dados:" +msgstr "Digite o nome do novo tipo de dados:" #: formlinksdialog.ui msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/pt/filter/uiconfig/ui.po libreoffice-5.1.2~rc2/translations/source/pt/filter/uiconfig/ui.po --- libreoffice-5.1.1~rc2/translations/source/pt/filter/uiconfig/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/pt/filter/uiconfig/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\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-04 23:27+0000\n" -"Last-Translator: Sérgio Marques <smarquespt@gmail.com>\n" +"PO-Revision-Date: 2016-03-09 02:48+0000\n" +"Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: pt\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1449271661.000000\n" +"X-POOTLE-MTIME: 1457491733.000000\n" #: impswfdialog.ui msgctxt "" @@ -576,7 +576,7 @@ "label\n" "string.text" msgid "User Interface" -msgstr "Interface do utilizador" +msgstr "Interface de utilizador" #: pdfoptionsdialog.ui msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/pt/forms/source/resource.po libreoffice-5.1.2~rc2/translations/source/pt/forms/source/resource.po --- libreoffice-5.1.1~rc2/translations/source/pt/forms/source/resource.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/pt/forms/source/resource.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\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 23:21+0000\n" -"Last-Translator: Sérgio Marques <smarquespt@gmail.com>\n" +"PO-Revision-Date: 2016-03-09 02:49+0000\n" +"Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: pt\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1449876094.000000\n" +"X-POOTLE-MTIME: 1457491757.000000\n" #: strings.src msgctxt "" @@ -46,7 +46,7 @@ "RID_STR_CONTROL_SUBSTITUTED_EPXPLAIN\n" "string.text" msgid "An error occurred while this control was being loaded. It was therefore replaced with a placeholder." -msgstr "Ocorreu um erro ao carregar este controlo. Por esta razão, foi substituído por um marcador de posição." +msgstr "Ocorreu um erro ao carregar este controlo. O controlo foi substituído por um marcador de posição." #: strings.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/pt/formula/source/core/resource.po libreoffice-5.1.2~rc2/translations/source/pt/formula/source/core/resource.po --- libreoffice-5.1.1~rc2/translations/source/pt/formula/source/core/resource.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/pt/formula/source/core/resource.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\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-27 00:46+0100\n" +"POT-Creation-Date: 2016-03-29 16:07+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff -Nru libreoffice-5.1.1~rc2/translations/source/pt/fpicker/source/office.po libreoffice-5.1.2~rc2/translations/source/pt/fpicker/source/office.po --- libreoffice-5.1.1~rc2/translations/source/pt/fpicker/source/office.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/pt/fpicker/source/office.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\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-12-12 02:01+0000\n" -"Last-Translator: Sérgio Marques <smarquespt@gmail.com>\n" +"PO-Revision-Date: 2016-03-09 02:52+0000\n" +"Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: pt\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1449885684.000000\n" +"X-POOTLE-MTIME: 1457491948.000000\n" #: OfficeFilePicker.src msgctxt "" @@ -218,7 +218,7 @@ "Make sure you have entered the correct file name." msgstr "" "O ficheiro $name$ não existe.\n" -"Certifique-se que introduziu o nome de ficheiro correto." +"Certifique-se de que introduziu o nome de ficheiro correto." #: iodlg.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/pt/helpcontent2/source/auxiliary.po libreoffice-5.1.2~rc2/translations/source/pt/helpcontent2/source/auxiliary.po --- libreoffice-5.1.1~rc2/translations/source/pt/helpcontent2/source/auxiliary.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/pt/helpcontent2/source/auxiliary.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\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-14 22:38+0000\n" -"Last-Translator: Sérgio Marques <smarquespt@gmail.com>\n" +"PO-Revision-Date: 2016-03-04 02:32+0000\n" +"Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: pt\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1450132684.000000\n" +"X-POOTLE-MTIME: 1457058767.000000\n" #: sbasic.tree msgctxt "" @@ -110,7 +110,7 @@ "0803\n" "node.text" msgid "Functions Types and Operators" -msgstr "Tipo de funções e operadores" +msgstr "Tipos de funções e operadores" #: scalc.tree msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/pt/helpcontent2/source/text/sbasic/guide.po libreoffice-5.1.2~rc2/translations/source/pt/helpcontent2/source/text/sbasic/guide.po --- libreoffice-5.1.1~rc2/translations/source/pt/helpcontent2/source/text/sbasic/guide.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/pt/helpcontent2/source/text/sbasic/guide.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\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-16 15:45+0000\n" -"Last-Translator: Sérgio Marques <smarquespt@gmail.com>\n" +"PO-Revision-Date: 2016-03-04 02:33+0000\n" +"Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: pt\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1437061510.000000\n" +"X-POOTLE-MTIME: 1457058815.000000\n" #: access2base.xhp msgctxt "" @@ -591,7 +591,7 @@ "18\n" "help.text" msgid "Without using \"LoadDialog\" you can call the code as follows:" -msgstr "Sem utilizar \"LoadDialog\" pode invocar o código da seguinte forma:" +msgstr "Sem utilizar \"LoadDialog\", pode invocar o código da seguinte forma:" #: show_dialog.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/pt/helpcontent2/source/text/sbasic/shared/02.po libreoffice-5.1.2~rc2/translations/source/pt/helpcontent2/source/text/sbasic/shared/02.po --- libreoffice-5.1.1~rc2/translations/source/pt/helpcontent2/source/text/sbasic/shared/02.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/pt/helpcontent2/source/text/sbasic/shared/02.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\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-12-10 23:13+0000\n" -"Last-Translator: Sérgio Marques <smarquespt@gmail.com>\n" +"PO-Revision-Date: 2016-03-04 02:52+0000\n" +"Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: pt\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1449789207.000000\n" +"X-POOTLE-MTIME: 1457059963.000000\n" #: 11010000.xhp msgctxt "" @@ -654,7 +654,7 @@ "2\n" "help.text" msgid "<ahelp hid=\".uno:LoadBasic\">Opens the Basic source text in the Basic IDE window.</ahelp>" -msgstr "<ahelp hid=\".uno:LoadBasic\">Abre o texto origem do Basic na janela Basic IDE.</ahelp>" +msgstr "<ahelp hid=\".uno:LoadBasic\">Abre o texto fonte do Basic na janela Basic IDE.</ahelp>" #: 11140000.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/pt/helpcontent2/source/text/sbasic/shared.po libreoffice-5.1.2~rc2/translations/source/pt/helpcontent2/source/text/sbasic/shared.po --- libreoffice-5.1.1~rc2/translations/source/pt/helpcontent2/source/text/sbasic/shared.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/pt/helpcontent2/source/text/sbasic/shared.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\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-21 14:07+0000\n" -"Last-Translator: Sérgio Marques <smarquespt@gmail.com>\n" +"PO-Revision-Date: 2016-03-04 02:51+0000\n" +"Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: pt\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1453385247.000000\n" +"X-POOTLE-MTIME: 1457059915.000000\n" #: 00000002.xhp msgctxt "" @@ -94,7 +94,7 @@ "32\n" "help.text" msgid "Measurement Units" -msgstr "Unidades de medição" +msgstr "Unidades de medida" #: 00000002.xhp msgctxt "" @@ -1998,7 +1998,7 @@ "135\n" "help.text" msgid "Type-declaration missing: \"a$=\"" -msgstr "Declaração de tipo ausente: \"a$=\"" +msgstr "Declaração de tipo inexistente: \"a$=\"" #: 01020100.xhp msgctxt "" @@ -5021,7 +5021,7 @@ "12\n" "help.text" msgid "(DownArrow)" -msgstr "(SetaParaBaixo)" +msgstr "(Seta para baixo)" #: 01170100.xhp msgctxt "" @@ -6796,7 +6796,7 @@ "2\n" "help.text" msgid "Define event assignments for the selected control or dialog. The available events depend on the type of control selected." -msgstr "Definir a atribuição dos eventos para o controlo ou caixa de diálogo selecionados. Os eventos disponíveis dependem do tipo de controlo selecionado." +msgstr "Define a atribuição dos eventos para o controlo ou caixa de diálogo selecionados. Os eventos disponíveis dependem do tipo de controlo selecionado." #: 01170103.xhp msgctxt "" @@ -7634,7 +7634,7 @@ "par_id4056825\n" "help.text" msgid "3 : Abort" -msgstr "3 : Desistir" +msgstr "3 : Cancelar" #: 03010102.xhp msgctxt "" @@ -22905,7 +22905,7 @@ "7\n" "help.text" msgid "<emph>Parameter:</emph> Parameters to pass to the procedure. The type and number of parameters is dependent on the routine that is executing." -msgstr "<emph>Parâmetro:</emph> Parâmetros a transferir para o procedimento. O tipo e número dos parâmetros depende da rotina que os executa." +msgstr "<emph>Parâmetro:</emph> os parâmetros a transmitir para o procedimento. O tipo e número dos parâmetros depende da rotina que os executa." #: 03090401.xhp msgctxt "" @@ -23596,7 +23596,7 @@ "15\n" "help.text" msgid "<emph>Type:</emph> Type-declaration keyword." -msgstr "<emph>Tipo:</emph> Palavra-chave da declaração de tipo." +msgstr "<emph>Tipo:</emph> palavra-chave da declaração de tipo." #: 03090406.xhp msgctxt "" @@ -23895,7 +23895,7 @@ "12\n" "help.text" msgid "<emph>Type:</emph> Type-declaration key word." -msgstr "<emph>Tipo:</emph> Palavra-chave da declaração de tipo." +msgstr "<emph>Tipo:</emph> palavra-chave da declaração de tipo." #: 03090409.xhp msgctxt "" @@ -25719,7 +25719,7 @@ "6\n" "help.text" msgid "<emph>Characterrange:</emph> Letters that specify the range of variables that you want to set the default data type for." -msgstr "<emph>Intervalo:</emph> Letras que especificam o intervalo das variáveis para as quais deseje definir o tipo de dados padrão." +msgstr "<emph>Intervalo:</emph> letras que especificam o intervalo das variáveis para as quais deseje definir o tipo de dados padrão." #: 03101100.xhp msgctxt "" @@ -25728,7 +25728,7 @@ "7\n" "help.text" msgid "<emph>xxx:</emph> Keyword that defines the default variable type:" -msgstr "<emph>xxx:</emph> Palavra-chave que define o tipo da variável padrão:" +msgstr "<emph>xxx:</emph> palavra-chave que define o tipo da variável padrão:" #: 03101100.xhp msgctxt "" @@ -25737,7 +25737,7 @@ "8\n" "help.text" msgid "<emph>Keyword: </emph>Default variable type" -msgstr "<emph>Palavra-chave: </emph>Tipo de variável padrão" +msgstr "<emph>Palavra-chave: </emph>tipo de variável padrão" #: 03101100.xhp msgctxt "" @@ -25764,7 +25764,7 @@ "12\n" "help.text" msgid "' Prefix definition for variable types:" -msgstr "' Definições de prefixo para tipos de variável:" +msgstr "' Definição de prefixo para tipos de variável:" #: 03101100.xhp msgctxt "" @@ -25837,7 +25837,7 @@ "par_idN1059B\n" "help.text" msgid "<emph>Characterrange:</emph> Letters that specify the range of variables that you want to set a default data type for." -msgstr "<emph>Intervalo:</emph> Letras que especificam o intervalo das variáveis para as quais deseje definir o tipo de dados padrão." +msgstr "<emph>Intervalo:</emph> letras que especificam o intervalo das variáveis para as quais deseje definir o tipo de dados padrão." #: 03101110.xhp msgctxt "" @@ -25845,7 +25845,7 @@ "par_idN105A2\n" "help.text" msgid "<emph>xxx:</emph> Keyword that defines the default variable type:" -msgstr "<emph>xxx:</emph> Palavra-chave que define o tipo da variável padrão:" +msgstr "<emph>xxx:</emph> palavra-chave que define o tipo da variável padrão:" #: 03101110.xhp msgctxt "" @@ -25853,7 +25853,7 @@ "par_idN105A9\n" "help.text" msgid "<emph>Keyword:</emph> Default variable type" -msgstr "<emph>Palavra-chave:</emph> Tipo de variável padrão" +msgstr "<emph>Palavra-chave:</emph> tipo de variável padrão" #: 03101110.xhp msgctxt "" @@ -25949,7 +25949,7 @@ "par_idN1059B\n" "help.text" msgid "<emph>Characterrange:</emph> Letters that specify the range of variables that you want to set a default data type for." -msgstr "<emph>Intervalo:</emph> Letras que especificam o intervalo das variáveis para as quais deseje definir o tipo de dados padrão." +msgstr "<emph>Intervalo:</emph> letras que especificam o intervalo das variáveis para as quais deseje definir o tipo de dados padrão." #: 03101120.xhp msgctxt "" @@ -25957,7 +25957,7 @@ "par_idN105A2\n" "help.text" msgid "<emph>xxx:</emph> Keyword that defines the default variable type:" -msgstr "<emph>xxx:</emph> Palavra-chave que define o tipo da variável padrão:" +msgstr "<emph>xxx:</emph> palavra-chave que define o tipo da variável padrão:" #: 03101120.xhp msgctxt "" @@ -25965,7 +25965,7 @@ "par_idN105A9\n" "help.text" msgid "<emph>Keyword:</emph> Default variable type" -msgstr "<emph>Palavra-chave:</emph> Tipo de variável padrão" +msgstr "<emph>Palavra-chave:</emph> tipo de variável padrão" #: 03101120.xhp msgctxt "" @@ -26061,7 +26061,7 @@ "par_idN10595\n" "help.text" msgid "<emph>Characterrange:</emph> Letters that specify the range of variables that you want to set a default data type for." -msgstr "<emph>Intervalo:</emph> Letras que especificam o intervalo das variáveis para as quais deseje definir o tipo de dados padrão." +msgstr "<emph>Intervalo:</emph> letras que especificam o intervalo das variáveis para as quais deseje definir o tipo de dados padrão." #: 03101130.xhp msgctxt "" @@ -26069,7 +26069,7 @@ "par_idN1059C\n" "help.text" msgid "<emph>xxx:</emph> Keyword that defines the default variable type:" -msgstr "<emph>xxx:</emph> Palavra-chave que define o tipo da variável padrão:" +msgstr "<emph>xxx:</emph> palavra-chave que define o tipo da variável padrão:" #: 03101130.xhp msgctxt "" @@ -26077,7 +26077,7 @@ "par_idN105A3\n" "help.text" msgid "<emph>Keyword:</emph> Default variable type" -msgstr "<emph>Palavra-chave:</emph> Tipo de variável padrão" +msgstr "<emph>Palavra-chave:</emph> tipo de variável padrão" #: 03101130.xhp msgctxt "" @@ -26173,7 +26173,7 @@ "par_idN10595\n" "help.text" msgid "<emph>Characterrange:</emph> Letters that specify the range of variables that you want to set a default data type for." -msgstr "<emph>Intervalo:</emph> Letras que especificam o intervalo das variáveis para as quais deseje definir o tipo de dados padrão." +msgstr "<emph>Intervalo:</emph> letras que especificam o intervalo das variáveis para as quais deseje definir o tipo de dados padrão." #: 03101140.xhp msgctxt "" @@ -26181,7 +26181,7 @@ "par_idN1059C\n" "help.text" msgid "<emph>xxx:</emph> Keyword that defines the default variable type:" -msgstr "<emph>xxx:</emph> Palavra-chave que define o tipo da variável padrão:" +msgstr "<emph>xxx:</emph> palavra-chave que define o tipo da variável padrão:" #: 03101140.xhp msgctxt "" @@ -26189,7 +26189,7 @@ "par_idN105A3\n" "help.text" msgid "<emph>Keyword:</emph> Default variable type" -msgstr "<emph>Palavra-chave:</emph> Tipo de variável padrão" +msgstr "<emph>Palavra-chave:</emph> tipo de variável padrão" #: 03101140.xhp msgctxt "" @@ -26291,7 +26291,7 @@ "6\n" "help.text" msgid "<emph>Characterrange:</emph> Letters that specify the range of variables that you want to set a default data type for." -msgstr "<emph>Intervalo:</emph> Letras que especificam o intervalo das variáveis para as quais deseje definir o tipo de dados padrão." +msgstr "<emph>Intervalo:</emph> letras que especificam o intervalo das variáveis para as quais deseje definir o tipo de dados padrão." #: 03101300.xhp msgctxt "" @@ -26300,7 +26300,7 @@ "7\n" "help.text" msgid "<emph>xxx:</emph> Keyword that defines the default variable type:" -msgstr "<emph>xxx:</emph> Palavra-chave que define o tipo da variável padrão:" +msgstr "<emph>xxx:</emph> palavra-chave que define o tipo da variável padrão:" #: 03101300.xhp msgctxt "" @@ -26309,7 +26309,7 @@ "8\n" "help.text" msgid "<emph>Keyword:</emph> Default variable type" -msgstr "<emph>Palavra-chave:</emph> Tipo de variável padrão" +msgstr "<emph>Palavra-chave:</emph> tipo de variável padrão" #: 03101300.xhp msgctxt "" @@ -26415,7 +26415,7 @@ "6\n" "help.text" msgid "<emph>Characterrange:</emph> Letters that specify the range of variables that you want to set the default data type for." -msgstr "<emph>Intervalo:</emph> Letras que especificam o intervalo das variáveis para as quais deseje definir o tipo de dados padrão." +msgstr "<emph>Intervalo:</emph> letras que especificam o intervalo das variáveis para as quais deseje definir o tipo de dados padrão." #: 03101400.xhp msgctxt "" @@ -26424,7 +26424,7 @@ "7\n" "help.text" msgid "<emph>xxx:</emph> Keyword that defines the default variable type:" -msgstr "<emph>xxx:</emph> Palavra-chave que define o tipo da variável padrão:" +msgstr "<emph>xxx:</emph> palavra-chave que define o tipo da variável padrão:" #: 03101400.xhp msgctxt "" @@ -26433,7 +26433,7 @@ "8\n" "help.text" msgid "<emph>Keyword:</emph> Default variable type" -msgstr "<emph>Palavra-chave:</emph> Tipo de variável padrão" +msgstr "<emph>Palavra-chave:</emph> tipo de variável padrão" #: 03101400.xhp msgctxt "" @@ -26539,7 +26539,7 @@ "6\n" "help.text" msgid "<emph>Characterrange:</emph> Letters that specify the range of variables that you want to set a default data type for." -msgstr "<emph>Intervalo:</emph> Letras que especificam o intervalo das variáveis para as quais deseje definir o tipo de dados padrão." +msgstr "<emph>Intervalo:</emph> letras que especificam o intervalo das variáveis para as quais deseje definir o tipo de dados padrão." #: 03101500.xhp msgctxt "" @@ -26548,7 +26548,7 @@ "7\n" "help.text" msgid "<emph>xxx:</emph> Keyword that defines the default variable type:" -msgstr "<emph>xxx:</emph> Palavra-chave que define o tipo da variável padrão:" +msgstr "<emph>xxx:</emph> palavra-chave que define o tipo da variável padrão:" #: 03101500.xhp msgctxt "" @@ -26557,7 +26557,7 @@ "8\n" "help.text" msgid "<emph>Keyword:</emph> Default variable type" -msgstr "<emph>Palavra-chave:</emph> Tipo de variável padrão" +msgstr "<emph>Palavra-chave:</emph> tipo de variável padrão" #: 03101500.xhp msgctxt "" @@ -26663,7 +26663,7 @@ "6\n" "help.text" msgid "<emph>Characterrange:</emph> Letters that specify the range of variables that you want to set the default data type for." -msgstr "<emph>Intervalo:</emph> Letras que especificam o intervalo das variáveis para as quais deseje definir o tipo de dados padrão." +msgstr "<emph>Intervalo:</emph> letras que especificam o intervalo das variáveis para as quais deseje definir o tipo de dados padrão." #: 03101600.xhp msgctxt "" @@ -26672,7 +26672,7 @@ "7\n" "help.text" msgid "<emph>xxx:</emph> Keyword that defines the default variable type:" -msgstr "<emph>xxx:</emph> Palavra-chave que define o tipo da variável padrão:" +msgstr "<emph>xxx:</emph> palavra-chave que define o tipo da variável padrão:" #: 03101600.xhp msgctxt "" @@ -26681,7 +26681,7 @@ "8\n" "help.text" msgid "<emph>Keyword: </emph>Default variable type" -msgstr "<emph>Palavra-chave: </emph>Tipo de variável padrão" +msgstr "<emph>Palavra-chave: </emph>tipo de variável padrão" #: 03101600.xhp msgctxt "" @@ -27473,7 +27473,7 @@ "9\n" "help.text" msgid "<emph>VarType:</emph> Keyword that declares the data type of a variable." -msgstr "<emph>TipoVar:</emph> Palavra-chave que determina o tipo de dados de uma variável." +msgstr "<emph>TipoVar:</emph> palavra-chave que determina o tipo de dados de uma variável." #: 03102101.xhp msgctxt "" @@ -27482,7 +27482,7 @@ "10\n" "help.text" msgid "<emph>Keyword:</emph> Variable type" -msgstr "<emph>Palavra-chave:</emph> Tipo de variável" +msgstr "<emph>Palavra-chave:</emph> tipo de variável" #: 03102101.xhp msgctxt "" @@ -27563,7 +27563,7 @@ "19\n" "help.text" msgid "<emph>Variant: </emph>Variant variable type (can contain all types and is set by definition)." -msgstr "<emph>Variante: </emph>Tipo de variável variante (pode conter todos os tipos e por norma , está definida)." +msgstr "<emph>Variante: </emph>tipo de variável variante (pode conter todos os tipos e por norma , está definida)." #: 03102101.xhp msgctxt "" @@ -33313,7 +33313,7 @@ "11\n" "help.text" msgid "You can also use the <emph>RSet statement</emph> to assign variables of one user-defined type to another." -msgstr "É também possível utilizar a <emph>instrução RSet</emph> para atribuir variáveis de um tipo definido pelo utilizador para outro." +msgstr "Também pode utilizar a <emph>instrução RSet</emph> para atribuir variáveis de um tipo definido pelo utilizador para outro." #: 03120308.xhp msgctxt "" @@ -37287,7 +37287,7 @@ "61\n" "help.text" msgid "Loading of graphics is stopped by the user (for example, when downloading the page)." -msgstr "O carregamento de imagens foi interrompido pelo utilizador (por exemplo, ao transferir uma página)." +msgstr "O carregamento de imagens foi interrompido pelo utilizador (por exemplo, ao descarregar a página)." #: 05060700.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/pt/helpcontent2/source/text/scalc/01.po libreoffice-5.1.2~rc2/translations/source/pt/helpcontent2/source/text/scalc/01.po --- libreoffice-5.1.1~rc2/translations/source/pt/helpcontent2/source/text/scalc/01.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/pt/helpcontent2/source/text/scalc/01.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "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-02-04 13:37+0000\n" -"Last-Translator: Sérgio Marques <smarquespt@gmail.com>\n" +"PO-Revision-Date: 2016-03-04 03:32+0000\n" +"Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: pt\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1454593057.000000\n" +"X-POOTLE-MTIME: 1457062332.000000\n" #: 01120000.xhp msgctxt "" @@ -1489,7 +1489,7 @@ "25\n" "help.text" msgid "Unit of Time" -msgstr "Unidade de hora" +msgstr "Unidade de tempo" #: 02140600.xhp msgctxt "" @@ -1498,7 +1498,7 @@ "26\n" "help.text" msgid "In this area you can specify the desired unit of time. This area is only active if the <emph>Date</emph> option has been chosen in the <emph>Series type</emph> area." -msgstr "Nesta área, pode especificar a unidade de hora pretendida. Esta área só está ativa se a opção <emph>Data</emph> tiver sido escolhida na área <emph>Tipo de série</emph>." +msgstr "Nesta área, pode especificar a unidade de tempo desejada. Esta área só está ativa se a opção <emph>Data</emph> tiver sido escolhida na área <emph>Tipo de série</emph>." #: 02140600.xhp msgctxt "" @@ -3583,7 +3583,7 @@ "par_id8007446\n" "help.text" msgid "You can download the complete ODFF (OpenDocument Format Formula) specification from the <link href=\"http://www.oasis-open.org/committees/documents.php?wg_abbrev=office-formula\">OASIS</link> web site." -msgstr "Pode transferir as especificações ODFF (OpenDocument Format Formula) no sítio web da <link href=\"http://www.oasis-open.org/committees/documents.php?wg_abbrev=office-formula\">OASIS</link>." +msgstr "Pode descarregar as especificações ODFF (OpenDocument Format Formula) no sítio web da <link href=\"http://www.oasis-open.org/committees/documents.php?wg_abbrev=office-formula\">OASIS</link>." #: 04060000.xhp msgctxt "" @@ -6457,7 +6457,7 @@ "346\n" "help.text" msgid "A security is issued on 2001-02-28. First interest is set for 2001-08-31. The settlement date is 2001-05-01. The Rate is 0.1 or 10% and Par is 1000 currency units. Interest is paid half-yearly (frequency is 2). The basis is the US method (0). How much interest has accrued?" -msgstr "É emitido um título a 2001-02-28. O primeiro pagamento de juros foi definido para 2001-08-31. A data de liquidação é 2001-05-01. A taxa é 0,1 ou 10% e o valor nominal é 1.000 unidades monetárias. Os juros são pagos semestralmente (a frequência é 2). A base é o método dos EUA (0). Qual o valor de juros acumulados?" +msgstr "Um título foi emitido a 2001-02-28. O primeiro pagamento de juros foi definido para 2001-08-31. A data de liquidação é 2001-05-01. A taxa é 0,1 ou 10% e o valor nominal é 1000 unidades monetárias. Os juros são pagos semestralmente (a frequência é 2). A base é o método dos EUA (0). Qual o valor de juros acumulados?" #: 04060103.xhp msgctxt "" @@ -6564,7 +6564,7 @@ "357\n" "help.text" msgid "A security is issued on 2001-04-01. The maturity date is set for 2001-06-15. The Rate is 0.1 or 10% and Par is 1000 currency units. The basis of the daily/annual calculation is the daily balance (3). How much interest has accrued?" -msgstr "Um título foi emitido em 2001-04-01. A data de vencimento foi definida para 2001-06-15. A taxa é 0,1 ou 10% e o valor nominal é 1.000 unidades monetárias. A base do cálculo diário/anual é a amortização diária (3). Qual será o valor de de juros acumulados?" +msgstr "Um título foi emitido em 2001-04-01. A data de vencimento foi definida para 2001-06-15. A taxa é 0,1 ou 10% e o valor nominal é 1000 unidades monetárias. A base do cálculo diário/anual é a amortização diária (3). Qual será o valor de de juros acumulados?" #: 04060103.xhp msgctxt "" @@ -6671,7 +6671,7 @@ "399\n" "help.text" msgid "Settlement date: February 15 1999, maturity date: May 15 1999, investment sum: 1000 currency units, discount: 5.75 per cent, basis: Daily balance/360 = 2." -msgstr "Para um título com o valor de 1.000 unidades monetárias cuja data de liquidação é 1999-02-15 e a data de vencimento é 1999-05-15 com uma taxa de desconto de 5,75 por cento e base real/360 = 2." +msgstr "Para um título com o valor de 1000 unidades monetárias cuja data de liquidação é 1999-02-15 e a data de vencimento é 1999-05-15 com uma taxa de desconto de 5,75 por cento e base real/360 = 2." #: 04060103.xhp msgctxt "" @@ -6814,7 +6814,7 @@ "15\n" "help.text" msgid "What is the present value of an investment, if 500 currency units are paid out monthly and the annual interest rate is 8%? The payment period is 48 months and 20,000 currency units are to remain at the end of the payment period." -msgstr "Qual é o valor atual de um investimento se forem pagas mensalmente 500 unidades monetárias a uma taxa de juro anual for 8%? O período de pagamento são 48 meses e devem permanecer no final do período de pagamento 20.000 unidades monetárias." +msgstr "Qual é o valor atual de um investimento se forem pagas mensalmente 500 unidades monetárias a uma taxa de juro anual for 8%? O período de pagamento são 48 meses e devem permanecer no final do período de pagamento 20 000 unidades monetárias." #: 04060103.xhp msgctxt "" @@ -6823,7 +6823,7 @@ "16\n" "help.text" msgid "<item type=\"input\">=PV(8%/12;48;500;20000)</item> = -35,019.37 currency units. Under the named conditions, you must deposit 35,019.37 currency units today, if you want to receive 500 currency units per month for 48 months and have 20,000 currency units left over at the end. Cross-checking shows that 48 x 500 currency units + 20,000 currency units = 44,000 currency units. The difference between this amount and the 35,000 currency units deposited represents the interest paid." -msgstr "<item type=\"input\">=VA(8%/12;48;500;20000)</item> = -35.019,37 unidades monetárias. Nas condições indicadas, tem de depositar 35.019,37 unidades monetárias hoje, se quiser receber 500 unidades monetárias, por mês, durante 48 meses e ainda ficar com 20.000 unidades monetárias . A correlação cruzada demonstra que 48 x 500 unidades monetárias + 20.000 unidades monetárias são o equivalente a 44.000 unidades monetárias. A diferença entre esta quantidade e as 35.000 unidades monetárias representa o juro pago." +msgstr "<item type=\"input\">=VA(8%/12;48;500;20000)</item> = -35 019,37 unidades monetárias. Nas condições indicadas, tem de depositar 35 019,37 unidades monetárias hoje, se quiser receber 500 unidades monetárias, por mês, durante 48 meses e ainda ficar com 20 000 unidades monetárias . A correlação cruzada demonstra que 48 x 500 unidades monetárias + 20 000 unidades monetárias são o equivalente a 44 000 unidades monetárias. A diferença entre esta quantidade e as 35 000 unidades monetárias representa o juro pago." #: 04060103.xhp msgctxt "" @@ -6939,7 +6939,7 @@ "29\n" "help.text" msgid "A video system initially costing 50,000 currency units is to be depreciated annually for the next 5 years. The salvage value is to be 10,000 currency units. You want to calculate depreciation for the first year." -msgstr "Um sistema de vídeo que custe inicialmente 50.000 unidades monetárias deve ser depreciado durante 5 anos. O valor residual é 10.000 unidades monetárias. Pretende-se calcular a depreciação do primeiro ano." +msgstr "Um sistema de vídeo que custe inicialmente 50 000 unidades monetárias deve ser depreciado durante 5 anos. O valor residual é 10 000 unidades monetárias. Pretende-se calcular a depreciação do primeiro ano." #: 04060103.xhp msgctxt "" @@ -6948,7 +6948,7 @@ "30\n" "help.text" msgid "<item type=\"input\">=SYD(50000;10000;5;1)</item>=13,333.33 currency units. The depreciation amount for the first year is 13,333.33 currency units." -msgstr "<item type=\"input\">=AMORTD(50000;10000;5;1)</item>=13.333,33. A depreciação no primeiro ano é de 13.333,33 unidades monetárias." +msgstr "<item type=\"input\">=AMORTD(50000;10000;5;1)</item>=13 333,33. A depreciação no primeiro ano é de 13 333,33 unidades monetárias." #: 04060103.xhp msgctxt "" @@ -7074,7 +7074,7 @@ "44\n" "help.text" msgid "<item type=\"input\">50,000 currency units</item>" -msgstr "<item type=\"input\">50.000 unidades monetárias</item>" +msgstr "<item type=\"input\">50 000 unidades monetárias</item>" #: 04060103.xhp msgctxt "" @@ -7083,7 +7083,7 @@ "45\n" "help.text" msgid "<item type=\"input\">10,000 currency units</item>" -msgstr "<item type=\"input\">10.000 unidades monetárias</item>" +msgstr "<item type=\"input\">10 000 unidades monetárias</item>" #: 04060103.xhp msgctxt "" @@ -7110,7 +7110,7 @@ "48\n" "help.text" msgid "<item type=\"input\">13,333.33 currency units</item>" -msgstr "<item type=\"input\">13.333,33 unidades monetárias</item>" +msgstr "<item type=\"input\">13 333,33 unidades monetárias</item>" #: 04060103.xhp msgctxt "" @@ -7137,7 +7137,7 @@ "51\n" "help.text" msgid "<item type=\"input\">10,666.67 currency units</item>" -msgstr "<item type=\"input\">10.666,67 unidades monetárias</item>" +msgstr "<item type=\"input\">10 666,67 unidades monetárias</item>" #: 04060103.xhp msgctxt "" @@ -7164,7 +7164,7 @@ "54\n" "help.text" msgid "<item type=\"input\">8,000.00 currency units</item>" -msgstr "<item type=\"input\">8.000,00 unidades monetárias</item>" +msgstr "<item type=\"input\">8000,00 unidades monetárias</item>" #: 04060103.xhp msgctxt "" @@ -7191,7 +7191,7 @@ "57\n" "help.text" msgid "<item type=\"input\">5,333.33 currency units</item>" -msgstr "<item type=\"input\">5.333,33 unidades monetárias</item>" +msgstr "<item type=\"input\">5333,33 unidades monetárias</item>" #: 04060103.xhp msgctxt "" @@ -7218,7 +7218,7 @@ "60\n" "help.text" msgid "<item type=\"input\">2,666.67 currency units</item>" -msgstr "<item type=\"input\">2.666,67 unidades monetárias</item>" +msgstr "<item type=\"input\">2666,67 unidades monetárias</item>" #: 04060103.xhp msgctxt "" @@ -7362,7 +7362,7 @@ "80\n" "help.text" msgid "<item type=\"input\">40,000.00 currency units</item>" -msgstr "<item type=\"input\">40.000,00 unidades monetárias</item>" +msgstr "<item type=\"input\">40 000,00 unidades monetárias</item>" #: 04060103.xhp msgctxt "" @@ -7942,7 +7942,7 @@ "110\n" "help.text" msgid "A computer system with an initial cost of 75,000 currency units is to be depreciated monthly over 5 years. The value at the end of the depreciation is to be 1 currency unit. The factor is 2." -msgstr "Um sistema informático com um custo inicial de 75.000 unidades monetárias será depreciado mensalmente durante 5 anos. O valor residual do ativo deverá ser 1 unidade monetária. O fator é 2." +msgstr "Um sistema informático com um custo inicial de 75 000 unidades monetárias será depreciado mensalmente durante 5 anos. O valor residual do ativo deverá ser 1 unidade monetária. O fator é 2." #: 04060103.xhp msgctxt "" @@ -7951,7 +7951,7 @@ "111\n" "help.text" msgid "<item type=\"input\">=DDB(75000;1;60;12;2) </item>= 1,721.81 currency units. Therefore, the double-declining depreciation in the twelfth month after purchase is 1,721.81 currency units." -msgstr "<item type=\"input\">=BDD(75000;1;60;12;2) </item>= 1.721,81. Assim, a depreciação de desvalorização dupla no décimo segundo mês após a aquisição é de 1.721,81 unidades monetárias." +msgstr "<item type=\"input\">=BDD(75000;1;60;12;2) </item>= 1721,81. Assim, a depreciação de desvalorização dupla no décimo segundo mês após a aquisição é de 1721,81 unidades monetárias." #: 04060103.xhp msgctxt "" @@ -8067,7 +8067,7 @@ "124\n" "help.text" msgid "A computer system with an initial cost of 25,000 currency units is to be depreciated over a three year period. The salvage value is to be 1,000 currency units. One period is 30 days." -msgstr "Um sistema informático com um custo inicial de 25.000 unidades monetárias deve ser depreciado ao longo de um período de três anos. O valor residual é 1.000 unidades monetárias. Um período corresponde a 30 dias." +msgstr "Um sistema informático com um custo inicial de 25 000 unidades monetárias deve ser depreciado ao longo de um período de três anos. O valor residual é 1000 unidades monetárias. Um período corresponde a 30 dias." #: 04060103.xhp msgctxt "" @@ -8076,7 +8076,7 @@ "125\n" "help.text" msgid "<item type=\"input\">=DB(25000;1000;36;1;6)</item> = 1,075.00 currency units" -msgstr "<item type=\"input\">=BD(25000;1000;36;1;6)</item> = 1.075,00" +msgstr "<item type=\"input\">=BD(25000;1000;36;1;6)</item> = 1075,00" #: 04060103.xhp msgctxt "" @@ -8085,7 +8085,7 @@ "126\n" "help.text" msgid "The fixed-declining depreciation of the computer system is 1,075.00 currency units." -msgstr "A depreciação do sistema informático é de 1.075,00 unidades monetárias." +msgstr "A depreciação do sistema informático é de 1075,00 unidades monetárias." #: 04060103.xhp msgctxt "" @@ -8263,7 +8263,7 @@ "323\n" "help.text" msgid "For a credit amount of 120,000 currency units with a two-year term and monthly installments, at a yearly interest rate of 12% the level of interest after 1.5 years is required." -msgstr "Para um crédito de 120.000 unidades monetárias com um prazo de dois anos e prestações mensais a uma taxa de juro anual de 12%, qual o valor de juros após 1,5 anos?" +msgstr "Para um crédito de 120 000 unidades monetárias com um prazo de dois anos e prestações mensais a uma taxa de juro anual de 12%, qual o valor de juros após 1,5 anos?" #: 04060103.xhp msgctxt "" @@ -33921,7 +33921,7 @@ "234\n" "help.text" msgid "What is the declining-balance double-rate depreciation for a period if the initial cost is 35,000 currency units and the value at the end of the depreciation is 7,500 currency units. The depreciation period is 3 years. The depreciation from the 10th to the 20th period is calculated." -msgstr "Qual é a depreciação de taxa dupla de amortização de um período se o custo inicial for 35.000 unidades monetárias e o valor no fim da depreciação for 7.500 unidades monetárias. O período de depreciação é 3 anos. É calculada a depreciação do 10.º ao 20.º período." +msgstr "Qual é a depreciação de taxa dupla de amortização de um período se o custo inicial for 35 000 unidades monetárias e o valor no fim da depreciação for 7500 unidades monetárias. O período de depreciação é 3 anos. É calculada a depreciação do 10.º ao 20.º período." #: 04060118.xhp msgctxt "" @@ -33930,7 +33930,7 @@ "235\n" "help.text" msgid "<item type=\"input\">=VDB(35000;7500;36;10;20;2)</item> = 8603.80 currency units. The depreciation during the period between the 10th and the 20th period is 8,603.80 currency units." -msgstr "<item type=\"input\">=BDV(35000;7500;36;10;20;2)</item> = 8603,80 unidades monetárias. A depreciação entre o 10.º e o 20.º períodos é de 8.603,80 unidades monetárias." +msgstr "<item type=\"input\">=BDV(35000;7500;36;10;20;2)</item> = 8603,80 unidades monetárias. A depreciação entre o 10.º e o 20.º períodos é de 8603,80 unidades monetárias." #: 04060118.xhp msgctxt "" @@ -34393,7 +34393,7 @@ "245\n" "help.text" msgid "For four periods (years) and a cash value of 7,500 currency units, the interest rate of the return is to be calculated if the future value is 10,000 currency units." -msgstr "Para quatro períodos (anos) e um valor atual de 7.500 unidades monetárias, quql é a taxa de juro necessária para obter um valor futuro de 10.000 unidades monetárias." +msgstr "Para quatro períodos (anos) e um valor atual de 7500 unidades monetárias, qual será a taxa de juro necessária para obter um valor futuro de 10 000 unidades monetárias." #: 04060118.xhp msgctxt "" @@ -34411,7 +34411,7 @@ "247\n" "help.text" msgid "The interest rate must be 7.46 % so that 7,500 currency units will become 10,000 currency units." -msgstr "A taxa de juro deve ser 7,46 % para que 7.500 unidades monetárias correspondam a 10.000 unidades monetárias." +msgstr "A taxa de juro deve ser 7,46 % para que 7500 unidades monetárias correspondam a 10 000 unidades monetárias." #: 04060118.xhp msgctxt "" @@ -35347,7 +35347,7 @@ "274\n" "help.text" msgid "What is the interest rate during the fifth period (year) if the constant interest rate is 5% and the cash value is 15,000 currency units? The periodic payment is seven years." -msgstr "Qual é a taxa de juro durante o quinto período (ano) se a taxa de juro constante for 5% e o valor atual for 15.000 unidades monetárias? O pagamento periódico corresponde a sete anos." +msgstr "Qual é a taxa de juro durante o quinto período (ano) se a taxa de juro constante for 5% e o valor atual for 15 000 unidades monetárias? O pagamento periódico corresponde a sete anos." #: 04060118.xhp msgctxt "" @@ -35463,7 +35463,7 @@ "287\n" "help.text" msgid "What is the value at the end of an investment if the interest rate is 4% and the payment period is two years, with a periodic payment of 750 currency units. The investment has a present value of 2,500 currency units." -msgstr "Qual é o valor no final de um investimento se a taxa de juro for 4% e o período de pagamento for dois anos, com um pagamento periódico de 750 unidades monetárias. O valor atual do investimento é de 2.500 unidades monetárias." +msgstr "Qual é o valor no final de um investimento se a taxa de juro for 4% e o período de pagamento for dois anos, com um pagamento periódico de 750 unidades monetárias. O valor atual do investimento é de 2500 unidades monetárias." #: 04060118.xhp msgctxt "" @@ -35472,7 +35472,7 @@ "288\n" "help.text" msgid "<item type=\"input\">=FV(4%;2;750;2500) </item>= -4234.00 currency units. The value at the end of the investment is 4234.00 currency units." -msgstr "<item type=\"input\">=vf(4%;2;750;2500) </item>= -4234,00 unidades monetárias. O valor futuro do investimento é 4.234,00 unidades monetárias." +msgstr "<item type=\"input\">=vf(4%;2;750;2500) </item>= -4234,00 unidades monetárias. O valor futuro do investimento é 4234,00 unidades monetárias." #: 04060118.xhp msgctxt "" @@ -35552,7 +35552,7 @@ "58\n" "help.text" msgid "1000 currency units have been invested in for three years. The interest rates were 3%, 4% and 5% per annum. What is the value after three years?" -msgstr "Foram investidas 1.000 unidades monetárias em três anos. As taxas de juro foram 3%, 4% e 5% por ano. Qual é o valor futuro no final dos três anos?" +msgstr "Foram investidas 1000 unidades monetárias em três anos. As taxas de juro foram 3%, 4% e 5% por ano. Qual é o valor futuro no final dos três anos?" #: 04060118.xhp msgctxt "" @@ -35668,7 +35668,7 @@ "300\n" "help.text" msgid "How many payment periods does a payment period cover with a periodic interest rate of 6%, a periodic payment of 153.75 currency units and a present cash value of 2.600 currency units." -msgstr "Quantos períodos de pagamento abrange um período com uma taxa de juro periódica de 6%, um pagamento periódico de 153,75 unidades monetárias e um valor atual de 2.600 unidades monetárias." +msgstr "Quantos períodos de pagamento abrange um período com uma taxa de juro periódica de 6%, um pagamento periódico de 153,75 unidades monetárias e um valor atual de 2600 unidades monetárias." #: 04060118.xhp msgctxt "" @@ -35846,7 +35846,7 @@ "249\n" "help.text" msgid "How high is the periodic monthly payment at an annual interest rate of 8.75% over a period of 3 years? The cash value is 5,000 currency units and is always paid at the beginning of a period. The future value is 8,000 currency units." -msgstr "Qual é o pagamento mensal periódico com uma taxa de juro anual de 8,75% num período de 3 anos? O valor atual é 5.000 unidades monetárias e é sempre pago no início de um período. O valor futuro é 8.000 unidades monetárias." +msgstr "Qual é o pagamento mensal periódico com uma taxa de juro anual de 8,75% num período de 3 anos? O valor atual é 5000 unidades monetárias e é sempre pago no início de um período. O valor futuro é 8000 unidades monetárias." #: 04060119.xhp msgctxt "" @@ -35971,7 +35971,7 @@ "263\n" "help.text" msgid "What are the payoff amounts if the yearly interest rate is 5.5% for 36 months? The cash value is 15,000 currency units. The payoff amount is calculated between the 10th and 18th period. The due date is at the end of the period." -msgstr "Quais são as quantias correspondentes aos pagamentos se a taxa de juro anual for de 5,5% durante 36 meses? O valor em dinheiro é 15.000 unidades monetárias. A quantia de pagamento é calculada entre o 10.º período e o 18.º período. A data final é no fim do período." +msgstr "Quais são as quantias correspondentes aos pagamentos se a taxa de juro anual for de 5,5% durante 36 meses? O valor em dinheiro é 15 000 unidades monetárias. A quantia de pagamento é calculada entre o 10.º período e o 18.º período. A data final é no fim do período." #: 04060119.xhp msgctxt "" @@ -36105,7 +36105,7 @@ "194\n" "help.text" msgid "Rate: 9.00 per cent per annum (9% / 12 = 0.0075), Duration: 30 years (payment periods = 30 * 12 = 360), NPV: 125000 currency units." -msgstr "Taxa: 9,00 por cento ao ano (9% / 12 = 0,0075), Duração: 30 anos (períodos de pagamento = 30 * 12 = 360), VPL: 125.000 unidades monetárias." +msgstr "Taxa: 9,00 por cento ao ano (9% / 12 = 0,0075), Duração: 30 anos (períodos de pagamento = 30 * 12 = 360), VPL: 125 000 unidades monetárias." #: 04060119.xhp msgctxt "" @@ -36391,7 +36391,7 @@ "177\n" "help.text" msgid "Rate: 9.00 per cent per annum (9% / 12 = 0.0075), Duration: 30 years (NPER = 30 * 12 = 360), Pv: 125000 currency units." -msgstr "Taxa: 9,00 por cento ao ano (9% / 12 = 0,0075), Duração: 30 anos (NPER = 30 * 12 = 360), Va: 125.000 unidades monetárias." +msgstr "Taxa: 9,00 por cento ao ano (9% / 12 = 0,0075), Duração: 30 anos (NPER = 30 * 12 = 360), Va: 125 000 unidades monetárias." #: 04060119.xhp msgctxt "" @@ -36873,7 +36873,7 @@ "288\n" "help.text" msgid "At an interest rate of 4.75%, a cash value of 25,000 currency units and a future value of 1,000,000 currency units, a duration of 79.49 payment periods is returned. The periodic payment is the resulting quotient from the future value and the duration, in this case 1,000,000/79.49=12,850.20." -msgstr "Com uma taxa de juro de 4,75%, um valor atual de 25.000 unidades monetárias e um valor futuro de 1.000.000 unidades monetárias, é obtida uma duração de 79,49 períodos de pagamento. O pagamento periódico é o quociente resultante do valor futuro e da duração, neste caso 1.000.000/79,49=12.850,20." +msgstr "Com uma taxa de juro de 4,75%, um valor atual de 25.000 unidades monetárias e um valor futuro de 1 000 000 unidades monetárias, é obtida uma duração de 79,49 períodos de pagamento. O pagamento periódico é o quociente resultante do valor futuro e da duração, neste caso 1 000 000/79,49=12 850,20." #: 04060119.xhp msgctxt "" @@ -36962,7 +36962,7 @@ "298\n" "help.text" msgid "Office equipment with an initial cost of 50,000 currency units is to be depreciated over 7 years. The value at the end of the depreciation is to be 3,500 currency units." -msgstr "Um equipamento de escritório com um custo inicial de 50.000 unidades monetárias será depreciado ao longo de 7 anos. O valor residual no final da depreciação será 3.500 unidades monetárias." +msgstr "Um equipamento de escritório com um custo inicial de 50 000 unidades monetárias será depreciado ao longo de 7 anos. O valor residual no final da depreciação será 3500 unidades monetárias." #: 04060119.xhp msgctxt "" @@ -38076,7 +38076,7 @@ "340\n" "help.text" msgid "What are the periodic payments at a yearly interest rate of 1.99% if the payment time is 3 years and the cash value is 25,000 currency units. There are 36 months as 36 payment periods, and the interest rate per payment period is 1.99%/12." -msgstr "Quais serão os pagamentos periódicos com uma taxa de juro anual de 1,99% se o período de pagamento for 3 anos e o valor em dinheiro for 25.000 unidades monetárias. Os 36 meses correspondem a 36 períodos de pagamento e a taxa de juro por período de pagamento é 1,99%/12." +msgstr "Quais serão os pagamentos periódicos com uma taxa de juro anual de 1,99% se o período de pagamento for 3 anos e o valor em dinheiro for 25 000 unidades monetárias. Os 36 meses correspondem a 36 períodos de pagamento e a taxa de juro por período de pagamento é 1,99%/12." #: 04060119.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/pt/helpcontent2/source/text/scalc/guide.po libreoffice-5.1.2~rc2/translations/source/pt/helpcontent2/source/text/scalc/guide.po --- libreoffice-5.1.1~rc2/translations/source/pt/helpcontent2/source/text/scalc/guide.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/pt/helpcontent2/source/text/scalc/guide.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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-30 22:31+0000\n" -"Last-Translator: Sérgio Marques <smarquespt@gmail.com>\n" +"PO-Revision-Date: 2016-03-04 03:41+0000\n" +"Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: pt\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1454193090.000000\n" +"X-POOTLE-MTIME: 1457062872.000000\n" #: address_auto.xhp msgctxt "" @@ -2311,7 +2311,7 @@ "par_id5949278\n" "help.text" msgid "Choose <emph>File - Open</emph>, to load an existing spreadsheet document." -msgstr "Escolha <emph>Ficheiro - Abrir</emph>, para carregar um documento de folha de cálculo existente." +msgstr "Escolha <emph>Ficheiro - Abrir</emph>, para carregar uma folha de cálculo existente." #: cellreferences.xhp msgctxt "" @@ -2327,7 +2327,7 @@ "par_id8571123\n" "help.text" msgid "Now switch to the document you have just loaded. Click the cell with the data that you want to insert in the new document." -msgstr "Mude agora para o documento que acabou de carregar. Clique na célula que contém os dados que pretende inserir no novo documento." +msgstr "Agora, alterne para o documento carregado. Clique na célula com os dados que pretende inserir no novo documento." #: cellreferences.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/pt/helpcontent2/source/text/shared/00.po libreoffice-5.1.2~rc2/translations/source/pt/helpcontent2/source/text/shared/00.po --- libreoffice-5.1.1~rc2/translations/source/pt/helpcontent2/source/text/shared/00.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/pt/helpcontent2/source/text/shared/00.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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-30 22:38+0000\n" -"Last-Translator: Sérgio Marques <smarquespt@gmail.com>\n" +"PO-Revision-Date: 2016-03-04 03:59+0000\n" +"Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: pt\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1454193482.000000\n" +"X-POOTLE-MTIME: 1457063950.000000\n" #: 00000001.xhp msgctxt "" @@ -616,7 +616,7 @@ "44\n" "help.text" msgid "FTP stands for File Transfer Protocol and is the standard transfer protocol for files in the Internet. An FTP server is a program on a computer connected to the Internet which stores files to be transmitted with the aid of FTP. While FTP is responsible for transmitting and downloading Internet files, <link href=\"text/shared/00/00000002.xhp#http\" name=\"HTTP\">HTTP</link> (Hypertext Transfer Protocol) provides the connection setup and data transfer between WWW servers and clients." -msgstr "FTP significa File Transfer Protocol e é o protocolo padrão de transferência de ficheiros na Internet. Um servidor FTP é um programa num computador ligado à Internet, no qual são armazenados ficheiros a transmitir através de FTP. Enquanto que o FTP é responsável pela transmissão e transferência de ficheiros da Internet, o <link href=\"text/shared/00/00000002.xhp#http\" name=\"HTTP\">HTTP</link> (Hypertext Transfer Protocol - Protocolo de Transferência de Hipertexto) disponibiliza a configuração da ligação e a transferência de dados entre servidores web e clientes." +msgstr "FTP significa File Transfer Protocol e é o protocolo padrão de transferência de ficheiros na Internet. Um servidor FTP é um programa num computador ligado à Internet, no qual são armazenados ficheiros a transmitir através de FTP. Enquanto que o FTP é responsável pela transmissão e descarga de ficheiros na Internet, o <link href=\"text/shared/00/00000002.xhp#http\" name=\"HTTP\">HTTP</link> (Hypertext Transfer Protocol) disponibiliza a configuração da ligação e a transferência de dados entre servidores web e clientes." #: 00000002.xhp msgctxt "" @@ -996,7 +996,7 @@ "128\n" "help.text" msgid "A proxy is a computer in the network acting as a kind of clipboard for data transfer. Whenever you access the Internet from a company network and request a Web page that has already been read by a colleague, the proxy will be able to display the page much quicker, as long as it's still in the memory. All that has to be checked in this case is that the page stored in the proxy is the latest version. If this is the case, the page won't have to be downloaded from the much slower Internet but can be loaded directly from the proxy." -msgstr "Um proxy é um computador que, na rede, age como uma área de transferência para transferência de dados. Sempre que aceder à Internet a partir de uma rede empresarial e solicitar uma página da Web que já tenha sido consultada por um colega, o proxy terá a capacidade de abrir a página com maior rapidez, desde que esta se encontre ainda na memória. Neste caso, só é necessário verificar se a página armazenada no proxy corresponde à versão mais recente. Se for este o caso, não será necessário transferir a página da Internet, que é muito mais lenta, mas é possível transferi-la diretamente do proxy." +msgstr "Um proxy é um computador que, na rede, age como uma área de transferência para transferência de dados. Sempre que aceder à Internet a partir de uma rede empresarial e solicitar uma página da Web que já tenha sido consultada por um colega, o proxy terá a capacidade de abrir a página com maior rapidez, desde que esta se encontre ainda na memória. Neste caso, só é necessário verificar se a página armazenada no proxy corresponde à versão mais recente. Se for este o caso, não será necessário descarregar a página da Internet mas é possível carregar a página diretamente a partir do proxy." #: 00000002.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/pt/helpcontent2/source/text/shared/01.po libreoffice-5.1.2~rc2/translations/source/pt/helpcontent2/source/text/shared/01.po --- libreoffice-5.1.1~rc2/translations/source/pt/helpcontent2/source/text/shared/01.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/pt/helpcontent2/source/text/shared/01.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\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-11 13:43+0000\n" -"Last-Translator: Sérgio Marques <smarquespt@gmail.com>\n" +"PO-Revision-Date: 2016-03-04 04:26+0000\n" +"Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: pt\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1455198236.000000\n" +"X-POOTLE-MTIME: 1457065608.000000\n" #: 01010000.xhp msgctxt "" @@ -41381,7 +41381,7 @@ "par_id757469\n" "help.text" msgid "<ahelp hid=\".\">When you click the Install button the Download and Installation dialog is displayed.</ahelp>" -msgstr "<ahelp hid=\".\">Ao clicar no botão Instalar, é apresentada a caixa de diálogo Transferência e instalação.</ahelp>" +msgstr "<ahelp hid=\".\">Ao clicar no botão Instalar, é apresentada a caixa de diálogo Descarga e instalação.</ahelp>" #: extensionupdate.xhp msgctxt "" @@ -41389,7 +41389,7 @@ "par_id5189062\n" "help.text" msgid "All extensions which can be directly downloaded are downloaded now. The progress is shown in the Download and Installation dialog. If an extension cannot be downloaded, a message is displayed. The operation continues for the remaining extensions." -msgstr "Serão transferidas todas as extensões que podem ser transferidas diretamente. A evolução é apresentada na caixa de diálogo Transferência e instalação. Se não for possível transferir uma extensão, será apresentada uma mensagem. A operação continuará para as restantes extensões." +msgstr "Serão descarregadas todas as extensões que possam ser descarregadas imediatamente. A evolução é apresentada na caixa de diálogo Descarga e instalação. Se não for possível descarregar uma extensão, será mostrada uma mensagem. A operação continuará para as restantes extensões." #: extensionupdate.xhp msgctxt "" @@ -41397,7 +41397,7 @@ "par_id3949095\n" "help.text" msgid "Some extensions may be marked with the phrase \"browser based update\". These extensions cannot be downloaded by the Extension Manager. A web browser must be opened to download the extension update from a particular web site. That site may require several more user interaction to download the extension. After downloading you must install the extension manually, for example by double-clicking the extension's icon in a file browser." -msgstr "Algumas extensões poderão estar marcadas com a expressão \"atualização baseada no navegador\". Estas extensões não poderão ser transferidas pelo Gestor de extensões. Terá de abrir um navegador web para transferir a atualização da extensão na página web indicada. Esse sítio web poderá requerer mais interação do utilizador para efetuar a transferência da extensão. Após a transferência, é necessário instalar a extensão manualmente, por exemplo, clicando duas vezes no ícone da extensão num navegador de ficheiros." +msgstr "Algumas extensões poderão estar marcadas com a expressão \"atualização baseada no navegador\". Estas extensões não poderão ser descarregadas pelo Gestor de extensões. Terá de abrir um navegador web para descarregar a atualização a página web indicada. Esse sítio web poderá requerer mais interação do utilizador para efetuar a descarga da extensão. Após descarregar a extensão, será necessário instalar a extensão manualmente, por exemplo, clicando duas vezes no ícone da extensão através do gestor de ficheiros." #: extensionupdate.xhp msgctxt "" @@ -41405,7 +41405,7 @@ "par_id3729056\n" "help.text" msgid "For extensions marked as \"browser based update\", the Extension Manager will open your web browser on the respective web site. This happens when you close the dialog, after downloading any other extension updates. If there are no extensions which can be directly downloaded then the web browser is started immediately." -msgstr "Para as extensões marcadas como \"atualização baseada no navegador\", o Gestor de extensões abrirá o navegador web no respetivo sítio. Isto acontece quando fecha a caixa de diálogo, depois de efetuar a transferência de outras atualizações de extensões. Se não existirem extensões que seja possível transferir diretamente, o navegador web é iniciado de imediato." +msgstr "Para as extensões marcadas como \"atualização baseada no navegador\", o Gestor de extensões abrirá o navegador web no respetivo sítio. Isto acontece ao fechar a caixa de diálogo, depois de efetuar a descarga das outras atualizações. Se não existirem extensões que seja possível descarregar diretamente, o navegador web é iniciado de imediato." #: extensionupdate.xhp msgctxt "" @@ -41413,7 +41413,7 @@ "par_id6854457\n" "help.text" msgid "After the last extension has been downloaded, the installation begins. First all installed extensions for which an update could be downloaded successfully, are removed. Then the updated extensions are installed. If an error occurs, a message that the installation failed is displayed, but the operation proceeds." -msgstr "Após ter sido transferida a última extensão, é iniciada a instalação. Em primeiro lugar, são removidas todas as extensões instaladas para as quais foi possível efetuar uma transferência com êxito. Em seguida, são instaladas as extensões atualizadas. Se ocorrer um erro, será apresentada uma mensagem que indica uma falha de instalação, mas a operação prossegue." +msgstr "Ao descarregar a última extensão, é iniciada a instalação. Em primeiro lugar, serão removidas todas as extensões instaladas para as quais foi possível descarregar a atualização. Em seguida, serão instaladas as extensões atualizadas. Se ocorrer um erro, será mostrada uma mensagem que indica a falha de instalação, mas a operação prossegue." #: extensionupdate.xhp msgctxt "" @@ -41421,7 +41421,7 @@ "par_id3372295\n" "help.text" msgid "If all updates have been processed the Download and Installation dialog shows that it has finished. You can abort the download and installation process by clicking the <emph>Abort Update</emph> button." -msgstr "Se todas as atualizações tiverem sido processadas, a caixa de diálogo Transferência e instalação indica que o processo foi concluído. Pode desistir do processo de instalação se clicar no botão <emph>Desistir da atualização</emph>." +msgstr "Se todas as atualizações tiverem sido processadas, a caixa de diálogo Descarga e instalação indica que o processo foi concluído. Pode desistir do processo de instalação clicando no botão <emph>Cancelar atualização</emph>." #: extensionupdate.xhp msgctxt "" @@ -41437,7 +41437,7 @@ "par_id641193\n" "help.text" msgid "<ahelp hid=\".\">By default, only the downloadable extensions are shown in the dialog. Mark <emph>Show all Updates</emph> to see also other extensions and error messages.</ahelp>" -msgstr "<ahelp hid=\".\">Por norma, são apenas apresentadas na caixa de diálogo as extensões que possam ser transferidas. Marque <emph>Mostrar todas as atualizações</emph> para ver também outras extensões e mensagens de erro.</ahelp>" +msgstr "<ahelp hid=\".\">Por norma, apenas são mostradas na caixa de diálogo, as extensões que possam ser descarregadas. Marque <emph>Mostrar todas as atualizações</emph> para ver também outras extensões e as mensagens de erro.</ahelp>" #: extensionupdate.xhp msgctxt "" @@ -42502,7 +42502,7 @@ "par_id0116200901063996\n" "help.text" msgid "<ahelp hid=\".\" visibility=\"hidden\">Click to select a folder to download the files.</ahelp>" -msgstr "<ahelp hid=\".\" visibility=\"hidden\">Clique para selecionar uma pasta para transferir os ficheiros.</ahelp>" +msgstr "<ahelp hid=\".\" visibility=\"hidden\">Clique para selecionar uma pasta para guardar os ficheiros.</ahelp>" #: online_update.xhp msgctxt "" @@ -42582,7 +42582,7 @@ "par_id3722342\n" "help.text" msgid "If a newer version is available and %PRODUCTNAME is not set up for automatic downloading, then you can select any of the following actions:" -msgstr "Se estiver disponível uma versão mais recente e o %PRODUCTNAME não estiver configurado para efetuar transferências automáticas, pode selecionar qualquer uma das seguintes ações:" +msgstr "Se estiver disponível uma versão mais recente e o %PRODUCTNAME não estiver configurado para efetuar descargas automáticas, pode selecionar uma das seguintes ações:" #: online_update.xhp msgctxt "" @@ -42590,7 +42590,7 @@ "par_id5106662\n" "help.text" msgid "Download the new version." -msgstr "Transfira a nova versão." +msgstr "Descarregar a nova versão." #: online_update.xhp msgctxt "" @@ -42598,7 +42598,7 @@ "par_id4931485\n" "help.text" msgid "Install the downloaded files." -msgstr "Instale os ficheiros transferidos." +msgstr "Instalar os ficheiros descarregados." #: online_update.xhp msgctxt "" @@ -42614,7 +42614,7 @@ "par_id9766533\n" "help.text" msgid "If %PRODUCTNAME is configured to download the files automatically, the download starts immediately. A download continues even when you minimize the dialog." -msgstr "Se o %PRODUCTNAME estiver configurado para transferir os ficheiros automaticamente, a transferência é iniciada de imediato. A transferência continua mesmo se minimizar a caixa de diálogo." +msgstr "Se o %PRODUCTNAME estiver configurado para descarregar os ficheiros automaticamente, a descarga é iniciada de imediato. A descarga continua mesmo se minimizar a caixa de diálogo." #: online_update.xhp msgctxt "" @@ -42622,7 +42622,7 @@ "par_id927152\n" "help.text" msgid "If automatic downloads are disabled, start the download manually." -msgstr "Se as transferências automáticas estiverem desativadas, inicie a transferência manualmente." +msgstr "Se as descargas automáticas estiverem desativadas, inicie a descarga manualmente." #: online_update.xhp msgctxt "" @@ -42662,7 +42662,7 @@ "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 "<ahelp hid=\".\">Procura as atualizações para a sua versão do %PRODUCTNAME. Se estiver disponível uma versão mais recente, poderá optar por transferir a atualização. Depois da transferência, se tiver acesso de escrita ao diretório de instalação, poderá instalar a atualização.</ahelp>" +msgstr "<ahelp hid=\".\">Procura as atualizações para a sua versão do %PRODUCTNAME. Se estiver disponível uma versão mais recente, poderá optar por descarregar a atualização. Depois de a descarregar, se tiver acesso de escrita ao diretório de instalação, poderá instalar a atualização.</ahelp>" #: online_update_dialog.xhp msgctxt "" @@ -42670,7 +42670,7 @@ "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 "Assim que iniciar a transferência, será exibida uma barra de evolução e três botões na caixa de diálogo. Pode interromper e retomar a transferência ao clicar nos botões Pausa e Retomar. Clique em Cancelar para anular a transferência e eliminar o ficheiro parcialmente transferido." +msgstr "Assim que iniciar a descarga, será mostrada uma barra de evolução e três botões na caixa de diálogo. Pode interromper e continuar a descarga ao clicar nos botões Pausa e Retomar. Clique em Cancelar para abortar a descarga e eliminar o ficheiro parcialmente descarregado." #: online_update_dialog.xhp msgctxt "" @@ -42678,7 +42678,7 @@ "par_id1502121\n" "help.text" msgid "By default, downloads will be stored to your desktop. You can change the folder where the downloaded file will be stored in <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME - Online Update." -msgstr "Por defeito, as transferências são guardadas na área de trabalho. Pode alterar a pasta em que os ficheiros transferidos são guardados em <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferências</caseinline><defaultinline>Ferramentas - Opções</defaultinline></switchinline> - %PRODUCTNAME - Atualização online." +msgstr "Por norma, as descargas são guardadas na área de trabalho. Pode alterar a pasta para guardar os ficheiros descarregados em <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferências</caseinline><defaultinline>Ferramentas - Opções</defaultinline></switchinline> - %PRODUCTNAME - Atualização online." #: online_update_dialog.xhp msgctxt "" @@ -42686,7 +42686,7 @@ "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 "Assim que a transferência estiver concluída, poderá clicar em Instalar para iniciar a instalação da atualização. Será apresentada uma caixa de diálogo de confirmação onde poderá optar por fechar o %PRODUCTNAME." +msgstr "Assim que a descarga estiver concluída, poderá clicar em Instalar para iniciar a instalação da atualização. Será mostrada uma caixa de diálogo de confirmação onde poderá optar por fechar o %PRODUCTNAME." #: online_update_dialog.xhp msgctxt "" @@ -42694,7 +42694,7 @@ "par_id2871181\n" "help.text" msgid "Under some operation systems, it may be required to manually go to the download folder, unzip the download file, and start the setup script." -msgstr "Em alguns sistemas operativos, poderá ser necessário aceder manualmente à pasta de transferências, descompactar o ficheiro transferido e abrir o script de configuração." +msgstr "Em alguns sistemas operativos, poderá ser necessário aceder manualmente à pasta de descargas, descompactar o ficheiro descarregado e iniciar o script de instalação." #: online_update_dialog.xhp msgctxt "" @@ -42702,7 +42702,7 @@ "par_id2733542\n" "help.text" msgid "After installation of the update you can delete the download file to save space." -msgstr "Após a instalação da atualização, poderá eliminar o ficheiro da transferência para poupar espaço." +msgstr "Após instalar a atualização, pode eliminar o ficheiro descarregado para poupar espaço." #: online_update_dialog.xhp msgctxt "" @@ -42710,7 +42710,7 @@ "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 "<ahelp hid=\".\" visibility=\"hidden\">Transfere e guarda os ficheiros de atualização na área de trabalho ou numa pasta escolhida por si. Selecione a pasta em %PRODUCTNAME - Atualização online na caixa de diálogo Opções.</ahelp>" +msgstr "<ahelp hid=\".\" visibility=\"hidden\">Descarrega e guarda os ficheiros de atualização na área de trabalho ou numa pasta escolhida por si. Selecione a pasta em %PRODUCTNAME - Atualização online na caixa de diálogo Opções.</ahelp>" #: online_update_dialog.xhp msgctxt "" @@ -42718,7 +42718,7 @@ "par_id8277230\n" "help.text" msgid "<ahelp hid=\".\" visibility=\"hidden\">Installs the downloaded update.</ahelp>" -msgstr "<ahelp hid=\".\" visibility=\"hidden\">Instala a atualização transferida.</ahelp>" +msgstr "<ahelp hid=\".\" visibility=\"hidden\">Instala a atualização descarregada.</ahelp>" #: online_update_dialog.xhp msgctxt "" @@ -42726,7 +42726,7 @@ "par_id4086428\n" "help.text" msgid "<ahelp hid=\".\" visibility=\"hidden\">Pauses the download. Later click Resume to continue downloading.</ahelp>" -msgstr "<ahelp hid=\".\" visibility=\"hidden\">Interrompe a transferência. Clique em Retomar para continuar a transferência.</ahelp>" +msgstr "<ahelp hid=\".\" visibility=\"hidden\">Interrompe a descarga. Clique em Retomar para continuar a descarga.</ahelp>" #: online_update_dialog.xhp msgctxt "" @@ -42734,7 +42734,7 @@ "par_id9024628\n" "help.text" msgid "<ahelp hid=\".\" visibility=\"hidden\">Continues a paused download.</ahelp>" -msgstr "<ahelp hid=\".\" visibility=\"hidden\">Continua uma transferência interrompida.</ahelp>" +msgstr "<ahelp hid=\".\" visibility=\"hidden\">Continua uma descarga interrompida.</ahelp>" #: online_update_dialog.xhp msgctxt "" @@ -42742,7 +42742,7 @@ "par_id3067110\n" "help.text" msgid "<ahelp hid=\".\" visibility=\"hidden\">Aborts the download and deletes the partly downloaded file.</ahelp>" -msgstr "<ahelp hid=\".\" visibility=\"hidden\">Anula a transferência e elimina o ficheiro parcialmente transferido.</ahelp>" +msgstr "<ahelp hid=\".\" visibility=\"hidden\">Cancela a descarga e elimina o ficheiro parcialmente transferido.</ahelp>" #: online_update_dialog.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/pt/helpcontent2/source/text/shared/02.po libreoffice-5.1.2~rc2/translations/source/pt/helpcontent2/source/text/shared/02.po --- libreoffice-5.1.1~rc2/translations/source/pt/helpcontent2/source/text/shared/02.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/pt/helpcontent2/source/text/shared/02.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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-29 00:11+0000\n" +"PO-Revision-Date: 2016-03-04 04:36+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: pt\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1451347919.000000\n" +"X-POOTLE-MTIME: 1457066178.000000\n" #: 01110000.xhp msgctxt "" @@ -4966,7 +4966,7 @@ "160\n" "help.text" msgid "<ahelp hid=\"HID_PROP_LITERALMASK\" visibility=\"hidden\">Defines the literal mask. The literal mask contains the initial values and is always visible after downloading a form.</ahelp> With masked fields you can specify a literal mask. A literal mask contains the initial values of a form, and is always visible after downloading a form. Using a character code for the Edit mask, you can determine the entries that the user can type into the masked field." -msgstr "<ahelp hid=\"HID_PROP_LITERALMASK\" visibility=\"hidden\">Define a máscara de caracteres. A máscara de caracteres contém os valores iniciais e é sempre visível após a transferência de um formulário.</ahelp> Com campos com máscara, é possível especificar uma máscara de caracteres. Uma máscara de caracteres contém os valores iniciais de um formulário e é sempre visível após a transferência do mesmo. Ao utilizar um código de carácter para a Máscara de edição, é possível determinar as entradas que o utilizador pode escrever no campo com máscara." +msgstr "<ahelp hid=\"HID_PROP_LITERALMASK\" visibility=\"hidden\">Define a máscara de caracteres. A máscara de caracteres contém os valores iniciais e é sempre visível depois de descarregar um formulário.</ahelp> Com campos de máscara, pode especificar uma máscara de caracteres. Uma máscara de caracteres contém os valores iniciais de um formulário e é sempre visível depois de o descarregar. Ao utilizar um código de carácter para a máscara de edição, pode determinar as entradas que o utilizador pode escrever no campo com máscara." #: 01170101.xhp msgctxt "" @@ -5105,7 +5105,7 @@ "par_idN1209F\n" "help.text" msgid "Acting on a record" -msgstr "Ações num registo" +msgstr "Agir sobre um registo" #: 01170101.xhp msgctxt "" @@ -7509,7 +7509,7 @@ "32\n" "help.text" msgid "Defines the target frame in which the loaded URL is to appear." -msgstr "Define a moldura destino na qual o URL carregado será apresentado." +msgstr "Define a moldura destino na qual o URL carregado deve ser mostrado." #: 01170201.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/pt/helpcontent2/source/text/shared/05.po libreoffice-5.1.2~rc2/translations/source/pt/helpcontent2/source/text/shared/05.po --- libreoffice-5.1.1~rc2/translations/source/pt/helpcontent2/source/text/shared/05.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/pt/helpcontent2/source/text/shared/05.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\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-12-01 23:41+0000\n" -"Last-Translator: Sérgio Marques <smarquespt@gmail.com>\n" +"PO-Revision-Date: 2016-03-04 04:38+0000\n" +"Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: pt\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1449013312.000000\n" +"X-POOTLE-MTIME: 1457066331.000000\n" #: 00000001.xhp msgctxt "" @@ -129,7 +129,7 @@ "hd_id3168534\n" "help.text" msgid "Downloads" -msgstr "Transferências" +msgstr "Descargas" #: 00000001.xhp msgctxt "" @@ -137,7 +137,7 @@ "par_id3028143\n" "help.text" msgid "You can download the latest version of %PRODUCTNAME at <link href=\"http://www.libreoffice.org/download/\">www.libreoffice.org/download/</link>." -msgstr "Pode transferir a última versão do %PRODUCTNAME em <link href=\"http://www.libreoffice.org/download/\">www.libreoffice.org/download/</link>." +msgstr "Pode descarregar a última versão do %PRODUCTNAME em <link href=\"http://www.libreoffice.org/download/\">www.libreoffice.org/download/</link>." #: 00000001.xhp msgctxt "" @@ -153,7 +153,7 @@ "par_id3497211\n" "help.text" msgid "You can download documentation as PDF files, how-tos, and guides from the %PRODUCTNAME website at <link href=\"http://www.libreoffice.org/get-help/documentation/\">www.libreoffice.org/get-help/documentation/</link>." -msgstr "Pode transferir a documentação, manuais e guias como PDF no sítio web do %PRODUCTNAME em <link href=\"http://www.libreoffice.org/get-help/documentation/\">www.libreoffice.org/get-help/documentation/</link>." +msgstr "Pode descarregar a documentação, manuais e guias como PDF no sítio web do %PRODUCTNAME em <link href=\"http://www.libreoffice.org/get-help/documentation/\">www.libreoffice.org/get-help/documentation/</link>." #: 00000001.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/pt/helpcontent2/source/text/shared/autopi.po libreoffice-5.1.2~rc2/translations/source/pt/helpcontent2/source/text/shared/autopi.po --- libreoffice-5.1.1~rc2/translations/source/pt/helpcontent2/source/text/shared/autopi.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/pt/helpcontent2/source/text/shared/autopi.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-12-29 00:13+0000\n" +"PO-Revision-Date: 2016-03-04 04:43+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: pt\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1451347993.000000\n" +"X-POOTLE-MTIME: 1457066587.000000\n" #: 01000000.xhp msgctxt "" @@ -6335,7 +6335,7 @@ "18\n" "help.text" msgid "<switchinline select=\"appl\"><caseinline select=\"IMPRESS\"><ahelp hid=\"modules/simpress/ui/publishingdialog/downloadCheckbutton\">Inserts a hyperlink to download a copy of the presentation file.</ahelp></caseinline></switchinline>" -msgstr "<switchinline select=\"appl\"><caseinline select=\"IMPRESS\"><ahelp hid=\"modules/simpress/ui/publishingdialog/downloadCheckbutton\">Insere uma hiperligação para que seja possível transferir uma cópia do ficheiro de apresentação.</ahelp></caseinline></switchinline>" +msgstr "<switchinline select=\"appl\"><caseinline select=\"IMPRESS\"><ahelp hid=\"modules/simpress/ui/publishingdialog/downloadCheckbutton\">Insere uma hiperligação para que seja possível descarregar uma cópia do ficheiro de apresentação.</ahelp></caseinline></switchinline>" #: 01110500.xhp msgctxt "" @@ -8620,7 +8620,7 @@ "par_idN10554\n" "help.text" msgid "<ahelp hid=\".\">You can use the Web Wizard to maintain web pages on a server.</ahelp> You can also load previously saved Web Wizard settings to maintain an existing web page. These settings include information about the local folder and the FTP server." -msgstr "<ahelp hid=\".\">Pode utilizar o Assistente de Web para manter páginas da Web num servidor.</ahelp> Pode também carregar previamente as definições guardadas do Assistente de Web para manter uma página da Web existente. Estas definições incluem informações sobre a pasta local e sobre o servidor FTP." +msgstr "<ahelp hid=\".\">Pode utilizar o Assistente web para manter as páginas web num servidor.</ahelp> Pode também carregar previamente as definições guardadas do Assistente web para manter uma página de web existente. Estas definições incluem informações sobre a pasta local e sobre o servidor FTP." #: webwizard01.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/pt/helpcontent2/source/text/shared/explorer/database.po libreoffice-5.1.2~rc2/translations/source/pt/helpcontent2/source/text/shared/explorer/database.po --- libreoffice-5.1.1~rc2/translations/source/pt/helpcontent2/source/text/shared/explorer/database.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/pt/helpcontent2/source/text/shared/explorer/database.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\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-15 13:14+0000\n" -"Last-Translator: Sérgio Marques <smarquespt@gmail.com>\n" +"PO-Revision-Date: 2016-03-04 04:51+0000\n" +"Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: pt\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1452863665.000000\n" +"X-POOTLE-MTIME: 1457067077.000000\n" #: 02000000.xhp msgctxt "" @@ -6938,7 +6938,7 @@ "par_id3479720\n" "help.text" msgid "The Adabas D software package can be downloaded and installed separately (see www.adabas.com)." -msgstr "O pacote do Adabas D pode ser transferido e instalado separadamente (consulte www.adabas.com)." +msgstr "O pacote Adabas D pode ser descarregado e instalado separadamente (consulte www.adabas.com)." #: 30000000.xhp msgctxt "" @@ -9389,7 +9389,7 @@ "par_idN10568\n" "help.text" msgid "$[officename] requires the Microsoft Data Access Components (MDAC) to use the ADO interface. Microsoft Windows 2000 and XP include these components by default. For earlier visions of Windows, you need to install MDAC separately. You can download MDAC from the Microsoft web site." -msgstr "O $[officename] requer que o Microsoft Data Access Components (MDAC) utilize a interface ADO. O Microsoft Windows 2000 e XP incluem estes componentes por defeito. Nas versões mais recentes do Windows, é necessário instalar o MDAC em separado. Pode transferir o MDAC a partir do sítio da Microsoft na Web." +msgstr "O $[officename] requer que o Microsoft Data Access Components (MDAC) utilize a interface ADO. O Microsoft Windows 2000 e XP incluem estes componentes por defeito. Nas versões mais recentes do Windows, é necessário instalar o MDAC em separado. Pode descarregar o MDAC no sítio web da Microsoft." #: dabawiz02ado.xhp msgctxt "" @@ -9637,7 +9637,7 @@ "par_idN1064B\n" "help.text" msgid "On UNIX, ensure that the Oracle database client is installed with JDBC support. The JDBC driver class for the Solaris Oracle client version 8.x is located in the <Oracle client>/product/jdbc/lib/classes111.zip directory. You can also download the latest version from the Oracle web site:" -msgstr "Em sistemas UNIX, certifique-se de que o cliente de base de dados Oracle está instalado com suporte para JDBC. A classe do controlador JDBC para o cliente Solaris Oracle versão 8.x encontra-se no diretório <Oracle client>/product/jdbc/lib/classes111.zip. Também pode transferir a versão mais recente no sítio web da Oracle:" +msgstr "Em sistemas UNIX, certifique-se de que o cliente de base de dados Oracle está instalado e que possui suporte a JDBC. A classe do controlador JDBC para o cliente Solaris Oracle versão 8.x encontra-se no diretório <Oracle client>/product/jdbc/lib/classes111.zip. Também pode descarregar a versão mais recente no sítio web da Oracle." #: dabawiz02jdbc.xhp msgctxt "" @@ -10213,7 +10213,7 @@ "par_idN105D4\n" "help.text" msgid "On UNIX, ensure that the Oracle database client is installed with JDBC support. The JDBC driver class for the Solaris Oracle client version 8.x is located in the <Oracle client>/product/jdbc/lib/classes111.zip directory. You can also download the latest version of the driver from the Oracle web site." -msgstr "Em sistemas UNIX, certifique-se de que o cliente de base de dados Oracle está instalado com suporte a JDBC. A classe do controlador JDBC para o cliente Solaris Oracle versão 8.x encontra-se no diretório <Oracle client>/product/jdbc/lib/classes111.zip. Também é possível transferir a versão mais recente no sítio web da Oracle." +msgstr "Em sistemas UNIX, certifique-se de que o cliente de base de dados Oracle está instalado e que possui suporte a JDBC. A classe do controlador JDBC para o cliente Solaris Oracle versão 8.x encontra-se no diretório <Oracle client>/product/jdbc/lib/classes111.zip. Também pode descarregar a versão mais recente no sítio web da Oracle." #: dabawiz02oracle.xhp msgctxt "" @@ -12926,7 +12926,7 @@ "par_id6317636\n" "help.text" msgid "If no JRE version is found on your system, open your web browser and download the JRE software from <link href=\"http://www.java.com\">http://www.java.com</link>. Install the JRE software. Then restart %PRODUCTNAME and open <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME - Advanced again." -msgstr "Se não for encontrada qualquer versão do JRE no seu computador, abra o navegador web e transfira-o em <link href=\"http://www.java.com\">http://www.java.com</link>. Instale o JRE, reinicie o %PRODUCTNAME e aceda a <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferências</caseinline><defaultinline>Ferramentas - Opções</defaultinline></switchinline> - %PRODUCTNAME - Avançado." +msgstr "Se não for encontrada qualquer versão do JRE no seu computador, abra o navegador web e descarregue-o em <link href=\"http://www.java.com\">http://www.java.com</link>. Instale o JRE, reinicie o %PRODUCTNAME e aceda a <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferências</caseinline><defaultinline>Ferramentas - Opções</defaultinline></switchinline> - %PRODUCTNAME - Avançado." #: rep_main.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/pt/helpcontent2/source/text/shared/guide.po libreoffice-5.1.2~rc2/translations/source/pt/helpcontent2/source/text/shared/guide.po --- libreoffice-5.1.1~rc2/translations/source/pt/helpcontent2/source/text/shared/guide.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/pt/helpcontent2/source/text/shared/guide.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\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-15 12:58+0000\n" -"Last-Translator: Sérgio Marques <smarquespt@gmail.com>\n" +"PO-Revision-Date: 2016-03-04 05:00+0000\n" +"Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: pt\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1452862739.000000\n" +"X-POOTLE-MTIME: 1457067649.000000\n" #: aaa_start.xhp msgctxt "" @@ -74,7 +74,7 @@ "par_id0820200803563860\n" "help.text" msgid "Click the <emph>Get more templates online</emph> link in the dialog to select and download more templates." -msgstr "Clique na ligação <emph>Obter mais modelos online</emph> na caixa de diálogo para transferir mais modelos." +msgstr "Clique na ligação <emph>Obter mais modelos online</emph> na caixa de diálogo para obter mais modelos." #: aaa_start.xhp msgctxt "" @@ -6161,7 +6161,7 @@ "par_id0820200803501449\n" "help.text" msgid "The %PRODUCTNAME dialogs support file download and upload using secure https connections." -msgstr "As caixas de diálogo do %PRODUCTNAME suportam transferências de ficheiros utilizando ligações https seguras." +msgstr "As caixas de diálogo do %PRODUCTNAME suportam descarga de ficheiros através de ligações HTTPS." #: doc_open.xhp msgctxt "" @@ -9441,7 +9441,7 @@ "8\n" "help.text" msgid "If you always want the file dialogs to show another format by default, choose <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Load/Save - General</emph> and select that format as <emph>Default file format</emph>." -msgstr "Se pretende que os diálogos do ficheiro disponibilizem sempre outros formatos de ficheiro como padrão, escolha <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferências</caseinline><defaultinline>Ferramentas - Opções</defaultinline></switchinline> - Carregar/Guardar - Geral</emph>, selecione esse formato como o <emph>Formato de ficheiro padrão</emph>." +msgstr "Se quiser que as caixas de diálogo de ficheiros disponibilizem sempre outros formatos de ficheiro como padrão, escolha <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferências</caseinline><defaultinline>Ferramentas - Opções</defaultinline></switchinline> - Carregar/Guardar - Geral</emph>, selecione esse formato como o <emph>Formato de ficheiro padrão</emph>." #: import_ms.xhp msgctxt "" @@ -12051,7 +12051,7 @@ "par_id2897427\n" "help.text" msgid "In the next page, click the Get It icon to download the dictionary extension. Note the folder name to which your browser downloads the file. Download additional dictionaries as you like." -msgstr "Na página seguinte, clique no ícone Obter para transferir a extensão do dicionário. Anote o nome da pasta para a qual o navegador transfere o ficheiro. Transfira os dicionários adicionais que quiser." +msgstr "Na página seguinte, clique no ícone Obter para descarregar a extensão do dicionário. Anote o nome da pasta em que o navegador guarda o ficheiro. Pode descarregar todos os dicionários que quiser." #: language_select.xhp msgctxt "" @@ -12059,7 +12059,7 @@ "par_id3906979\n" "help.text" msgid "In %PRODUCTNAME, choose <item type=\"menuitem\">Tools - Extension Manager</item> and click Add to install the downloaded extensions." -msgstr "No %PRODUCTNAME, escolha <item type=\"menuitem\">Ferramentas - Gestor de extensões</item> e clique em Adicionar para instalar as extensões transferidas." +msgstr "No %PRODUCTNAME, escolha <item type=\"menuitem\">Ferramentas - Gestor de extensões</item> e clique em Adicionar para instalar as extensões descarregadas." #: language_select.xhp msgctxt "" @@ -12091,7 +12091,7 @@ "par_id3912778\n" "help.text" msgid "Most users download the American English version, which gives you English menu commands and English application help. If you want another language for the menus (and for the application help, if available in that language), change the UI language as follows." -msgstr "A maior parte dos utilizadores transfere a versão em inglês (EUA), que fornece os comandos de menu e a ajuda da aplicação em inglês. Se pretender outro idioma para os menus (e para a ajuda da aplicação, se disponível nesse idioma), altere o idioma da interface da seguinte forma." +msgstr "A maior parte dos utilizadores descarrega a versão em inglês (EUA), que fornece os comandos de menu e a ajuda da aplicação em inglês. Se desejar outro idioma para os menus (e para a ajuda da aplicação, se disponível), altere o idioma da interface da seguinte forma." #: language_select.xhp msgctxt "" @@ -12179,7 +12179,7 @@ "par_id9852904\n" "help.text" msgid "If you downloaded %PRODUCTNAME packages from the main %PRODUCTNAME Web site, follow the steps below." -msgstr "Se transferiu os pacotes %PRODUCTNAME do sítio web principal do %PRODUCTNAME, siga os passos abaixo." +msgstr "Se descarregou os pacotes %PRODUCTNAME no sítio web principal do %PRODUCTNAME, siga os passos abaixo." #: language_select.xhp msgctxt "" @@ -12187,7 +12187,7 @@ "par_id2216559\n" "help.text" msgid "Open your Web browser and enter <link href=\"http://www.libreoffice.org/download/\">http://www.libreoffice.org/download/</link>" -msgstr "Abra o seu navegador web e vá até <link href=\"http://www.libreoffice.org/download/\">http://www.libreoffice.org/download/</link>" +msgstr "Abra o seu navegador web e aceda a <link href=\"http://www.libreoffice.org/download/\">http://www.libreoffice.org/download/</link>" #: language_select.xhp msgctxt "" @@ -12195,7 +12195,7 @@ "par_id7869502\n" "help.text" msgid "Select and download the correct language pack for your version of %PRODUCTNAME software." -msgstr "Selecione e transfira o pacote de idioma correto para a sua versão do %PRODUCTNAME." +msgstr "Selecione e descarregue o pacote de idioma correto para a sua versão do %PRODUCTNAME." #: language_select.xhp msgctxt "" @@ -12219,7 +12219,7 @@ "par_id221655a\n" "help.text" msgid "Open your Web browser and enter <link href=\"http://www.libreoffice.org/download/\">http://www.libreoffice.org/download/</link>" -msgstr "Abra o seu navegador web e vá até <link href=\"http://www.libreoffice.org/download/\">http://www.libreoffice.org/download/</link>" +msgstr "Abra o seu navegador web e aceda a <link href=\"http://www.libreoffice.org/download/\">http://www.libreoffice.org/download/</link>" #: language_select.xhp msgctxt "" @@ -12227,7 +12227,7 @@ "par_id7869503\n" "help.text" msgid "Select and download the correct language pack for your version of %PRODUCTNAME software." -msgstr "Selecione e transfira o pacote de idioma correto para a sua versão do %PRODUCTNAME." +msgstr "Selecione e descarregue o pacote de idioma correto para a sua versão do %PRODUCTNAME." #: language_select.xhp msgctxt "" @@ -12840,7 +12840,7 @@ "10\n" "help.text" msgid "If you want to abort the recording without saving a macro, click the <emph>Close</emph> button of the <emph>Recording</emph> dialog." -msgstr "Se pretender cancelar a gravação sem guardar a macro, clique no botão <emph>Fechar</emph> da caixa de diálogo <emph>Gravação</emph>." +msgstr "Se quiser cancelar a gravação sem guardar a macro, clique no botão <emph>Fechar</emph> da caixa de diálogo <emph>Gravação</emph>." #: macro_recording.xhp msgctxt "" @@ -19504,7 +19504,7 @@ "par_idN10947\n" "help.text" msgid "<emph>Import Filters</emph> load external XML files and transform the format of the files into the OpenDocument XML file format. After you install an import filter, the name of the filter is added to the list of file types in the <link href=\"text/shared/01/01020000.xhp\">File Open dialog</link>." -msgstr "A opção <emph>Importar Filtros</emph> carrega ficheiros XML externos e transforma o formato dos ficheiros em formato de ficheiros XML OpenDocument. Após ter instalado um filtro de importação, o nome do filtro é adicionado à lista de tipos de ficheiros contida na caixa de diálogo <link href=\"text/shared/01/01020000.xhp\">Abrir ficheiro</link>." +msgstr "A opção <emph>Filtros de importação</emph> carrega os ficheiros XML externos e transforma-os em formato de ficheiros XML OpenDocument. Após ter instalado um filtro de importação, o nome do filtro é adicionado à lista de tipos de ficheiros contida na caixa de diálogo <link href=\"text/shared/01/01020000.xhp\">Abrir ficheiro</link>." #: xsltfilter.xhp msgctxt "" @@ -19520,7 +19520,7 @@ "par_idN10979\n" "help.text" msgid "<emph>Import/Export Filters</emph> load and save OpenDocument XML files into a different XML <emph>format</emph>. After you install these filters, the names of the filters are added to the list of file types in the <link href=\"text/shared/01/01020000.xhp\">File Open dialog</link> and the <link href=\"text/shared/01/01070000.xhp\">File Save As dialog</link>." -msgstr "A opção <emph>Importar/Exportar filtros</emph> carrega e guarda os ficheiros XML OpenDocument <emph>num formato</emph> XML diferente. Após ter instalado estes filtros, os nomes dos filtros são adicionados à lista de tipos de ficheiros contida na caixa de diálogo <link href=\"text/shared/01/01020000.xhp\">Abrir ficheiro</link> e na caixa de diálogo <link href=\"text/shared/01/01070000.xhp\">Guardar como</link>." +msgstr "A opção <emph>Filtros de importação/exportação</emph> carrega e guarda os ficheiros XML OpenDocument <emph>num formato</emph> XML diferente. Após ter instalado estes filtros, os nomes dos filtros são adicionados à lista de tipos de ficheiros contida na caixa de diálogo <link href=\"text/shared/01/01020000.xhp\">Abrir ficheiro</link> e na caixa de diálogo <link href=\"text/shared/01/01070000.xhp\">Guardar como</link>." #: xsltfilter.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/pt/helpcontent2/source/text/shared/optionen.po libreoffice-5.1.2~rc2/translations/source/pt/helpcontent2/source/text/shared/optionen.po --- libreoffice-5.1.1~rc2/translations/source/pt/helpcontent2/source/text/shared/optionen.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/pt/helpcontent2/source/text/shared/optionen.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "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-01-15 12:59+0000\n" -"Last-Translator: Sérgio Marques <smarquespt@gmail.com>\n" +"PO-Revision-Date: 2016-03-04 05:10+0000\n" +"Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: pt\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1452862790.000000\n" +"X-POOTLE-MTIME: 1457068244.000000\n" #: 01000000.xhp msgctxt "" @@ -4459,7 +4459,7 @@ "22\n" "help.text" msgid "<switchinline select=\"sys\"><caseinline select=\"WIN\">Load $[officename] during system start-up </caseinline><defaultinline>Enable systray Quickstarter</defaultinline></switchinline>" -msgstr "<switchinline select=\"sys\"><caseinline select=\"WIN\">Carregar $[officename] durante o arranque do sistema </caseinline><defaultinline>Ativar início rápido \"systray\"</defaultinline></switchinline>" +msgstr "<switchinline select=\"sys\"><caseinline select=\"WIN\">Carregar o $[officename] ao iniciar o sistema </caseinline><defaultinline>Ativar início rápido</defaultinline></switchinline>" #: 01011000.xhp msgctxt "" @@ -16108,7 +16108,7 @@ "par_id8754844\n" "help.text" msgid "Specifies some options for the automatic notification and downloading of online updates to %PRODUCTNAME." -msgstr "Especifica algumas opções para notificação e transferência automática das atualizações do %PRODUCTNAME." +msgstr "Especifica algumas opções para notificação e descarga automática das atualizações do %PRODUCTNAME." #: online_update.xhp msgctxt "" @@ -16220,7 +16220,7 @@ "hd_id5994140\n" "help.text" msgid "Download updates automatically" -msgstr "Transferir atualizações automaticamente" +msgstr "Descarregar atualizações automaticamente" #: online_update.xhp msgctxt "" @@ -16228,7 +16228,7 @@ "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=\".\">Selecione para transferir automaticamente um ficheiro de atualização para a pasta especificada.</ahelp>" +msgstr "<ahelp hid=\".\">Selecione para descarregar automaticamente um ficheiro de atualização para a pasta especificada.</ahelp>" #: online_update.xhp msgctxt "" @@ -16236,7 +16236,7 @@ "hd_id3051545\n" "help.text" msgid "Download destination" -msgstr "Transferir destino de" +msgstr "Destino da descarga" #: online_update.xhp msgctxt "" @@ -16244,7 +16244,7 @@ "par_id3061311\n" "help.text" msgid "<ahelp hid=\".\">Displays the selected folder to store the downloaded files.</ahelp>" -msgstr "<ahelp hid=\".\">Apresenta a pasta selecionada para armazenar os ficheiros descarregados.</ahelp>" +msgstr "<ahelp hid=\".\">Mostra a pasta selecionada para guardar os ficheiros descarregados.</ahelp>" #: online_update.xhp msgctxt "" @@ -16436,7 +16436,7 @@ "par_id1309201511361068\n" "help.text" msgid "<ahelp hid=\"cui/ui/select_persona_dialog/search_term\">Type or paste the URL of the theme page of the Mozilla Firefox themes website.</ahelp> To get the URL, navigate with your computer browser to the theme web page and copy the URL displayed in the navigation bar of your browser. Then paste it in the text area of the dialog. Click in the <item type=\"menuitem\">Search</item> button to download and install it in %PRODUCTNAME." -msgstr "<ahelp hid=\"cui/ui/select_persona_dialog/search_term\">Escreva ou cole o URL do tema no sítio web de temas do Mozilla Firefox.</ahelp> Para obter a URL, aceda à página do tema e copie o endereço mostrado na barra de navegação do navegador. De seguida, cole-o na área de texto da caixa de diálogo. Clique no botão <item type=\"menuitem\">Procurar</item> para o descarregar e instalar no %PRODUCTNAME." +msgstr "<ahelp hid=\"cui/ui/select_persona_dialog/search_term\">Digite ou cole o URL do tema no sítio web de temas do Mozilla Firefox.</ahelp> Para obter o URL, aceda à página do tema e copie o endereço mostrado na barra de navegação do navegador. De seguida, cole-o na área de texto da caixa de diálogo. Clique no botão <item type=\"menuitem\">Procurar</item> para o descarregar e instalar no %PRODUCTNAME." #: persona_firefox.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/pt/helpcontent2/source/text/swriter/01.po libreoffice-5.1.2~rc2/translations/source/pt/helpcontent2/source/text/swriter/01.po --- libreoffice-5.1.1~rc2/translations/source/pt/helpcontent2/source/text/swriter/01.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/pt/helpcontent2/source/text/swriter/01.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\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-15 22:19+0000\n" -"Last-Translator: Sérgio Marques <smarquespt@gmail.com>\n" +"PO-Revision-Date: 2016-03-04 06:24+0000\n" +"Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: pt\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1452896359.000000\n" +"X-POOTLE-MTIME: 1457072656.000000\n" #: 01120000.xhp msgctxt "" @@ -18597,7 +18597,7 @@ "61\n" "help.text" msgid "loading of the graphic is terminated by the user (for example, when downloading)" -msgstr "o carregamento da imagem foi interrompido pelo utilizador (por exemplo, numa transferência)" +msgstr "o carregamento da imagem foi interrompido pelo utilizador (por exemplo, numa descarga)" #: 05060700.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/pt/helpcontent2/source/text/swriter/guide.po libreoffice-5.1.2~rc2/translations/source/pt/helpcontent2/source/text/swriter/guide.po --- libreoffice-5.1.1~rc2/translations/source/pt/helpcontent2/source/text/swriter/guide.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/pt/helpcontent2/source/text/swriter/guide.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\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-04 13:38+0000\n" -"Last-Translator: Sérgio Marques <smarquespt@gmail.com>\n" +"PO-Revision-Date: 2016-03-04 06:41+0000\n" +"Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: pt\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1454593105.000000\n" +"X-POOTLE-MTIME: 1457073684.000000\n" #: anchor_object.xhp msgctxt "" @@ -14105,7 +14105,7 @@ "par_id0525200902184476\n" "help.text" msgid "To check the spelling and the grammar of a text, the appropriate dictionaries must be installed. For many languages three different dictionaries exist: a spellchecker, a hyphenation dictionary, and a thesaurus. Each dictionary covers one language only. Grammar checkers can be downloaded and installed as extensions. See the <link href=\"http://extensions.libreoffice.org/dictionary\">extensions web page</link>." -msgstr "Para verificar a ortografia e a gramática de um texto, devem estar instalados os dicionários apropriados. Em muitos idiomas, existem três dicionários diferentes: o corretor ortográfico, o dicionário de hifenização e o dicionário de sinónimos. Cada dicionário cobre somente um idioma. Corretores gramaticais podem ser instalados como extensões. Consulte a <link href=\"http://extensions.libreoffice.org/dictionary\">página de extensões</link>." +msgstr "Para verificar a ortografia e a gramática de um texto, devem estar instalados os dicionários apropriados. Em muitos idiomas, existem três dicionários diferentes: o corretor ortográfico, o dicionário de hifenização e o dicionário de sinónimos. Cada dicionário cobre somente um idioma. Os corretores gramaticais podem ser instalados como extensões. Consulte a <link href=\"http://extensions.libreoffice.org/dictionary\">página de extensões</link>." #: spellcheck_dialog.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/pt/instsetoo_native/inc_openoffice/windows/msi_languages.po libreoffice-5.1.2~rc2/translations/source/pt/instsetoo_native/inc_openoffice/windows/msi_languages.po --- libreoffice-5.1.1~rc2/translations/source/pt/instsetoo_native/inc_openoffice/windows/msi_languages.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/pt/instsetoo_native/inc_openoffice/windows/msi_languages.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\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-11 00:37+0000\n" -"Last-Translator: Sérgio Marques <smarquespt@gmail.com>\n" +"PO-Revision-Date: 2016-03-09 02:56+0000\n" +"Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: pt\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1455151048.000000\n" +"X-POOTLE-MTIME: 1457492181.000000\n" #: ActionTe.ulf msgctxt "" @@ -430,7 +430,7 @@ "OOO_ACTIONTEXT_52\n" "LngText.text" msgid "AppId: [1]{{, AppType: [2], Users: [3], RSN: [4]}}" -msgstr "Id: [1]{{, Tipo: [2], Utilizadores: [3], RSN: [4]}}" +msgstr "ID: [1]{{, Tipo: [2], Utilizadores: [3], RSN: [4]}}" #: ActionTe.ulf msgctxt "" @@ -478,7 +478,7 @@ "OOO_ACTIONTEXT_58\n" "LngText.text" msgid "MIME Content Type: [1], Extension: [2]" -msgstr "Tipo MIME: [1], Extensão: [2]" +msgstr "Conteúdo MIME: [1], Extensão: [2]" #: ActionTe.ulf msgctxt "" @@ -846,7 +846,7 @@ "OOO_ACTIONTEXT_108\n" "LngText.text" msgid "AppId: [1]{{, AppType: [2]}}" -msgstr "AppId: [1]{{, AppType: [2]}}" +msgstr "ID: [1]{{, Tipo: [2]}}" #: ActionTe.ulf msgctxt "" @@ -894,7 +894,7 @@ "OOO_ACTIONTEXT_114\n" "LngText.text" msgid "MIME Content Type: [1], Extension: [2]" -msgstr "Tipo MIME: [1], Extensão: [2]" +msgstr "Conteúdo MIME: [1], Extensão: [2]" #: ActionTe.ulf msgctxt "" @@ -1958,7 +1958,7 @@ "OOO_CONTROL_169\n" "LngText.text" msgid "If you want to review or change any of your installation settings, click Back. Click Cancel to exit the wizard." -msgstr "Se quiser rever ou alterar as definições de instalação, clique em Anterior. Para sair do assistente, clique em Cancelar." +msgstr "Se quiser rever ou alterar as definições da instalação, clique em Anterior. Para sair do assistente, clique em Cancelar." #: Control.ulf msgctxt "" @@ -2174,7 +2174,7 @@ "OOO_CONTROL_204\n" "LngText.text" msgid "&Abort" -msgstr "&Abortar" +msgstr "C&ancelar" #: Control.ulf msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/pt/nlpsolver/src/locale.po libreoffice-5.1.2~rc2/translations/source/pt/nlpsolver/src/locale.po --- libreoffice-5.1.1~rc2/translations/source/pt/nlpsolver/src/locale.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/pt/nlpsolver/src/locale.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,18 +3,18 @@ msgstr "" "Project-Id-Version: PACKAGE 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:07+0200\n" -"PO-Revision-Date: 2014-06-26 15:32+0000\n" -"Last-Translator: Sérgio <smarquespt@gmail.com>\n" +"POT-Creation-Date: 2015-04-22 23:40+0200\n" +"PO-Revision-Date: 2016-03-09 02:58+0000\n" +"Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: pt\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: 1403796731.000000\n" +"X-POOTLE-MTIME: 1457492292.000000\n" #: NLPSolverCommon_en_US.properties msgctxt "" @@ -246,7 +246,7 @@ "NLPSolverStatusDialog.Message.StopUser\n" "property.text" msgid "Process stopped due to user interruption." -msgstr "O processo foi interrompido pelo utilizador." +msgstr "Processo interrompido pelo utilizador." #: NLPSolverStatusDialog_en_US.properties msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/pt/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-5.1.2~rc2/translations/source/pt/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-5.1.1~rc2/translations/source/pt/officecfg/registry/data/org/openoffice/Office/UI.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/pt/officecfg/registry/data/org/openoffice/Office/UI.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\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-15 12:39+0000\n" -"Last-Translator: Sérgio Marques <smarquespt@gmail.com>\n" +"PO-Revision-Date: 2016-03-09 03:25+0000\n" +"Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: pt\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1452861559.000000\n" +"X-POOTLE-MTIME: 1457493950.000000\n" #: BaseWindowState.xcu msgctxt "" @@ -13847,7 +13847,7 @@ "Label\n" "value.text" msgid "Arch Down (Pour)" -msgstr "Arquear para baixo (Decantar)" +msgstr "Arco para baixo (sólido)" #: GenericCommands.xcu msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/pt/readlicense_oo/docs.po libreoffice-5.1.2~rc2/translations/source/pt/readlicense_oo/docs.po --- libreoffice-5.1.1~rc2/translations/source/pt/readlicense_oo/docs.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/pt/readlicense_oo/docs.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\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-11 23:13+0000\n" -"Last-Translator: Sérgio Marques <smarquespt@gmail.com>\n" +"PO-Revision-Date: 2016-03-09 03:26+0000\n" +"Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: pt\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1449875620.000000\n" +"X-POOTLE-MTIME: 1457494010.000000\n" #: readme.xrm msgctxt "" @@ -262,7 +262,7 @@ "debianinstall2\n" "readmeitem.text" msgid "When you unpack the downloaded archive, you will see that the contents have been decompressed into a sub-directory. Open a file manager window, and change directory to the one starting with \"LibreOffice_\", followed by the version number and some platform information." -msgstr "Ao extrair o arquivo transferido, irá verificar que o conteúdo foi descomprimido para um subdiretório. Abra uma janela do gestor de ficheiros e altere o diretório para aquele que começa com \"LibreOffice_\", seguido pelo número da versão e algumas informações da plataforma." +msgstr "Ao extrair o arquivo descarregado, irá verificar que o conteúdo foi descomprimido para um subdiretório. Abra uma janela do gestor de ficheiros e altere o diretório para aquele que começa com \"LibreOffice_\", seguido pelo número da versão e algumas informações da plataforma." #: readme.xrm msgctxt "" @@ -326,7 +326,7 @@ "rpminstall2\n" "readmeitem.text" msgid "When you unpack the downloaded archive, you will see that the contents have been decompressed into a sub-directory. Open a file manager window, and change directory to the one starting with \"LibreOffice_\", followed by the version number and some platform information." -msgstr "Ao extrair o arquivo transferido, irá verificar que o conteúdo foi descomprimido para um subdiretório. Abra uma janela do gestor de ficheiros e altere o diretório para aquele que começa com \"LibreOffice_\", seguido pelo número da versão e algumas informações sobre a plataforma." +msgstr "Ao extrair o arquivo descarregado, irá verificar que o conteúdo foi descomprimido para um subdiretório. Abra uma janela do gestor de ficheiros e altere o diretório para aquele que começa com \"LibreOffice_\", seguido pelo número da versão e algumas informações sobre a plataforma." #: readme.xrm msgctxt "" @@ -398,7 +398,7 @@ "otherinstall1\n" "readmeitem.text" msgid "It should be easily possible to install ${PRODUCTNAME} on other Linux distributions not specifically covered in these installation instructions. The main aspect for which differences might be encountered is desktop integration." -msgstr "Deve ser fácil instalar o ${PRODUCTNAME} nos sistemas Linux que não estão abrangidos pelas instruções de instalação. As principais diferenças devem ocorrer na integração ao ambiente de trabalho." +msgstr "Deve ser fácil instalar o ${PRODUCTNAME} nos sistemas Linux que não estão abrangidos por estas instruções de instalação. As principais diferenças devem ocorrer na integração ao ambiente de trabalho." #: readme.xrm msgctxt "" @@ -422,7 +422,7 @@ "linuxlangpack1\n" "readmeitem.text" msgid "Download the language pack for your desired language and platform. They are available from the same location as the main installation archive. From the Nautilus file manager, extract the downloaded archive into a directory (your desktop, for instance). Ensure that you have exited all ${PRODUCTNAME} applications (including the QuickStarter, if it is started)." -msgstr "Transfira o pacote do idioma pretendido. Estes pacotes estão disponíveis no mesmo local do pacote de instalação. Agora, no gestor de ficheiros Nautilus, extraia o arquivo transferido para um diretório (ambiente de trabalho, por exemplo). Certifique-se que encerrou todas as aplicações do ${PRODUCTNAME} (não se esqueça do Início rápido, se ativo)." +msgstr "Descarregue o pacote do idioma desejado. Estes pacotes estão disponíveis no mesmo local do pacote de instalação. Agora, no gestor de ficheiros Nautilus, extraia o arquivo descarregado para um diretório (ambiente de trabalho, por exemplo). Certifique-se de que encerrou todas as aplicações do ${PRODUCTNAME} (não se esqueça do Início rápido, se ativo)." #: readme.xrm msgctxt "" @@ -430,7 +430,7 @@ "linuxlangpack2\n" "readmeitem.text" msgid "Change directory to the directory in which you extracted your downloaded language pack." -msgstr "Altere o diretório para aquele em que você extraiu o pacote de idioma transferido." +msgstr "Altere o diretório para aquele em que você extraiu o pacote de idioma descarregado." #: readme.xrm msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/pt/reportdesign/source/ui/dlg.po libreoffice-5.1.2~rc2/translations/source/pt/reportdesign/source/ui/dlg.po --- libreoffice-5.1.1~rc2/translations/source/pt/reportdesign/source/ui/dlg.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/pt/reportdesign/source/ui/dlg.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\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-13 22:20+0000\n" -"Last-Translator: Sérgio Marques <smarquespt@gmail.com>\n" +"PO-Revision-Date: 2016-03-09 03:27+0000\n" +"Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: pt\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1450045203.000000\n" +"X-POOTLE-MTIME: 1457494041.000000\n" #: CondFormat.src msgctxt "" @@ -202,7 +202,7 @@ "STR_RPT_HELP_FIELD\n" "string.text" msgid "Select a field or type an expression to sort or group on." -msgstr "Selecione um campo ou introduza a expressão para ordenar ou agrupar." +msgstr "Selecione um campo ou digite a expressão para ordenar ou agrupar." #: GroupsSorting.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/pt/reportdesign/source/ui/inspection.po libreoffice-5.1.2~rc2/translations/source/pt/reportdesign/source/ui/inspection.po --- libreoffice-5.1.1~rc2/translations/source/pt/reportdesign/source/ui/inspection.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/pt/reportdesign/source/ui/inspection.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,18 +3,18 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2014-11-18 11:23+0100\n" -"PO-Revision-Date: 2014-11-25 23:29+0000\n" -"Last-Translator: Sérgio <smarquespt@gmail.com>\n" +"POT-Creation-Date: 2015-04-22 23:40+0200\n" +"PO-Revision-Date: 2016-03-09 03:27+0000\n" +"Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: pt\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: 1416958163.000000\n" +"X-POOTLE-MTIME: 1457494074.000000\n" #: inspection.src msgctxt "" @@ -667,7 +667,7 @@ "4\n" "string.text" msgid "Center" -msgstr "Centrar" +msgstr "Centro" #: inspection.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/pt/reportdesign/source/ui/report.po libreoffice-5.1.2~rc2/translations/source/pt/reportdesign/source/ui/report.po --- libreoffice-5.1.1~rc2/translations/source/pt/reportdesign/source/ui/report.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/pt/reportdesign/source/ui/report.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\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-11-27 23:51+0000\n" -"Last-Translator: Sérgio Marques <smarquespt@gmail.com>\n" +"PO-Revision-Date: 2016-03-09 03:28+0000\n" +"Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: pt\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1448668314.000000\n" +"X-POOTLE-MTIME: 1457494118.000000\n" #: report.src msgctxt "" @@ -629,7 +629,7 @@ "RID_STR_CAUGHT_FOREIGN_EXCEPTION\n" "string.text" msgid "An exception of type $type$ was caught." -msgstr "Foi detetada uma exceção do tipo $type$." +msgstr "Detetada uma exceção do tipo $type$." #: report.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/pt/sc/source/ui/src.po libreoffice-5.1.2~rc2/translations/source/pt/sc/source/ui/src.po --- libreoffice-5.1.1~rc2/translations/source/pt/sc/source/ui/src.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/pt/sc/source/ui/src.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "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: 2016-01-19 13:36+0000\n" -"Last-Translator: Sérgio Marques <smarquespt@gmail.com>\n" +"PO-Revision-Date: 2016-03-09 03:49+0000\n" +"Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: pt\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1453210608.000000\n" +"X-POOTLE-MTIME: 1457495341.000000\n" #: condformatdlg.src msgctxt "" @@ -4506,7 +4506,7 @@ "STR_NAME_ERROR_NAME\n" "string.text" msgid "You must enter a valid reference or type a valid name for the selected range." -msgstr "Introduza uma referência válida ou escreva um nome válido para o intervalo selecionado." +msgstr "Introduza uma referência válida ou digite um nome válido para o intervalo selecionado." #: globstr.src msgctxt "" @@ -6605,7 +6605,7 @@ "SCERR_IMPORT_INTERNAL & ERRCODE_RES_MASK\n" "string.text" msgid "Internal import error." -msgstr "Erro de importação interno." +msgstr "Erro interno de importação." #: scerrors.src msgctxt "" @@ -13538,7 +13538,7 @@ "1\n" "string.text" msgid "Rounds number down (towards -∞) to the nearest multiple of significance." -msgstr "Arredonda um número por defeito (tende para -∞) para o número inteiro ou múltiplo de significância mais próximo. " +msgstr "Arredonda um número por defeito (tende para -∞) para o número inteiro ou múltiplo de significância mais próximo." #: scfuncs.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/pt/sc/uiconfig/scalc/ui.po libreoffice-5.1.2~rc2/translations/source/pt/sc/uiconfig/scalc/ui.po --- libreoffice-5.1.1~rc2/translations/source/pt/sc/uiconfig/scalc/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/pt/sc/uiconfig/scalc/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: LibO 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-01-12 22:43+0000\n" -"Last-Translator: Sérgio Marques <smarquespt@gmail.com>\n" +"PO-Revision-Date: 2016-03-09 03:57+0000\n" +"Last-Translator: system user <>\n" "Language-Team: none\n" "Language: pt\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1452638632.000000\n" +"X-POOTLE-MTIME: 1457495827.000000\n" #: advancedfilterdialog.ui msgctxt "" @@ -6680,7 +6680,7 @@ "label\n" "string.text" msgid "_Re-type" -msgstr "Esc_reva novamente" +msgstr "_Reintroduza" #: retypepassdialog.ui msgctxt "" @@ -7175,7 +7175,7 @@ "label\n" "string.text" msgid "Use printer metrics for text formatting" -msgstr "Utilizar métrica da impressora para formatar texto" +msgstr "Utilizar métrica da impressora para formatar o texto" #: scgeneralpage.ui msgctxt "" @@ -8858,7 +8858,7 @@ "label\n" "string.text" msgid "Range contains..." -msgstr "O intervalo contém" +msgstr "O intervalo contém..." #: sortoptionspage.ui msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/pt/scp2/source/ooo.po libreoffice-5.1.2~rc2/translations/source/pt/scp2/source/ooo.po --- libreoffice-5.1.1~rc2/translations/source/pt/scp2/source/ooo.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/pt/scp2/source/ooo.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\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-23 16:54+0000\n" -"Last-Translator: Sérgio Marques <smarquespt@gmail.com>\n" +"PO-Revision-Date: 2016-03-09 04:13+0000\n" +"Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: pt\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1432400083.000000\n" +"X-POOTLE-MTIME: 1457496790.000000\n" #: folderitem_ooo.ulf msgctxt "" @@ -2022,7 +2022,7 @@ "STR_DESC_MODULE_LANGPACK_ZH_TW\n" "LngText.text" msgid "Installs the Chinese (traditional) user interface" -msgstr "Instala a interface em mandarim (tradicional)" +msgstr "Instala a interface em mandarim tradicional" #: module_langpack.ulf msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/pt/sd/source/core.po libreoffice-5.1.2~rc2/translations/source/pt/sd/source/core.po --- libreoffice-5.1.1~rc2/translations/source/pt/sd/source/core.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/pt/sd/source/core.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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 06:11+0000\n" -"Last-Translator: Sérgio Marques <smarquespt@gmail.com>\n" +"PO-Revision-Date: 2016-03-09 04:13+0000\n" +"Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: pt\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1429942307.000000\n" +"X-POOTLE-MTIME: 1457496824.000000\n" #: glob.src msgctxt "" @@ -645,7 +645,7 @@ "STR_ENTER_PIN\n" "string.text" msgid "Enter PIN:" -msgstr "Escreva o PIN:" +msgstr "Digite o PIN:" #: glob.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/pt/sd/source/ui/app.po libreoffice-5.1.2~rc2/translations/source/pt/sd/source/ui/app.po --- libreoffice-5.1.1~rc2/translations/source/pt/sd/source/ui/app.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/pt/sd/source/ui/app.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\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-14 22:27+0000\n" -"Last-Translator: Sérgio Marques <smarquespt@gmail.com>\n" +"PO-Revision-Date: 2016-03-09 04:18+0000\n" +"Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: pt\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1450132063.000000\n" +"X-POOTLE-MTIME: 1457497122.000000\n" #: menuids3_tmpl.src msgctxt "" @@ -3396,7 +3396,7 @@ "STR_HTMLEXP_DOWNLOAD\n" "string.text" msgid "Download presentation" -msgstr "Transferir apresentação" +msgstr "Descarregar apresentação" #: strings.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/pt/svx/inc.po libreoffice-5.1.2~rc2/translations/source/pt/svx/inc.po --- libreoffice-5.1.1~rc2/translations/source/pt/svx/inc.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/pt/svx/inc.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\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-11 23:19+0000\n" -"Last-Translator: Sérgio Marques <smarquespt@gmail.com>\n" +"PO-Revision-Date: 2016-03-09 04:38+0000\n" +"Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: pt\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1449875941.000000\n" +"X-POOTLE-MTIME: 1457498290.000000\n" #: globlmn_tmpl.hrc msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/pt/svx/source/items.po libreoffice-5.1.2~rc2/translations/source/pt/svx/source/items.po --- libreoffice-5.1.1~rc2/translations/source/pt/svx/source/items.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/pt/svx/source/items.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\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-01-15 22:13+0000\n" -"Last-Translator: Sérgio Marques <smarquespt@gmail.com>\n" +"PO-Revision-Date: 2016-03-09 04:45+0000\n" +"Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: pt\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1452895988.000000\n" +"X-POOTLE-MTIME: 1457498744.000000\n" #: svxerr.src msgctxt "" @@ -595,7 +595,7 @@ "Keep with next paragraph\n" "itemlist.text" msgid "Keep with next paragraph" -msgstr "Manter com o próximo parágrafo" +msgstr "Manter com parágrafo seguinte" #: svxitems.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/pt/svx/source/sidebar/area.po libreoffice-5.1.2~rc2/translations/source/pt/svx/source/sidebar/area.po --- libreoffice-5.1.1~rc2/translations/source/pt/svx/source/sidebar/area.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/pt/svx/source/sidebar/area.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,18 +3,18 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2014-05-02 00:06+0200\n" -"PO-Revision-Date: 2014-05-08 22:54+0000\n" -"Last-Translator: Sérgio <smarquespt@gmail.com>\n" +"POT-Creation-Date: 2015-04-22 23:41+0200\n" +"PO-Revision-Date: 2016-03-09 04:45+0000\n" +"Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: pt\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: 1399589676.000000\n" +"X-POOTLE-MTIME: 1457498752.000000\n" #: AreaPropertyPanel.src msgctxt "" @@ -23,7 +23,7 @@ "FT_TRGR_CENTER_X\n" "fixedtext.text" msgid "Center ~X:" -msgstr "Valor ~X:" +msgstr "Centro ~X:" #: AreaPropertyPanel.src msgctxt "" @@ -41,7 +41,7 @@ "FT_TRGR_CENTER_Y\n" "fixedtext.text" msgid "Center ~Y:" -msgstr "Valor ~Y:" +msgstr "Centro ~Y:" #: AreaPropertyPanel.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/pt/svx/source/src.po libreoffice-5.1.2~rc2/translations/source/pt/svx/source/src.po --- libreoffice-5.1.1~rc2/translations/source/pt/svx/source/src.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/pt/svx/source/src.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\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-12-11 23:23+0000\n" -"Last-Translator: Sérgio Marques <smarquespt@gmail.com>\n" +"PO-Revision-Date: 2016-03-09 04:46+0000\n" +"Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: pt\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1449876199.000000\n" +"X-POOTLE-MTIME: 1457498816.000000\n" #: errtxt.src msgctxt "" @@ -302,7 +302,7 @@ "ERRCODE_CLASS_SBX\n" "string.text" msgid "Inadmissible value or data type" -msgstr "Valor ou tipo de dados não autorizados" +msgstr "Valor ou tipo de dados inválido" #: errtxt.src msgctxt "" @@ -649,7 +649,7 @@ "ERRCODE_SFX_WRONGPASSWORD\n" "string.text" msgid "The wrong password has been entered." -msgstr "Indicou uma palavra-passe incorreta." +msgstr "Introduziu uma palavra-passe incorreta." #: errtxt.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/pt/svx/source/svdraw.po libreoffice-5.1.2~rc2/translations/source/pt/svx/source/svdraw.po --- libreoffice-5.1.1~rc2/translations/source/pt/svx/source/svdraw.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/pt/svx/source/svdraw.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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 22:57+0000\n" -"Last-Translator: Sérgio Marques <smarquespt@gmail.com>\n" +"PO-Revision-Date: 2016-03-09 04:51+0000\n" +"Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: pt\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1452639456.000000\n" +"X-POOTLE-MTIME: 1457499066.000000\n" #: svdstr.src msgctxt "" @@ -2030,7 +2030,7 @@ "STR_UndoDelPageMasterDscr\n" "string.text" msgid "Clear background page assignment" -msgstr "Eliminar atributos da página de fundo" +msgstr "Limpar atributos da página de fundo" #: svdstr.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/pt/svx/uiconfig/ui.po libreoffice-5.1.2~rc2/translations/source/pt/svx/uiconfig/ui.po --- libreoffice-5.1.1~rc2/translations/source/pt/svx/uiconfig/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/pt/svx/uiconfig/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\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-13 18:54+0000\n" -"Last-Translator: Sérgio Marques <smarquespt@gmail.com>\n" +"PO-Revision-Date: 2016-03-09 04:56+0000\n" +"Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: pt\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1455389656.000000\n" +"X-POOTLE-MTIME: 1457499373.000000\n" #: acceptrejectchangesdialog.ui msgctxt "" @@ -518,7 +518,7 @@ "1\n" "stringlist.text" msgid "Center" -msgstr "Centrar" +msgstr "Centro" #: asianphoneticguidedialog.ui msgctxt "" @@ -2174,7 +2174,7 @@ "tooltip_text\n" "string.text" msgid "Center" -msgstr "Centrar" +msgstr "Centro" #: dockingfontwork.ui msgctxt "" @@ -5656,7 +5656,7 @@ "tooltip_markup\n" "string.text" msgid "Enter a width for the selected object." -msgstr "Indique a largura do objeto selecionado." +msgstr "Introduza a largura para o objeto selecionado." #: sidebarpossize.ui msgctxt "" @@ -5665,7 +5665,7 @@ "tooltip_text\n" "string.text" msgid "Enter a width for the selected object." -msgstr "Indique a largura do objeto selecionado." +msgstr "Introduza a largura para o objeto selecionado." #: sidebarpossize.ui msgctxt "" @@ -5692,7 +5692,7 @@ "tooltip_markup\n" "string.text" msgid "Enter a height for the selected object." -msgstr "Indique a altura do objeto selecionado." +msgstr "Introduza a altura para o objeto selecionado." #: sidebarpossize.ui msgctxt "" @@ -5701,7 +5701,7 @@ "tooltip_text\n" "string.text" msgid "Enter a height for the selected object." -msgstr "Indique a altura do objeto selecionado." +msgstr "Introduza a altura para o objeto selecionado." #: sidebarpossize.ui msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/pt/sw/source/core/undo.po libreoffice-5.1.2~rc2/translations/source/pt/sw/source/core/undo.po --- libreoffice-5.1.1~rc2/translations/source/pt/sw/source/core/undo.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/pt/sw/source/core/undo.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\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-06 21:42+0000\n" -"Last-Translator: Sérgio Marques <smarquespt@gmail.com>\n" +"PO-Revision-Date: 2016-03-09 04:57+0000\n" +"Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: pt\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1438897332.000000\n" +"X-POOTLE-MTIME: 1457499440.000000\n" #: undo.src msgctxt "" @@ -838,7 +838,7 @@ "STR_TYPING_UNDO\n" "string.text" msgid "Typing: $1" -msgstr "A escrever: $1" +msgstr "Escrita: $1" #: undo.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/pt/sw/source/ui/utlui.po libreoffice-5.1.2~rc2/translations/source/pt/sw/source/ui/utlui.po --- libreoffice-5.1.1~rc2/translations/source/pt/sw/source/ui/utlui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/pt/sw/source/ui/utlui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\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-15 12:39+0000\n" -"Last-Translator: Sérgio Marques <smarquespt@gmail.com>\n" +"PO-Revision-Date: 2016-03-09 05:03+0000\n" +"Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: pt\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1452861589.000000\n" +"X-POOTLE-MTIME: 1457499838.000000\n" #: poolfmt.src msgctxt "" @@ -1701,7 +1701,7 @@ "STR_EVENT_MOUSECLICK_OBJECT\n" "string.text" msgid "Trigger hyperlink" -msgstr "Acionar hiperligação" +msgstr "Executar hiperligação" #: utlui.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/pt/sw/uiconfig/swriter/ui.po libreoffice-5.1.2~rc2/translations/source/pt/sw/uiconfig/swriter/ui.po --- libreoffice-5.1.1~rc2/translations/source/pt/sw/uiconfig/swriter/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/pt/sw/uiconfig/swriter/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: LibO 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-15 12:45+0000\n" -"Last-Translator: Sérgio Marques <smarquespt@gmail.com>\n" +"PO-Revision-Date: 2016-03-09 05:19+0000\n" +"Last-Translator: system user <>\n" "Language-Team: none\n" "Language: pt\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1452861920.000000\n" +"X-POOTLE-MTIME: 1457500756.000000\n" #: abstractdialog.ui msgctxt "" @@ -401,7 +401,7 @@ "text\n" "string.text" msgid "If you would like to provide one, please type it now." -msgstr "Se quiser especificar um, faça-o agora." +msgstr "Se quiser especificar um, digite-o agora." #: attachnamedialog.ui msgctxt "" @@ -13298,7 +13298,7 @@ "text\n" "string.text" msgid "If you would like to provide one, please type it now." -msgstr "Se quiser especificar um assunto, escreva-o agora." +msgstr "Se quiser especificar um assunto, indique-o agora." #: subjectdialog.ui msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/pt/uui/source.po libreoffice-5.1.2~rc2/translations/source/pt/uui/source.po --- libreoffice-5.1.1~rc2/translations/source/pt/uui/source.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/pt/uui/source.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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-10 22:23+0000\n" -"Last-Translator: Sérgio Marques <smarquespt@gmail.com>\n" +"PO-Revision-Date: 2016-03-09 05:21+0000\n" +"Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: pt\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1439245417.000000\n" +"X-POOTLE-MTIME: 1457500882.000000\n" #: alreadyopen.src msgctxt "" @@ -863,7 +863,7 @@ "O componente não foi carregado, possivelmente por estar danificado ou erro na instalação.\n" "Mensagem de erro:\n" "\n" -" $(ARG1)." +"$(ARG1)." #: lockfailed.src msgctxt "" @@ -1019,7 +1019,7 @@ "STR_TITLE_ENTER_PASSWORD\n" "string.text" msgid "Enter Password" -msgstr "Introduzir palavra-passe" +msgstr "Introduza a palavra-passe" #: passworddlg.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/pt/uui/uiconfig/ui.po libreoffice-5.1.2~rc2/translations/source/pt/uui/uiconfig/ui.po --- libreoffice-5.1.1~rc2/translations/source/pt/uui/uiconfig/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/pt/uui/uiconfig/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\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-10-18 00:06+0000\n" -"Last-Translator: Sérgio Marques <smarquespt@gmail.com>\n" +"PO-Revision-Date: 2016-03-09 05:21+0000\n" +"Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: pt\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1445126795.000000\n" +"X-POOTLE-MTIME: 1457500894.000000\n" #: authfallback.ui msgctxt "" @@ -116,7 +116,7 @@ "Enter user name and password for:\n" "“%2†on %1" msgstr "" -"Escreva o nome de utilizador e a palavra-passe de:\n" +"Introduza o nome de utilizador e a palavra-passe para:\n" "\"%2\" em %1" #: logindialog.ui @@ -229,7 +229,7 @@ "label\n" "string.text" msgid "_Enter password:" -msgstr "_Escreva a palavra-passe:" +msgstr "Digite a palavra-pass_e:" #: password.ui msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/pt/wizards/source/formwizard.po libreoffice-5.1.2~rc2/translations/source/pt/wizards/source/formwizard.po --- libreoffice-5.1.1~rc2/translations/source/pt/wizards/source/formwizard.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/pt/wizards/source/formwizard.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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-14 22:34+0000\n" -"Last-Translator: Sérgio Marques <smarquespt@gmail.com>\n" +"PO-Revision-Date: 2016-03-09 05:28+0000\n" +"Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: pt\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1450132482.000000\n" +"X-POOTLE-MTIME: 1457501321.000000\n" #: dbwizres.src msgctxt "" @@ -2445,7 +2445,7 @@ "RID_DB_TABLE_WIZARD_START + 9\n" "string.text" msgid "Set field types and formats" -msgstr "Defina os tipos e formatos dos campos" +msgstr "Definir tipos e formatos dos campos" #: dbwizres.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/ro/formula/source/core/resource.po libreoffice-5.1.2~rc2/translations/source/ro/formula/source/core/resource.po --- libreoffice-5.1.1~rc2/translations/source/ro/formula/source/core/resource.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ro/formula/source/core/resource.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\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 18:29+0100\n" +"POT-Creation-Date: 2016-03-29 16:07+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff -Nru libreoffice-5.1.1~rc2/translations/source/ro/starmath/source.po libreoffice-5.1.2~rc2/translations/source/ro/starmath/source.po --- libreoffice-5.1.1~rc2/translations/source/ro/starmath/source.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ro/starmath/source.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\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-19 20:52+0200\n" +"POT-Creation-Date: 2016-03-29 16:07+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff -Nru libreoffice-5.1.1~rc2/translations/source/ru/chart2/uiconfig/ui.po libreoffice-5.1.2~rc2/translations/source/ru/chart2/uiconfig/ui.po --- libreoffice-5.1.1~rc2/translations/source/ru/chart2/uiconfig/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ru/chart2/uiconfig/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "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-11-13 10:28+0000\n" +"PO-Revision-Date: 2016-03-18 08:24+0000\n" "Last-Translator: bormant <bormant@mail.ru>\n" "Language-Team: Russian <l10n@ru.libreoffice.org>\n" "Language: ru\n" @@ -14,7 +14,7 @@ "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: 1447410536.000000\n" +"X-POOTLE-MTIME: 1458289475.000000\n" #: 3dviewdialog.ui msgctxt "" @@ -2255,7 +2255,7 @@ "label\n" "string.text" msgid "_Inner" -msgstr "Внутри:" +msgstr "Внутри" #: tp_AxisPositions.ui msgctxt "" @@ -2264,7 +2264,7 @@ "label\n" "string.text" msgid "_Outer" -msgstr "Снаружи: " +msgstr "Снаружи" #: tp_AxisPositions.ui msgctxt "" @@ -2273,7 +2273,7 @@ "label\n" "string.text" msgid "I_nner" -msgstr "Внутри:" +msgstr "Внутри" #: tp_AxisPositions.ui msgctxt "" @@ -2282,7 +2282,7 @@ "label\n" "string.text" msgid "O_uter" -msgstr "Снаружи:" +msgstr "Снаружи" #: tp_AxisPositions.ui msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/ru/cui/uiconfig/ui.po libreoffice-5.1.2~rc2/translations/source/ru/cui/uiconfig/ui.po --- libreoffice-5.1.1~rc2/translations/source/ru/cui/uiconfig/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ru/cui/uiconfig/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "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-09 14:22+0000\n" +"PO-Revision-Date: 2016-03-18 08:26+0000\n" "Last-Translator: bormant <bormant@mail.ru>\n" "Language-Team: Russian <l10n@ru.libreoffice.org>\n" "Language: ru\n" @@ -14,7 +14,7 @@ "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: 1452349359.000000\n" +"X-POOTLE-MTIME: 1458289563.000000\n" #: aboutconfigdialog.ui msgctxt "" @@ -3695,7 +3695,7 @@ "label\n" "string.text" msgid "Connection pooling enabled" -msgstr "Разрешить пул подключений " +msgstr "Разрешить пул подключений" #: connpooloptions.ui msgctxt "" @@ -7395,7 +7395,7 @@ "tooltip_markup\n" "string.text" msgid "Load arrow styles" -msgstr "Загрузить Ñтили Ñтрелок " +msgstr "Загрузить Ñтили Ñтрелок" #: lineendstabpage.ui msgctxt "" @@ -10495,7 +10495,7 @@ "label\n" "string.text" msgid "_Interpret as years between " -msgstr "Интерпретировать _как года между" +msgstr "Интерпретировать _как года между " #: optgeneralpage.ui msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/ru/svx/inc.po libreoffice-5.1.2~rc2/translations/source/ru/svx/inc.po --- libreoffice-5.1.1~rc2/translations/source/ru/svx/inc.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ru/svx/inc.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "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-06-28 14:11+0000\n" -"Last-Translator: bormant <bormant@mail.ru>\n" +"PO-Revision-Date: 2016-03-09 06:37+0000\n" +"Last-Translator: system user <>\n" "Language-Team: Russian <l10n@ru.libreoffice.org>\n" "Language: ru\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "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: 1435500715.000000\n" +"X-POOTLE-MTIME: 1457505475.000000\n" #: globlmn_tmpl.hrc msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/rw/cui/uiconfig/ui.po libreoffice-5.1.2~rc2/translations/source/rw/cui/uiconfig/ui.po --- libreoffice-5.1.1~rc2/translations/source/rw/cui/uiconfig/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/rw/cui/uiconfig/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 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:42+0000\n" +"PO-Revision-Date: 2016-03-09 04:00+0000\n" "Last-Translator: system user <>\n" "Language-Team: none\n" "Language: rw\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1452264178.000000\n" +"X-POOTLE-MTIME: 1457496056.000000\n" #: aboutconfigdialog.ui msgctxt "" @@ -14051,31 +14051,34 @@ 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 @@ msgstr "(ntacyo)" #: 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 "" @@ -17405,40 +17412,44 @@ msgstr "(ntacyo)" #: 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 -Nru libreoffice-5.1.1~rc2/translations/source/rw/dbaccess/uiconfig/ui.po libreoffice-5.1.2~rc2/translations/source/rw/dbaccess/uiconfig/ui.po --- libreoffice-5.1.1~rc2/translations/source/rw/dbaccess/uiconfig/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/rw/dbaccess/uiconfig/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: LibO 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:23+0000\n" -"Last-Translator: Andras <timar74@gmail.com>\n" +"PO-Revision-Date: 2016-03-09 04:05+0000\n" +"Last-Translator: system user <>\n" "Language-Team: none\n" "Language: rw\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: 1361136187.0\n" +"X-POOTLE-MTIME: 1457496332.000000\n" #: admindialog.ui msgctxt "" @@ -1927,22 +1927,24 @@ 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 @@ msgstr "" #: queryfilterdialog.ui +#, fuzzy msgctxt "" "queryfilterdialog.ui\n" "cond1\n" "4\n" "stringlist.text" msgid ">" -msgstr "" +msgstr ">" #: queryfilterdialog.ui msgctxt "" @@ -3016,58 +3019,64 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/rw/extensions/uiconfig/sabpilot/ui.po libreoffice-5.1.2~rc2/translations/source/rw/extensions/uiconfig/sabpilot/ui.po --- libreoffice-5.1.1~rc2/translations/source/rw/extensions/uiconfig/sabpilot/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/rw/extensions/uiconfig/sabpilot/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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:44+0000\n" +"PO-Revision-Date: 2016-03-09 04:12+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: rw\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1435286691.000000\n" +"X-POOTLE-MTIME: 1457496758.000000\n" #: contentfieldpage.ui msgctxt "" @@ -280,13 +280,14 @@ msgstr "" #: gridfieldsselectionpage.ui +#, fuzzy msgctxt "" "gridfieldsselectionpage.ui\n" "fieldright\n" "label\n" "string.text" msgid "->" -msgstr "" +msgstr "->" #: gridfieldsselectionpage.ui msgctxt "" @@ -298,13 +299,14 @@ msgstr "" #: gridfieldsselectionpage.ui +#, fuzzy msgctxt "" "gridfieldsselectionpage.ui\n" "fieldleft\n" "label\n" "string.text" msgid "<-" -msgstr "" +msgstr "<-" #: gridfieldsselectionpage.ui msgctxt "" @@ -379,22 +381,24 @@ 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 @@ msgstr "" #: tableselectionpage.ui +#, fuzzy msgctxt "" "tableselectionpage.ui\n" "search\n" "label\n" "string.text" msgid "_..." -msgstr "" +msgstr "_..." #: tableselectionpage.ui msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/rw/librelogo/source/pythonpath.po libreoffice-5.1.2~rc2/translations/source/rw/librelogo/source/pythonpath.po --- libreoffice-5.1.1~rc2/translations/source/rw/librelogo/source/pythonpath.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/rw/librelogo/source/pythonpath.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,17 +3,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: 2014-05-02 00:06+0200\n" -"PO-Revision-Date: 2013-02-17 21:23+0000\n" -"Last-Translator: Andras <timar74@gmail.com>\n" +"POT-Creation-Date: 2015-04-22 23:40+0200\n" +"PO-Revision-Date: 2016-03-09 04:29+0000\n" +"Last-Translator: system user <>\n" "Language-Team: none\n" "Language: rw\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: 1361136187.0\n" +"X-POOTLE-MTIME: 1457497751.000000\n" #: LibreLogo_en_US.properties msgctxt "" @@ -797,20 +797,22 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/rw/officecfg/registry/data/org/openoffice/Office.po libreoffice-5.1.2~rc2/translations/source/rw/officecfg/registry/data/org/openoffice/Office.po --- libreoffice-5.1.1~rc2/translations/source/rw/officecfg/registry/data/org/openoffice/Office.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/rw/officecfg/registry/data/org/openoffice/Office.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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 04:38+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: rw\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1438902621.000000\n" +"X-POOTLE-MTIME: 1457498326.000000\n" #: Addons.xcu msgctxt "" @@ -1429,13 +1429,14 @@ msgstr "" #: PresentationMinimizer.xcu +#, fuzzy msgctxt "" "PresentationMinimizer.xcu\n" "..PresentationMinimizer.Strings\n" "STR_FILESIZESEPARATOR\n" "value.text" msgid "." -msgstr "" +msgstr "." #: PresentationMinimizer.xcu msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/rw/reportdesign/uiconfig/dbreport/ui.po libreoffice-5.1.2~rc2/translations/source/rw/reportdesign/uiconfig/dbreport/ui.po --- libreoffice-5.1.1~rc2/translations/source/rw/reportdesign/uiconfig/dbreport/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/rw/reportdesign/uiconfig/dbreport/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 13:12+0000\n" +"PO-Revision-Date: 2016-03-09 04:59+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: rw\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1416402743.000000\n" +"X-POOTLE-MTIME: 1457499551.000000\n" #: backgrounddialog.ui msgctxt "" @@ -196,13 +196,14 @@ msgstr "" #: conditionwin.ui +#, fuzzy msgctxt "" "conditionwin.ui\n" "lhsButton\n" "label\n" "string.text" msgid "..." -msgstr "" +msgstr "..." #: conditionwin.ui msgctxt "" @@ -214,13 +215,14 @@ msgstr "" #: conditionwin.ui +#, fuzzy msgctxt "" "conditionwin.ui\n" "rhsButton\n" "label\n" "string.text" msgid "..." -msgstr "" +msgstr "..." #: conditionwin.ui msgctxt "" @@ -277,13 +279,14 @@ msgstr "" #: conditionwin.ui +#, fuzzy msgctxt "" "conditionwin.ui\n" "removeButton\n" "label\n" "string.text" msgid "-" -msgstr "" +msgstr "-" #: conditionwin.ui msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/rw/sc/uiconfig/scalc/ui.po libreoffice-5.1.2~rc2/translations/source/rw/sc/uiconfig/scalc/ui.po --- libreoffice-5.1.1~rc2/translations/source/rw/sc/uiconfig/scalc/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/rw/sc/uiconfig/scalc/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 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:54+0000\n" +"PO-Revision-Date: 2016-03-09 05:23+0000\n" "Last-Translator: system user <>\n" "Language-Team: none\n" "Language: rw\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1435287252.000000\n" +"X-POOTLE-MTIME: 1457500988.000000\n" #: advancedfilterdialog.ui msgctxt "" @@ -6389,22 +6389,24 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/rw/sd/source/ui/app.po libreoffice-5.1.2~rc2/translations/source/rw/sd/source/ui/app.po --- libreoffice-5.1.1~rc2/translations/source/rw/sd/source/ui/app.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/rw/sd/source/ui/app.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 11:36+0000\n" +"PO-Revision-Date: 2016-03-09 05:57+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: rw\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1431516995.000000\n" +"X-POOTLE-MTIME: 1457503022.000000\n" #: menuids3_tmpl.src msgctxt "" @@ -3763,12 +3763,13 @@ msgstr "<inomero>" #: strings.src +#, fuzzy msgctxt "" "strings.src\n" "STR_FIELD_PLACEHOLDER_COUNT\n" "string.text" msgid "<count>" -msgstr "" +msgstr "<count>" #: strings.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/rw/sd/uiconfig/simpress/ui.po libreoffice-5.1.2~rc2/translations/source/rw/sd/uiconfig/simpress/ui.po --- libreoffice-5.1.1~rc2/translations/source/rw/sd/uiconfig/simpress/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/rw/sd/uiconfig/simpress/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 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:56+0000\n" +"PO-Revision-Date: 2016-03-09 06:00+0000\n" "Last-Translator: system user <>\n" "Language-Team: none\n" "Language: rw\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1435287376.000000\n" +"X-POOTLE-MTIME: 1457503222.000000\n" #: assistentdialog.ui msgctxt "" @@ -997,22 +997,24 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/rw/starmath/source.po libreoffice-5.1.2~rc2/translations/source/rw/starmath/source.po --- libreoffice-5.1.1~rc2/translations/source/rw/starmath/source.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/rw/starmath/source.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\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-12 13:26+0200\n" +"POT-Creation-Date: 2016-03-29 16:07+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff -Nru libreoffice-5.1.1~rc2/translations/source/rw/sw/source/ui/dbui.po libreoffice-5.1.2~rc2/translations/source/rw/sw/source/ui/dbui.po --- libreoffice-5.1.1~rc2/translations/source/rw/sw/source/ui/dbui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/rw/sw/source/ui/dbui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 11:48+0000\n" +"PO-Revision-Date: 2016-03-09 06:29+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: rw\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1431517716.000000\n" +"X-POOTLE-MTIME: 1457504941.000000\n" #: dbui.src msgctxt "" @@ -487,31 +487,34 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/rw/sw/source/ui/index.po libreoffice-5.1.2~rc2/translations/source/rw/sw/source/ui/index.po --- libreoffice-5.1.1~rc2/translations/source/rw/sw/source/ui/index.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/rw/sw/source/ui/index.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,16 +3,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-01-05 14:33+0200\n" -"Last-Translator: Anonymous Pootle User\n" +"POT-Creation-Date: 2015-04-22 23:40+0200\n" +"PO-Revision-Date: 2016-03-09 06:30+0000\n" +"Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: rw\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: LibreOffice\n" +"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" +"X-POOTLE-MTIME: 1457505049.000000\n" #: cnttab.src #, fuzzy @@ -56,20 +57,22 @@ 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 @@ msgstr "" #: cnttab.src +#, fuzzy msgctxt "" "cnttab.src\n" "STR_TOKEN_PAGE_NUMS\n" "string.text" msgid "#" -msgstr "" +msgstr "#" #: cnttab.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/rw/sw/uiconfig/swriter/ui.po libreoffice-5.1.2~rc2/translations/source/rw/sw/uiconfig/swriter/ui.po --- libreoffice-5.1.1~rc2/translations/source/rw/sw/uiconfig/swriter/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/rw/sw/uiconfig/swriter/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 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 06:42+0000\n" "Last-Translator: system user <>\n" "Language-Team: none\n" "Language: rw\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1438902662.000000\n" +"X-POOTLE-MTIME: 1457505749.000000\n" #: abstractdialog.ui msgctxt "" @@ -2310,13 +2310,14 @@ msgstr "Guhindura imbonerahamwe kugeza ku mwandiko" #: converttexttable.ui +#, fuzzy msgctxt "" "converttexttable.ui\n" "othered\n" "text\n" "string.text" msgid "," -msgstr "" +msgstr "," #: converttexttable.ui msgctxt "" @@ -2502,13 +2503,14 @@ msgstr "" #: createaddresslist.ui +#, fuzzy msgctxt "" "createaddresslist.ui\n" "PREV\n" "label\n" "string.text" msgid "<" -msgstr "" +msgstr "<" #: createaddresslist.ui msgctxt "" @@ -2520,13 +2522,14 @@ msgstr "" #: createaddresslist.ui +#, fuzzy msgctxt "" "createaddresslist.ui\n" "NEXT\n" "label\n" "string.text" msgid ">" -msgstr "" +msgstr ">" #: createaddresslist.ui msgctxt "" @@ -4433,13 +4436,14 @@ msgstr "" #: fldvarpage.ui +#, fuzzy msgctxt "" "fldvarpage.ui\n" "separator\n" "text\n" "string.text" msgid "." -msgstr "" +msgstr "." #: fldvarpage.ui msgctxt "" @@ -5421,22 +5425,24 @@ 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 @@ msgstr "Ibirindiro" #: insertcaption.ui +#, fuzzy msgctxt "" "insertcaption.ui\n" "separator_edit\n" "text\n" "string.text" msgid ": " -msgstr "" +msgstr ": " #: insertcaption.ui msgctxt "" @@ -6364,13 +6371,14 @@ 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 @@ msgstr "" #: mmpreparepage.ui +#, fuzzy msgctxt "" "mmpreparepage.ui\n" "prev\n" "label\n" "string.text" msgid "<" -msgstr "" +msgstr "<" #: mmpreparepage.ui msgctxt "" @@ -8725,13 +8734,14 @@ msgstr "" #: mmpreparepage.ui +#, fuzzy msgctxt "" "mmpreparepage.ui\n" "next\n" "label\n" "string.text" msgid ">" -msgstr "" +msgstr ">" #: mmpreparepage.ui #, fuzzy @@ -9579,13 +9589,14 @@ msgstr "Ibirindiro" #: optcaptionpage.ui +#, fuzzy msgctxt "" "optcaptionpage.ui\n" "numseparator\n" "text\n" "string.text" msgid ". " -msgstr "" +msgstr ". " #: optcaptionpage.ui #, fuzzy @@ -15704,40 +15715,44 @@ msgstr "[Ntacyo]" #: 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 -Nru libreoffice-5.1.1~rc2/translations/source/rw/vcl/source/src.po libreoffice-5.1.2~rc2/translations/source/rw/vcl/source/src.po --- libreoffice-5.1.1~rc2/translations/source/rw/vcl/source/src.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/rw/vcl/source/src.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 19:49+0000\n" +"PO-Revision-Date: 2016-03-09 06:45+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: rw\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1449863346.000000\n" +"X-POOTLE-MTIME: 1457505928.000000\n" #: app.src msgctxt "" @@ -1192,12 +1192,13 @@ msgstr "" #: print.src +#, fuzzy msgctxt "" "print.src\n" "SV_PRINT_INVALID_TXT\n" "string.text" msgid "<ignore>" -msgstr "" +msgstr "<ignore>" #: print.src msgctxt "" @@ -1475,13 +1476,14 @@ msgstr "" #: units.src +#, fuzzy msgctxt "" "units.src\n" "SV_FUNIT_STRINGS\n" "°\n" "itemlist.text" msgid "°" -msgstr "" +msgstr "°" #: units.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/sa-IN/cui/uiconfig/ui.po libreoffice-5.1.2~rc2/translations/source/sa-IN/cui/uiconfig/ui.po --- libreoffice-5.1.1~rc2/translations/source/sa-IN/cui/uiconfig/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/sa-IN/cui/uiconfig/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 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:45+0000\n" +"PO-Revision-Date: 2016-03-09 06:09+0000\n" "Last-Translator: system user <>\n" "Language-Team: none\n" "Language: sa_IN\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1452264347.000000\n" +"X-POOTLE-MTIME: 1457503762.000000\n" #: aboutconfigdialog.ui msgctxt "" @@ -14234,31 +14234,34 @@ 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 @@ -17568,40 +17571,44 @@ 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 "" @@ -17622,40 +17629,44 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/sa-IN/dbaccess/uiconfig/ui.po libreoffice-5.1.2~rc2/translations/source/sa-IN/dbaccess/uiconfig/ui.po --- libreoffice-5.1.1~rc2/translations/source/sa-IN/dbaccess/uiconfig/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/sa-IN/dbaccess/uiconfig/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 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 13:01+0000\n" +"PO-Revision-Date: 2016-03-09 06:14+0000\n" "Last-Translator: system user <>\n" "Language-Team: none\n" "Language: sa_IN\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1431522118.000000\n" +"X-POOTLE-MTIME: 1457504098.000000\n" #: admindialog.ui #, fuzzy @@ -1939,22 +1939,24 @@ 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 @@ msgstr "" #: queryfilterdialog.ui +#, fuzzy msgctxt "" "queryfilterdialog.ui\n" "cond1\n" "4\n" "stringlist.text" msgid ">" -msgstr "" +msgstr ">" #: queryfilterdialog.ui msgctxt "" @@ -3037,58 +3040,64 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/sa-IN/extensions/uiconfig/sabpilot/ui.po libreoffice-5.1.2~rc2/translations/source/sa-IN/extensions/uiconfig/sabpilot/ui.po --- libreoffice-5.1.1~rc2/translations/source/sa-IN/extensions/uiconfig/sabpilot/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/sa-IN/extensions/uiconfig/sabpilot/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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:53+0000\n" +"PO-Revision-Date: 2016-03-09 06:23+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: sa_IN\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1435287209.000000\n" +"X-POOTLE-MTIME: 1457504621.000000\n" #: contentfieldpage.ui msgctxt "" @@ -295,13 +295,14 @@ msgstr "" #: gridfieldsselectionpage.ui +#, fuzzy msgctxt "" "gridfieldsselectionpage.ui\n" "fieldright\n" "label\n" "string.text" msgid "->" -msgstr "" +msgstr "->" #: gridfieldsselectionpage.ui msgctxt "" @@ -313,13 +314,14 @@ msgstr "" #: gridfieldsselectionpage.ui +#, fuzzy msgctxt "" "gridfieldsselectionpage.ui\n" "fieldleft\n" "label\n" "string.text" msgid "<-" -msgstr "" +msgstr "<-" #: gridfieldsselectionpage.ui msgctxt "" @@ -394,22 +396,24 @@ 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 @@ msgstr "" #: tableselectionpage.ui +#, fuzzy msgctxt "" "tableselectionpage.ui\n" "search\n" "label\n" "string.text" msgid "_..." -msgstr "" +msgstr "_..." #: tableselectionpage.ui msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/sa-IN/formula/source/core/resource.po libreoffice-5.1.2~rc2/translations/source/sa-IN/formula/source/core/resource.po --- libreoffice-5.1.1~rc2/translations/source/sa-IN/formula/source/core/resource.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/sa-IN/formula/source/core/resource.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\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-29 16:07+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff -Nru libreoffice-5.1.1~rc2/translations/source/sa-IN/librelogo/source/pythonpath.po libreoffice-5.1.2~rc2/translations/source/sa-IN/librelogo/source/pythonpath.po --- libreoffice-5.1.1~rc2/translations/source/sa-IN/librelogo/source/pythonpath.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/sa-IN/librelogo/source/pythonpath.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 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 13:08+0000\n" +"PO-Revision-Date: 2016-03-09 06:40+0000\n" "Last-Translator: system user <>\n" "Language-Team: none\n" "Language: sa_IN\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1431522537.000000\n" +"X-POOTLE-MTIME: 1457505617.000000\n" #: LibreLogo_en_US.properties msgctxt "" @@ -795,20 +795,22 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/sa-IN/officecfg/registry/data/org/openoffice/Office.po libreoffice-5.1.2~rc2/translations/source/sa-IN/officecfg/registry/data/org/openoffice/Office.po --- libreoffice-5.1.1~rc2/translations/source/sa-IN/officecfg/registry/data/org/openoffice/Office.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/sa-IN/officecfg/registry/data/org/openoffice/Office.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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:12+0000\n" +"PO-Revision-Date: 2016-03-09 06:50+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: sa_IN\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1438902759.000000\n" +"X-POOTLE-MTIME: 1457506253.000000\n" #: Addons.xcu msgctxt "" @@ -1431,13 +1431,14 @@ msgstr "OLE वसà¥à¤¤à¥à¤­à¥à¤¯à¤ƒ पà¥à¤°à¤¤à¤¿à¤¸à¤®à¤¾à¤§à¤¨à¤¸à¥à¤šà¤¿à¤¤à¥à¤°à¤¾à¤£à¤¿ उतà¥à¤ªà¤¾à¤¦à¤¯à¤¤à¤¿ ..." #: PresentationMinimizer.xcu +#, fuzzy msgctxt "" "PresentationMinimizer.xcu\n" "..PresentationMinimizer.Strings\n" "STR_FILESIZESEPARATOR\n" "value.text" msgid "." -msgstr "" +msgstr "." #: PresentationMinimizer.xcu msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/sa-IN/reportdesign/uiconfig/dbreport/ui.po libreoffice-5.1.2~rc2/translations/source/sa-IN/reportdesign/uiconfig/dbreport/ui.po --- libreoffice-5.1.1~rc2/translations/source/sa-IN/reportdesign/uiconfig/dbreport/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/sa-IN/reportdesign/uiconfig/dbreport/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 13:10+0000\n" +"PO-Revision-Date: 2016-03-09 07:16+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: sa_IN\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1431522651.000000\n" +"X-POOTLE-MTIME: 1457507806.000000\n" #: backgrounddialog.ui msgctxt "" @@ -196,13 +196,14 @@ msgstr "" #: conditionwin.ui +#, fuzzy msgctxt "" "conditionwin.ui\n" "lhsButton\n" "label\n" "string.text" msgid "..." -msgstr "" +msgstr "..." #: conditionwin.ui msgctxt "" @@ -214,13 +215,14 @@ msgstr "" #: conditionwin.ui +#, fuzzy msgctxt "" "conditionwin.ui\n" "rhsButton\n" "label\n" "string.text" msgid "..." -msgstr "" +msgstr "..." #: conditionwin.ui msgctxt "" @@ -277,13 +279,14 @@ msgstr "" #: conditionwin.ui +#, fuzzy msgctxt "" "conditionwin.ui\n" "removeButton\n" "label\n" "string.text" msgid "-" -msgstr "" +msgstr "-" #: conditionwin.ui msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/sa-IN/sc/uiconfig/scalc/ui.po libreoffice-5.1.2~rc2/translations/source/sa-IN/sc/uiconfig/scalc/ui.po --- libreoffice-5.1.1~rc2/translations/source/sa-IN/sc/uiconfig/scalc/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/sa-IN/sc/uiconfig/scalc/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 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 03:08+0000\n" +"PO-Revision-Date: 2016-03-09 07:47+0000\n" "Last-Translator: system user <>\n" "Language-Team: none\n" "Language: sa_IN\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1435288115.000000\n" +"X-POOTLE-MTIME: 1457509668.000000\n" #: advancedfilterdialog.ui msgctxt "" @@ -6490,22 +6490,24 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/sa-IN/sd/uiconfig/simpress/ui.po libreoffice-5.1.2~rc2/translations/source/sa-IN/sd/uiconfig/simpress/ui.po --- libreoffice-5.1.1~rc2/translations/source/sa-IN/sd/uiconfig/simpress/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/sa-IN/sd/uiconfig/simpress/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 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 03:12+0000\n" +"PO-Revision-Date: 2016-03-09 08:16+0000\n" "Last-Translator: system user <>\n" "Language-Team: none\n" "Language: sa_IN\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1435288341.000000\n" +"X-POOTLE-MTIME: 1457511367.000000\n" #: assistentdialog.ui msgctxt "" @@ -1004,22 +1004,24 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/sa-IN/starmath/source.po libreoffice-5.1.2~rc2/translations/source/sa-IN/starmath/source.po --- libreoffice-5.1.1~rc2/translations/source/sa-IN/starmath/source.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/sa-IN/starmath/source.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\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-12 13:26+0200\n" +"POT-Creation-Date: 2016-03-29 16:07+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff -Nru libreoffice-5.1.1~rc2/translations/source/sa-IN/sw/source/ui/dbui.po libreoffice-5.1.2~rc2/translations/source/sa-IN/sw/source/ui/dbui.po --- libreoffice-5.1.1~rc2/translations/source/sa-IN/sw/source/ui/dbui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/sa-IN/sw/source/ui/dbui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 13:36+0000\n" +"PO-Revision-Date: 2016-03-09 08:55+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: sa_IN\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1431524189.000000\n" +"X-POOTLE-MTIME: 1457513735.000000\n" #: dbui.src msgctxt "" @@ -488,31 +488,34 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/sa-IN/sw/source/ui/index.po libreoffice-5.1.2~rc2/translations/source/sa-IN/sw/source/ui/index.po --- libreoffice-5.1.1~rc2/translations/source/sa-IN/sw/source/ui/index.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/sa-IN/sw/source/ui/index.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 13:36+0000\n" +"PO-Revision-Date: 2016-03-09 08:57+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: sa_IN\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1431524216.000000\n" +"X-POOTLE-MTIME: 1457513854.000000\n" #: cnttab.src #, fuzzy @@ -105,12 +105,13 @@ msgstr "" #: cnttab.src +#, fuzzy msgctxt "" "cnttab.src\n" "STR_TOKEN_PAGE_NUMS\n" "string.text" msgid "#" -msgstr "" +msgstr "#" #: cnttab.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/sa-IN/sw/uiconfig/swriter/ui.po libreoffice-5.1.2~rc2/translations/source/sa-IN/sw/uiconfig/swriter/ui.po --- libreoffice-5.1.1~rc2/translations/source/sa-IN/sw/uiconfig/swriter/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/sa-IN/sw/uiconfig/swriter/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 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:15+0000\n" +"PO-Revision-Date: 2016-03-09 09:13+0000\n" "Last-Translator: system user <>\n" "Language-Team: none\n" "Language: sa_IN\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1438902950.000000\n" +"X-POOTLE-MTIME: 1457514836.000000\n" #: abstractdialog.ui msgctxt "" @@ -2321,13 +2321,14 @@ msgstr "सारणीं पाठà¥à¤¯à¥‡ परिवरà¥à¤¤à¤¯" #: converttexttable.ui +#, fuzzy msgctxt "" "converttexttable.ui\n" "othered\n" "text\n" "string.text" msgid "," -msgstr "" +msgstr "," #: converttexttable.ui msgctxt "" @@ -2513,13 +2514,14 @@ msgstr "" #: createaddresslist.ui +#, fuzzy msgctxt "" "createaddresslist.ui\n" "PREV\n" "label\n" "string.text" msgid "<" -msgstr "" +msgstr "<" #: createaddresslist.ui msgctxt "" @@ -2531,13 +2533,14 @@ msgstr "" #: createaddresslist.ui +#, fuzzy msgctxt "" "createaddresslist.ui\n" "NEXT\n" "label\n" "string.text" msgid ">" -msgstr "" +msgstr ">" #: createaddresslist.ui msgctxt "" @@ -4457,13 +4460,14 @@ msgstr "न" #: fldvarpage.ui +#, fuzzy msgctxt "" "fldvarpage.ui\n" "separator\n" "text\n" "string.text" msgid "." -msgstr "" +msgstr "." #: fldvarpage.ui #, fuzzy @@ -6393,13 +6397,14 @@ msgstr "संखà¥à¤¯à¤¾à¤•à¤°à¤£à¤µà¤¿à¤­à¤¾à¤œà¤•à¤ƒ" #: insertcaption.ui +#, fuzzy msgctxt "" "insertcaption.ui\n" "num_separator_edit\n" "text\n" "string.text" msgid ". " -msgstr "" +msgstr ". " #: insertcaption.ui #, fuzzy @@ -8778,13 +8783,14 @@ msgstr "पà¥à¤°à¤¥à¤®à¤®à¥" #: mmpreparepage.ui +#, fuzzy msgctxt "" "mmpreparepage.ui\n" "prev\n" "label\n" "string.text" msgid "<" -msgstr "" +msgstr "<" #: mmpreparepage.ui msgctxt "" @@ -8796,13 +8802,14 @@ msgstr "पूरà¥à¤µà¤¤à¤¨à¤®à¥" #: mmpreparepage.ui +#, fuzzy msgctxt "" "mmpreparepage.ui\n" "next\n" "label\n" "string.text" msgid ">" -msgstr "" +msgstr ">" #: mmpreparepage.ui msgctxt "" @@ -9662,13 +9669,14 @@ msgstr "सà¥à¤¥à¤¿à¤¤à¤¿à¤ƒ " #: optcaptionpage.ui +#, fuzzy msgctxt "" "optcaptionpage.ui\n" "numseparator\n" "text\n" "string.text" msgid ". " -msgstr "" +msgstr ". " #: optcaptionpage.ui msgctxt "" @@ -15821,40 +15829,44 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/sa-IN/vcl/source/src.po libreoffice-5.1.2~rc2/translations/source/sa-IN/vcl/source/src.po --- libreoffice-5.1.1~rc2/translations/source/sa-IN/vcl/source/src.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/sa-IN/vcl/source/src.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 20:11+0000\n" +"PO-Revision-Date: 2016-03-09 09:18+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: sa_IN\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1449864716.000000\n" +"X-POOTLE-MTIME: 1457515124.000000\n" #: app.src msgctxt "" @@ -1507,13 +1507,14 @@ msgstr "पिकà¥à¤¸à¤²à¥à¤¸à¥" #: units.src +#, fuzzy msgctxt "" "units.src\n" "SV_FUNIT_STRINGS\n" "°\n" "itemlist.text" msgid "°" -msgstr "" +msgstr "°" #: units.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/sat/cui/uiconfig/ui.po libreoffice-5.1.2~rc2/translations/source/sat/cui/uiconfig/ui.po --- libreoffice-5.1.1~rc2/translations/source/sat/cui/uiconfig/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/sat/cui/uiconfig/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 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:45+0000\n" +"PO-Revision-Date: 2016-03-09 04:55+0000\n" "Last-Translator: system user <>\n" "Language-Team: none\n" "Language: sat\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1452264353.000000\n" +"X-POOTLE-MTIME: 1457499343.000000\n" #: aboutconfigdialog.ui msgctxt "" @@ -14294,22 +14294,24 @@ 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 msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/sat/dbaccess/uiconfig/ui.po libreoffice-5.1.2~rc2/translations/source/sat/dbaccess/uiconfig/ui.po --- libreoffice-5.1.1~rc2/translations/source/sat/dbaccess/uiconfig/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/sat/dbaccess/uiconfig/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 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 12:05+0000\n" +"PO-Revision-Date: 2016-03-09 05:02+0000\n" "Last-Translator: system user <>\n" "Language-Team: none\n" "Language: sat\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1431518718.000000\n" +"X-POOTLE-MTIME: 1457499779.000000\n" #: admindialog.ui #, fuzzy @@ -3042,58 +3042,64 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/sat/extensions/uiconfig/sabpilot/ui.po libreoffice-5.1.2~rc2/translations/source/sat/extensions/uiconfig/sabpilot/ui.po --- libreoffice-5.1.1~rc2/translations/source/sat/extensions/uiconfig/sabpilot/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/sat/extensions/uiconfig/sabpilot/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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:50+0000\n" +"PO-Revision-Date: 2016-03-09 05:12+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: sat\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1435287018.000000\n" +"X-POOTLE-MTIME: 1457500341.000000\n" #: contentfieldpage.ui msgctxt "" @@ -289,13 +289,14 @@ msgstr "" #: gridfieldsselectionpage.ui +#, fuzzy msgctxt "" "gridfieldsselectionpage.ui\n" "fieldright\n" "label\n" "string.text" msgid "->" -msgstr "" +msgstr "->" #: gridfieldsselectionpage.ui msgctxt "" @@ -307,13 +308,14 @@ msgstr "" #: gridfieldsselectionpage.ui +#, fuzzy msgctxt "" "gridfieldsselectionpage.ui\n" "fieldleft\n" "label\n" "string.text" msgid "<-" -msgstr "" +msgstr "<-" #: gridfieldsselectionpage.ui msgctxt "" @@ -388,22 +390,24 @@ 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 @@ msgstr "" #: tableselectionpage.ui +#, fuzzy msgctxt "" "tableselectionpage.ui\n" "search\n" "label\n" "string.text" msgid "_..." -msgstr "" +msgstr "_..." #: tableselectionpage.ui msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/sat/formula/source/core/resource.po libreoffice-5.1.2~rc2/translations/source/sat/formula/source/core/resource.po --- libreoffice-5.1.1~rc2/translations/source/sat/formula/source/core/resource.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/sat/formula/source/core/resource.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\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-29 16:07+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff -Nru libreoffice-5.1.1~rc2/translations/source/sat/librelogo/source/pythonpath.po libreoffice-5.1.2~rc2/translations/source/sat/librelogo/source/pythonpath.po --- libreoffice-5.1.1~rc2/translations/source/sat/librelogo/source/pythonpath.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/sat/librelogo/source/pythonpath.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,17 +3,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: 2014-05-02 00:06+0200\n" -"PO-Revision-Date: 2014-09-24 05:06+0000\n" -"Last-Translator: chandrakantd <cpdhutadmal@yahoo.com>\n" +"POT-Creation-Date: 2015-04-22 23:40+0200\n" +"PO-Revision-Date: 2016-03-09 05:38+0000\n" +"Last-Translator: system user <>\n" "Language-Team: none\n" "Language: sat\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Pootle 2.5.1\n" +"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1411535194.000000\n" +"X-POOTLE-MTIME: 1457501883.000000\n" #: LibreLogo_en_US.properties msgctxt "" @@ -801,12 +801,13 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/sat/reportdesign/uiconfig/dbreport/ui.po libreoffice-5.1.2~rc2/translations/source/sat/reportdesign/uiconfig/dbreport/ui.po --- libreoffice-5.1.1~rc2/translations/source/sat/reportdesign/uiconfig/dbreport/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/sat/reportdesign/uiconfig/dbreport/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 12:11+0000\n" +"PO-Revision-Date: 2016-03-09 06:26+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: sat\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1431519071.000000\n" +"X-POOTLE-MTIME: 1457504791.000000\n" #: backgrounddialog.ui msgctxt "" @@ -196,13 +196,14 @@ msgstr "" #: conditionwin.ui +#, fuzzy msgctxt "" "conditionwin.ui\n" "lhsButton\n" "label\n" "string.text" msgid "..." -msgstr "" +msgstr "..." #: conditionwin.ui msgctxt "" @@ -214,13 +215,14 @@ msgstr "" #: conditionwin.ui +#, fuzzy msgctxt "" "conditionwin.ui\n" "rhsButton\n" "label\n" "string.text" msgid "..." -msgstr "" +msgstr "..." #: conditionwin.ui msgctxt "" @@ -277,13 +279,14 @@ msgstr "" #: conditionwin.ui +#, fuzzy msgctxt "" "conditionwin.ui\n" "removeButton\n" "label\n" "string.text" msgid "-" -msgstr "" +msgstr "-" #: conditionwin.ui msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/sat/starmath/source.po libreoffice-5.1.2~rc2/translations/source/sat/starmath/source.po --- libreoffice-5.1.1~rc2/translations/source/sat/starmath/source.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/sat/starmath/source.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\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-12 13:26+0200\n" +"POT-Creation-Date: 2016-03-29 16:07+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff -Nru libreoffice-5.1.1~rc2/translations/source/sat/sw/source/ui/dbui.po libreoffice-5.1.2~rc2/translations/source/sat/sw/source/ui/dbui.po --- libreoffice-5.1.1~rc2/translations/source/sat/sw/source/ui/dbui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/sat/sw/source/ui/dbui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 12:37+0000\n" +"PO-Revision-Date: 2016-03-09 08:09+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: sat\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1431520641.000000\n" +"X-POOTLE-MTIME: 1457510985.000000\n" #: dbui.src msgctxt "" @@ -487,22 +487,24 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/sat/sw/uiconfig/swriter/ui.po libreoffice-5.1.2~rc2/translations/source/sat/sw/uiconfig/swriter/ui.po --- libreoffice-5.1.1~rc2/translations/source/sat/sw/uiconfig/swriter/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/sat/sw/uiconfig/swriter/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 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:18+0000\n" +"PO-Revision-Date: 2016-03-09 08:26+0000\n" "Last-Translator: system user <>\n" "Language-Team: none\n" "Language: sat\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1438903138.000000\n" +"X-POOTLE-MTIME: 1457512009.000000\n" #: abstractdialog.ui msgctxt "" @@ -2324,13 +2324,14 @@ msgstr "ता़लिका ओनोल बोदोल'टेबà¥à¤² ओनोल बोदोल" #: converttexttable.ui +#, fuzzy msgctxt "" "converttexttable.ui\n" "othered\n" "text\n" "string.text" msgid "," -msgstr "" +msgstr "," #: converttexttable.ui msgctxt "" @@ -2516,13 +2517,14 @@ msgstr "" #: createaddresslist.ui +#, fuzzy msgctxt "" "createaddresslist.ui\n" "PREV\n" "label\n" "string.text" msgid "<" -msgstr "" +msgstr "<" #: createaddresslist.ui msgctxt "" @@ -2534,13 +2536,14 @@ msgstr "" #: createaddresslist.ui +#, fuzzy msgctxt "" "createaddresslist.ui\n" "NEXT\n" "label\n" "string.text" msgid ">" -msgstr "" +msgstr ">" #: createaddresslist.ui msgctxt "" @@ -15743,31 +15746,34 @@ 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 msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/sat/vcl/source/src.po libreoffice-5.1.2~rc2/translations/source/sat/vcl/source/src.po --- libreoffice-5.1.1~rc2/translations/source/sat/vcl/source/src.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/sat/vcl/source/src.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 20:14+0000\n" +"PO-Revision-Date: 2016-03-09 08:30+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: sat\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1449864873.000000\n" +"X-POOTLE-MTIME: 1457512259.000000\n" #: app.src msgctxt "" @@ -1536,13 +1536,14 @@ msgstr "" #: units.src +#, fuzzy msgctxt "" "units.src\n" "SV_FUNIT_STRINGS\n" "°\n" "itemlist.text" msgid "°" -msgstr "" +msgstr "°" #: units.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/sd/cui/uiconfig/ui.po libreoffice-5.1.2~rc2/translations/source/sd/cui/uiconfig/ui.po --- libreoffice-5.1.1~rc2/translations/source/sd/cui/uiconfig/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/sd/cui/uiconfig/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 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:46+0000\n" +"PO-Revision-Date: 2016-03-09 06:14+0000\n" "Last-Translator: system user <>\n" "Language-Team: none\n" "Language: sd\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1452264414.000000\n" +"X-POOTLE-MTIME: 1457504083.000000\n" #: aboutconfigdialog.ui msgctxt "" @@ -14236,31 +14236,34 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/sd/dbaccess/uiconfig/ui.po libreoffice-5.1.2~rc2/translations/source/sd/dbaccess/uiconfig/ui.po --- libreoffice-5.1.1~rc2/translations/source/sd/dbaccess/uiconfig/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/sd/dbaccess/uiconfig/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 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 14:05+0000\n" +"PO-Revision-Date: 2016-03-09 06:20+0000\n" "Last-Translator: system user <>\n" "Language-Team: none\n" "Language: sd\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1431525938.000000\n" +"X-POOTLE-MTIME: 1457504441.000000\n" #: admindialog.ui #, fuzzy @@ -3034,58 +3034,64 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/sd/extensions/uiconfig/sabpilot/ui.po libreoffice-5.1.2~rc2/translations/source/sd/extensions/uiconfig/sabpilot/ui.po --- libreoffice-5.1.1~rc2/translations/source/sd/extensions/uiconfig/sabpilot/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/sd/extensions/uiconfig/sabpilot/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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 03:06+0000\n" +"PO-Revision-Date: 2016-03-09 06:29+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: sd\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1435287972.000000\n" +"X-POOTLE-MTIME: 1457504978.000000\n" #: contentfieldpage.ui msgctxt "" @@ -281,13 +281,14 @@ msgstr "" #: gridfieldsselectionpage.ui +#, fuzzy msgctxt "" "gridfieldsselectionpage.ui\n" "fieldright\n" "label\n" "string.text" msgid "->" -msgstr "" +msgstr "->" #: gridfieldsselectionpage.ui msgctxt "" @@ -299,13 +300,14 @@ msgstr "" #: gridfieldsselectionpage.ui +#, fuzzy msgctxt "" "gridfieldsselectionpage.ui\n" "fieldleft\n" "label\n" "string.text" msgid "<-" -msgstr "" +msgstr "<-" #: gridfieldsselectionpage.ui msgctxt "" @@ -380,22 +382,24 @@ 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 @@ msgstr "" #: tableselectionpage.ui +#, fuzzy msgctxt "" "tableselectionpage.ui\n" "search\n" "label\n" "string.text" msgid "_..." -msgstr "" +msgstr "_..." #: tableselectionpage.ui msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/sd/formula/source/core/resource.po libreoffice-5.1.2~rc2/translations/source/sd/formula/source/core/resource.po --- libreoffice-5.1.1~rc2/translations/source/sd/formula/source/core/resource.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/sd/formula/source/core/resource.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\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-29 16:07+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff -Nru libreoffice-5.1.1~rc2/translations/source/sd/instsetoo_native/inc_openoffice/windows/msi_languages.po libreoffice-5.1.2~rc2/translations/source/sd/instsetoo_native/inc_openoffice/windows/msi_languages.po --- libreoffice-5.1.1~rc2/translations/source/sd/instsetoo_native/inc_openoffice/windows/msi_languages.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/sd/instsetoo_native/inc_openoffice/windows/msi_languages.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\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-19 20:52+0200\n" +"POT-Creation-Date: 2016-03-29 16:07+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff -Nru libreoffice-5.1.1~rc2/translations/source/sd/librelogo/source/pythonpath.po libreoffice-5.1.2~rc2/translations/source/sd/librelogo/source/pythonpath.po --- libreoffice-5.1.1~rc2/translations/source/sd/librelogo/source/pythonpath.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/sd/librelogo/source/pythonpath.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,17 +3,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: 2014-05-02 00:06+0200\n" -"PO-Revision-Date: 2014-08-19 10:33+0000\n" -"Last-Translator: shanmugamr <shanfaace@gmail.com>\n" +"POT-Creation-Date: 2015-04-22 23:40+0200\n" +"PO-Revision-Date: 2016-03-09 06:45+0000\n" +"Last-Translator: system user <>\n" "Language-Team: none\n" "Language: sd\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: LibreOffice\n" +"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1408444417.000000\n" +"X-POOTLE-MTIME: 1457505938.000000\n" #: LibreLogo_en_US.properties msgctxt "" @@ -805,12 +805,13 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/sd/reportdesign/uiconfig/dbreport/ui.po libreoffice-5.1.2~rc2/translations/source/sd/reportdesign/uiconfig/dbreport/ui.po --- libreoffice-5.1.1~rc2/translations/source/sd/reportdesign/uiconfig/dbreport/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/sd/reportdesign/uiconfig/dbreport/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 14:12+0000\n" +"PO-Revision-Date: 2016-03-09 07:21+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: sd\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1431526364.000000\n" +"X-POOTLE-MTIME: 1457508084.000000\n" #: backgrounddialog.ui msgctxt "" @@ -196,13 +196,14 @@ msgstr "" #: conditionwin.ui +#, fuzzy msgctxt "" "conditionwin.ui\n" "lhsButton\n" "label\n" "string.text" msgid "..." -msgstr "" +msgstr "..." #: conditionwin.ui msgctxt "" @@ -214,13 +215,14 @@ msgstr "" #: conditionwin.ui +#, fuzzy msgctxt "" "conditionwin.ui\n" "rhsButton\n" "label\n" "string.text" msgid "..." -msgstr "" +msgstr "..." #: conditionwin.ui msgctxt "" @@ -277,13 +279,14 @@ msgstr "" #: conditionwin.ui +#, fuzzy msgctxt "" "conditionwin.ui\n" "removeButton\n" "label\n" "string.text" msgid "-" -msgstr "" +msgstr "-" #: conditionwin.ui msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/sd/sd/uiconfig/simpress/ui.po libreoffice-5.1.2~rc2/translations/source/sd/sd/uiconfig/simpress/ui.po --- libreoffice-5.1.1~rc2/translations/source/sd/sd/uiconfig/simpress/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/sd/sd/uiconfig/simpress/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 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 03:23+0000\n" +"PO-Revision-Date: 2016-03-09 08:19+0000\n" "Last-Translator: system user <>\n" "Language-Team: none\n" "Language: sd\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1435288987.000000\n" +"X-POOTLE-MTIME: 1457511551.000000\n" #: assistentdialog.ui msgctxt "" @@ -1006,22 +1006,24 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/sd/starmath/source.po libreoffice-5.1.2~rc2/translations/source/sd/starmath/source.po --- libreoffice-5.1.1~rc2/translations/source/sd/starmath/source.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/sd/starmath/source.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\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-12 13:26+0200\n" +"POT-Creation-Date: 2016-03-29 16:07+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff -Nru libreoffice-5.1.1~rc2/translations/source/sd/sw/source/ui/dbui.po libreoffice-5.1.2~rc2/translations/source/sd/sw/source/ui/dbui.po --- libreoffice-5.1.1~rc2/translations/source/sd/sw/source/ui/dbui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/sd/sw/source/ui/dbui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 14:43+0000\n" +"PO-Revision-Date: 2016-03-09 08:59+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: sd\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1431528183.000000\n" +"X-POOTLE-MTIME: 1457513948.000000\n" #: dbui.src msgctxt "" @@ -484,31 +484,34 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/sd/sw/source/ui/utlui.po libreoffice-5.1.2~rc2/translations/source/sd/sw/source/ui/utlui.po --- libreoffice-5.1.1~rc2/translations/source/sd/sw/source/ui/utlui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/sd/sw/source/ui/utlui.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\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-12 13:26+0200\n" +"POT-Creation-Date: 2016-03-29 16:07+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff -Nru libreoffice-5.1.1~rc2/translations/source/sd/sw/uiconfig/swriter/ui.po libreoffice-5.1.2~rc2/translations/source/sd/sw/uiconfig/swriter/ui.po --- libreoffice-5.1.1~rc2/translations/source/sd/sw/uiconfig/swriter/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/sd/sw/uiconfig/swriter/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 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-09 09:18+0000\n" "Last-Translator: system user <>\n" "Language-Team: none\n" "Language: sd\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1438902976.000000\n" +"X-POOTLE-MTIME: 1457515103.000000\n" #: abstractdialog.ui msgctxt "" @@ -2320,13 +2320,14 @@ msgstr "متن Ú©ÙŠ تختيءَ Û¾ بدلايو" #: converttexttable.ui +#, fuzzy msgctxt "" "converttexttable.ui\n" "othered\n" "text\n" "string.text" msgid "," -msgstr "" +msgstr "," #: converttexttable.ui msgctxt "" @@ -2512,13 +2513,14 @@ msgstr "" #: createaddresslist.ui +#, fuzzy msgctxt "" "createaddresslist.ui\n" "PREV\n" "label\n" "string.text" msgid "<" -msgstr "" +msgstr "<" #: createaddresslist.ui msgctxt "" @@ -2530,13 +2532,14 @@ msgstr "" #: createaddresslist.ui +#, fuzzy msgctxt "" "createaddresslist.ui\n" "NEXT\n" "label\n" "string.text" msgid ">" -msgstr "" +msgstr ">" #: createaddresslist.ui msgctxt "" @@ -6389,13 +6392,14 @@ msgstr "انگ Úيندڙ ڌار ڪندڙ" #: insertcaption.ui +#, fuzzy msgctxt "" "insertcaption.ui\n" "num_separator_edit\n" "text\n" "string.text" msgid ". " -msgstr "" +msgstr ". " #: insertcaption.ui #, fuzzy @@ -9631,13 +9635,14 @@ msgstr "بيهڪ " #: optcaptionpage.ui +#, fuzzy msgctxt "" "optcaptionpage.ui\n" "numseparator\n" "text\n" "string.text" msgid ". " -msgstr "" +msgstr ". " #: optcaptionpage.ui msgctxt "" @@ -15782,31 +15787,34 @@ 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 msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/sd/vcl/source/src.po libreoffice-5.1.2~rc2/translations/source/sd/vcl/source/src.po --- libreoffice-5.1.1~rc2/translations/source/sd/vcl/source/src.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/sd/vcl/source/src.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 20:13+0000\n" +"PO-Revision-Date: 2016-03-09 09:22+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: sd\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1449864811.000000\n" +"X-POOTLE-MTIME: 1457515330.000000\n" #: app.src msgctxt "" @@ -1509,13 +1509,14 @@ msgstr "" #: units.src +#, fuzzy msgctxt "" "units.src\n" "SV_FUNIT_STRINGS\n" "°\n" "itemlist.text" msgid "°" -msgstr "" +msgstr "°" #: units.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/si/cui/uiconfig/ui.po libreoffice-5.1.2~rc2/translations/source/si/cui/uiconfig/ui.po --- libreoffice-5.1.1~rc2/translations/source/si/cui/uiconfig/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/si/cui/uiconfig/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 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:50+0000\n" +"PO-Revision-Date: 2016-03-09 06:42+0000\n" "Last-Translator: system user <>\n" "Language-Team: none\n" "Language: si\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1452264628.000000\n" +"X-POOTLE-MTIME: 1457505759.000000\n" #: aboutconfigdialog.ui msgctxt "" @@ -14125,31 +14125,34 @@ 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 @@ -17439,40 +17442,44 @@ 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 "" @@ -17493,40 +17500,44 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/si/dbaccess/uiconfig/ui.po libreoffice-5.1.2~rc2/translations/source/si/dbaccess/uiconfig/ui.po --- libreoffice-5.1.1~rc2/translations/source/si/dbaccess/uiconfig/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/si/dbaccess/uiconfig/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,15 +4,17 @@ "Project-Id-Version: PACKAGE VERSION\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-09 06:47+0000\n" +"Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: si\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"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: 1457506067.000000\n" #: admindialog.ui msgctxt "" @@ -1926,22 +1928,24 @@ 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 @@ msgstr "" #: queryfilterdialog.ui +#, fuzzy msgctxt "" "queryfilterdialog.ui\n" "cond1\n" "4\n" "stringlist.text" msgid ">" -msgstr "" +msgstr ">" #: queryfilterdialog.ui msgctxt "" @@ -3015,58 +3020,64 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/si/extensions/uiconfig/sabpilot/ui.po libreoffice-5.1.2~rc2/translations/source/si/extensions/uiconfig/sabpilot/ui.po --- libreoffice-5.1.1~rc2/translations/source/si/extensions/uiconfig/sabpilot/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/si/extensions/uiconfig/sabpilot/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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 03:08+0000\n" +"PO-Revision-Date: 2016-03-09 06:54+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: si\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1435288106.000000\n" +"X-POOTLE-MTIME: 1457506446.000000\n" #: contentfieldpage.ui msgctxt "" @@ -281,13 +281,14 @@ msgstr "" #: gridfieldsselectionpage.ui +#, fuzzy msgctxt "" "gridfieldsselectionpage.ui\n" "fieldright\n" "label\n" "string.text" msgid "->" -msgstr "" +msgstr "->" #: gridfieldsselectionpage.ui msgctxt "" @@ -299,13 +300,14 @@ msgstr "" #: gridfieldsselectionpage.ui +#, fuzzy msgctxt "" "gridfieldsselectionpage.ui\n" "fieldleft\n" "label\n" "string.text" msgid "<-" -msgstr "" +msgstr "<-" #: gridfieldsselectionpage.ui msgctxt "" @@ -380,22 +382,24 @@ 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 @@ msgstr "" #: tableselectionpage.ui +#, fuzzy msgctxt "" "tableselectionpage.ui\n" "search\n" "label\n" "string.text" msgid "_..." -msgstr "" +msgstr "_..." #: tableselectionpage.ui msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/si/formula/source/core/resource.po libreoffice-5.1.2~rc2/translations/source/si/formula/source/core/resource.po --- libreoffice-5.1.1~rc2/translations/source/si/formula/source/core/resource.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/si/formula/source/core/resource.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\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-29 16:07+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff -Nru libreoffice-5.1.1~rc2/translations/source/si/helpcontent2/source/text/scalc/01.po libreoffice-5.1.2~rc2/translations/source/si/helpcontent2/source/text/scalc/01.po --- libreoffice-5.1.1~rc2/translations/source/si/helpcontent2/source/text/scalc/01.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/si/helpcontent2/source/text/scalc/01.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 21:49+0000\n" +"PO-Revision-Date: 2016-03-04 04:07+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: si\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1431380969.000000\n" +"X-POOTLE-MTIME: 1457064429.000000\n" #: 01120000.xhp msgctxt "" @@ -59847,13 +59847,14 @@ msgstr "සමà·à¶±" #: 12090103.xhp +#, fuzzy msgctxt "" "12090103.xhp\n" "par_id3154254\n" "15\n" "help.text" msgid "<" -msgstr "" +msgstr "<" #: 12090103.xhp msgctxt "" @@ -59865,13 +59866,14 @@ msgstr "" #: 12090103.xhp +#, fuzzy msgctxt "" "12090103.xhp\n" "par_id3155335\n" "17\n" "help.text" msgid ">" -msgstr "" +msgstr ">" #: 12090103.xhp msgctxt "" @@ -59919,13 +59921,14 @@ msgstr "" #: 12090103.xhp +#, fuzzy msgctxt "" "12090103.xhp\n" "par_id3150345\n" "23\n" "help.text" msgid "<>" -msgstr "" +msgstr "<>" #: 12090103.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/si/helpcontent2/source/text/shared/00.po libreoffice-5.1.2~rc2/translations/source/si/helpcontent2/source/text/shared/00.po --- libreoffice-5.1.1~rc2/translations/source/si/helpcontent2/source/text/shared/00.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/si/helpcontent2/source/text/shared/00.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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 17:18+0000\n" +"PO-Revision-Date: 2016-03-04 04:28+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: si\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1429809491.000000\n" +"X-POOTLE-MTIME: 1457065720.000000\n" #: 00000001.xhp msgctxt "" @@ -3974,12 +3974,13 @@ msgstr "" #: 00000021.xhp +#, fuzzy msgctxt "" "00000021.xhp\n" "par_id100120091238112\n" "help.text" msgid "-" -msgstr "" +msgstr "-" #: 00000021.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/si/helpcontent2/source/text/shared/01.po libreoffice-5.1.2~rc2/translations/source/si/helpcontent2/source/text/shared/01.po --- libreoffice-5.1.1~rc2/translations/source/si/helpcontent2/source/text/shared/01.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/si/helpcontent2/source/text/shared/01.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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:15+0000\n" +"PO-Revision-Date: 2016-03-04 04:45+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: si\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1452604548.000000\n" +"X-POOTLE-MTIME: 1457066753.000000\n" #: 01010000.xhp msgctxt "" @@ -7508,13 +7508,14 @@ msgstr "" #: 02100001.xhp +#, fuzzy msgctxt "" "02100001.xhp\n" "par_id3152427\n" "19\n" "help.text" msgid "." -msgstr "" +msgstr "." #: 02100001.xhp msgctxt "" @@ -7526,13 +7527,14 @@ msgstr "" #: 02100001.xhp +#, fuzzy msgctxt "" "02100001.xhp\n" "par_id3154682\n" "21\n" "help.text" msgid "^" -msgstr "" +msgstr "^" #: 02100001.xhp msgctxt "" @@ -7544,13 +7546,14 @@ msgstr "" #: 02100001.xhp +#, fuzzy msgctxt "" "02100001.xhp\n" "par_id3159194\n" "23\n" "help.text" msgid "$" -msgstr "" +msgstr "$" #: 02100001.xhp msgctxt "" @@ -7570,13 +7573,14 @@ msgstr "" #: 02100001.xhp +#, fuzzy msgctxt "" "02100001.xhp\n" "par_id3156414\n" "25\n" "help.text" msgid "*" -msgstr "" +msgstr "*" #: 02100001.xhp msgctxt "" @@ -7615,13 +7619,14 @@ msgstr "" #: 02100001.xhp +#, fuzzy msgctxt "" "02100001.xhp\n" "par_id3143267\n" "199\n" "help.text" msgid "?" -msgstr "" +msgstr "?" #: 02100001.xhp msgctxt "" @@ -7633,13 +7638,14 @@ msgstr "" #: 02100001.xhp +#, fuzzy msgctxt "" "02100001.xhp\n" "par_id3166410\n" "158\n" "help.text" msgid "\\" -msgstr "" +msgstr "\\" #: 02100001.xhp msgctxt "" @@ -7721,13 +7727,14 @@ msgstr "" #: 02100001.xhp +#, fuzzy msgctxt "" "02100001.xhp\n" "par_id3149576\n" "37\n" "help.text" msgid "^$" -msgstr "" +msgstr "^$" #: 02100001.xhp msgctxt "" @@ -7739,13 +7746,14 @@ msgstr "" #: 02100001.xhp +#, fuzzy msgctxt "" "02100001.xhp\n" "par_id3148550\n" "41\n" "help.text" msgid "^." -msgstr "" +msgstr "^." #: 02100001.xhp msgctxt "" @@ -15783,13 +15791,14 @@ msgstr "විස්තර කිරීම" #: 05020301.xhp +#, fuzzy msgctxt "" "05020301.xhp\n" "par_id3152801\n" "5\n" "help.text" msgid "#" -msgstr "" +msgstr "#" #: 05020301.xhp msgctxt "" @@ -15873,13 +15882,14 @@ msgstr "" #: 05020301.xhp +#, fuzzy msgctxt "" "05020301.xhp\n" "par_id3150355\n" "12\n" "help.text" msgid "####.#" -msgstr "" +msgstr "####.#" #: 05020301.xhp msgctxt "" @@ -15927,13 +15937,14 @@ msgstr "" #: 05020301.xhp +#, fuzzy msgctxt "" "05020301.xhp\n" "par_id3145315\n" "18\n" "help.text" msgid "# ???/???" -msgstr "" +msgstr "# ???/???" #: 05020301.xhp msgctxt "" @@ -16017,13 +16028,14 @@ msgstr "" #: 05020301.xhp +#, fuzzy msgctxt "" "05020301.xhp\n" "par_id3151223\n" "25\n" "help.text" msgid "#,###" -msgstr "" +msgstr "#,###" #: 05020301.xhp msgctxt "" @@ -16035,13 +16047,14 @@ msgstr "" #: 05020301.xhp +#, fuzzy msgctxt "" "05020301.xhp\n" "par_id3153961\n" "27\n" "help.text" msgid "#," -msgstr "" +msgstr "#," #: 05020301.xhp msgctxt "" @@ -19820,13 +19833,14 @@ msgstr "" #: 05030300.xhp +#, fuzzy msgctxt "" "05030300.xhp\n" "hd_id3152933\n" "26\n" "help.text" msgid "......." -msgstr "" +msgstr "......." #: 05030300.xhp msgctxt "" @@ -19838,13 +19852,14 @@ msgstr "" #: 05030300.xhp +#, fuzzy msgctxt "" "05030300.xhp\n" "hd_id3156280\n" "28\n" "help.text" msgid "------" -msgstr "" +msgstr "------" #: 05030300.xhp msgctxt "" @@ -19856,13 +19871,14 @@ msgstr "" #: 05030300.xhp +#, fuzzy msgctxt "" "05030300.xhp\n" "hd_id3157960\n" "30\n" "help.text" msgid "______" -msgstr "" +msgstr "______" #: 05030300.xhp msgctxt "" @@ -34591,13 +34607,14 @@ msgstr "පහත වගුව විවිධ අනුලක්à·à¶± වල ඉරි වල à¶à¶±à¶šà¶¸ à·ƒà·à¶»à·à¶‚෠ගත කරයි." #: 06040100.xhp +#, fuzzy msgctxt "" "06040100.xhp\n" "par_id3148576\n" "37\n" "help.text" msgid "---" -msgstr "" +msgstr "---" #: 06040100.xhp msgctxt "" @@ -41143,13 +41160,14 @@ 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 "" @@ -41161,13 +41179,14 @@ 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 "" @@ -41179,13 +41198,14 @@ 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 "" @@ -41197,13 +41217,14 @@ 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 "" @@ -41215,13 +41236,14 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/si/helpcontent2/source/text/shared/02.po libreoffice-5.1.2~rc2/translations/source/si/helpcontent2/source/text/shared/02.po --- libreoffice-5.1.1~rc2/translations/source/si/helpcontent2/source/text/shared/02.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/si/helpcontent2/source/text/shared/02.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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 21:50+0000\n" +"PO-Revision-Date: 2016-03-04 04:53+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: si\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1431381022.000000\n" +"X-POOTLE-MTIME: 1457067204.000000\n" #: 01110000.xhp msgctxt "" @@ -6043,13 +6043,14 @@ msgstr "" #: 01170102.xhp +#, fuzzy msgctxt "" "01170102.xhp\n" "par_id3153109\n" "26\n" "help.text" msgid "\"\"" -msgstr "" +msgstr "\"\"" #: 01170102.xhp msgctxt "" @@ -13863,13 +13864,14 @@ msgstr "" #: 12070100.xhp +#, fuzzy msgctxt "" "12070100.xhp\n" "hd_id3163802\n" "6\n" "help.text" msgid ">" -msgstr "" +msgstr ">" #: 12070100.xhp msgctxt "" @@ -13881,13 +13883,14 @@ msgstr "" #: 12070100.xhp +#, fuzzy msgctxt "" "12070100.xhp\n" "hd_id3149732\n" "7\n" "help.text" msgid "<" -msgstr "" +msgstr "<" #: 12070100.xhp msgctxt "" @@ -14177,13 +14180,14 @@ msgstr "" #: 12070200.xhp +#, fuzzy msgctxt "" "12070200.xhp\n" "hd_id3152551\n" "4\n" "help.text" msgid ">" -msgstr "" +msgstr ">" #: 12070200.xhp msgctxt "" @@ -15681,13 +15685,14 @@ msgstr "උදà·à·„රණය" #: 12100200.xhp +#, fuzzy msgctxt "" "12100200.xhp\n" "par_id3158411\n" "42\n" "help.text" msgid "?" -msgstr "" +msgstr "?" #: 12100200.xhp msgctxt "" @@ -15717,13 +15722,14 @@ msgstr "" #: 12100200.xhp +#, fuzzy msgctxt "" "12100200.xhp\n" "par_id3148803\n" "45\n" "help.text" msgid "*" -msgstr "" +msgstr "*" #: 12100200.xhp msgctxt "" @@ -15807,40 +15813,44 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/si/helpcontent2/source/text/shared/autopi.po libreoffice-5.1.2~rc2/translations/source/si/helpcontent2/source/text/shared/autopi.po --- libreoffice-5.1.1~rc2/translations/source/si/helpcontent2/source/text/shared/autopi.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/si/helpcontent2/source/text/shared/autopi.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 21:50+0000\n" +"PO-Revision-Date: 2016-03-04 04:57+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: si\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1431381025.000000\n" +"X-POOTLE-MTIME: 1457067453.000000\n" #: 01000000.xhp msgctxt "" @@ -3425,13 +3425,14 @@ msgstr "" #: 01090100.xhp +#, fuzzy msgctxt "" "01090100.xhp\n" "hd_id3150443\n" "10\n" "help.text" msgid ">" -msgstr "" +msgstr ">" #: 01090100.xhp msgctxt "" @@ -3461,13 +3462,14 @@ msgstr "" #: 01090100.xhp +#, fuzzy msgctxt "" "01090100.xhp\n" "hd_id3155419\n" "14\n" "help.text" msgid "<" -msgstr "" +msgstr "<" #: 01090100.xhp msgctxt "" @@ -3497,12 +3499,13 @@ msgstr "" #: 01090100.xhp +#, fuzzy msgctxt "" "01090100.xhp\n" "par_idN1074A\n" "help.text" msgid "^" -msgstr "" +msgstr "^" #: 01090100.xhp msgctxt "" @@ -4527,13 +4530,14 @@ msgstr "" #: 01100100.xhp +#, fuzzy msgctxt "" "01100100.xhp\n" "hd_id3147209\n" "10\n" "help.text" msgid ">" -msgstr "" +msgstr ">" #: 01100100.xhp msgctxt "" @@ -4563,13 +4567,14 @@ msgstr "" #: 01100100.xhp +#, fuzzy msgctxt "" "01100100.xhp\n" "hd_id3153146\n" "14\n" "help.text" msgid "<" -msgstr "" +msgstr "<" #: 01100100.xhp msgctxt "" @@ -4723,13 +4728,14 @@ msgstr "" #: 01100200.xhp +#, fuzzy msgctxt "" "01100200.xhp\n" "hd_id3154289\n" "4\n" "help.text" msgid ">" -msgstr "" +msgstr ">" #: 01100200.xhp msgctxt "" @@ -4741,13 +4747,14 @@ msgstr "" #: 01100200.xhp +#, fuzzy msgctxt "" "01100200.xhp\n" "hd_id3154823\n" "5\n" "help.text" msgid "<" -msgstr "" +msgstr "<" #: 01100200.xhp msgctxt "" @@ -7741,13 +7748,14 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/si/helpcontent2/source/text/shared/explorer/database.po libreoffice-5.1.2~rc2/translations/source/si/helpcontent2/source/text/shared/explorer/database.po --- libreoffice-5.1.1~rc2/translations/source/si/helpcontent2/source/text/shared/explorer/database.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/si/helpcontent2/source/text/shared/explorer/database.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 21:50+0000\n" +"PO-Revision-Date: 2016-03-04 05:03+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: si\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1431381031.000000\n" +"X-POOTLE-MTIME: 1457067826.000000\n" #: 02000000.xhp msgctxt "" @@ -1734,13 +1734,14 @@ msgstr "" #: 02010100.xhp +#, fuzzy msgctxt "" "02010100.xhp\n" "par_id3150470\n" "45\n" "help.text" msgid "<>" -msgstr "" +msgstr "<>" #: 02010100.xhp msgctxt "" @@ -1761,13 +1762,14 @@ msgstr "" #: 02010100.xhp +#, fuzzy msgctxt "" "02010100.xhp\n" "par_id3153015\n" "48\n" "help.text" msgid ">" -msgstr "" +msgstr ">" #: 02010100.xhp msgctxt "" @@ -1788,13 +1790,14 @@ 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 @@ msgstr "නෑත" #: 02010100.xhp +#, fuzzy msgctxt "" "02010100.xhp\n" "par_id3150997\n" "239\n" "help.text" msgid "." -msgstr "" +msgstr "." #: 02010100.xhp msgctxt "" @@ -6251,13 +6255,14 @@ msgstr "" #: 11030100.xhp +#, fuzzy msgctxt "" "11030100.xhp\n" "hd_id3156152\n" "6\n" "help.text" msgid "<" -msgstr "" +msgstr "<" #: 11030100.xhp msgctxt "" @@ -6287,13 +6292,14 @@ msgstr "" #: 11030100.xhp +#, fuzzy msgctxt "" "11030100.xhp\n" "hd_id3149579\n" "8\n" "help.text" msgid ">" -msgstr "" +msgstr ">" #: 11030100.xhp msgctxt "" @@ -12476,12 +12482,13 @@ msgstr "" #: querywizard04.xhp +#, fuzzy msgctxt "" "querywizard04.xhp\n" "par_idN105F1\n" "help.text" msgid "-" -msgstr "" +msgstr "-" #: querywizard04.xhp msgctxt "" @@ -14502,12 +14509,13 @@ msgstr "" #: tablewizard02.xhp +#, fuzzy msgctxt "" "tablewizard02.xhp\n" "par_idN10574\n" "help.text" msgid "-" -msgstr "" +msgstr "-" #: tablewizard02.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/si/helpcontent2/source/text/shared/optionen.po libreoffice-5.1.2~rc2/translations/source/si/helpcontent2/source/text/shared/optionen.po --- libreoffice-5.1.1~rc2/translations/source/si/helpcontent2/source/text/shared/optionen.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/si/helpcontent2/source/text/shared/optionen.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "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 21:50+0000\n" +"PO-Revision-Date: 2016-03-04 05:16+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: si\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1431381040.000000\n" +"X-POOTLE-MTIME: 1457068562.000000\n" #: 01000000.xhp msgctxt "" @@ -2670,13 +2670,14 @@ msgstr "%PRODUCTNAME පà·à·€à·’ච්චියට ගන්නේ මුද්â€à¶»à¶« වර්ණය RGB වර්ණ ආකෘතිය භà·à·€à·’ත කරනවිට පමණි. CMYK පà·à¶½à¶šà¶º සපය෠ඇත්තේ වර්ණ අගයන් CMYK අංකණය භà·à·€à·’තයෙන් පහසුවෙන් ඇතුලත් කිරීමට පමණි." #: 01010501.xhp +#, fuzzy msgctxt "" "01010501.xhp\n" "hd_id3153192\n" "11\n" "help.text" msgid "<--" -msgstr "" +msgstr "<--" #: 01010501.xhp msgctxt "" @@ -2688,13 +2689,14 @@ msgstr "" #: 01010501.xhp +#, fuzzy msgctxt "" "01010501.xhp\n" "hd_id3158409\n" "13\n" "help.text" msgid "-->" -msgstr "" +msgstr "-->" #: 01010501.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/si/helpcontent2/source/text/smath/01.po libreoffice-5.1.2~rc2/translations/source/si/helpcontent2/source/text/smath/01.po --- libreoffice-5.1.1~rc2/translations/source/si/helpcontent2/source/text/smath/01.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/si/helpcontent2/source/text/smath/01.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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 21:50+0000\n" +"PO-Revision-Date: 2016-03-04 05:33+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: si\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1431381056.000000\n" +"X-POOTLE-MTIME: 1457069598.000000\n" #: 02080000.xhp msgctxt "" @@ -6281,22 +6281,24 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/si/helpcontent2/source/text/swriter/01.po libreoffice-5.1.2~rc2/translations/source/si/helpcontent2/source/text/swriter/01.po --- libreoffice-5.1.1~rc2/translations/source/si/helpcontent2/source/text/swriter/01.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/si/helpcontent2/source/text/swriter/01.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 21:51+0000\n" +"PO-Revision-Date: 2016-03-04 06:10+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: si\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1431381081.000000\n" +"X-POOTLE-MTIME: 1457071843.000000\n" #: 01120000.xhp msgctxt "" @@ -10969,13 +10969,14 @@ msgstr "" #: 04120201.xhp +#, fuzzy msgctxt "" "04120201.xhp\n" "hd_id3145418\n" "32\n" "help.text" msgid "<" -msgstr "" +msgstr "<" #: 04120201.xhp msgctxt "" @@ -14442,13 +14443,14 @@ 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 "" @@ -14460,13 +14462,14 @@ msgstr "" #: 04200000.xhp +#, fuzzy msgctxt "" "04200000.xhp\n" "par_id3154574\n" "17\n" "help.text" msgid "</SCRIPT>" -msgstr "" +msgstr "</SCRIPT>" #: 04200000.xhp msgctxt "" @@ -27674,12 +27677,13 @@ msgstr "" #: mm_cusaddfie.xhp +#, fuzzy msgctxt "" "mm_cusaddfie.xhp\n" "par_idN10570\n" "help.text" msgid ">" -msgstr "" +msgstr ">" #: mm_cusaddfie.xhp msgctxt "" @@ -27690,12 +27694,13 @@ msgstr "" #: mm_cusaddfie.xhp +#, fuzzy msgctxt "" "mm_cusaddfie.xhp\n" "par_idN10577\n" "help.text" msgid "<" -msgstr "" +msgstr "<" #: mm_cusaddfie.xhp msgctxt "" @@ -27882,12 +27887,13 @@ msgstr "" #: mm_cusgrelin.xhp +#, fuzzy msgctxt "" "mm_cusgrelin.xhp\n" "par_idN10558\n" "help.text" msgid ">" -msgstr "" +msgstr ">" #: mm_cusgrelin.xhp msgctxt "" @@ -27898,12 +27904,13 @@ msgstr "" #: mm_cusgrelin.xhp +#, fuzzy msgctxt "" "mm_cusgrelin.xhp\n" "par_idN1055F\n" "help.text" msgid "<" -msgstr "" +msgstr "<" #: mm_cusgrelin.xhp msgctxt "" @@ -28338,12 +28345,13 @@ msgstr "" #: mm_newaddblo.xhp +#, fuzzy msgctxt "" "mm_newaddblo.xhp\n" "par_idN10570\n" "help.text" msgid ">" -msgstr "" +msgstr ">" #: mm_newaddblo.xhp msgctxt "" @@ -28354,12 +28362,13 @@ msgstr "" #: mm_newaddblo.xhp +#, fuzzy msgctxt "" "mm_newaddblo.xhp\n" "par_idN10577\n" "help.text" msgid "<" -msgstr "" +msgstr "<" #: mm_newaddblo.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/si/helpcontent2/source/text/swriter/02.po libreoffice-5.1.2~rc2/translations/source/si/helpcontent2/source/text/swriter/02.po --- libreoffice-5.1.1~rc2/translations/source/si/helpcontent2/source/text/swriter/02.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/si/helpcontent2/source/text/swriter/02.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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 17:20+0000\n" +"PO-Revision-Date: 2016-03-04 06:15+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: si\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1429809603.000000\n" +"X-POOTLE-MTIME: 1457072128.000000\n" #: 02110000.xhp msgctxt "" @@ -1668,13 +1668,14 @@ msgstr "අඩු කිරීම" #: 14020000.xhp +#, fuzzy msgctxt "" "14020000.xhp\n" "par_id3150087\n" "12\n" "help.text" msgid "-" -msgstr "" +msgstr "-" #: 14020000.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/si/librelogo/source/pythonpath.po libreoffice-5.1.2~rc2/translations/source/si/librelogo/source/pythonpath.po --- libreoffice-5.1.1~rc2/translations/source/si/librelogo/source/pythonpath.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/si/librelogo/source/pythonpath.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,18 +3,18 @@ msgstr "" "Project-Id-Version: LibO 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:25+0000\n" -"Last-Translator: Andras <timar74@gmail.com>\n" +"POT-Creation-Date: 2015-04-22 23:40+0200\n" +"PO-Revision-Date: 2016-03-09 07:08+0000\n" +"Last-Translator: system user <>\n" "Language-Team: none\n" "Language: si\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: LibreOffice\n" +"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1361136304.0\n" +"X-POOTLE-MTIME: 1457507339.000000\n" #: LibreLogo_en_US.properties msgctxt "" @@ -769,20 +769,22 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/si/officecfg/registry/data/org/openoffice/Office.po libreoffice-5.1.2~rc2/translations/source/si/officecfg/registry/data/org/openoffice/Office.po --- libreoffice-5.1.1~rc2/translations/source/si/officecfg/registry/data/org/openoffice/Office.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/si/officecfg/registry/data/org/openoffice/Office.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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:13+0000\n" +"PO-Revision-Date: 2016-03-09 07:17+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: si\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1438902796.000000\n" +"X-POOTLE-MTIME: 1457507877.000000\n" #: Addons.xcu msgctxt "" @@ -1430,13 +1430,14 @@ msgstr "" #: PresentationMinimizer.xcu +#, fuzzy msgctxt "" "PresentationMinimizer.xcu\n" "..PresentationMinimizer.Strings\n" "STR_FILESIZESEPARATOR\n" "value.text" msgid "." -msgstr "" +msgstr "." #: PresentationMinimizer.xcu msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/si/reportdesign/uiconfig/dbreport/ui.po libreoffice-5.1.2~rc2/translations/source/si/reportdesign/uiconfig/dbreport/ui.po --- libreoffice-5.1.1~rc2/translations/source/si/reportdesign/uiconfig/dbreport/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/si/reportdesign/uiconfig/dbreport/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 14:32+0000\n" +"PO-Revision-Date: 2016-03-09 07:39+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: si\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1416407528.000000\n" +"X-POOTLE-MTIME: 1457509148.000000\n" #: backgrounddialog.ui msgctxt "" @@ -197,13 +197,14 @@ msgstr "" #: conditionwin.ui +#, fuzzy msgctxt "" "conditionwin.ui\n" "lhsButton\n" "label\n" "string.text" msgid "..." -msgstr "" +msgstr "..." #: conditionwin.ui msgctxt "" @@ -215,13 +216,14 @@ msgstr "" #: conditionwin.ui +#, fuzzy msgctxt "" "conditionwin.ui\n" "rhsButton\n" "label\n" "string.text" msgid "..." -msgstr "" +msgstr "..." #: conditionwin.ui msgctxt "" @@ -278,13 +280,14 @@ msgstr "" #: conditionwin.ui +#, fuzzy msgctxt "" "conditionwin.ui\n" "removeButton\n" "label\n" "string.text" msgid "-" -msgstr "" +msgstr "-" #: conditionwin.ui msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/si/sc/source/ui/src.po libreoffice-5.1.2~rc2/translations/source/si/sc/source/ui/src.po --- libreoffice-5.1.1~rc2/translations/source/si/sc/source/ui/src.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/si/sc/source/ui/src.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 15:25+0000\n" +"PO-Revision-Date: 2016-03-09 08:01+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: si\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1431530753.000000\n" +"X-POOTLE-MTIME: 1457510460.000000\n" #: condformatdlg.src msgctxt "" @@ -2608,13 +2608,14 @@ msgstr "පෙළේ උපලක්ෂණ" #: globstr.src +#, fuzzy msgctxt "" "globstr.src\n" "RID_GLOBSTR\n" "STR_HFCMD_DELIMITER\n" "string.text" msgid "\\" -msgstr "" +msgstr "\\" #: globstr.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/si/scaddins/source/analysis.po libreoffice-5.1.2~rc2/translations/source/si/scaddins/source/analysis.po --- libreoffice-5.1.1~rc2/translations/source/si/scaddins/source/analysis.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/si/scaddins/source/analysis.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-11-24 04:39-0500\n" +"POT-Creation-Date: 2016-03-29 16:07+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff -Nru libreoffice-5.1.1~rc2/translations/source/si/sd/source/ui/app.po libreoffice-5.1.2~rc2/translations/source/si/sd/source/ui/app.po --- libreoffice-5.1.1~rc2/translations/source/si/sd/source/ui/app.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/si/sd/source/ui/app.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 15:28+0000\n" +"PO-Revision-Date: 2016-03-09 08:25+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: si\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1431530891.000000\n" +"X-POOTLE-MTIME: 1457511908.000000\n" #: menuids3_tmpl.src msgctxt "" @@ -3494,12 +3494,13 @@ msgstr "විරà·à¶¸à¶º..." #: strings.src +#, fuzzy msgctxt "" "strings.src\n" "STR_WIZARD_ORIGINAL\n" "string.text" msgid "<Original>" -msgstr "" +msgstr "<Original>" #: strings.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/si/sd/uiconfig/simpress/ui.po libreoffice-5.1.2~rc2/translations/source/si/sd/uiconfig/simpress/ui.po --- libreoffice-5.1.1~rc2/translations/source/si/sd/uiconfig/simpress/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/si/sd/uiconfig/simpress/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 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 03:25+0000\n" +"PO-Revision-Date: 2016-03-09 08:27+0000\n" "Last-Translator: system user <>\n" "Language-Team: none\n" "Language: si\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1435289112.000000\n" +"X-POOTLE-MTIME: 1457512067.000000\n" #: assistentdialog.ui msgctxt "" @@ -1004,22 +1004,24 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/si/starmath/source.po libreoffice-5.1.2~rc2/translations/source/si/starmath/source.po --- libreoffice-5.1.1~rc2/translations/source/si/starmath/source.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/si/starmath/source.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\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-12 13:26+0200\n" +"POT-Creation-Date: 2016-03-29 16:07+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff -Nru libreoffice-5.1.1~rc2/translations/source/si/sw/source/core/undo.po libreoffice-5.1.2~rc2/translations/source/si/sw/source/core/undo.po --- libreoffice-5.1.1~rc2/translations/source/si/sw/source/core/undo.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/si/sw/source/core/undo.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 15:39+0000\n" +"PO-Revision-Date: 2016-03-09 08:56+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: si\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1431531594.000000\n" +"X-POOTLE-MTIME: 1457513812.000000\n" #: undo.src msgctxt "" @@ -794,20 +794,22 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/si/sw/source/ui/dbui.po libreoffice-5.1.2~rc2/translations/source/si/sw/source/ui/dbui.po --- libreoffice-5.1.1~rc2/translations/source/si/sw/source/ui/dbui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/si/sw/source/ui/dbui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 15:41+0000\n" +"PO-Revision-Date: 2016-03-09 09:00+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: si\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1431531691.000000\n" +"X-POOTLE-MTIME: 1457514016.000000\n" #: dbui.src msgctxt "" @@ -488,31 +488,34 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/si/sw/source/ui/index.po libreoffice-5.1.2~rc2/translations/source/si/sw/source/ui/index.po --- libreoffice-5.1.1~rc2/translations/source/si/sw/source/ui/index.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/si/sw/source/ui/index.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,17 +3,18 @@ msgstr "" "Project-Id-Version: PACKAGE 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:40+0200\n" -"Last-Translator: Anonymous Pootle User\n" +"POT-Creation-Date: 2015-04-22 23:40+0200\n" +"PO-Revision-Date: 2016-03-09 09:02+0000\n" +"Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: si\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: LibreOffice\n" +"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" +"X-POOTLE-MTIME: 1457514139.000000\n" #: cnttab.src msgctxt "" @@ -56,20 +57,22 @@ 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 @@ msgstr "" #: cnttab.src +#, fuzzy msgctxt "" "cnttab.src\n" "STR_TOKEN_PAGE_NUMS\n" "string.text" msgid "#" -msgstr "" +msgstr "#" #: cnttab.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/si/sw/source/ui/misc.po libreoffice-5.1.2~rc2/translations/source/si/sw/source/ui/misc.po --- libreoffice-5.1.1~rc2/translations/source/si/sw/source/ui/misc.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/si/sw/source/ui/misc.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 15:42+0000\n" +"PO-Revision-Date: 2016-03-09 09:02+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: si\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1431531729.000000\n" +"X-POOTLE-MTIME: 1457514151.000000\n" #: glossary.src msgctxt "" @@ -41,12 +41,13 @@ msgstr "ප්â€à¶»à·€à¶»à·Šà¶œà¶º මකන්න" #: glossary.src +#, fuzzy msgctxt "" "glossary.src\n" "STR_QUERY_DELETE_GROUP2\n" "string.text" msgid "?" -msgstr "" +msgstr "?" #: glossary.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/si/sw/uiconfig/swriter/ui.po libreoffice-5.1.2~rc2/translations/source/si/sw/uiconfig/swriter/ui.po --- libreoffice-5.1.1~rc2/translations/source/si/sw/uiconfig/swriter/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/si/sw/uiconfig/swriter/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 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:15+0000\n" +"PO-Revision-Date: 2016-03-09 09:15+0000\n" "Last-Translator: system user <>\n" "Language-Team: none\n" "Language: si\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1438902952.000000\n" +"X-POOTLE-MTIME: 1457514928.000000\n" #: abstractdialog.ui msgctxt "" @@ -2295,13 +2295,14 @@ msgstr "වගුව පෙළට පරිවර්තනය කරන්න" #: converttexttable.ui +#, fuzzy msgctxt "" "converttexttable.ui\n" "othered\n" "text\n" "string.text" msgid "," -msgstr "" +msgstr "," #: converttexttable.ui msgctxt "" @@ -2476,13 +2477,14 @@ msgstr "" #: createaddresslist.ui +#, fuzzy msgctxt "" "createaddresslist.ui\n" "PREV\n" "label\n" "string.text" msgid "<" -msgstr "" +msgstr "<" #: createaddresslist.ui msgctxt "" @@ -2494,13 +2496,14 @@ msgstr "" #: createaddresslist.ui +#, fuzzy msgctxt "" "createaddresslist.ui\n" "NEXT\n" "label\n" "string.text" msgid ">" -msgstr "" +msgstr ">" #: createaddresslist.ui msgctxt "" @@ -4393,13 +4396,14 @@ msgstr "කිසිවක් නà·à¶­" #: fldvarpage.ui +#, fuzzy msgctxt "" "fldvarpage.ui\n" "separator\n" "text\n" "string.text" msgid "." -msgstr "" +msgstr "." #: fldvarpage.ui msgctxt "" @@ -5353,22 +5357,24 @@ 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 @@ 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 @@ msgstr "" #: mmpreparepage.ui +#, fuzzy msgctxt "" "mmpreparepage.ui\n" "prev\n" "label\n" "string.text" msgid "<" -msgstr "" +msgstr "<" #: mmpreparepage.ui msgctxt "" @@ -8637,13 +8645,14 @@ msgstr "" #: mmpreparepage.ui +#, fuzzy msgctxt "" "mmpreparepage.ui\n" "next\n" "label\n" "string.text" msgid ">" -msgstr "" +msgstr ">" #: mmpreparepage.ui #, fuzzy @@ -9489,13 +9498,14 @@ msgstr "ස්ථà·à¶±à¶º" #: optcaptionpage.ui +#, fuzzy msgctxt "" "optcaptionpage.ui\n" "numseparator\n" "text\n" "string.text" msgid ". " -msgstr "" +msgstr ". " #: optcaptionpage.ui msgctxt "" @@ -15550,40 +15560,44 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/si/vcl/source/src.po libreoffice-5.1.2~rc2/translations/source/si/vcl/source/src.po --- libreoffice-5.1.1~rc2/translations/source/si/vcl/source/src.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/si/vcl/source/src.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 20:03+0000\n" +"PO-Revision-Date: 2016-03-09 09:19+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: si\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1449864193.000000\n" +"X-POOTLE-MTIME: 1457515146.000000\n" #: app.src msgctxt "" @@ -1176,12 +1176,13 @@ 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 @@ 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 @@ 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 @@ msgstr "" #: units.src +#, fuzzy msgctxt "" "units.src\n" "SV_FUNIT_STRINGS\n" "°\n" "itemlist.text" msgid "°" -msgstr "" +msgstr "°" #: units.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/si/wizards/source/formwizard.po libreoffice-5.1.2~rc2/translations/source/si/wizards/source/formwizard.po --- libreoffice-5.1.1~rc2/translations/source/si/wizards/source/formwizard.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/si/wizards/source/formwizard.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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-04-25 09:33+0000\n" +"PO-Revision-Date: 2016-03-09 09:24+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: si\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1429954401.000000\n" +"X-POOTLE-MTIME: 1457515448.000000\n" #: dbwizres.src msgctxt "" @@ -2529,12 +2529,13 @@ msgstr "" #: dbwizres.src +#, fuzzy msgctxt "" "dbwizres.src\n" "RID_DB_TABLE_WIZARD_START + 22\n" "string.text" msgid "-" -msgstr "" +msgstr "-" #: dbwizres.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/sid/cui/uiconfig/ui.po libreoffice-5.1.2~rc2/translations/source/sid/cui/uiconfig/ui.po --- libreoffice-5.1.1~rc2/translations/source/sid/cui/uiconfig/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/sid/cui/uiconfig/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LO4-1\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-02-10 14:45+0100\n" -"PO-Revision-Date: 2016-01-08 14:50+0000\n" +"PO-Revision-Date: 2016-03-09 06:59+0000\n" "Last-Translator: system user <>\n" "Language-Team: none\n" "Language: sid\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1452264636.000000\n" +"X-POOTLE-MTIME: 1457506755.000000\n" #: aboutconfigdialog.ui msgctxt "" @@ -14158,31 +14158,34 @@ msgstr "Mittunkuri" #: 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 -Nru libreoffice-5.1.1~rc2/translations/source/sid/dbaccess/uiconfig/ui.po libreoffice-5.1.2~rc2/translations/source/sid/dbaccess/uiconfig/ui.po --- libreoffice-5.1.1~rc2/translations/source/sid/dbaccess/uiconfig/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/sid/dbaccess/uiconfig/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LO4-1\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:40+0200\n" -"PO-Revision-Date: 2015-05-13 16:07+0000\n" +"PO-Revision-Date: 2016-03-09 07:04+0000\n" "Last-Translator: system user <>\n" "Language-Team: none\n" "Language: sid\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1431533251.000000\n" +"X-POOTLE-MTIME: 1457507064.000000\n" #: admindialog.ui msgctxt "" @@ -1931,22 +1931,24 @@ 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 @@ msgstr "" #: queryfilterdialog.ui +#, fuzzy msgctxt "" "queryfilterdialog.ui\n" "cond1\n" "4\n" "stringlist.text" msgid ">" -msgstr "" +msgstr ">" #: queryfilterdialog.ui msgctxt "" @@ -3022,58 +3025,64 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/sid/extensions/uiconfig/sabpilot/ui.po libreoffice-5.1.2~rc2/translations/source/sid/extensions/uiconfig/sabpilot/ui.po --- libreoffice-5.1.1~rc2/translations/source/sid/extensions/uiconfig/sabpilot/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/sid/extensions/uiconfig/sabpilot/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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 03:08+0000\n" +"PO-Revision-Date: 2016-03-09 07:11+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: sid\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1435288101.000000\n" +"X-POOTLE-MTIME: 1457507499.000000\n" #: contentfieldpage.ui msgctxt "" @@ -281,13 +281,14 @@ msgstr "" #: gridfieldsselectionpage.ui +#, fuzzy msgctxt "" "gridfieldsselectionpage.ui\n" "fieldright\n" "label\n" "string.text" msgid "->" -msgstr "" +msgstr "->" #: gridfieldsselectionpage.ui msgctxt "" @@ -299,13 +300,14 @@ msgstr "" #: gridfieldsselectionpage.ui +#, fuzzy msgctxt "" "gridfieldsselectionpage.ui\n" "fieldleft\n" "label\n" "string.text" msgid "<-" -msgstr "" +msgstr "<-" #: gridfieldsselectionpage.ui msgctxt "" @@ -380,22 +382,24 @@ 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 @@ msgstr "" #: tableselectionpage.ui +#, fuzzy msgctxt "" "tableselectionpage.ui\n" "search\n" "label\n" "string.text" msgid "_..." -msgstr "" +msgstr "_..." #: tableselectionpage.ui msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/sid/officecfg/registry/data/org/openoffice/Office.po libreoffice-5.1.2~rc2/translations/source/sid/officecfg/registry/data/org/openoffice/Office.po --- libreoffice-5.1.1~rc2/translations/source/sid/officecfg/registry/data/org/openoffice/Office.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/sid/officecfg/registry/data/org/openoffice/Office.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibreOffice4-1\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-11-10 19:33+0100\n" -"PO-Revision-Date: 2015-08-06 23:13+0000\n" +"PO-Revision-Date: 2016-03-09 07:34+0000\n" "Last-Translator: system user <>\n" "Language-Team: Sidaama Translators\n" "Language: sid\n" @@ -15,7 +15,7 @@ "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" "X-Project-Style: openoffice\n" -"X-POOTLE-MTIME: 1438902800.000000\n" +"X-POOTLE-MTIME: 1457508897.000000\n" #: Addons.xcu msgctxt "" @@ -1432,13 +1432,14 @@ msgstr "" #: PresentationMinimizer.xcu +#, fuzzy msgctxt "" "PresentationMinimizer.xcu\n" "..PresentationMinimizer.Strings\n" "STR_FILESIZESEPARATOR\n" "value.text" msgid "." -msgstr "" +msgstr "." #: PresentationMinimizer.xcu msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/sid/reportdesign/uiconfig/dbreport/ui.po libreoffice-5.1.2~rc2/translations/source/sid/reportdesign/uiconfig/dbreport/ui.po --- libreoffice-5.1.1~rc2/translations/source/sid/reportdesign/uiconfig/dbreport/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/sid/reportdesign/uiconfig/dbreport/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 14:48+0000\n" +"PO-Revision-Date: 2016-03-09 07:59+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: sid\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1416408532.000000\n" +"X-POOTLE-MTIME: 1457510348.000000\n" #: backgrounddialog.ui msgctxt "" @@ -197,13 +197,14 @@ msgstr "" #: conditionwin.ui +#, fuzzy msgctxt "" "conditionwin.ui\n" "lhsButton\n" "label\n" "string.text" msgid "..." -msgstr "" +msgstr "..." #: conditionwin.ui msgctxt "" @@ -215,13 +216,14 @@ msgstr "" #: conditionwin.ui +#, fuzzy msgctxt "" "conditionwin.ui\n" "rhsButton\n" "label\n" "string.text" msgid "..." -msgstr "" +msgstr "..." #: conditionwin.ui msgctxt "" @@ -278,13 +280,14 @@ msgstr "" #: conditionwin.ui +#, fuzzy msgctxt "" "conditionwin.ui\n" "removeButton\n" "label\n" "string.text" msgid "-" -msgstr "" +msgstr "-" #: conditionwin.ui msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/sid/sw/source/core/undo.po libreoffice-5.1.2~rc2/translations/source/sid/sw/source/core/undo.po --- libreoffice-5.1.1~rc2/translations/source/sid/sw/source/core/undo.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/sid/sw/source/core/undo.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LO4-1\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:40+0200\n" -"PO-Revision-Date: 2015-05-13 16:39+0000\n" +"PO-Revision-Date: 2016-03-09 09:18+0000\n" "Last-Translator: system user <>\n" "Language-Team: Sidama translators\n" "Language: sid\n" @@ -15,7 +15,7 @@ "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" "X-Project-Style: openoffice\n" -"X-POOTLE-MTIME: 1431535151.000000\n" +"X-POOTLE-MTIME: 1457515084.000000\n" #: undo.src msgctxt "" @@ -795,20 +795,22 @@ msgstr "Shae/taji-mashalaqqaancho soorramino" #: 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 -Nru libreoffice-5.1.1~rc2/translations/source/sid/sw/source/ui/dbui.po libreoffice-5.1.2~rc2/translations/source/sid/sw/source/ui/dbui.po --- libreoffice-5.1.1~rc2/translations/source/sid/sw/source/ui/dbui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/sid/sw/source/ui/dbui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LO4-1\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:40+0200\n" -"PO-Revision-Date: 2015-05-13 16:41+0000\n" +"PO-Revision-Date: 2016-03-09 09:20+0000\n" "Last-Translator: system user <>\n" "Language-Team: Sidama translators\n" "Language: sid\n" @@ -16,7 +16,7 @@ "X-Accelerator-Marker: ~\n" "X-Project-Style: openoffice\n" "X-Poedit-Bookmarks: -1,-1,-1,-1,0,-1,-1,-1,-1,-1\n" -"X-POOTLE-MTIME: 1431535301.000000\n" +"X-POOTLE-MTIME: 1457515213.000000\n" #: dbui.src msgctxt "" @@ -490,31 +490,34 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/sid/sw/source/ui/index.po libreoffice-5.1.2~rc2/translations/source/sid/sw/source/ui/index.po --- libreoffice-5.1.1~rc2/translations/source/sid/sw/source/ui/index.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/sid/sw/source/ui/index.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,19 +3,19 @@ msgstr "" "Project-Id-Version: LO4-1\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2014-11-18 11:23+0100\n" -"PO-Revision-Date: 2013-08-01 13:35+0300\n" -"Last-Translator: Tadele Assefa Wami <milkyswd@gmail.com>\n" +"POT-Creation-Date: 2015-04-22 23:40+0200\n" +"PO-Revision-Date: 2016-03-09 09:21+0000\n" +"Last-Translator: system user <>\n" "Language-Team: Sidama translators\n" "Language: sid\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: LibreOffice\n" +"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" "X-Project-Style: openoffice\n" -"X-POOTLE-MTIME: 1375263384.0\n" +"X-POOTLE-MTIME: 1457515303.000000\n" #: cnttab.src msgctxt "" @@ -58,20 +58,22 @@ 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 @@ msgstr "" #: cnttab.src +#, fuzzy msgctxt "" "cnttab.src\n" "STR_TOKEN_PAGE_NUMS\n" "string.text" msgid "#" -msgstr "" +msgstr "#" #: cnttab.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/sid/sw/source/ui/utlui.po libreoffice-5.1.2~rc2/translations/source/sid/sw/source/ui/utlui.po --- libreoffice-5.1.1~rc2/translations/source/sid/sw/source/ui/utlui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/sid/sw/source/ui/utlui.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE 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-20 11:59+0100\n" +"POT-Creation-Date: 2016-03-29 16:07+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff -Nru libreoffice-5.1.1~rc2/translations/source/sid/sw/uiconfig/swriter/ui.po libreoffice-5.1.2~rc2/translations/source/sid/sw/uiconfig/swriter/ui.po --- libreoffice-5.1.1~rc2/translations/source/sid/sw/uiconfig/swriter/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/sid/sw/uiconfig/swriter/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LO4-1\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-11-10 19:33+0100\n" -"PO-Revision-Date: 2015-08-06 23:16+0000\n" +"PO-Revision-Date: 2016-03-09 09:32+0000\n" "Last-Translator: system user <>\n" "Language-Team: none\n" "Language: sid\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1438902960.000000\n" +"X-POOTLE-MTIME: 1457515964.000000\n" #: abstractdialog.ui msgctxt "" @@ -2478,13 +2478,14 @@ msgstr "" #: createaddresslist.ui +#, fuzzy msgctxt "" "createaddresslist.ui\n" "PREV\n" "label\n" "string.text" msgid "<" -msgstr "" +msgstr "<" #: createaddresslist.ui msgctxt "" @@ -2496,13 +2497,14 @@ msgstr "" #: createaddresslist.ui +#, fuzzy msgctxt "" "createaddresslist.ui\n" "NEXT\n" "label\n" "string.text" msgid ">" -msgstr "" +msgstr ">" #: createaddresslist.ui msgctxt "" @@ -4394,13 +4396,14 @@ msgstr "Mittunkuri" #: fldvarpage.ui +#, fuzzy msgctxt "" "fldvarpage.ui\n" "separator\n" "text\n" "string.text" msgid "." -msgstr "" +msgstr "." #: fldvarpage.ui msgctxt "" @@ -5353,22 +5356,24 @@ 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 @@ msgstr "" #: mmpreparepage.ui +#, fuzzy msgctxt "" "mmpreparepage.ui\n" "prev\n" "label\n" "string.text" msgid "<" -msgstr "" +msgstr "<" #: mmpreparepage.ui msgctxt "" @@ -8637,13 +8643,14 @@ msgstr "" #: mmpreparepage.ui +#, fuzzy msgctxt "" "mmpreparepage.ui\n" "next\n" "label\n" "string.text" msgid ">" -msgstr "" +msgstr ">" #: mmpreparepage.ui #, fuzzy @@ -15550,40 +15557,44 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/sid/vcl/source/src.po libreoffice-5.1.2~rc2/translations/source/sid/vcl/source/src.po --- libreoffice-5.1.1~rc2/translations/source/sid/vcl/source/src.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/sid/vcl/source/src.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LO4-1\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-02-10 14:46+0100\n" -"PO-Revision-Date: 2015-12-11 20:04+0000\n" +"PO-Revision-Date: 2016-03-09 09:36+0000\n" "Last-Translator: system user <>\n" "Language-Team: Sidama Translators\n" "Language: sid\n" @@ -15,7 +15,7 @@ "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" "X-Project-Style: openoffice\n" -"X-POOTLE-MTIME: 1449864282.000000\n" +"X-POOTLE-MTIME: 1457516169.000000\n" #: app.src msgctxt "" @@ -1177,12 +1177,13 @@ msgstr "" #: print.src +#, fuzzy msgctxt "" "print.src\n" "SV_PRINT_INVALID_TXT\n" "string.text" msgid "<ignore>" -msgstr "" +msgstr "<ignore>" #: print.src msgctxt "" @@ -1459,13 +1460,14 @@ msgstr "" #: units.src +#, fuzzy msgctxt "" "units.src\n" "SV_FUNIT_STRINGS\n" "°\n" "itemlist.text" msgid "°" -msgstr "" +msgstr "°" #: units.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/sk/helpcontent2/source/text/scalc/01.po libreoffice-5.1.2~rc2/translations/source/sk/helpcontent2/source/text/scalc/01.po --- libreoffice-5.1.1~rc2/translations/source/sk/helpcontent2/source/text/scalc/01.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/sk/helpcontent2/source/text/scalc/01.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-08-25 13:28+0000\n" +"PO-Revision-Date: 2016-03-04 04:28+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: sk\n" @@ -14,7 +14,7 @@ "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: 1440509311.000000\n" +"X-POOTLE-MTIME: 1457065717.000000\n" #: 01120000.xhp msgctxt "" @@ -60018,13 +60018,14 @@ msgstr "je rovné" #: 12090103.xhp +#, fuzzy msgctxt "" "12090103.xhp\n" "par_id3154254\n" "15\n" "help.text" msgid "<" -msgstr "" +msgstr "<" #: 12090103.xhp msgctxt "" @@ -60036,13 +60037,14 @@ msgstr "je menÅ¡ie ako" #: 12090103.xhp +#, fuzzy msgctxt "" "12090103.xhp\n" "par_id3155335\n" "17\n" "help.text" msgid ">" -msgstr "" +msgstr ">" #: 12090103.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/sk/helpcontent2/source/text/shared/00.po libreoffice-5.1.2~rc2/translations/source/sk/helpcontent2/source/text/shared/00.po --- libreoffice-5.1.1~rc2/translations/source/sk/helpcontent2/source/text/shared/00.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/sk/helpcontent2/source/text/shared/00.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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 22:02+0000\n" +"PO-Revision-Date: 2016-03-04 04:52+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: sk\n" @@ -14,7 +14,7 @@ "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: 1431381720.000000\n" +"X-POOTLE-MTIME: 1457067150.000000\n" #: 00000001.xhp msgctxt "" @@ -3972,12 +3972,13 @@ msgstr "" #: 00000021.xhp +#, fuzzy msgctxt "" "00000021.xhp\n" "par_id100120091238112\n" "help.text" msgid "-" -msgstr "" +msgstr "-" #: 00000021.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/sk/helpcontent2/source/text/shared/01.po libreoffice-5.1.2~rc2/translations/source/sk/helpcontent2/source/text/shared/01.po --- libreoffice-5.1.1~rc2/translations/source/sk/helpcontent2/source/text/shared/01.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/sk/helpcontent2/source/text/shared/01.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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:18+0000\n" +"PO-Revision-Date: 2016-03-04 05:09+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: sk\n" @@ -14,7 +14,7 @@ "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: 1452604702.000000\n" +"X-POOTLE-MTIME: 1457068167.000000\n" #: 01010000.xhp msgctxt "" @@ -7493,13 +7493,14 @@ msgstr "Predstavuje daný znak, pokiaľ nie je urÄené ináÄ." #: 02100001.xhp +#, fuzzy msgctxt "" "02100001.xhp\n" "par_id3152427\n" "19\n" "help.text" msgid "." -msgstr "" +msgstr "." #: 02100001.xhp msgctxt "" @@ -7511,13 +7512,14 @@ msgstr "Predstavuje akýkoľvek jeden znak okrem zalomenia riadku a konca odseku. Napr. pri hľadaní termínu \"p.s\" sa nájde \"pes\" aj \"pás\"." #: 02100001.xhp +#, fuzzy msgctxt "" "02100001.xhp\n" "par_id3154682\n" "21\n" "help.text" msgid "^" -msgstr "" +msgstr "^" #: 02100001.xhp msgctxt "" @@ -7529,13 +7531,14 @@ msgstr "Nájde hľadaný termín iba vtedy, ak sa nachádza na zaÄiatku odseku. Ignorujú sa zvláštne objekty na zaÄiatku odseku, napr. prázdne pole Äi rámce ukotvené ku znaku. Príklad: \"^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 @@ 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 @@ msgstr "V odseku sa hľadá vždy najdlhší reÅ¥azec odpovedajúci regulárnemu výrazu. Ak by odsek obsahoval reÅ¥azec \"AX 4 AX4\", oznaÄil by sa celý tento reÅ¥azec." #: 02100001.xhp +#, fuzzy msgctxt "" "02100001.xhp\n" "par_id3143267\n" "199\n" "help.text" msgid "?" -msgstr "" +msgstr "?" #: 02100001.xhp msgctxt "" @@ -7618,13 +7623,14 @@ msgstr "Nájde žiadny alebo jeden výskyt znaku pred \"?\". Napr. \"Texty?\" nájde \"Text\" alebo \"Texty\" a \"x(ab|c)?y\" nájde \"xy\", \"xaby\" alebo \"xcy\"." #: 02100001.xhp +#, fuzzy msgctxt "" "02100001.xhp\n" "par_id3166410\n" "158\n" "help.text" msgid "\\" -msgstr "" +msgstr "\\" #: 02100001.xhp msgctxt "" @@ -15769,13 +15775,14 @@ msgstr "Vysvetlenie" #: 05020301.xhp +#, fuzzy msgctxt "" "05020301.xhp\n" "par_id3152801\n" "5\n" "help.text" msgid "#" -msgstr "" +msgstr "#" #: 05020301.xhp msgctxt "" @@ -15859,13 +15866,14 @@ msgstr "" #: 05020301.xhp +#, fuzzy msgctxt "" "05020301.xhp\n" "par_id3150355\n" "12\n" "help.text" msgid "####.#" -msgstr "" +msgstr "####.#" #: 05020301.xhp msgctxt "" @@ -15913,13 +15921,14 @@ msgstr "" #: 05020301.xhp +#, fuzzy msgctxt "" "05020301.xhp\n" "par_id3145315\n" "18\n" "help.text" msgid "# ???/???" -msgstr "" +msgstr "# ???/???" #: 05020301.xhp msgctxt "" @@ -16003,13 +16012,14 @@ msgstr "" #: 05020301.xhp +#, fuzzy msgctxt "" "05020301.xhp\n" "par_id3151223\n" "25\n" "help.text" msgid "#,###" -msgstr "" +msgstr "#,###" #: 05020301.xhp msgctxt "" @@ -16021,13 +16031,14 @@ msgstr "" #: 05020301.xhp +#, fuzzy msgctxt "" "05020301.xhp\n" "par_id3153961\n" "27\n" "help.text" msgid "#," -msgstr "" +msgstr "#," #: 05020301.xhp msgctxt "" @@ -19804,13 +19815,14 @@ msgstr "" #: 05030300.xhp +#, fuzzy msgctxt "" "05030300.xhp\n" "hd_id3152933\n" "26\n" "help.text" msgid "......." -msgstr "" +msgstr "......." #: 05030300.xhp msgctxt "" @@ -19822,13 +19834,14 @@ msgstr "" #: 05030300.xhp +#, fuzzy msgctxt "" "05030300.xhp\n" "hd_id3156280\n" "28\n" "help.text" msgid "------" -msgstr "" +msgstr "------" #: 05030300.xhp msgctxt "" @@ -19840,13 +19853,14 @@ msgstr "" #: 05030300.xhp +#, fuzzy msgctxt "" "05030300.xhp\n" "hd_id3157960\n" "30\n" "help.text" msgid "______" -msgstr "" +msgstr "______" #: 05030300.xhp msgctxt "" @@ -41116,13 +41130,14 @@ 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 "" @@ -41134,13 +41149,14 @@ msgstr "Predmet" #: 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 "" @@ -41152,13 +41168,14 @@ msgstr "KľúÄové slová" #: 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 "" @@ -41170,13 +41187,14 @@ msgstr "Popis" #: 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 "" @@ -41188,13 +41206,14 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/sk/helpcontent2/source/text/shared/02.po libreoffice-5.1.2~rc2/translations/source/sk/helpcontent2/source/text/shared/02.po --- libreoffice-5.1.1~rc2/translations/source/sk/helpcontent2/source/text/shared/02.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/sk/helpcontent2/source/text/shared/02.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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-21 16:23+0000\n" -"Last-Translator: MiloÅ¡ Å rámek <msramek22@gmail.com>\n" +"PO-Revision-Date: 2016-03-04 05:18+0000\n" +"Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: sk\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "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: 1440174219.000000\n" +"X-POOTLE-MTIME: 1457068715.000000\n" #: 01110000.xhp msgctxt "" @@ -13860,13 +13860,14 @@ msgstr "" #: 12070100.xhp +#, fuzzy msgctxt "" "12070100.xhp\n" "hd_id3163802\n" "6\n" "help.text" msgid ">" -msgstr "" +msgstr ">" #: 12070100.xhp msgctxt "" @@ -13878,13 +13879,14 @@ msgstr "" #: 12070100.xhp +#, fuzzy msgctxt "" "12070100.xhp\n" "hd_id3149732\n" "7\n" "help.text" msgid "<" -msgstr "" +msgstr "<" #: 12070100.xhp msgctxt "" @@ -14173,13 +14175,14 @@ msgstr "" #: 12070200.xhp +#, fuzzy msgctxt "" "12070200.xhp\n" "hd_id3152551\n" "4\n" "help.text" msgid ">" -msgstr "" +msgstr ">" #: 12070200.xhp msgctxt "" @@ -15677,13 +15680,14 @@ msgstr "Príklad" #: 12100200.xhp +#, fuzzy msgctxt "" "12100200.xhp\n" "par_id3158411\n" "42\n" "help.text" msgid "?" -msgstr "" +msgstr "?" #: 12100200.xhp msgctxt "" @@ -15713,13 +15717,14 @@ msgstr "" #: 12100200.xhp +#, fuzzy msgctxt "" "12100200.xhp\n" "par_id3148803\n" "45\n" "help.text" msgid "*" -msgstr "" +msgstr "*" #: 12100200.xhp msgctxt "" @@ -15803,40 +15808,44 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/sk/helpcontent2/source/text/shared/autopi.po libreoffice-5.1.2~rc2/translations/source/sk/helpcontent2/source/text/shared/autopi.po --- libreoffice-5.1.1~rc2/translations/source/sk/helpcontent2/source/text/shared/autopi.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/sk/helpcontent2/source/text/shared/autopi.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\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-08-21 15:00+0000\n" -"Last-Translator: MiloÅ¡ Å rámek <msramek22@gmail.com>\n" +"PO-Revision-Date: 2016-03-04 05:24+0000\n" +"Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: sk\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "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: 1440169228.000000\n" +"X-POOTLE-MTIME: 1457069056.000000\n" #: 01000000.xhp msgctxt "" @@ -3422,13 +3422,14 @@ 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 @@ msgstr "<ahelp hid=\"HID_DLGFORM_CMDMOVEALL\">Kliknutím presuniete vÅ¡etky polia do poľa, kam mieri šípka.</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 @@ msgstr "<ahelp hid=\"HID_DLGFORM_CMDREMOVEALL\">Kliknutím presuniete vÅ¡etky polia do poľa, kam mieri šípka.</ahelp>" #: 01090100.xhp +#, fuzzy msgctxt "" "01090100.xhp\n" "par_idN1074A\n" "help.text" msgid "^" -msgstr "" +msgstr "^" #: 01090100.xhp msgctxt "" @@ -4524,13 +4527,14 @@ msgstr "<ahelp hid=\"HID_DLGREPORT_1_FIELDSSELECTED\">Zobrazí vÅ¡etky polia zahrnuté do novej správy.</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 @@ msgstr "<ahelp hid=\"HID_DLGREPORT_1_CMDMOVEALL\">Kliknutím presuniete vÅ¡etky polia do poľa, kam mieri šípka.</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 @@ msgstr "<ahelp hid=\"HID_DLGREPORT_2_PREGROUPINGDEST\">Zobrazí polia, podľa ktorých bude správa zoskupená. Pre odobratie jednej úrovne zoskupenia vyberte názov poľa a kliknite na tlaÄidlo <emph><</emph>. Je možné vybraÅ¥ až Å¡tyri úrovne zoskupenia.</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 @@ msgstr "<ahelp hid=\"HID_DLGREPORT_2_CMDGROUP\">Kliknutím presuniete vybrané pole do poľa, kam mieri šípka.</ahelp>" #: 01100200.xhp +#, fuzzy msgctxt "" "01100200.xhp\n" "hd_id3154823\n" "5\n" "help.text" msgid "<" -msgstr "" +msgstr "<" #: 01100200.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/sk/helpcontent2/source/text/shared/explorer/database.po libreoffice-5.1.2~rc2/translations/source/sk/helpcontent2/source/text/shared/explorer/database.po --- libreoffice-5.1.1~rc2/translations/source/sk/helpcontent2/source/text/shared/explorer/database.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/sk/helpcontent2/source/text/shared/explorer/database.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 22:03+0000\n" +"PO-Revision-Date: 2016-03-04 05:33+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: sk\n" @@ -14,7 +14,7 @@ "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: 1431381823.000000\n" +"X-POOTLE-MTIME: 1457069621.000000\n" #: 02000000.xhp msgctxt "" @@ -1760,13 +1760,14 @@ msgstr "... Obsah poľa sa nezhoduje so zadaným výrazom." #: 02010100.xhp +#, fuzzy msgctxt "" "02010100.xhp\n" "par_id3153015\n" "48\n" "help.text" msgid ">" -msgstr "" +msgstr ">" #: 02010100.xhp msgctxt "" @@ -1787,13 +1788,14 @@ msgstr "... obsah poľa je väÄší ako zadaný výraz." #: 02010100.xhp +#, fuzzy msgctxt "" "02010100.xhp\n" "par_id3147270\n" "51\n" "help.text" msgid "<" -msgstr "" +msgstr "<" #: 02010100.xhp msgctxt "" @@ -2793,13 +2795,14 @@ msgstr "Nie" #: 02010100.xhp +#, fuzzy msgctxt "" "02010100.xhp\n" "par_id3150997\n" "239\n" "help.text" msgid "." -msgstr "" +msgstr "." #: 02010100.xhp msgctxt "" @@ -6235,13 +6238,14 @@ msgstr "<ahelp hid=\"dbaccess/ui/dbaseindexdialog/freeindex\">Zobrazí zoznam dostupných indexov, ktoré je možné priradiÅ¥ tabuľke.</ahelp> Ak chcete vo vybranej tabuľke vytvoriÅ¥ index, kliknite na ikonu šípky doľava. Dvojitá ľavá šípka vyberie vÅ¡etky dostupné indexy." #: 11030100.xhp +#, fuzzy msgctxt "" "11030100.xhp\n" "hd_id3156152\n" "6\n" "help.text" msgid "<" -msgstr "" +msgstr "<" #: 11030100.xhp msgctxt "" @@ -6271,13 +6275,14 @@ msgstr "<ahelp hid=\"dbaccess/ui/dbaseindexdialog/addall\">Presunie vÅ¡etky voľné indexy do zoznamu <emph>Indexy tabuľky</emph>.</ahelp>" #: 11030100.xhp +#, fuzzy msgctxt "" "11030100.xhp\n" "hd_id3149579\n" "8\n" "help.text" msgid ">" -msgstr "" +msgstr ">" #: 11030100.xhp msgctxt "" @@ -12433,12 +12438,13 @@ msgstr "" #: querywizard04.xhp +#, fuzzy msgctxt "" "querywizard04.xhp\n" "par_idN105F1\n" "help.text" msgid "-" -msgstr "" +msgstr "-" #: querywizard04.xhp msgctxt "" @@ -14459,12 +14465,13 @@ msgstr "" #: tablewizard02.xhp +#, fuzzy msgctxt "" "tablewizard02.xhp\n" "par_idN10574\n" "help.text" msgid "-" -msgstr "" +msgstr "-" #: tablewizard02.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/sk/helpcontent2/source/text/shared/optionen.po libreoffice-5.1.2~rc2/translations/source/sk/helpcontent2/source/text/shared/optionen.po --- libreoffice-5.1.1~rc2/translations/source/sk/helpcontent2/source/text/shared/optionen.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/sk/helpcontent2/source/text/shared/optionen.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "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-21 15:01+0000\n" +"PO-Revision-Date: 2016-03-04 06:16+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: sk\n" @@ -14,7 +14,7 @@ "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: 1440169314.000000\n" +"X-POOTLE-MTIME: 1457072175.000000\n" #: 01000000.xhp msgctxt "" @@ -2670,13 +2670,14 @@ msgstr "%PRODUCTNAME používa pre farebnú tlaÄ len farebný model RGB. Ovládacie prvky CMYK sú zahrnuté len pre uľahÄenie nastavenia farieb v CMYK notácii." #: 01010501.xhp +#, fuzzy msgctxt "" "01010501.xhp\n" "hd_id3153192\n" "11\n" "help.text" msgid "<--" -msgstr "" +msgstr "<--" #: 01010501.xhp msgctxt "" @@ -2688,13 +2689,14 @@ msgstr "" #: 01010501.xhp +#, fuzzy msgctxt "" "01010501.xhp\n" "hd_id3158409\n" "13\n" "help.text" msgid "-->" -msgstr "" +msgstr "-->" #: 01010501.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/sk/helpcontent2/source/text/swriter/01.po libreoffice-5.1.2~rc2/translations/source/sk/helpcontent2/source/text/swriter/01.po --- libreoffice-5.1.1~rc2/translations/source/sk/helpcontent2/source/text/swriter/01.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/sk/helpcontent2/source/text/swriter/01.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\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-08-21 14:09+0000\n" -"Last-Translator: MiloÅ¡ Å rámek <msramek22@gmail.com>\n" +"PO-Revision-Date: 2016-03-04 06:59+0000\n" +"Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: sk\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "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: 1440166171.000000\n" +"X-POOTLE-MTIME: 1457074761.000000\n" #: 01120000.xhp msgctxt "" @@ -11033,13 +11033,14 @@ msgstr "<ahelp hid=\"modules/swriter/ui/tocstylespage/styles\">Vyberte Å¡týl odseku pre vybranú úroveň registra a kliknite na tlaÄidlo <emph>PriradiÅ¥</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 @@ msgstr "<ahelp hid=\".\"> Vyberte a presuňte prvok adresy do bloku s novou adresou. </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 @@ msgstr "<ahelp hid=\".\"> Pridá vybrané pole z prvkov adresy do bloku s novou adresou. Rovnaké pole môžete pridaÅ¥ aj viackrát. </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 @@ msgstr "<ahelp hid=\".\"> Vyberte a presuňte prvok adresy do bloku s novou adresou. </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 @@ msgstr "<ahelp hid=\".\"> Pridá vybrané pole z prvkov adresy do bloku s novou adresou. Rovnaké pole môžete pridaÅ¥ aj viackrát. </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 @@ msgstr "<ahelp hid=\".\"> Vyberte a presuňte prvok adresy do bloku s novou adresou. </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 @@ msgstr "<ahelp hid=\".\"> Pridá vybrané pole z prvkov adresy do bloku s novou adresou. Rovnaké pole môžete pridaÅ¥ aj viackrát. </ahelp>" #: mm_newaddblo.xhp +#, fuzzy msgctxt "" "mm_newaddblo.xhp\n" "par_idN10577\n" "help.text" msgid "<" -msgstr "" +msgstr "<" #: mm_newaddblo.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/sk/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-5.1.2~rc2/translations/source/sk/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-5.1.1~rc2/translations/source/sk/officecfg/registry/data/org/openoffice/Office/UI.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/sk/officecfg/registry/data/org/openoffice/Office/UI.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-23 20:36+0000\n" +"PO-Revision-Date: 2016-02-25 21:34+0000\n" "Last-Translator: MiloÅ¡ Å rámek <msramek22@gmail.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: sk\n" @@ -14,7 +14,7 @@ "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: 1456259797.000000\n" +"X-POOTLE-MTIME: 1456436040.000000\n" #: BaseWindowState.xcu msgctxt "" @@ -15544,7 +15544,6 @@ msgstr "Vzhľad ~webu" #: GenericCommands.xcu -#, fuzzy msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Commands..uno:BrowseView\n" diff -Nru libreoffice-5.1.1~rc2/translations/source/sk/sc/source/ui/src.po libreoffice-5.1.2~rc2/translations/source/sk/sc/source/ui/src.po --- libreoffice-5.1.1~rc2/translations/source/sk/sc/source/ui/src.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/sk/sc/source/ui/src.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-11-13 18:50+0000\n" +"PO-Revision-Date: 2016-02-25 21:40+0000\n" "Last-Translator: MiloÅ¡ Å rámek <msramek22@gmail.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: sk\n" @@ -14,7 +14,7 @@ "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: 1447440618.000000\n" +"X-POOTLE-MTIME: 1456436411.000000\n" #: condformatdlg.src msgctxt "" @@ -5706,7 +5706,6 @@ msgstr "VložiÅ¥ in~ak..." #: hdrcont.src -#, fuzzy msgctxt "" "hdrcont.src\n" "RID_POPUP_ROWHEADER\n" @@ -5848,7 +5847,7 @@ "FID_COL_HIDE\n" "menuitem.text" msgid "~Hide Columns" -msgstr "" +msgstr "~SkryÅ¥ stĺpce" #: hdrcont.src msgctxt "" @@ -5857,7 +5856,7 @@ "FID_COL_SHOW\n" "menuitem.text" msgid "~Show Columns" -msgstr "" +msgstr "~ZobraziÅ¥ stĺpce" #: popup.src msgctxt "" @@ -5976,14 +5975,13 @@ msgstr "~OdstrániÅ¥..." #: popup.src -#, fuzzy msgctxt "" "popup.src\n" "RID_POPUP_CELLS\n" "SID_DELETE\n" "menuitem.text" msgid "Cl~ear Contents..." -msgstr "ZmazaÅ¥ ~obsah..." +msgstr "OdstrániÅ¥ ~obsah..." #: popup.src msgctxt "" @@ -7852,7 +7850,7 @@ "6\n" "string.text" msgid "list of dates" -msgstr "" +msgstr "zoznam dátumov" #: scfuncs.src msgctxt "" @@ -7864,7 +7862,6 @@ msgstr "Voliteľná množina pozostávajúca z jedného alebo viacerých dátumov, ktoré urÄujú sviatky." #: scfuncs.src -#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS1.SC_OPCODE_NETWORKDAYS\n" @@ -8483,7 +8480,7 @@ "5\n" "string.text" msgid "Indicates the first day of the week and when week 1 starts." -msgstr "" +msgstr "UrÄuje prvý deň v týždni a zaÄiatok týždňa 1." #: scfuncs.src msgctxt "" @@ -8492,10 +8489,9 @@ "1\n" "string.text" msgid "Calculates the ISO 8601 calendar week for the given date." -msgstr "" +msgstr "VypoÄíta pre zadaný dátum Äíslo kalendárneho týždňa podľa normy ISO 8601." #: scfuncs.src -#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS1.SC_OPCODE_ISOWEEKNUM\n" @@ -8505,7 +8501,6 @@ msgstr "Číslo" #: scfuncs.src -#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS1.SC_OPCODE_ISOWEEKNUM\n" @@ -10789,7 +10784,7 @@ "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 "Vráti údajový typ hodnoty (1 = Äíslo, 2 = text, 4 = logická hodnota, 8 = vzorec, 16 = chybová hodnota, 64 = matica)." #: scfuncs.src msgctxt "" @@ -20035,14 +20030,13 @@ msgstr "PoÄet prvkov v permutácií." #: scfuncs.src -#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_CONFIDENCE\n" "1\n" "string.text" msgid "Returns a (1-alpha) confidence interval for a normal distribution." -msgstr "Vracia (1 alfa) interval vierohodnosti pre normálne rozdelenie." +msgstr "Vráti (1 alfa) interval vierohodnosti pre normálne rozdelenie." #: scfuncs.src msgctxt "" @@ -20099,14 +20093,13 @@ msgstr "VeľkosÅ¥ populácie." #: 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 "Vracia (1 alfa) interval vierohodnosti pre normálne rozdelenie." +msgstr "Vráti (1 alfa) interval vierohodnosti pre normálne rozdelenie." #: scfuncs.src msgctxt "" @@ -20163,14 +20156,13 @@ msgstr "VeľkosÅ¥ populácie." #: scfuncs.src -#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_CONFIDENCE_T\n" "1\n" "string.text" msgid "Returns a (1-alpha) confidence interval for a Student's t distribution." -msgstr "Vracia (1 alfa) interval vierohodnosti pre Studentovo rozdelenie." +msgstr "Vráti (1 alfa) interval vierohodnosti pre t (Studentovo) rozdelenie." #: scfuncs.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/sk/sc/source/ui/StatisticsDialogs.po libreoffice-5.1.2~rc2/translations/source/sk/sc/source/ui/StatisticsDialogs.po --- libreoffice-5.1.1~rc2/translations/source/sk/sc/source/ui/StatisticsDialogs.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/sk/sc/source/ui/StatisticsDialogs.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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: 2014-12-21 22:36+0000\n" +"PO-Revision-Date: 2016-02-25 21:41+0000\n" "Last-Translator: MiloÅ¡ Å rámek <msramek22@gmail.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: sk\n" @@ -14,7 +14,7 @@ "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: 1419201400.000000\n" +"X-POOTLE-MTIME: 1456436501.000000\n" #: StatisticsDialogs.src msgctxt "" @@ -590,7 +590,7 @@ "STR_REGRESSION_UNDO_NAME\n" "string.text" msgid "Regression" -msgstr "" +msgstr "Regresia" #: StatisticsDialogs.src msgctxt "" @@ -599,7 +599,7 @@ "STR_REGRESSION\n" "string.text" msgid "Regression" -msgstr "" +msgstr "Regresia" #: StatisticsDialogs.src msgctxt "" @@ -716,7 +716,7 @@ "STR_LABEL_LINEAR\n" "string.text" msgid "Linear" -msgstr "" +msgstr "Lineárny" #: StatisticsDialogs.src msgctxt "" @@ -725,7 +725,7 @@ "STR_LABEL_LOGARITHMIC\n" "string.text" msgid "Logarithmic" -msgstr "" +msgstr "Logaritmický" #: StatisticsDialogs.src msgctxt "" @@ -734,7 +734,7 @@ "STR_LABEL_POWER\n" "string.text" msgid "Power" -msgstr "" +msgstr "Mocninný" #: StatisticsDialogs.src msgctxt "" @@ -743,7 +743,7 @@ "STR_LABEL_REGRESSION_MODEL\n" "string.text" msgid "Regression Model" -msgstr "" +msgstr "Regresný model" #: StatisticsDialogs.src msgctxt "" @@ -752,7 +752,7 @@ "STR_LABEL_RSQUARED\n" "string.text" msgid "R^2" -msgstr "" +msgstr "R^2" #: StatisticsDialogs.src msgctxt "" @@ -761,7 +761,7 @@ "STR_LABEL_SLOPE\n" "string.text" msgid "Slope" -msgstr "" +msgstr "Smernica" #: StatisticsDialogs.src msgctxt "" @@ -770,7 +770,7 @@ "STR_LABEL_INTERCEPT\n" "string.text" msgid "Intercept" -msgstr "" +msgstr "Absolútny Älen" #: StatisticsDialogs.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/sk/sc/uiconfig/scalc/ui.po libreoffice-5.1.2~rc2/translations/source/sk/sc/uiconfig/scalc/ui.po --- libreoffice-5.1.1~rc2/translations/source/sk/sc/uiconfig/scalc/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/sk/sc/uiconfig/scalc/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 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-30 20:14+0000\n" +"PO-Revision-Date: 2016-02-25 21:51+0000\n" "Last-Translator: MiloÅ¡ Å rámek <msramek22@gmail.com>\n" "Language-Team: none\n" "Language: sk\n" @@ -14,7 +14,7 @@ "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: 1435695284.000000\n" +"X-POOTLE-MTIME: 1456437068.000000\n" #: advancedfilterdialog.ui msgctxt "" @@ -1544,7 +1544,6 @@ msgstr "Minimálna hodnota musí byÅ¥ menÅ¡ia ako maximálna." #: databaroptions.ui -#, fuzzy msgctxt "" "databaroptions.ui\n" "custom_color\n" @@ -3180,7 +3179,7 @@ "label\n" "string.text" msgid "Apply those settings to current document only" -msgstr "" +msgstr "Tieto nastavenia použiÅ¥ len pre aktuálny dokument" #: formulacalculationoptions.ui msgctxt "" @@ -6546,10 +6545,9 @@ "title\n" "string.text" msgid "Regression" -msgstr "" +msgstr "Regresia" #: regressiondialog.ui -#, fuzzy msgctxt "" "regressiondialog.ui\n" "variable1-range-label\n" @@ -6559,7 +6557,6 @@ msgstr "OblasÅ¥ premennej 1:" #: regressiondialog.ui -#, fuzzy msgctxt "" "regressiondialog.ui\n" "variable2-range-label\n" @@ -6569,7 +6566,6 @@ msgstr "OblasÅ¥ premennej 2:" #: regressiondialog.ui -#, fuzzy msgctxt "" "regressiondialog.ui\n" "output-range-label\n" @@ -6579,7 +6575,6 @@ msgstr "Výsledky do:" #: regressiondialog.ui -#, fuzzy msgctxt "" "regressiondialog.ui\n" "label1\n" @@ -6589,7 +6584,6 @@ msgstr "Údaje" #: regressiondialog.ui -#, fuzzy msgctxt "" "regressiondialog.ui\n" "groupedby-columns-radio\n" @@ -6599,7 +6593,6 @@ msgstr "Stĺpce" #: regressiondialog.ui -#, fuzzy msgctxt "" "regressiondialog.ui\n" "groupedby-rows-radio\n" @@ -6609,14 +6602,13 @@ msgstr "Riadky" #: regressiondialog.ui -#, fuzzy msgctxt "" "regressiondialog.ui\n" "label2\n" "label\n" "string.text" msgid "Grouped by" -msgstr "Združené podľa:" +msgstr "Združené podľa" #: regressiondialog.ui msgctxt "" @@ -6625,7 +6617,7 @@ "label\n" "string.text" msgid "Linear Regression" -msgstr "" +msgstr "Lineárna regresia" #: regressiondialog.ui msgctxt "" @@ -6634,7 +6626,7 @@ "label\n" "string.text" msgid "Logarithmic Regression" -msgstr "" +msgstr "Logaritmická regresia" #: regressiondialog.ui msgctxt "" @@ -6643,7 +6635,7 @@ "label\n" "string.text" msgid "Power Regression" -msgstr "" +msgstr "Mocninná regresia" #: regressiondialog.ui msgctxt "" @@ -6652,7 +6644,7 @@ "label\n" "string.text" msgid "Output Regression Types" -msgstr "" +msgstr "Typy regresie vo výstupe" #: retypepassdialog.ui msgctxt "" @@ -7948,7 +7940,7 @@ "tooltip_text\n" "string.text" msgid "Text Extension From Lower Cell Border" -msgstr "" +msgstr "Text vychádza od dolného okraja bunky" #: sidebaralignment.ui msgctxt "" @@ -7957,7 +7949,7 @@ "tooltip_text\n" "string.text" msgid "Text Extension From Upper Cell Border" -msgstr "" +msgstr "Text vychádza od horného okraja bunky" #: sidebaralignment.ui msgctxt "" @@ -7966,10 +7958,9 @@ "tooltip_text\n" "string.text" msgid "Text Extension Inside Cell" -msgstr "" +msgstr "Text zostane vo vnútri bunky" #: sidebaralignment.ui -#, fuzzy msgctxt "" "sidebaralignment.ui\n" "stacked\n" @@ -9605,7 +9596,7 @@ "label\n" "string.text" msgid "Number of Formula Groups:" -msgstr "" +msgstr "PoÄet skupín vzorcov:" #: statisticsinfopage.ui msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/sk/scaddins/source/analysis.po libreoffice-5.1.2~rc2/translations/source/sk/scaddins/source/analysis.po --- libreoffice-5.1.1~rc2/translations/source/sk/scaddins/source/analysis.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/sk/scaddins/source/analysis.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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 20:32+0000\n" +"PO-Revision-Date: 2016-02-25 21:33+0000\n" "Last-Translator: MiloÅ¡ Å rámek <msramek22@gmail.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: sk\n" @@ -14,7 +14,7 @@ "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: 1434486752.000000\n" +"X-POOTLE-MTIME: 1456436004.000000\n" #: analysis.src msgctxt "" @@ -197,6 +197,8 @@ "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 "" +"Vráti Äíslo kalendárneho týždňa, do ktorého zadaný dátum padne.\n" +"Táto funkcia existuje iba kvôli interoperabilite so staršími dokumentami programu Microsoft Excel, v novších dokumentoch použite funkciu WEEKNUM." #: analysis.src msgctxt "" @@ -214,7 +216,7 @@ "3\n" "string.text" msgid "The date or date serial number" -msgstr "" +msgstr "Dátum alebo poradové Äíslo" #: analysis.src msgctxt "" @@ -226,14 +228,13 @@ msgstr "Návratový typ" #: 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 "UrÄuje prvý deň v týždni (1=nedeľa, ostatné hodnoty=pondelok)." +msgstr "UrÄuje prvý deň v týždni (1=nedeľa, 2=pondelok)" #: analysis.src msgctxt "" @@ -290,6 +291,8 @@ "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 "" +"Vráti poÄet pracovných dní medzi dvomi dátumami.\n" +"Táto funkcia existuje iba kvôli interoperabilite so staršími dokumentmi programu Microsoft Excel, v novších dokumentoch použite funkciu NETWORKDAYS." #: analysis.src msgctxt "" @@ -409,7 +412,6 @@ msgstr "Vráti koeficienty polynómu zadaných Äísel." #: analysis.src -#, fuzzy msgctxt "" "analysis.src\n" "RID_ANALYSIS_FUNCTION_DESCRIPTIONS.ANALYSIS_Multinomial\n" @@ -680,9 +682,10 @@ "Returns the greatest common divisor.\n" "This function exists for interoperability with older Microsoft Excel documents, for new documents use GCD instead." msgstr "" +"Vráti najväÄší spoloÄný deliteľ.\n" +"Táto funkcia existuje iba kvôli interoperabilite so staršími dokumentmi programu Microsoft Excel, v novších dokumentoch použite funkciu GCD." #: analysis.src -#, fuzzy msgctxt "" "analysis.src\n" "RID_ANALYSIS_FUNCTION_DESCRIPTIONS.ANALYSIS_Gcd\n" @@ -710,9 +713,10 @@ "Returns the least common multiple.\n" "This function exists for interoperability with older Microsoft Excel documents, for new documents use LCM instead." msgstr "" +"Vráti najmenší spoloÄný násobok.\n" +"Táto funkcia existuje iba kvôli interoperabilite so staršími dokumentmi programu Microsoft Excel, v novších dokumentoch použite funkciu LCM." #: analysis.src -#, fuzzy msgctxt "" "analysis.src\n" "RID_ANALYSIS_FUNCTION_DESCRIPTIONS.ANALYSIS_Lcm\n" diff -Nru libreoffice-5.1.1~rc2/translations/source/sk/sfx2/uiconfig/ui.po libreoffice-5.1.2~rc2/translations/source/sk/sfx2/uiconfig/ui.po --- libreoffice-5.1.1~rc2/translations/source/sk/sfx2/uiconfig/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/sk/sfx2/uiconfig/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: LibO 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 15:03+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2016-02-25 21:26+0000\n" +"Last-Translator: MiloÅ¡ Å rámek <msramek22@gmail.com>\n" "Language-Team: none\n" "Language: sk\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "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: 1452265410.000000\n" +"X-POOTLE-MTIME: 1456435611.000000\n" #: alienwarndialog.ui msgctxt "" @@ -347,7 +347,7 @@ "label\n" "string.text" msgid "Save preview image with this document" -msgstr "" +msgstr "S týmto dokumentom uložiÅ¥ obrázok náhľadu" #: documentinfopage.ui msgctxt "" @@ -746,7 +746,6 @@ msgstr "_ZobraziÅ¥ licenciu" #: licensedialog.ui -#, fuzzy msgctxt "" "licensedialog.ui\n" "label\n" @@ -769,7 +768,7 @@ "\n" "VÅ¡etky ochranné známky a registrované ochranné známky, ktoré sú tu spomenuté, sú majetkom ich vlastníkov.\n" "\n" -"Copyright © 2000, 2015 prispievatelia do LibreOffice a / alebo ich pridružené spoloÄnosti. VÅ¡etky práva vyhradené.\n" +"Copyright © 2000–2016 prispievatelia do LibreOffice a / alebo ich pridružené spoloÄnosti. VÅ¡etky práva vyhradené.\n" "\n" "Tento produkt vytvorila %OOOVENDOR na základe OpenOffice.org, ktorý je Copyright 2000, 2011 Oracle a / alebo jeho poboÄky. %OOOVENDOR Äakuje vÅ¡etkým Älenom komunity, podrobnosti nájdete na stránke http://www.libreoffice.org/." @@ -1545,7 +1544,7 @@ "label\n" "string.text" msgid "Remote File_s" -msgstr "" +msgstr "Vzdialené _súbory" #: startcenter.ui msgctxt "" @@ -1575,7 +1574,6 @@ msgstr "VytvoriÅ¥:" #: startcenter.ui -#, fuzzy msgctxt "" "startcenter.ui\n" "writer_all\n" @@ -1585,7 +1583,6 @@ msgstr "Textový _dokument" #: startcenter.ui -#, fuzzy msgctxt "" "startcenter.ui\n" "calc_all\n" @@ -1595,7 +1592,6 @@ msgstr "Tabuľkový _zoÅ¡it" #: startcenter.ui -#, fuzzy msgctxt "" "startcenter.ui\n" "impress_all\n" @@ -1605,7 +1601,6 @@ msgstr "_Prezentácia" #: startcenter.ui -#, fuzzy msgctxt "" "startcenter.ui\n" "draw_all\n" @@ -1615,7 +1610,6 @@ msgstr "_Kresba" #: startcenter.ui -#, fuzzy msgctxt "" "startcenter.ui\n" "math_all\n" @@ -1625,7 +1619,6 @@ msgstr "_Vzorec" #: startcenter.ui -#, fuzzy msgctxt "" "startcenter.ui\n" "database_all\n" diff -Nru libreoffice-5.1.1~rc2/translations/source/sk/svx/inc.po libreoffice-5.1.2~rc2/translations/source/sk/svx/inc.po --- libreoffice-5.1.1~rc2/translations/source/sk/svx/inc.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/sk/svx/inc.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\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-13 23:14+0000\n" -"Last-Translator: MiloÅ¡ Å rámek <msramek22@gmail.com>\n" +"PO-Revision-Date: 2016-03-09 09:28+0000\n" +"Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: sk\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "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: 1455405258.000000\n" +"X-POOTLE-MTIME: 1457515699.000000\n" #: globlmn_tmpl.hrc msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/sk/svx/source/svdraw.po libreoffice-5.1.2~rc2/translations/source/sk/svx/source/svdraw.po --- libreoffice-5.1.1~rc2/translations/source/sk/svx/source/svdraw.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/sk/svx/source/svdraw.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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 19:19+0000\n" +"PO-Revision-Date: 2016-02-25 21:03+0000\n" "Last-Translator: MiloÅ¡ Å rámek <msramek22@gmail.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: sk\n" @@ -14,7 +14,7 @@ "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: 1456168759.000000\n" +"X-POOTLE-MTIME: 1456434200.000000\n" #: svdstr.src msgctxt "" @@ -3854,7 +3854,7 @@ "SIP_SA_CHAINNEXTNAME\n" "string.text" msgid "Next link in text chain" -msgstr "" +msgstr "Nasledujúce prepojenie zreÅ¥azenia textov" #: svdstr.src msgctxt "" @@ -4918,7 +4918,7 @@ "STR_TABLE_DELETE_CELL_CONTENTS\n" "string.text" msgid "Delete cell contents" -msgstr "" +msgstr "OdstrániÅ¥ obsah buniek" #: svdstr.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/sk/svx/source/tbxctrls.po libreoffice-5.1.2~rc2/translations/source/sk/svx/source/tbxctrls.po --- libreoffice-5.1.1~rc2/translations/source/sk/svx/source/tbxctrls.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/sk/svx/source/tbxctrls.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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-29 20:12+0000\n" +"PO-Revision-Date: 2016-02-25 21:04+0000\n" "Last-Translator: MiloÅ¡ Å rámek <msramek22@gmail.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: sk\n" @@ -14,7 +14,7 @@ "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: 1435608755.000000\n" +"X-POOTLE-MTIME: 1456434254.000000\n" #: colrctrl.src msgctxt "" @@ -568,7 +568,7 @@ "RID_SVXSTR_EXTRAS_CHARBACKGROUND\n" "string.text" msgid "Highlight Color" -msgstr "" +msgstr "Farba zvýraznenia" #: tbcontrl.src msgctxt "" @@ -688,4 +688,4 @@ "RID_SVXSTR_FINDBAR_SEARCHFORMATTED\n" "string.text" msgid "Search Formatted Display String" -msgstr "" +msgstr "HľadaÅ¥ zobrazený reÅ¥azec" diff -Nru libreoffice-5.1.1~rc2/translations/source/sk/svx/uiconfig/ui.po libreoffice-5.1.2~rc2/translations/source/sk/svx/uiconfig/ui.po --- libreoffice-5.1.1~rc2/translations/source/sk/svx/uiconfig/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/sk/svx/uiconfig/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-30 20:20+0000\n" +"PO-Revision-Date: 2016-02-25 21:08+0000\n" "Last-Translator: MiloÅ¡ Å rámek <msramek22@gmail.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: sk\n" @@ -14,7 +14,7 @@ "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: 1435695649.000000\n" +"X-POOTLE-MTIME: 1456434509.000000\n" #: acceptrejectchangesdialog.ui msgctxt "" @@ -1403,7 +1403,6 @@ msgstr "PreviesÅ¥ na 3D" #: docking3deffects.ui -#, fuzzy msgctxt "" "docking3deffects.ui\n" "tolathe\n" @@ -2812,7 +2811,7 @@ "label\n" "string.text" msgid "Search formatted display string" -msgstr "" +msgstr "HľadaÅ¥ zobrazený reÅ¥azec" #: findreplacedialog.ui msgctxt "" @@ -4424,7 +4423,7 @@ "tooltip_markup\n" "string.text" msgid "Fill gradient from." -msgstr "" +msgstr "PoÄiatoÄná farba prechodu." #: sidebararea.ui msgctxt "" @@ -4433,7 +4432,7 @@ "tooltip_text\n" "string.text" msgid "Fill gradient from." -msgstr "" +msgstr "PoÄiatoÄná farba prechodu." #: sidebararea.ui msgctxt "" @@ -4595,7 +4594,7 @@ "tooltip_markup\n" "string.text" msgid "Fill gradient to." -msgstr "" +msgstr "Koncová farba prechodu." #: sidebararea.ui msgctxt "" @@ -4604,7 +4603,7 @@ "tooltip_text\n" "string.text" msgid "Fill gradient to." -msgstr "" +msgstr "Koncová farba prechodu." #: sidebararea.ui msgctxt "" @@ -4613,7 +4612,7 @@ "tooltip_markup\n" "string.text" msgid "Select the gradient angle." -msgstr "" +msgstr "VybraÅ¥ uhol prechodu." #: sidebararea.ui msgctxt "" @@ -4622,10 +4621,9 @@ "tooltip_text\n" "string.text" msgid "Select the gradient angle." -msgstr "" +msgstr "VybraÅ¥ uhol prechodu." #: sidebararea.ui -#, fuzzy msgctxt "" "sidebararea.ui\n" "gradientstyle\n" @@ -4635,7 +4633,6 @@ msgstr "Lineárny" #: sidebararea.ui -#, fuzzy msgctxt "" "sidebararea.ui\n" "gradientstyle\n" @@ -4645,7 +4642,6 @@ msgstr "Osový" #: sidebararea.ui -#, fuzzy msgctxt "" "sidebararea.ui\n" "gradientstyle\n" @@ -4655,7 +4651,6 @@ msgstr "Radiálny" #: sidebararea.ui -#, fuzzy msgctxt "" "sidebararea.ui\n" "gradientstyle\n" @@ -4665,7 +4660,6 @@ msgstr "Oválny" #: sidebararea.ui -#, fuzzy msgctxt "" "sidebararea.ui\n" "gradientstyle\n" @@ -4675,7 +4669,6 @@ msgstr "Kvadratický" #: sidebararea.ui -#, fuzzy msgctxt "" "sidebararea.ui\n" "gradientstyle\n" @@ -4691,7 +4684,7 @@ "tooltip_markup\n" "string.text" msgid "Select the gradient style." -msgstr "" +msgstr "VybraÅ¥ Å¡týl prechodu." #: sidebararea.ui msgctxt "" @@ -4700,10 +4693,9 @@ "tooltip_text\n" "string.text" msgid "Select the gradient style." -msgstr "" +msgstr "VybraÅ¥ Å¡týl prechodu." #: sidebararea.ui -#, fuzzy msgctxt "" "sidebararea.ui\n" "transparencyslider\n" @@ -4713,7 +4705,6 @@ msgstr "Zadajte hodnoty od 0% pre plnú nepriehľadnosÅ¥ po 100% pre plnú priehľadnosÅ¥." #: sidebararea.ui -#, fuzzy msgctxt "" "sidebararea.ui\n" "transparencyslider\n" @@ -5836,7 +5827,7 @@ "label\n" "string.text" msgid "Enable" -msgstr "" +msgstr "PovoliÅ¥" #: sidebarshadow.ui msgctxt "" @@ -5845,10 +5836,9 @@ "label\n" "string.text" msgid "Angle" -msgstr "" +msgstr "Uhol" #: sidebarshadow.ui -#, fuzzy msgctxt "" "sidebarshadow.ui\n" "distance\n" @@ -5858,24 +5848,22 @@ msgstr "VzdialenosÅ¥" #: sidebarshadow.ui -#, fuzzy msgctxt "" "sidebarshadow.ui\n" "transparency_label\n" "label\n" "string.text" msgid "Transparency:" -msgstr "Priehľadno_sÅ¥:" +msgstr "PriehľadnosÅ¥:" #: sidebarshadow.ui -#, fuzzy msgctxt "" "sidebarshadow.ui\n" "color\n" "label\n" "string.text" msgid "Color:" -msgstr "_Farba:" +msgstr "Farba:" #: textcontrolchardialog.ui msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/sk/sw/source/ui/app.po libreoffice-5.1.2~rc2/translations/source/sk/sw/source/ui/app.po --- libreoffice-5.1.1~rc2/translations/source/sk/sw/source/ui/app.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/sk/sw/source/ui/app.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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-30 20:21+0000\n" +"PO-Revision-Date: 2016-02-25 21:10+0000\n" "Last-Translator: MiloÅ¡ Å rámek <msramek22@gmail.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: sk\n" @@ -14,7 +14,7 @@ "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: 1435695668.000000\n" +"X-POOTLE-MTIME: 1456434634.000000\n" #: app.src msgctxt "" @@ -687,7 +687,7 @@ "STR_SHAPE_DEFNAME\n" "string.text" msgid "Shape" -msgstr "" +msgstr "Útvar" #: app.src msgctxt "" @@ -1150,14 +1150,13 @@ msgstr "Zamknuté súbory nie sú podporované" #: 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 "Toto nie je súbor WinWord6." +msgstr "Toto nie je platný súbor WinWord6." #: error.src msgctxt "" @@ -1187,14 +1186,13 @@ msgstr "Súbor bol uložený novÅ¡ou verziou." #: 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 "Toto nie je súbor WinWord97." +msgstr "Toto nie je platný súbor WinWord97." #: error.src msgctxt "" @@ -1549,7 +1547,7 @@ "FN_UPDATE_CUR_TOX\n" "menuitem.text" msgid "~Update Index or Table of Contents" -msgstr "" +msgstr "~AktualizovaÅ¥ register alebo obsah" #: mn.src msgctxt "" @@ -1558,7 +1556,7 @@ "FN_EDIT_CURRENT_TOX\n" "menuitem.text" msgid "~Edit Index or Table of Contents" -msgstr "" +msgstr " ~UpraviÅ¥ register alebo obsah" #: mn.src msgctxt "" @@ -1567,7 +1565,7 @@ "FN_REMOVE_CUR_TOX\n" "menuitem.text" msgid "Delete Index or Table of Contents" -msgstr "" +msgstr "OdstrániÅ¥ register alebo obsah" #: mn.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/sk/sw/source/ui/dochdl.po libreoffice-5.1.2~rc2/translations/source/sk/sw/source/ui/dochdl.po --- libreoffice-5.1.1~rc2/translations/source/sk/sw/source/ui/dochdl.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/sk/sw/source/ui/dochdl.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-01-09 14:39+0000\n" +"PO-Revision-Date: 2016-02-25 21:11+0000\n" "Last-Translator: MiloÅ¡ Å rámek <msramek22@gmail.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: sk\n" @@ -14,7 +14,7 @@ "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: 1420814357.000000\n" +"X-POOTLE-MTIME: 1456434673.000000\n" #: dochdl.src msgctxt "" @@ -30,7 +30,7 @@ "STR_NO_TABLE\n" "string.text" msgid "A table with no rows or no cells cannot be inserted" -msgstr "" +msgstr "Nie je možné vložiÅ¥ tabuľku bez riadkov alebo bez buniek." #: dochdl.src msgctxt "" @@ -38,7 +38,7 @@ "STR_TABLE_TOO_LARGE\n" "string.text" msgid "The table cannot be inserted because it is too large" -msgstr "" +msgstr "Tabuľku nemožno vložiÅ¥, pretože je príliÅ¡ veľká." #: dochdl.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/sk/sw/source/uibase/lingu.po libreoffice-5.1.2~rc2/translations/source/sk/sw/source/uibase/lingu.po --- libreoffice-5.1.1~rc2/translations/source/sk/sw/source/uibase/lingu.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/sk/sw/source/uibase/lingu.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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-12-10 19:40+0000\n" +"PO-Revision-Date: 2016-02-25 21:11+0000\n" "Last-Translator: MiloÅ¡ Å rámek <msramek22@gmail.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: sk\n" @@ -14,7 +14,7 @@ "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: 1418240426.000000\n" +"X-POOTLE-MTIME: 1456434681.000000\n" #: olmenu.src msgctxt "" @@ -44,14 +44,13 @@ msgstr "PridaÅ¥ do slovníka" #: olmenu.src -#, fuzzy msgctxt "" "olmenu.src\n" "MN_SPELL_POPUP\n" "MN_AUTOCORR\n" "menuitem.text" msgid "Always correct ~to" -msgstr "Vždy opraviÅ¥ na" +msgstr "Vždy opraviÅ¥ ~na" #: olmenu.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/sk/sw/source/uibase/utlui.po libreoffice-5.1.2~rc2/translations/source/sk/sw/source/uibase/utlui.po --- libreoffice-5.1.1~rc2/translations/source/sk/sw/source/uibase/utlui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/sk/sw/source/uibase/utlui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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-14 11:41+0000\n" +"PO-Revision-Date: 2016-02-25 21:14+0000\n" "Last-Translator: MiloÅ¡ Å rámek <msramek22@gmail.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: sk\n" @@ -14,7 +14,7 @@ "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: 1431603671.000000\n" +"X-POOTLE-MTIME: 1456434869.000000\n" #: attrdesc.src msgctxt "" @@ -1689,7 +1689,6 @@ msgstr "Náhľad obsahu" #: navipi.src -#, fuzzy msgctxt "" "navipi.src\n" "STR_OUTLINE_LEVEL\n" @@ -1698,16 +1697,14 @@ msgstr "Úroveň osnovy" #: navipi.src -#, fuzzy msgctxt "" "navipi.src\n" "STR_DRAGMODE\n" "string.text" msgid "Drag Mode" -msgstr "Režim presunutia" +msgstr "Režim presúvania" #: navipi.src -#, fuzzy msgctxt "" "navipi.src\n" "STR_HYPERLINK\n" @@ -1716,7 +1713,6 @@ msgstr "VložiÅ¥ ako hypertextový odkaz" #: navipi.src -#, fuzzy msgctxt "" "navipi.src\n" "STR_LINK_REGION\n" @@ -1725,7 +1721,6 @@ msgstr "VložiÅ¥ ako odkaz" #: navipi.src -#, fuzzy msgctxt "" "navipi.src\n" "STR_COPY_REGION\n" @@ -1734,7 +1729,6 @@ msgstr "VložiÅ¥ ako kópiu" #: navipi.src -#, fuzzy msgctxt "" "navipi.src\n" "STR_DISPLAY\n" @@ -1743,7 +1737,6 @@ msgstr "ZobraziÅ¥" #: navipi.src -#, fuzzy msgctxt "" "navipi.src\n" "STR_ACTIVE_VIEW\n" @@ -1752,7 +1745,6 @@ msgstr "Aktívne okno" #: navipi.src -#, fuzzy msgctxt "" "navipi.src\n" "STR_HIDDEN\n" @@ -1761,7 +1753,6 @@ msgstr "skrytý" #: navipi.src -#, fuzzy msgctxt "" "navipi.src\n" "STR_ACTIVE\n" @@ -1770,16 +1761,14 @@ msgstr "aktívny" #: navipi.src -#, fuzzy msgctxt "" "navipi.src\n" "STR_INACTIVE\n" "string.text" msgid "inactive" -msgstr "neaktívne" +msgstr "neaktívny" #: navipi.src -#, fuzzy msgctxt "" "navipi.src\n" "STR_EDIT_ENTRY\n" @@ -1788,7 +1777,6 @@ msgstr "UpraviÅ¥..." #: navipi.src -#, fuzzy msgctxt "" "navipi.src\n" "STR_UPDATE\n" @@ -1797,7 +1785,6 @@ msgstr "Akt~ualizovaÅ¥" #: navipi.src -#, fuzzy msgctxt "" "navipi.src\n" "STR_EDIT_CONTENT\n" @@ -1806,7 +1793,6 @@ msgstr "UpraviÅ¥" #: navipi.src -#, fuzzy msgctxt "" "navipi.src\n" "STR_EDIT_LINK\n" @@ -1815,7 +1801,6 @@ msgstr "UpraviÅ¥ odkaz" #: navipi.src -#, fuzzy msgctxt "" "navipi.src\n" "STR_EDIT_INSERT\n" @@ -1824,7 +1809,6 @@ msgstr "VložiÅ¥" #: navipi.src -#, fuzzy msgctxt "" "navipi.src\n" "STR_INDEX\n" @@ -1833,7 +1817,6 @@ msgstr "Re~gister" #: navipi.src -#, fuzzy msgctxt "" "navipi.src\n" "STR_FILE\n" @@ -1842,7 +1825,6 @@ msgstr "Súbor" #: navipi.src -#, fuzzy msgctxt "" "navipi.src\n" "STR_NEW_FILE\n" @@ -1851,7 +1833,6 @@ msgstr "Nový dokument" #: navipi.src -#, fuzzy msgctxt "" "navipi.src\n" "STR_INSERT_TEXT\n" @@ -1860,25 +1841,22 @@ msgstr "Text" #: navipi.src -#, fuzzy msgctxt "" "navipi.src\n" "STR_DELETE\n" "string.text" msgid "Delete" -msgstr "odstrániÅ¥" +msgstr "OdstrániÅ¥" #: navipi.src -#, fuzzy msgctxt "" "navipi.src\n" "STR_DELETE_ENTRY\n" "string.text" msgid "~Delete" -msgstr "~odstrániÅ¥" +msgstr "~OdstrániÅ¥" #: navipi.src -#, fuzzy msgctxt "" "navipi.src\n" "STR_UPDATE_SEL\n" @@ -1887,16 +1865,14 @@ msgstr "Výber" #: navipi.src -#, fuzzy msgctxt "" "navipi.src\n" "STR_UPDATE_INDEX\n" "string.text" msgid "Indexes" -msgstr "Indexy" +msgstr "Registre" #: navipi.src -#, fuzzy msgctxt "" "navipi.src\n" "STR_UPDATE_LINK\n" @@ -1905,7 +1881,6 @@ msgstr "Odkazy" #: navipi.src -#, fuzzy msgctxt "" "navipi.src\n" "STR_UPDATE_ALL\n" @@ -1914,7 +1889,6 @@ msgstr "VÅ¡etko" #: navipi.src -#, fuzzy msgctxt "" "navipi.src\n" "STR_REMOVE_INDEX\n" @@ -1923,7 +1897,6 @@ msgstr "Odst~rániÅ¥ register" #: navipi.src -#, fuzzy msgctxt "" "navipi.src\n" "STR_REMOVE_TBL_PROTECTION\n" @@ -1932,7 +1905,6 @@ msgstr "~Odomknúť" #: navipi.src -#, fuzzy msgctxt "" "navipi.src\n" "STR_INVISIBLE\n" @@ -1941,7 +1913,6 @@ msgstr "skrytý" #: navipi.src -#, fuzzy msgctxt "" "navipi.src\n" "STR_BROKEN_LINK\n" @@ -1950,7 +1921,6 @@ msgstr "Súbor nenájdený: " #: navipi.src -#, fuzzy msgctxt "" "navipi.src\n" "STR_RENAME\n" @@ -1959,7 +1929,6 @@ msgstr "P~remenovaÅ¥" #: navipi.src -#, fuzzy msgctxt "" "navipi.src\n" "STR_READONLY_IDX\n" @@ -1968,7 +1937,6 @@ msgstr "Len na Äí~tanie" #: navipi.src -#, fuzzy msgctxt "" "navipi.src\n" "STR_POSTIT_SHOW\n" @@ -1977,7 +1945,6 @@ msgstr "ZobraziÅ¥ vÅ¡etko" #: navipi.src -#, fuzzy msgctxt "" "navipi.src\n" "STR_POSTIT_HIDE\n" @@ -1986,7 +1953,6 @@ msgstr "SkryÅ¥ vÅ¡etko" #: navipi.src -#, fuzzy msgctxt "" "navipi.src\n" "STR_POSTIT_DELETE\n" diff -Nru libreoffice-5.1.1~rc2/translations/source/sk/sw/uiconfig/swriter/ui.po libreoffice-5.1.2~rc2/translations/source/sk/sw/uiconfig/swriter/ui.po --- libreoffice-5.1.1~rc2/translations/source/sk/sw/uiconfig/swriter/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/sk/sw/uiconfig/swriter/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 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-10-23 16:01+0000\n" +"PO-Revision-Date: 2016-02-25 21:20+0000\n" "Last-Translator: MiloÅ¡ Å rámek <msramek22@gmail.com>\n" "Language-Team: none\n" "Language: sk\n" @@ -14,7 +14,7 @@ "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: 1445616069.000000\n" +"X-POOTLE-MTIME: 1456435258.000000\n" #: abstractdialog.ui msgctxt "" @@ -12758,7 +12758,7 @@ "label\n" "string.text" msgid "Enable Contour" -msgstr "" +msgstr "PovoliÅ¥ obrys" #: sidebarwrap.ui msgctxt "" @@ -12767,7 +12767,7 @@ "tooltip_markup\n" "string.text" msgid "Click to automatically trim unnecessary parts of the image" -msgstr "" +msgstr "Kliknutím automaticky orezaÅ¥ nadbytoÄné Äasti obrázka" #: sidebarwrap.ui msgctxt "" @@ -12776,7 +12776,7 @@ "tooltip_text\n" "string.text" msgid "Click to automatically trim unnecessary parts of the image" -msgstr "" +msgstr "Kliknutím automaticky orezaÅ¥ nadbytoÄné Äasti obrázka" #: sidebarwrap.ui msgctxt "" @@ -12785,7 +12785,7 @@ "label\n" "string.text" msgid "Edit Contour" -msgstr "" +msgstr "UpraviÅ¥ obrys" #: sidebarwrap.ui msgctxt "" @@ -12794,7 +12794,7 @@ "tooltip_markup\n" "string.text" msgid "Edit the trimmed area of the image" -msgstr "" +msgstr "UpraviÅ¥ orezanú oblasÅ¥ obrázka" #: sidebarwrap.ui msgctxt "" @@ -12803,17 +12803,16 @@ "tooltip_text\n" "string.text" msgid "Edit the trimmed area of the image" -msgstr "" +msgstr "UpraviÅ¥ orezanú oblasÅ¥ obrázka" #: sidebarwrap.ui -#, fuzzy msgctxt "" "sidebarwrap.ui\n" "label1\n" "label\n" "string.text" msgid "Spacing:" -msgstr "Riadkovanie:" +msgstr "Rozostupy:" #: sidebarwrap.ui msgctxt "" @@ -12822,7 +12821,7 @@ "tooltip_markup\n" "string.text" msgid "Set the amount of space between the image and surrounding text" -msgstr "" +msgstr "NastaviÅ¥ veľkosÅ¥ rozstupov medzi obrázkom a okolitým textom" #: sidebarwrap.ui msgctxt "" @@ -12831,7 +12830,7 @@ "tooltip_text\n" "string.text" msgid "Set the amount of space between the image and surrounding text" -msgstr "" +msgstr "NastaviÅ¥ veľkosÅ¥ rozstupov medzi obrázkom a okolitým textom" #: sidebarwrap.ui msgctxt "" @@ -12840,10 +12839,9 @@ "label\n" "string.text" msgid "Custom" -msgstr "" +msgstr "Vlastný" #: sidebarwrap.ui -#, fuzzy msgctxt "" "sidebarwrap.ui\n" "spacinglist\n" @@ -12859,7 +12857,7 @@ "1\n" "stringlist.text" msgid "Extra Small (0.16cm)" -msgstr "" +msgstr "Veľmi malé (0,16 cm)" #: sidebarwrap.ui msgctxt "" @@ -12868,7 +12866,7 @@ "2\n" "stringlist.text" msgid "Small (0.32cm)" -msgstr "" +msgstr "Malé (0,32 cm)" #: sidebarwrap.ui msgctxt "" @@ -12877,7 +12875,7 @@ "3\n" "stringlist.text" msgid "Small Medium (0.64cm)" -msgstr "" +msgstr "MenÅ¡ie stredné (0,64 cm)" #: sidebarwrap.ui msgctxt "" @@ -12886,7 +12884,7 @@ "4\n" "stringlist.text" msgid "Medium (0.95cm)" -msgstr "" +msgstr "Stredný (0,95 cm)" #: sidebarwrap.ui msgctxt "" @@ -12895,7 +12893,7 @@ "5\n" "stringlist.text" msgid "Medium Large (1.27cm)" -msgstr "" +msgstr "VäÄÅ¡ie stredné (1,27 cm)" #: sidebarwrap.ui msgctxt "" @@ -12904,7 +12902,7 @@ "6\n" "stringlist.text" msgid "Large (1.9cm)" -msgstr "" +msgstr "Veľké (1,9 cm)" #: sidebarwrap.ui msgctxt "" @@ -12913,7 +12911,7 @@ "7\n" "stringlist.text" msgid "Extra Large (2.54cm)" -msgstr "" +msgstr "Veľmi veľké (2,54 cm)" #: sortdialog.ui msgctxt "" @@ -14542,7 +14540,7 @@ "title\n" "string.text" msgid "Insert Index or Table of Contents" -msgstr "" +msgstr "VložiÅ¥ register alebo obsah" #: tocdialog.ui msgctxt "" @@ -14560,7 +14558,7 @@ "label\n" "string.text" msgid "Index or Table of Contents" -msgstr "" +msgstr "VložiÅ¥ register alebo obsah" #: tocdialog.ui msgctxt "" @@ -15136,7 +15134,7 @@ "label\n" "string.text" msgid "Create Index or Table of Contents" -msgstr "" +msgstr "VytvoriÅ¥ register alebo obsah" #: tocindexpage.ui msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/sl/filter/source/config/fragments/filters.po libreoffice-5.1.2~rc2/translations/source/sl/filter/source/config/fragments/filters.po --- libreoffice-5.1.1~rc2/translations/source/sl/filter/source/config/fragments/filters.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/sl/filter/source/config/fragments/filters.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,14 +3,14 @@ msgstr "" "Project-Id-Version: LibreOffice 5.1\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-12-16 23:53+0100\n" -"PO-Revision-Date: 2015-12-14 00:52+0200\n" +"POT-Creation-Date: 2016-02-14 18:41+0100\n" +"PO-Revision-Date: 2016-02-14 22:02+0200\n" "Last-Translator: Martin Srebotnjak <miles@filmsi.net>\n" "Language-Team: sl.libreoffice.org\n" +"Language: sl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: sl\n" "Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" "X-Generator: Virtaal 0.7.1\n" "X-Accelerator-Marker: ~\n" @@ -1898,6 +1898,15 @@ msgid "OpenOffice.org 1.0 HTML Template" msgstr "Predloga dokumenta HTML OpenOffice.org 1.0" +#: writer_web_jpg_Export.xcu +msgctxt "" +"writer_web_jpg_Export.xcu\n" +"writer_web_jpg_Export\n" +"UIName\n" +"value.text" +msgid "JPEG - Joint Photographic Experts Group" +msgstr "JPEG – Joint Photographic Experts Group" + #: writer_web_pdf_Export.xcu msgctxt "" "writer_web_pdf_Export.xcu\n" @@ -1907,6 +1916,15 @@ msgid "PDF - Portable Document Format" msgstr "PDF – Portable Document Format" +#: writer_web_png_Export.xcu +msgctxt "" +"writer_web_png_Export.xcu\n" +"writer_web_png_Export\n" +"UIName\n" +"value.text" +msgid "PNG - Portable Network Graphic" +msgstr "PNG – Portable Network Graphic" + #: writerglobal8.xcu msgctxt "" "writerglobal8.xcu\n" diff -Nru libreoffice-5.1.1~rc2/translations/source/sl/helpcontent2/source/text/shared/01.po libreoffice-5.1.2~rc2/translations/source/sl/helpcontent2/source/text/shared/01.po --- libreoffice-5.1.1~rc2/translations/source/sl/helpcontent2/source/text/shared/01.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/sl/helpcontent2/source/text/shared/01.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,14 +3,14 @@ msgstr "" "Project-Id-Version: LibreOffice 5.1\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-02-03 11:05+0100\n" +"POT-Creation-Date: 2016-02-14 18:41+0100\n" "PO-Revision-Date: 2016-02-05 23:04+0200\n" "Last-Translator: Martin Srebotnjak <miles@filmsi.net>\n" "Language-Team: sl.libreoffice.org\n" -"Language: sl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: sl\n" "Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" "X-Generator: Virtaal 0.7.1\n" "X-Accelerator-Marker: ~\n" diff -Nru libreoffice-5.1.1~rc2/translations/source/sl/sfx2/uiconfig/ui.po libreoffice-5.1.2~rc2/translations/source/sl/sfx2/uiconfig/ui.po --- libreoffice-5.1.1~rc2/translations/source/sl/sfx2/uiconfig/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/sl/sfx2/uiconfig/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,14 +3,14 @@ msgstr "" "Project-Id-Version: LibreOffice 5.1\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-02-03 11:05+0100\n" +"POT-Creation-Date: 2016-02-14 18:41+0100\n" "PO-Revision-Date: 2016-02-03 22:14+0200\n" "Last-Translator: Martin Srebotnjak <miles@filmsi.net>\n" "Language-Team: sl.libreoffice.org\n" -"Language: sl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: sl\n" "Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" "X-Generator: Virtaal 0.7.1\n" "X-Accelerator-Marker: ~\n" diff -Nru libreoffice-5.1.1~rc2/translations/source/sl/svtools/source/dialogs.po libreoffice-5.1.2~rc2/translations/source/sl/svtools/source/dialogs.po --- libreoffice-5.1.1~rc2/translations/source/sl/svtools/source/dialogs.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/sl/svtools/source/dialogs.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,13 +4,13 @@ "Project-Id-Version: LibreOffice 4.1\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-10-04 10:08+0200\n" -"PO-Revision-Date: 2015-09-05 15:43+0200\n" +"PO-Revision-Date: 2016-02-15 02:54+0200\n" "Last-Translator: Martin Srebotnjak <miles@filmsi.net>\n" "Language-Team: sl.libreoffice.org\n" +"Language: sl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: sl\n" "Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" "X-Generator: Virtaal 0.7.1\n" "X-Accelerator-Marker: ~\n" @@ -303,7 +303,7 @@ "STR_SVT_DEFAULT_SERVICE_LABEL\n" "string.text" msgid "$user$'s $service$" -msgstr "$servjce$ – $user$" +msgstr "$service$ – $user$" #: formats.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/sl/vcl/source/src.po libreoffice-5.1.2~rc2/translations/source/sl/vcl/source/src.po --- libreoffice-5.1.1~rc2/translations/source/sl/vcl/source/src.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/sl/vcl/source/src.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,14 +3,14 @@ msgstr "" "Project-Id-Version: LibreOffice 4.4\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-02-03 11:05+0100\n" +"POT-Creation-Date: 2016-02-14 18:41+0100\n" "PO-Revision-Date: 2016-02-03 22:12+0200\n" "Last-Translator: Martin Srebotnjak <miles@filmsi.net>\n" "Language-Team: sl.libreoffice.org\n" -"Language: sl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: sl\n" "Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" "X-Generator: Virtaal 0.7.1\n" "X-Accelerator-Marker: ~\n" diff -Nru libreoffice-5.1.1~rc2/translations/source/sq/helpcontent2/source/text/scalc/01.po libreoffice-5.1.2~rc2/translations/source/sq/helpcontent2/source/text/scalc/01.po --- libreoffice-5.1.1~rc2/translations/source/sq/helpcontent2/source/text/scalc/01.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/sq/helpcontent2/source/text/scalc/01.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\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-11-10 11:06+0000\n" -"Last-Translator: Indrit Bashkimi <indrit.bashkimi@gmail.com>\n" +"PO-Revision-Date: 2016-03-04 04:23+0000\n" +"Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: sq\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1447153566.000000\n" +"X-POOTLE-MTIME: 1457065432.000000\n" #: 01120000.xhp msgctxt "" @@ -60261,13 +60261,14 @@ msgstr "barabartë" #: 12090103.xhp +#, fuzzy msgctxt "" "12090103.xhp\n" "par_id3154254\n" "15\n" "help.text" msgid "<" -msgstr "" +msgstr "<" #: 12090103.xhp msgctxt "" @@ -60279,13 +60280,14 @@ msgstr "më pak se" #: 12090103.xhp +#, fuzzy msgctxt "" "12090103.xhp\n" "par_id3155335\n" "17\n" "help.text" msgid ">" -msgstr "" +msgstr ">" #: 12090103.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/sq/helpcontent2/source/text/shared/00.po libreoffice-5.1.2~rc2/translations/source/sq/helpcontent2/source/text/shared/00.po --- libreoffice-5.1.1~rc2/translations/source/sq/helpcontent2/source/text/shared/00.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/sq/helpcontent2/source/text/shared/00.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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-10 11:10+0000\n" -"Last-Translator: Indrit Bashkimi <indrit.bashkimi@gmail.com>\n" +"PO-Revision-Date: 2016-03-04 04:41+0000\n" +"Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: sq\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1447153813.000000\n" +"X-POOTLE-MTIME: 1457066497.000000\n" #: 00000001.xhp msgctxt "" @@ -3970,12 +3970,13 @@ msgstr "" #: 00000021.xhp +#, fuzzy msgctxt "" "00000021.xhp\n" "par_id100120091238112\n" "help.text" msgid "-" -msgstr "" +msgstr "-" #: 00000021.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/sq/helpcontent2/source/text/shared/01.po libreoffice-5.1.2~rc2/translations/source/sq/helpcontent2/source/text/shared/01.po --- libreoffice-5.1.1~rc2/translations/source/sq/helpcontent2/source/text/shared/01.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/sq/helpcontent2/source/text/shared/01.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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:16+0000\n" +"PO-Revision-Date: 2016-03-04 04:59+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: sq\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1452604619.000000\n" +"X-POOTLE-MTIME: 1457067560.000000\n" #: 01010000.xhp msgctxt "" @@ -7474,13 +7474,14 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ msgstr "" #: 02100001.xhp +#, fuzzy msgctxt "" "02100001.xhp\n" "par_id3166410\n" "158\n" "help.text" msgid "\\" -msgstr "" +msgstr "\\" #: 02100001.xhp msgctxt "" @@ -7687,13 +7693,14 @@ msgstr "" #: 02100001.xhp +#, fuzzy msgctxt "" "02100001.xhp\n" "par_id3149576\n" "37\n" "help.text" msgid "^$" -msgstr "" +msgstr "^$" #: 02100001.xhp msgctxt "" @@ -7705,13 +7712,14 @@ msgstr "Stilet e zbatuara të paragrafeve" #: 02100001.xhp +#, fuzzy msgctxt "" "02100001.xhp\n" "par_id3148550\n" "41\n" "help.text" msgid "^." -msgstr "" +msgstr "^." #: 02100001.xhp msgctxt "" @@ -7954,13 +7962,14 @@ msgstr "" #: 02100001.xhp +#, fuzzy msgctxt "" "02100001.xhp\n" "par_id3148616\n" "213\n" "help.text" msgid "( )" -msgstr "" +msgstr "( )" #: 02100001.xhp msgctxt "" @@ -15733,13 +15742,14 @@ msgstr "" #: 05020301.xhp +#, fuzzy msgctxt "" "05020301.xhp\n" "par_id3152801\n" "5\n" "help.text" msgid "#" -msgstr "" +msgstr "#" #: 05020301.xhp msgctxt "" @@ -15823,13 +15833,14 @@ msgstr "" #: 05020301.xhp +#, fuzzy msgctxt "" "05020301.xhp\n" "par_id3150355\n" "12\n" "help.text" msgid "####.#" -msgstr "" +msgstr "####.#" #: 05020301.xhp msgctxt "" @@ -15877,13 +15888,14 @@ msgstr "" #: 05020301.xhp +#, fuzzy msgctxt "" "05020301.xhp\n" "par_id3145315\n" "18\n" "help.text" msgid "# ???/???" -msgstr "" +msgstr "# ???/???" #: 05020301.xhp msgctxt "" @@ -15967,13 +15979,14 @@ msgstr "" #: 05020301.xhp +#, fuzzy msgctxt "" "05020301.xhp\n" "par_id3151223\n" "25\n" "help.text" msgid "#,###" -msgstr "" +msgstr "#,###" #: 05020301.xhp msgctxt "" @@ -15985,13 +15998,14 @@ msgstr "" #: 05020301.xhp +#, fuzzy msgctxt "" "05020301.xhp\n" "par_id3153961\n" "27\n" "help.text" msgid "#," -msgstr "" +msgstr "#," #: 05020301.xhp msgctxt "" @@ -19769,13 +19783,14 @@ msgstr "" #: 05030300.xhp +#, fuzzy msgctxt "" "05030300.xhp\n" "hd_id3152933\n" "26\n" "help.text" msgid "......." -msgstr "" +msgstr "......." #: 05030300.xhp msgctxt "" @@ -19787,13 +19802,14 @@ msgstr "" #: 05030300.xhp +#, fuzzy msgctxt "" "05030300.xhp\n" "hd_id3156280\n" "28\n" "help.text" msgid "------" -msgstr "" +msgstr "------" #: 05030300.xhp msgctxt "" @@ -19805,13 +19821,14 @@ msgstr "" #: 05030300.xhp +#, fuzzy msgctxt "" "05030300.xhp\n" "hd_id3157960\n" "30\n" "help.text" msgid "______" -msgstr "" +msgstr "______" #: 05030300.xhp msgctxt "" @@ -34523,13 +34540,14 @@ msgstr "" #: 06040100.xhp +#, fuzzy msgctxt "" "06040100.xhp\n" "par_id3148576\n" "37\n" "help.text" msgid "---" -msgstr "" +msgstr "---" #: 06040100.xhp msgctxt "" @@ -34541,13 +34559,14 @@ msgstr "" #: 06040100.xhp +#, fuzzy msgctxt "" "06040100.xhp\n" "par_id3154472\n" "39\n" "help.text" msgid "___" -msgstr "" +msgstr "___" #: 06040100.xhp msgctxt "" @@ -34577,13 +34596,14 @@ msgstr "" #: 06040100.xhp +#, fuzzy msgctxt "" "06040100.xhp\n" "par_id3148647\n" "43\n" "help.text" msgid "***" -msgstr "" +msgstr "***" #: 06040100.xhp msgctxt "" @@ -34613,13 +34633,14 @@ msgstr "" #: 06040100.xhp +#, fuzzy msgctxt "" "06040100.xhp\n" "par_id3145591\n" "47\n" "help.text" msgid "###" -msgstr "" +msgstr "###" #: 06040100.xhp msgctxt "" @@ -41087,13 +41108,14 @@ 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 "" @@ -41105,13 +41127,14 @@ msgstr "Fjalët kyçe" #: 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 "" @@ -41123,13 +41146,14 @@ msgstr "Përshkrimi" #: 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 "" @@ -41141,13 +41165,14 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/sq/helpcontent2/source/text/shared/02.po libreoffice-5.1.2~rc2/translations/source/sq/helpcontent2/source/text/shared/02.po --- libreoffice-5.1.1~rc2/translations/source/sq/helpcontent2/source/text/shared/02.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/sq/helpcontent2/source/text/shared/02.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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-07 11:49+0000\n" +"PO-Revision-Date: 2016-03-04 05:05+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: sq\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1436269742.000000\n" +"X-POOTLE-MTIME: 1457067954.000000\n" #: 01110000.xhp msgctxt "" @@ -6038,13 +6038,14 @@ msgstr "I pamundur" #: 01170102.xhp +#, fuzzy msgctxt "" "01170102.xhp\n" "par_id3153109\n" "26\n" "help.text" msgid "\"\"" -msgstr "" +msgstr "\"\"" #: 01170102.xhp msgctxt "" @@ -13858,13 +13859,14 @@ msgstr "" #: 12070100.xhp +#, fuzzy msgctxt "" "12070100.xhp\n" "hd_id3163802\n" "6\n" "help.text" msgid ">" -msgstr "" +msgstr ">" #: 12070100.xhp msgctxt "" @@ -13876,13 +13878,14 @@ msgstr "" #: 12070100.xhp +#, fuzzy msgctxt "" "12070100.xhp\n" "hd_id3149732\n" "7\n" "help.text" msgid "<" -msgstr "" +msgstr "<" #: 12070100.xhp msgctxt "" @@ -14171,13 +14174,14 @@ msgstr "" #: 12070200.xhp +#, fuzzy msgctxt "" "12070200.xhp\n" "hd_id3152551\n" "4\n" "help.text" msgid ">" -msgstr "" +msgstr ">" #: 12070200.xhp msgctxt "" @@ -15675,13 +15679,14 @@ msgstr "Shembull" #: 12100200.xhp +#, fuzzy msgctxt "" "12100200.xhp\n" "par_id3158411\n" "42\n" "help.text" msgid "?" -msgstr "" +msgstr "?" #: 12100200.xhp msgctxt "" @@ -15711,13 +15716,14 @@ msgstr "" #: 12100200.xhp +#, fuzzy msgctxt "" "12100200.xhp\n" "par_id3148803\n" "45\n" "help.text" msgid "*" -msgstr "" +msgstr "*" #: 12100200.xhp msgctxt "" @@ -15801,40 +15807,44 @@ msgstr "~Mundëso shprehjet e rregullta në formula" #: 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 -Nru libreoffice-5.1.1~rc2/translations/source/sq/helpcontent2/source/text/shared/autopi.po libreoffice-5.1.2~rc2/translations/source/sq/helpcontent2/source/text/shared/autopi.po --- libreoffice-5.1.1~rc2/translations/source/sq/helpcontent2/source/text/shared/autopi.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/sq/helpcontent2/source/text/shared/autopi.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\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-07 11:52+0000\n" -"Last-Translator: Indrit Bashkimi <indrit.bashkimi@gmail.com>\n" +"PO-Revision-Date: 2016-03-04 05:11+0000\n" +"Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: sq\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1436269930.000000\n" +"X-POOTLE-MTIME: 1457068267.000000\n" #: 01000000.xhp msgctxt "" @@ -3422,13 +3422,14 @@ 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 @@ 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 @@ msgstr "" #: 01090100.xhp +#, fuzzy msgctxt "" "01090100.xhp\n" "par_idN1074A\n" "help.text" msgid "^" -msgstr "" +msgstr "^" #: 01090100.xhp msgctxt "" @@ -4524,13 +4527,14 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/sq/helpcontent2/source/text/shared/explorer/database.po libreoffice-5.1.2~rc2/translations/source/sq/helpcontent2/source/text/shared/explorer/database.po --- libreoffice-5.1.1~rc2/translations/source/sq/helpcontent2/source/text/shared/explorer/database.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/sq/helpcontent2/source/text/shared/explorer/database.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-14 00:11+0000\n" +"PO-Revision-Date: 2016-03-04 05:17+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: sq\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1439511071.000000\n" +"X-POOTLE-MTIME: 1457068664.000000\n" #: 02000000.xhp msgctxt "" @@ -1760,13 +1760,14 @@ 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 @@ msgstr "" #: 02010100.xhp +#, fuzzy msgctxt "" "02010100.xhp\n" "par_id3147270\n" "51\n" "help.text" msgid "<" -msgstr "" +msgstr "<" #: 02010100.xhp msgctxt "" @@ -2796,13 +2798,14 @@ msgstr "No" #: 02010100.xhp +#, fuzzy msgctxt "" "02010100.xhp\n" "par_id3150997\n" "239\n" "help.text" msgid "." -msgstr "" +msgstr "." #: 02010100.xhp msgctxt "" @@ -6233,13 +6236,14 @@ msgstr "" #: 11030100.xhp +#, fuzzy msgctxt "" "11030100.xhp\n" "hd_id3156152\n" "6\n" "help.text" msgid "<" -msgstr "" +msgstr "<" #: 11030100.xhp msgctxt "" @@ -6269,13 +6273,14 @@ msgstr "" #: 11030100.xhp +#, fuzzy msgctxt "" "11030100.xhp\n" "hd_id3149579\n" "8\n" "help.text" msgid ">" -msgstr "" +msgstr ">" #: 11030100.xhp msgctxt "" @@ -12421,12 +12426,13 @@ msgstr "" #: querywizard04.xhp +#, fuzzy msgctxt "" "querywizard04.xhp\n" "par_idN105F1\n" "help.text" msgid "-" -msgstr "" +msgstr "-" #: querywizard04.xhp msgctxt "" @@ -14445,12 +14451,13 @@ msgstr "" #: tablewizard02.xhp +#, fuzzy msgctxt "" "tablewizard02.xhp\n" "par_idN10574\n" "help.text" msgid "-" -msgstr "" +msgstr "-" #: tablewizard02.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/sq/helpcontent2/source/text/shared/optionen.po libreoffice-5.1.2~rc2/translations/source/sq/helpcontent2/source/text/shared/optionen.po --- libreoffice-5.1.1~rc2/translations/source/sq/helpcontent2/source/text/shared/optionen.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/sq/helpcontent2/source/text/shared/optionen.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "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-06-19 11:56+0000\n" -"Last-Translator: Indrit Bashkimi <indrit.bashkimi@gmail.com>\n" +"PO-Revision-Date: 2016-03-04 05:33+0000\n" +"Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: sq\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1434714998.000000\n" +"X-POOTLE-MTIME: 1457069633.000000\n" #: 01000000.xhp msgctxt "" @@ -2670,13 +2670,14 @@ 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 @@ msgstr "" #: 01010501.xhp +#, fuzzy msgctxt "" "01010501.xhp\n" "hd_id3158409\n" "13\n" "help.text" msgid "-->" -msgstr "" +msgstr "-->" #: 01010501.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/sq/helpcontent2/source/text/swriter/01.po libreoffice-5.1.2~rc2/translations/source/sq/helpcontent2/source/text/swriter/01.po --- libreoffice-5.1.1~rc2/translations/source/sq/helpcontent2/source/text/swriter/01.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/sq/helpcontent2/source/text/swriter/01.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-07 11:57+0000\n" +"PO-Revision-Date: 2016-03-04 06:34+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: sq\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1436270270.000000\n" +"X-POOTLE-MTIME: 1457073261.000000\n" #: 01120000.xhp msgctxt "" @@ -10954,13 +10954,14 @@ msgstr "" #: 04120201.xhp +#, fuzzy msgctxt "" "04120201.xhp\n" "hd_id3145418\n" "32\n" "help.text" msgid "<" -msgstr "" +msgstr "<" #: 04120201.xhp msgctxt "" @@ -14425,13 +14426,14 @@ 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 "" @@ -27647,12 +27649,13 @@ msgstr "" #: mm_cusaddfie.xhp +#, fuzzy msgctxt "" "mm_cusaddfie.xhp\n" "par_idN10570\n" "help.text" msgid ">" -msgstr "" +msgstr ">" #: mm_cusaddfie.xhp msgctxt "" @@ -27663,12 +27666,13 @@ msgstr "" #: mm_cusaddfie.xhp +#, fuzzy msgctxt "" "mm_cusaddfie.xhp\n" "par_idN10577\n" "help.text" msgid "<" -msgstr "" +msgstr "<" #: mm_cusaddfie.xhp msgctxt "" @@ -27855,12 +27859,13 @@ msgstr "" #: mm_cusgrelin.xhp +#, fuzzy msgctxt "" "mm_cusgrelin.xhp\n" "par_idN10558\n" "help.text" msgid ">" -msgstr "" +msgstr ">" #: mm_cusgrelin.xhp msgctxt "" @@ -27871,12 +27876,13 @@ msgstr "" #: mm_cusgrelin.xhp +#, fuzzy msgctxt "" "mm_cusgrelin.xhp\n" "par_idN1055F\n" "help.text" msgid "<" -msgstr "" +msgstr "<" #: mm_cusgrelin.xhp msgctxt "" @@ -28311,12 +28317,13 @@ msgstr "" #: mm_newaddblo.xhp +#, fuzzy msgctxt "" "mm_newaddblo.xhp\n" "par_idN10570\n" "help.text" msgid ">" -msgstr "" +msgstr ">" #: mm_newaddblo.xhp msgctxt "" @@ -28327,12 +28334,13 @@ msgstr "" #: mm_newaddblo.xhp +#, fuzzy msgctxt "" "mm_newaddblo.xhp\n" "par_idN10577\n" "help.text" msgid "<" -msgstr "" +msgstr "<" #: mm_newaddblo.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/sq/helpcontent2/source/text/swriter/02.po libreoffice-5.1.2~rc2/translations/source/sq/helpcontent2/source/text/swriter/02.po --- libreoffice-5.1.1~rc2/translations/source/sq/helpcontent2/source/text/swriter/02.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/sq/helpcontent2/source/text/swriter/02.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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-07 11:58+0000\n" +"PO-Revision-Date: 2016-03-04 06:36+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: sq\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1436270291.000000\n" +"X-POOTLE-MTIME: 1457073374.000000\n" #: 02110000.xhp msgctxt "" @@ -1666,13 +1666,14 @@ msgstr "Zbritja -" #: 14020000.xhp +#, fuzzy msgctxt "" "14020000.xhp\n" "par_id3150087\n" "12\n" "help.text" msgid "-" -msgstr "" +msgstr "-" #: 14020000.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/sq/instsetoo_native/inc_openoffice/windows/msi_languages.po libreoffice-5.1.2~rc2/translations/source/sq/instsetoo_native/inc_openoffice/windows/msi_languages.po --- libreoffice-5.1.1~rc2/translations/source/sq/instsetoo_native/inc_openoffice/windows/msi_languages.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/sq/instsetoo_native/inc_openoffice/windows/msi_languages.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\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-12 13:26+0200\n" +"POT-Creation-Date: 2016-03-29 16:07+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff -Nru libreoffice-5.1.1~rc2/translations/source/sq/librelogo/source/pythonpath.po libreoffice-5.1.2~rc2/translations/source/sq/librelogo/source/pythonpath.po --- libreoffice-5.1.1~rc2/translations/source/sq/librelogo/source/pythonpath.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/sq/librelogo/source/pythonpath.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: LibO 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-06-17 08:58+0000\n" -"Last-Translator: Indrit Bashkimi <indrit.bashkimi@gmail.com>\n" +"PO-Revision-Date: 2016-03-09 07:42+0000\n" +"Last-Translator: system user <>\n" "Language-Team: none\n" "Language: sq\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1434531501.000000\n" +"X-POOTLE-MTIME: 1457509350.000000\n" #: LibreLogo_en_US.properties msgctxt "" @@ -769,20 +769,22 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/sq/wizards/source/formwizard.po libreoffice-5.1.2~rc2/translations/source/sq/wizards/source/formwizard.po --- libreoffice-5.1.1~rc2/translations/source/sq/wizards/source/formwizard.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/sq/wizards/source/formwizard.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "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-07-03 14:29+0000\n" +"PO-Revision-Date: 2016-03-09 09:54+0000\n" "Last-Translator: system user <>\n" "Language-Team: Albanian <>\n" "Language: sq\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1435933769.000000\n" +"X-POOTLE-MTIME: 1457517294.000000\n" #: dbwizres.src msgctxt "" @@ -4919,12 +4919,13 @@ msgstr "Zgjidh..." #: dbwizres.src +#, fuzzy msgctxt "" "dbwizres.src\n" "RID_WEBWIZARDDIALOG_START +142\n" "string.text" msgid "<default>" -msgstr "" +msgstr "<default>" #: dbwizres.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/ss/cui/uiconfig/ui.po libreoffice-5.1.2~rc2/translations/source/ss/cui/uiconfig/ui.po --- libreoffice-5.1.1~rc2/translations/source/ss/cui/uiconfig/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ss/cui/uiconfig/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 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:50+0000\n" +"PO-Revision-Date: 2016-03-09 07:45+0000\n" "Last-Translator: system user <>\n" "Language-Team: none\n" "Language: ss\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1452264641.000000\n" +"X-POOTLE-MTIME: 1457509537.000000\n" #: aboutconfigdialog.ui msgctxt "" @@ -14062,31 +14062,34 @@ 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 @@ -17365,40 +17368,44 @@ 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 "" @@ -17419,40 +17426,44 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/ss/dbaccess/uiconfig/ui.po libreoffice-5.1.2~rc2/translations/source/ss/dbaccess/uiconfig/ui.po --- libreoffice-5.1.1~rc2/translations/source/ss/dbaccess/uiconfig/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ss/dbaccess/uiconfig/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: LibO 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 12:23+0000\n" -"Last-Translator: Anonymous Pootle User\n" +"PO-Revision-Date: 2016-03-09 07:50+0000\n" +"Last-Translator: system user <>\n" "Language-Team: none\n" "Language: ss\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: 1366028626.0\n" +"X-POOTLE-MTIME: 1457509839.000000\n" #: admindialog.ui msgctxt "" @@ -1927,22 +1927,24 @@ 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 @@ msgstr "" #: queryfilterdialog.ui +#, fuzzy msgctxt "" "queryfilterdialog.ui\n" "cond1\n" "4\n" "stringlist.text" msgid ">" -msgstr "" +msgstr ">" #: queryfilterdialog.ui msgctxt "" @@ -3016,58 +3019,64 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/ss/extensions/uiconfig/sabpilot/ui.po libreoffice-5.1.2~rc2/translations/source/ss/extensions/uiconfig/sabpilot/ui.po --- libreoffice-5.1.1~rc2/translations/source/ss/extensions/uiconfig/sabpilot/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ss/extensions/uiconfig/sabpilot/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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 03:13+0000\n" +"PO-Revision-Date: 2016-03-09 07:58+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: ss\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1435288380.000000\n" +"X-POOTLE-MTIME: 1457510320.000000\n" #: contentfieldpage.ui msgctxt "" @@ -280,13 +280,14 @@ msgstr "" #: gridfieldsselectionpage.ui +#, fuzzy msgctxt "" "gridfieldsselectionpage.ui\n" "fieldright\n" "label\n" "string.text" msgid "->" -msgstr "" +msgstr "->" #: gridfieldsselectionpage.ui msgctxt "" @@ -298,13 +299,14 @@ msgstr "" #: gridfieldsselectionpage.ui +#, fuzzy msgctxt "" "gridfieldsselectionpage.ui\n" "fieldleft\n" "label\n" "string.text" msgid "<-" -msgstr "" +msgstr "<-" #: gridfieldsselectionpage.ui msgctxt "" @@ -379,22 +381,24 @@ 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 @@ msgstr "" #: tableselectionpage.ui +#, fuzzy msgctxt "" "tableselectionpage.ui\n" "search\n" "label\n" "string.text" msgid "_..." -msgstr "" +msgstr "_..." #: tableselectionpage.ui msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/ss/librelogo/source/pythonpath.po libreoffice-5.1.2~rc2/translations/source/ss/librelogo/source/pythonpath.po --- libreoffice-5.1.1~rc2/translations/source/ss/librelogo/source/pythonpath.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ss/librelogo/source/pythonpath.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,17 +3,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: 2014-05-02 00:06+0200\n" -"PO-Revision-Date: 2013-04-15 12:23+0000\n" -"Last-Translator: Anonymous Pootle User\n" +"POT-Creation-Date: 2015-04-22 23:40+0200\n" +"PO-Revision-Date: 2016-03-09 08:14+0000\n" +"Last-Translator: system user <>\n" "Language-Team: none\n" "Language: ss\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: 1366028633.0\n" +"X-POOTLE-MTIME: 1457511283.000000\n" #: LibreLogo_en_US.properties msgctxt "" @@ -796,20 +796,22 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/ss/officecfg/registry/data/org/openoffice/Office.po libreoffice-5.1.2~rc2/translations/source/ss/officecfg/registry/data/org/openoffice/Office.po --- libreoffice-5.1.1~rc2/translations/source/ss/officecfg/registry/data/org/openoffice/Office.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ss/officecfg/registry/data/org/openoffice/Office.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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:13+0000\n" +"PO-Revision-Date: 2016-03-09 08:22+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: ss\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1438902826.000000\n" +"X-POOTLE-MTIME: 1457511721.000000\n" #: Addons.xcu msgctxt "" @@ -1437,13 +1437,14 @@ msgstr "" #: PresentationMinimizer.xcu +#, fuzzy msgctxt "" "PresentationMinimizer.xcu\n" "..PresentationMinimizer.Strings\n" "STR_FILESIZESEPARATOR\n" "value.text" msgid "." -msgstr "" +msgstr "." #: PresentationMinimizer.xcu msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/ss/reportdesign/uiconfig/dbreport/ui.po libreoffice-5.1.2~rc2/translations/source/ss/reportdesign/uiconfig/dbreport/ui.po --- libreoffice-5.1.1~rc2/translations/source/ss/reportdesign/uiconfig/dbreport/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ss/reportdesign/uiconfig/dbreport/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 15:38+0000\n" +"PO-Revision-Date: 2016-03-09 08:39+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: ss\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1416411501.000000\n" +"X-POOTLE-MTIME: 1457512788.000000\n" #: backgrounddialog.ui msgctxt "" @@ -196,13 +196,14 @@ msgstr "" #: conditionwin.ui +#, fuzzy msgctxt "" "conditionwin.ui\n" "lhsButton\n" "label\n" "string.text" msgid "..." -msgstr "" +msgstr "..." #: conditionwin.ui msgctxt "" @@ -214,13 +215,14 @@ msgstr "" #: conditionwin.ui +#, fuzzy msgctxt "" "conditionwin.ui\n" "rhsButton\n" "label\n" "string.text" msgid "..." -msgstr "" +msgstr "..." #: conditionwin.ui msgctxt "" @@ -277,13 +279,14 @@ msgstr "" #: conditionwin.ui +#, fuzzy msgctxt "" "conditionwin.ui\n" "removeButton\n" "label\n" "string.text" msgid "-" -msgstr "" +msgstr "-" #: conditionwin.ui msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/ss/sc/uiconfig/scalc/ui.po libreoffice-5.1.2~rc2/translations/source/ss/sc/uiconfig/scalc/ui.po --- libreoffice-5.1.1~rc2/translations/source/ss/sc/uiconfig/scalc/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ss/sc/uiconfig/scalc/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 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 03:29+0000\n" +"PO-Revision-Date: 2016-03-09 09:01+0000\n" "Last-Translator: system user <>\n" "Language-Team: none\n" "Language: ss\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1435289391.000000\n" +"X-POOTLE-MTIME: 1457514098.000000\n" #: advancedfilterdialog.ui msgctxt "" @@ -6389,22 +6389,24 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/ss/sd/source/ui/app.po libreoffice-5.1.2~rc2/translations/source/ss/sd/source/ui/app.po --- libreoffice-5.1.1~rc2/translations/source/ss/sd/source/ui/app.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ss/sd/source/ui/app.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 18:52+0000\n" +"PO-Revision-Date: 2016-03-09 09:15+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: ss\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1431543166.000000\n" +"X-POOTLE-MTIME: 1457514905.000000\n" #: menuids3_tmpl.src msgctxt "" @@ -3778,12 +3778,13 @@ msgstr "<inombolor>" #: strings.src +#, fuzzy msgctxt "" "strings.src\n" "STR_FIELD_PLACEHOLDER_COUNT\n" "string.text" msgid "<count>" -msgstr "" +msgstr "<count>" #: strings.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/ss/sd/uiconfig/simpress/ui.po libreoffice-5.1.2~rc2/translations/source/ss/sd/uiconfig/simpress/ui.po --- libreoffice-5.1.1~rc2/translations/source/ss/sd/uiconfig/simpress/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ss/sd/uiconfig/simpress/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 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 03:33+0000\n" +"PO-Revision-Date: 2016-03-09 09:17+0000\n" "Last-Translator: system user <>\n" "Language-Team: none\n" "Language: ss\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1435289601.000000\n" +"X-POOTLE-MTIME: 1457515075.000000\n" #: assistentdialog.ui msgctxt "" @@ -997,22 +997,24 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/ss/starmath/source.po libreoffice-5.1.2~rc2/translations/source/ss/starmath/source.po --- libreoffice-5.1.1~rc2/translations/source/ss/starmath/source.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ss/starmath/source.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\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-12 13:26+0200\n" +"POT-Creation-Date: 2016-03-29 16:07+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff -Nru libreoffice-5.1.1~rc2/translations/source/ss/sw/source/core/undo.po libreoffice-5.1.2~rc2/translations/source/ss/sw/source/core/undo.po --- libreoffice-5.1.1~rc2/translations/source/ss/sw/source/core/undo.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ss/sw/source/core/undo.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 19:05+0000\n" +"PO-Revision-Date: 2016-03-09 09:43+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: ss\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1431543934.000000\n" +"X-POOTLE-MTIME: 1457516624.000000\n" #: undo.src msgctxt "" @@ -807,20 +807,22 @@ msgstr "Litafula / I-indeksi iguculiwe" #: 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 -Nru libreoffice-5.1.1~rc2/translations/source/ss/sw/source/ui/dbui.po libreoffice-5.1.2~rc2/translations/source/ss/sw/source/ui/dbui.po --- libreoffice-5.1.1~rc2/translations/source/ss/sw/source/ui/dbui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ss/sw/source/ui/dbui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 19:08+0000\n" +"PO-Revision-Date: 2016-03-09 09:46+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: ss\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1431544087.000000\n" +"X-POOTLE-MTIME: 1457516766.000000\n" #: dbui.src msgctxt "" @@ -487,31 +487,34 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/ss/sw/source/ui/index.po libreoffice-5.1.2~rc2/translations/source/ss/sw/source/ui/index.po --- libreoffice-5.1.1~rc2/translations/source/ss/sw/source/ui/index.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ss/sw/source/ui/index.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,16 +3,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-01-05 14:45+0200\n" -"Last-Translator: Anonymous Pootle User\n" +"POT-Creation-Date: 2015-04-22 23:40+0200\n" +"PO-Revision-Date: 2016-03-09 09:47+0000\n" +"Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: ss\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: LibreOffice\n" +"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" +"X-POOTLE-MTIME: 1457516851.000000\n" #: cnttab.src #, fuzzy @@ -56,20 +57,22 @@ 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 @@ msgstr "" #: cnttab.src +#, fuzzy msgctxt "" "cnttab.src\n" "STR_TOKEN_PAGE_NUMS\n" "string.text" msgid "#" -msgstr "" +msgstr "#" #: cnttab.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/ss/sw/uiconfig/swriter/ui.po libreoffice-5.1.2~rc2/translations/source/ss/sw/uiconfig/swriter/ui.po --- libreoffice-5.1.1~rc2/translations/source/ss/sw/uiconfig/swriter/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ss/sw/uiconfig/swriter/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 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:15+0000\n" +"PO-Revision-Date: 2016-03-09 09:59+0000\n" "Last-Translator: system user <>\n" "Language-Team: none\n" "Language: ss\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1438902950.000000\n" +"X-POOTLE-MTIME: 1457517546.000000\n" #: abstractdialog.ui msgctxt "" @@ -2313,13 +2313,14 @@ msgstr "Jikisa litafula libe ngumbhalo" #: converttexttable.ui +#, fuzzy msgctxt "" "converttexttable.ui\n" "othered\n" "text\n" "string.text" msgid "," -msgstr "" +msgstr "," #: converttexttable.ui msgctxt "" @@ -2504,13 +2505,14 @@ msgstr "" #: createaddresslist.ui +#, fuzzy msgctxt "" "createaddresslist.ui\n" "PREV\n" "label\n" "string.text" msgid "<" -msgstr "" +msgstr "<" #: createaddresslist.ui msgctxt "" @@ -2522,13 +2524,14 @@ msgstr "" #: createaddresslist.ui +#, fuzzy msgctxt "" "createaddresslist.ui\n" "NEXT\n" "label\n" "string.text" msgid ">" -msgstr "" +msgstr ">" #: createaddresslist.ui msgctxt "" @@ -4434,13 +4437,14 @@ msgstr "" #: fldvarpage.ui +#, fuzzy msgctxt "" "fldvarpage.ui\n" "separator\n" "text\n" "string.text" msgid "." -msgstr "" +msgstr "." #: fldvarpage.ui msgctxt "" @@ -5422,22 +5426,24 @@ 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 @@ msgstr "Sikhundla X" #: insertcaption.ui +#, fuzzy msgctxt "" "insertcaption.ui\n" "separator_edit\n" "text\n" "string.text" msgid ": " -msgstr "" +msgstr ": " #: insertcaption.ui msgctxt "" @@ -6365,13 +6372,14 @@ 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 @@ msgstr "" #: mmpreparepage.ui +#, fuzzy msgctxt "" "mmpreparepage.ui\n" "prev\n" "label\n" "string.text" msgid "<" -msgstr "" +msgstr "<" #: mmpreparepage.ui msgctxt "" @@ -8725,13 +8734,14 @@ msgstr "" #: mmpreparepage.ui +#, fuzzy msgctxt "" "mmpreparepage.ui\n" "next\n" "label\n" "string.text" msgid ">" -msgstr "" +msgstr ">" #: mmpreparepage.ui #, fuzzy @@ -9581,13 +9591,14 @@ msgstr "Sikhundla X" #: optcaptionpage.ui +#, fuzzy msgctxt "" "optcaptionpage.ui\n" "numseparator\n" "text\n" "string.text" msgid ". " -msgstr "" +msgstr ". " #: optcaptionpage.ui #, fuzzy @@ -15712,40 +15723,44 @@ msgstr "[Kute]" #: 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 -Nru libreoffice-5.1.1~rc2/translations/source/ss/vcl/source/src.po libreoffice-5.1.2~rc2/translations/source/ss/vcl/source/src.po --- libreoffice-5.1.1~rc2/translations/source/ss/vcl/source/src.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ss/vcl/source/src.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 20:08+0000\n" +"PO-Revision-Date: 2016-03-09 10:03+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: ss\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1449864536.000000\n" +"X-POOTLE-MTIME: 1457517789.000000\n" #: app.src msgctxt "" @@ -1239,12 +1239,13 @@ msgstr "" #: print.src +#, fuzzy msgctxt "" "print.src\n" "SV_PRINT_INVALID_TXT\n" "string.text" msgid "<ignore>" -msgstr "" +msgstr "<ignore>" #: print.src msgctxt "" @@ -1519,13 +1520,14 @@ msgstr "" #: units.src +#, fuzzy msgctxt "" "units.src\n" "SV_FUNIT_STRINGS\n" "°\n" "itemlist.text" msgid "°" -msgstr "" +msgstr "°" #: units.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/ss/wizards/source/formwizard.po libreoffice-5.1.2~rc2/translations/source/ss/wizards/source/formwizard.po --- libreoffice-5.1.1~rc2/translations/source/ss/wizards/source/formwizard.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ss/wizards/source/formwizard.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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 19:13+0000\n" +"PO-Revision-Date: 2016-03-09 10:08+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: ss\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1431544418.000000\n" +"X-POOTLE-MTIME: 1457518132.000000\n" #: dbwizres.src msgctxt "" @@ -1537,12 +1537,13 @@ msgstr "<FIELDNAME> (<SORTMODE>)" #: dbwizres.src +#, fuzzy msgctxt "" "dbwizres.src\n" "RID_DB_QUERY_WIZARD_START + 94\n" "string.text" msgid "<FIELDNAME> <LOGICOPERATOR> <VALUE>" -msgstr "" +msgstr "<FIELDNAME> <LOGICOPERATOR> <VALUE>" #: dbwizres.src msgctxt "" @@ -1553,12 +1554,13 @@ msgstr "<CALCULATEDFUNCTION> <FIELDNAME>" #: dbwizres.src +#, fuzzy msgctxt "" "dbwizres.src\n" "RID_DB_QUERY_WIZARD_START + 96\n" "string.text" msgid "<FIELDNAME> <LOGICOPERATOR> <VALUE>" -msgstr "" +msgstr "<FIELDNAME> <LOGICOPERATOR> <VALUE>" #: dbwizres.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/st/cui/uiconfig/ui.po libreoffice-5.1.2~rc2/translations/source/st/cui/uiconfig/ui.po --- libreoffice-5.1.1~rc2/translations/source/st/cui/uiconfig/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/st/cui/uiconfig/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 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:51+0000\n" +"PO-Revision-Date: 2016-03-09 08:57+0000\n" "Last-Translator: system user <>\n" "Language-Team: none\n" "Language: st\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1452264679.000000\n" +"X-POOTLE-MTIME: 1457513832.000000\n" #: aboutconfigdialog.ui msgctxt "" @@ -14067,31 +14067,34 @@ 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 @@ -17372,40 +17375,44 @@ 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 "" @@ -17426,40 +17433,44 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/st/dbaccess/uiconfig/ui.po libreoffice-5.1.2~rc2/translations/source/st/dbaccess/uiconfig/ui.po --- libreoffice-5.1.1~rc2/translations/source/st/dbaccess/uiconfig/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/st/dbaccess/uiconfig/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,17 +4,17 @@ "Project-Id-Version: LibO 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 12:24+0000\n" -"Last-Translator: Anonymous Pootle User\n" +"PO-Revision-Date: 2016-03-09 09:03+0000\n" +"Last-Translator: system user <>\n" "Language-Team: none\n" "Language: st\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: LibreOffice\n" +"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1366028693.0\n" +"X-POOTLE-MTIME: 1457514183.000000\n" #: admindialog.ui msgctxt "" @@ -1928,22 +1928,24 @@ 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 @@ msgstr "" #: queryfilterdialog.ui +#, fuzzy msgctxt "" "queryfilterdialog.ui\n" "cond1\n" "4\n" "stringlist.text" msgid ">" -msgstr "" +msgstr ">" #: queryfilterdialog.ui msgctxt "" @@ -3017,58 +3020,64 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/st/extensions/uiconfig/sabpilot/ui.po libreoffice-5.1.2~rc2/translations/source/st/extensions/uiconfig/sabpilot/ui.po --- libreoffice-5.1.1~rc2/translations/source/st/extensions/uiconfig/sabpilot/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/st/extensions/uiconfig/sabpilot/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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 03:10+0000\n" +"PO-Revision-Date: 2016-03-09 09:09+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: st\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1435288237.000000\n" +"X-POOTLE-MTIME: 1457514548.000000\n" #: contentfieldpage.ui msgctxt "" @@ -281,13 +281,14 @@ msgstr "" #: gridfieldsselectionpage.ui +#, fuzzy msgctxt "" "gridfieldsselectionpage.ui\n" "fieldright\n" "label\n" "string.text" msgid "->" -msgstr "" +msgstr "->" #: gridfieldsselectionpage.ui msgctxt "" @@ -299,13 +300,14 @@ msgstr "" #: gridfieldsselectionpage.ui +#, fuzzy msgctxt "" "gridfieldsselectionpage.ui\n" "fieldleft\n" "label\n" "string.text" msgid "<-" -msgstr "" +msgstr "<-" #: gridfieldsselectionpage.ui msgctxt "" @@ -380,22 +382,24 @@ 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 @@ msgstr "" #: tableselectionpage.ui +#, fuzzy msgctxt "" "tableselectionpage.ui\n" "search\n" "label\n" "string.text" msgid "_..." -msgstr "" +msgstr "_..." #: tableselectionpage.ui msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/st/formula/source/core/resource.po libreoffice-5.1.2~rc2/translations/source/st/formula/source/core/resource.po --- libreoffice-5.1.1~rc2/translations/source/st/formula/source/core/resource.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/st/formula/source/core/resource.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\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-29 16:07+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff -Nru libreoffice-5.1.1~rc2/translations/source/st/librelogo/source/pythonpath.po libreoffice-5.1.2~rc2/translations/source/st/librelogo/source/pythonpath.po --- libreoffice-5.1.1~rc2/translations/source/st/librelogo/source/pythonpath.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/st/librelogo/source/pythonpath.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,18 +3,18 @@ msgstr "" "Project-Id-Version: LibO 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 12:25+0000\n" -"Last-Translator: Anonymous Pootle User\n" +"POT-Creation-Date: 2015-04-22 23:40+0200\n" +"PO-Revision-Date: 2016-03-09 09:22+0000\n" +"Last-Translator: system user <>\n" "Language-Team: none\n" "Language: st\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: LibreOffice\n" +"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1366028702.0\n" +"X-POOTLE-MTIME: 1457515367.000000\n" #: LibreLogo_en_US.properties msgctxt "" @@ -794,20 +794,22 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/st/officecfg/registry/data/org/openoffice/Office.po libreoffice-5.1.2~rc2/translations/source/st/officecfg/registry/data/org/openoffice/Office.po --- libreoffice-5.1.1~rc2/translations/source/st/officecfg/registry/data/org/openoffice/Office.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/st/officecfg/registry/data/org/openoffice/Office.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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:13+0000\n" +"PO-Revision-Date: 2016-03-09 09:29+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: st\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1438902836.000000\n" +"X-POOTLE-MTIME: 1457515751.000000\n" #: Addons.xcu msgctxt "" @@ -1437,13 +1437,14 @@ msgstr "" #: PresentationMinimizer.xcu +#, fuzzy msgctxt "" "PresentationMinimizer.xcu\n" "..PresentationMinimizer.Strings\n" "STR_FILESIZESEPARATOR\n" "value.text" msgid "." -msgstr "" +msgstr "." #: PresentationMinimizer.xcu msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/st/reportdesign/uiconfig/dbreport/ui.po libreoffice-5.1.2~rc2/translations/source/st/reportdesign/uiconfig/dbreport/ui.po --- libreoffice-5.1.1~rc2/translations/source/st/reportdesign/uiconfig/dbreport/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/st/reportdesign/uiconfig/dbreport/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 15:56+0000\n" +"PO-Revision-Date: 2016-03-09 09:48+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: st\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1416412593.000000\n" +"X-POOTLE-MTIME: 1457516923.000000\n" #: backgrounddialog.ui msgctxt "" @@ -197,13 +197,14 @@ msgstr "" #: conditionwin.ui +#, fuzzy msgctxt "" "conditionwin.ui\n" "lhsButton\n" "label\n" "string.text" msgid "..." -msgstr "" +msgstr "..." #: conditionwin.ui msgctxt "" @@ -215,13 +216,14 @@ msgstr "" #: conditionwin.ui +#, fuzzy msgctxt "" "conditionwin.ui\n" "rhsButton\n" "label\n" "string.text" msgid "..." -msgstr "" +msgstr "..." #: conditionwin.ui msgctxt "" @@ -278,13 +280,14 @@ msgstr "" #: conditionwin.ui +#, fuzzy msgctxt "" "conditionwin.ui\n" "removeButton\n" "label\n" "string.text" msgid "-" -msgstr "" +msgstr "-" #: conditionwin.ui msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/st/sc/uiconfig/scalc/ui.po libreoffice-5.1.2~rc2/translations/source/st/sc/uiconfig/scalc/ui.po --- libreoffice-5.1.1~rc2/translations/source/st/sc/uiconfig/scalc/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/st/sc/uiconfig/scalc/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 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 03:23+0000\n" +"PO-Revision-Date: 2016-03-09 10:15+0000\n" "Last-Translator: system user <>\n" "Language-Team: none\n" "Language: st\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1435289004.000000\n" +"X-POOTLE-MTIME: 1457518505.000000\n" #: advancedfilterdialog.ui msgctxt "" @@ -6390,22 +6390,24 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/st/scaddins/source/analysis.po libreoffice-5.1.2~rc2/translations/source/st/scaddins/source/analysis.po --- libreoffice-5.1.1~rc2/translations/source/st/scaddins/source/analysis.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/st/scaddins/source/analysis.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-11-24 04:39-0500\n" +"POT-Creation-Date: 2016-03-29 16:07+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff -Nru libreoffice-5.1.1~rc2/translations/source/st/sd/source/ui/app.po libreoffice-5.1.2~rc2/translations/source/st/sd/source/ui/app.po --- libreoffice-5.1.1~rc2/translations/source/st/sd/source/ui/app.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/st/sd/source/ui/app.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 19:33+0000\n" +"PO-Revision-Date: 2016-03-09 10:30+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: st\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1431545596.000000\n" +"X-POOTLE-MTIME: 1457519453.000000\n" #: menuids3_tmpl.src msgctxt "" @@ -3779,12 +3779,13 @@ msgstr "<nomoro>" #: strings.src +#, fuzzy msgctxt "" "strings.src\n" "STR_FIELD_PLACEHOLDER_COUNT\n" "string.text" msgid "<count>" -msgstr "" +msgstr "<count>" #: strings.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/st/sd/uiconfig/simpress/ui.po libreoffice-5.1.2~rc2/translations/source/st/sd/uiconfig/simpress/ui.po --- libreoffice-5.1.1~rc2/translations/source/st/sd/uiconfig/simpress/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/st/sd/uiconfig/simpress/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 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 03:25+0000\n" +"PO-Revision-Date: 2016-03-09 10:33+0000\n" "Last-Translator: system user <>\n" "Language-Team: none\n" "Language: st\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1435289134.000000\n" +"X-POOTLE-MTIME: 1457519580.000000\n" #: assistentdialog.ui msgctxt "" @@ -998,22 +998,24 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/st/starmath/source.po libreoffice-5.1.2~rc2/translations/source/st/starmath/source.po --- libreoffice-5.1.1~rc2/translations/source/st/starmath/source.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/st/starmath/source.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\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-12 13:26+0200\n" +"POT-Creation-Date: 2016-03-29 16:07+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff -Nru libreoffice-5.1.1~rc2/translations/source/st/sw/source/core/undo.po libreoffice-5.1.2~rc2/translations/source/st/sw/source/core/undo.po --- libreoffice-5.1.1~rc2/translations/source/st/sw/source/core/undo.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/st/sw/source/core/undo.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 19:43+0000\n" +"PO-Revision-Date: 2016-03-09 10:59+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: st\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1431546196.000000\n" +"X-POOTLE-MTIME: 1457521177.000000\n" #: undo.src msgctxt "" @@ -808,20 +808,22 @@ msgstr "Theibole/indekse fetotswe" #: 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 -Nru libreoffice-5.1.1~rc2/translations/source/st/sw/source/ui/dbui.po libreoffice-5.1.2~rc2/translations/source/st/sw/source/ui/dbui.po --- libreoffice-5.1.1~rc2/translations/source/st/sw/source/ui/dbui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/st/sw/source/ui/dbui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 19:44+0000\n" +"PO-Revision-Date: 2016-03-09 11:02+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: st\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1431546298.000000\n" +"X-POOTLE-MTIME: 1457521338.000000\n" #: dbui.src msgctxt "" @@ -488,31 +488,34 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/st/sw/source/ui/index.po libreoffice-5.1.2~rc2/translations/source/st/sw/source/ui/index.po --- libreoffice-5.1.1~rc2/translations/source/st/sw/source/ui/index.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/st/sw/source/ui/index.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,17 +3,18 @@ msgstr "" "Project-Id-Version: PACKAGE 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:47+0200\n" -"Last-Translator: Anonymous Pootle User\n" +"POT-Creation-Date: 2015-04-22 23:40+0200\n" +"PO-Revision-Date: 2016-03-09 11:04+0000\n" +"Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: st\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: LibreOffice\n" +"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" +"X-POOTLE-MTIME: 1457521445.000000\n" #: cnttab.src #, fuzzy @@ -57,20 +58,22 @@ 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 @@ msgstr "" #: cnttab.src +#, fuzzy msgctxt "" "cnttab.src\n" "STR_TOKEN_PAGE_NUMS\n" "string.text" msgid "#" -msgstr "" +msgstr "#" #: cnttab.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/st/sw/uiconfig/swriter/ui.po libreoffice-5.1.2~rc2/translations/source/st/sw/uiconfig/swriter/ui.po --- libreoffice-5.1.1~rc2/translations/source/st/sw/uiconfig/swriter/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/st/sw/uiconfig/swriter/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 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:15+0000\n" +"PO-Revision-Date: 2016-03-09 11:15+0000\n" "Last-Translator: system user <>\n" "Language-Team: none\n" "Language: st\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1438902957.000000\n" +"X-POOTLE-MTIME: 1457522140.000000\n" #: abstractdialog.ui msgctxt "" @@ -2319,13 +2319,14 @@ msgstr "Fetolela Theibole ho Temana" #: converttexttable.ui +#, fuzzy msgctxt "" "converttexttable.ui\n" "othered\n" "text\n" "string.text" msgid "," -msgstr "" +msgstr "," #: converttexttable.ui msgctxt "" @@ -2510,13 +2511,14 @@ msgstr "" #: createaddresslist.ui +#, fuzzy msgctxt "" "createaddresslist.ui\n" "PREV\n" "label\n" "string.text" msgid "<" -msgstr "" +msgstr "<" #: createaddresslist.ui msgctxt "" @@ -2528,13 +2530,14 @@ msgstr "" #: createaddresslist.ui +#, fuzzy msgctxt "" "createaddresslist.ui\n" "NEXT\n" "label\n" "string.text" msgid ">" -msgstr "" +msgstr ">" #: createaddresslist.ui msgctxt "" @@ -4441,13 +4444,14 @@ msgstr "" #: fldvarpage.ui +#, fuzzy msgctxt "" "fldvarpage.ui\n" "separator\n" "text\n" "string.text" msgid "." -msgstr "" +msgstr "." #: fldvarpage.ui msgctxt "" @@ -5426,22 +5430,24 @@ 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 "" @@ -6352,13 +6358,14 @@ msgstr "Boemo" #: insertcaption.ui +#, fuzzy msgctxt "" "insertcaption.ui\n" "separator_edit\n" "text\n" "string.text" msgid ": " -msgstr "" +msgstr ": " #: insertcaption.ui msgctxt "" @@ -6370,13 +6377,14 @@ msgstr "" #: insertcaption.ui +#, fuzzy msgctxt "" "insertcaption.ui\n" "num_separator_edit\n" "text\n" "string.text" msgid ". " -msgstr "" +msgstr ". " #: insertcaption.ui msgctxt "" @@ -8713,13 +8721,14 @@ msgstr "" #: mmpreparepage.ui +#, fuzzy msgctxt "" "mmpreparepage.ui\n" "prev\n" "label\n" "string.text" msgid "<" -msgstr "" +msgstr "<" #: mmpreparepage.ui msgctxt "" @@ -8731,13 +8740,14 @@ msgstr "" #: mmpreparepage.ui +#, fuzzy msgctxt "" "mmpreparepage.ui\n" "next\n" "label\n" "string.text" msgid ">" -msgstr "" +msgstr ">" #: mmpreparepage.ui #, fuzzy @@ -9585,13 +9595,14 @@ msgstr "Boemo" #: optcaptionpage.ui +#, fuzzy msgctxt "" "optcaptionpage.ui\n" "numseparator\n" "text\n" "string.text" msgid ". " -msgstr "" +msgstr ". " #: optcaptionpage.ui #, fuzzy @@ -15715,40 +15726,44 @@ msgstr "[Letho]" #: 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 -Nru libreoffice-5.1.1~rc2/translations/source/st/vcl/source/src.po libreoffice-5.1.2~rc2/translations/source/st/vcl/source/src.po --- libreoffice-5.1.1~rc2/translations/source/st/vcl/source/src.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/st/vcl/source/src.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 20:08+0000\n" +"PO-Revision-Date: 2016-03-09 11:18+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: st\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1449864527.000000\n" +"X-POOTLE-MTIME: 1457522332.000000\n" #: app.src msgctxt "" @@ -1225,12 +1225,13 @@ 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 @@ msgstr "" #: units.src +#, fuzzy msgctxt "" "units.src\n" "SV_FUNIT_STRINGS\n" "°\n" "itemlist.text" msgid "°" -msgstr "" +msgstr "°" #: units.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/st/wizards/source/formwizard.po libreoffice-5.1.2~rc2/translations/source/st/wizards/source/formwizard.po --- libreoffice-5.1.1~rc2/translations/source/st/wizards/source/formwizard.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/st/wizards/source/formwizard.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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-04-25 11:36+0000\n" +"PO-Revision-Date: 2016-03-09 11:23+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: st\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1429961812.000000\n" +"X-POOTLE-MTIME: 1457522631.000000\n" #: dbwizres.src msgctxt "" @@ -1538,12 +1538,13 @@ msgstr "<FIELDNAME> (<SORTMODE>)" #: dbwizres.src +#, fuzzy msgctxt "" "dbwizres.src\n" "RID_DB_QUERY_WIZARD_START + 94\n" "string.text" msgid "<FIELDNAME> <LOGICOPERATOR> <VALUE>" -msgstr "" +msgstr "<FIELDNAME> <LOGICOPERATOR> <VALUE>" #: dbwizres.src msgctxt "" @@ -1554,12 +1555,13 @@ msgstr "<CALCULATEDFUNCTION> <FIELDNAME>" #: dbwizres.src +#, fuzzy msgctxt "" "dbwizres.src\n" "RID_DB_QUERY_WIZARD_START + 96\n" "string.text" msgid "<FIELDNAME> <LOGICOPERATOR> <VALUE>" -msgstr "" +msgstr "<FIELDNAME> <LOGICOPERATOR> <VALUE>" #: dbwizres.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/sv/helpcontent2/source/text/shared/00.po libreoffice-5.1.2~rc2/translations/source/sv/helpcontent2/source/text/shared/00.po --- libreoffice-5.1.1~rc2/translations/source/sv/helpcontent2/source/text/shared/00.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/sv/helpcontent2/source/text/shared/00.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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-23 10:07+0000\n" +"PO-Revision-Date: 2016-02-25 11:04+0000\n" "Last-Translator: Niklas Johansson <sleeping.pillow@gmail.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: sv\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1456222076.000000\n" +"X-POOTLE-MTIME: 1456398256.000000\n" #: 00000001.xhp msgctxt "" @@ -8927,14 +8927,13 @@ msgstr "<variable id=\"accessibility\">Välj <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME – Inställningar</caseinline><defaultinline>Verktyg – Alternativ</defaultinline></switchinline> – $[officename] – Hjälpmedel</emph></variable>" #: 00000406.xhp -#, fuzzy msgctxt "" "00000406.xhp\n" "par_id3144746\n" "153\n" "help.text" msgid "<variable id=\"appearance\">Choose <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - $[officename] - Application Colors</emph></variable>" -msgstr "<variable id=\"appearance\">Välj <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME – Inställningar</caseinline><defaultinline>Verktyg – Alternativ</defaultinline></switchinline> – $[officename] – Visning</emph></variable>" +msgstr "<variable id=\"appearance\">Välj <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME – Inställningar</caseinline><defaultinline>Verktyg – Alternativ</defaultinline></switchinline> – $[officename] – Programfärger</emph></variable>" #: 00000406.xhp msgctxt "" @@ -9471,14 +9470,13 @@ msgstr "Hjälp-menyn" #: 00000408.xhp -#, fuzzy msgctxt "" "00000408.xhp\n" "par_id3150960\n" "2\n" "help.text" msgid "<variable id=\"content\">Choose <emph>Help - %PRODUCTNAME Help</emph></variable>" -msgstr "<variable id=\"content\">Menyn <emph>Hjälp - InnehÃ¥ll</emph></variable>" +msgstr "<variable id=\"content\">Menyn <emph>Hjälp - %PRODUCTNAME Hjälp</emph></variable>" #: 00000408.xhp msgctxt "" @@ -9923,7 +9921,6 @@ msgstr "Menyn Format" #: 00040500.xhp -#, fuzzy msgctxt "" "00040500.xhp\n" "hd_id3150347\n" @@ -9932,16 +9929,14 @@ msgstr "Menyn Format" #: 00040500.xhp -#, fuzzy msgctxt "" "00040500.xhp\n" "par_id3145356\n" "help.text" msgid "<variable id=\"standard\">Choose <emph>Format - Clear Direct Formatting</emph> </variable>" -msgstr "<variable id=\"standard\">Välj <emph>Format - Radera direktformatering</emph></variable>" +msgstr "<variable id=\"standard\">Menyn <emph>Format - Radera direktformatering</emph></variable>" #: 00040500.xhp -#, fuzzy msgctxt "" "00040500.xhp\n" "par_id3153244\n" @@ -9964,19 +9959,17 @@ "par_id3148998\n" "help.text" msgid "<image id=\"img_id3154894\" src=\"cmd/sc_outlineformat.png\"><alt id=\"alt_id3154894\">Icon</alt></image>" -msgstr "" +msgstr "<image id=\"img_id3154894\" src=\"cmd/sc_outlineformat.png\"><alt id=\"alt_id3154894\">Ikon</alt></image>" #: 00040500.xhp -#, fuzzy msgctxt "" "00040500.xhp\n" "par_id3149999\n" "help.text" msgid "Character" -msgstr "Teckenattribut" +msgstr "Tecken" #: 00040500.xhp -#, fuzzy msgctxt "" "00040500.xhp\n" "par_id3153935\n" @@ -10179,10 +10172,9 @@ "par_id3155995\n" "help.text" msgid "<image id=\"img_id3150495\" src=\"cmd/sc_paragraphdialog.png\"><alt id=\"alt_id3150495\">Icon</alt></image>" -msgstr "" +msgstr "<image id=\"img_id3150495\" src=\"cmd/sc_paragraphdialog.png\"><alt id=\"alt_id3150495\">Ikon</alt></image>" #: 00040500.xhp -#, fuzzy msgctxt "" "00040500.xhp\n" "par_id3147299\n" @@ -10191,7 +10183,6 @@ msgstr "Stycke" #: 00040500.xhp -#, fuzzy msgctxt "" "00040500.xhp\n" "par_id3147289\n" @@ -10200,58 +10191,52 @@ msgstr "Menyn <emph>Format - Stycke... -</emph> fliken <emph>Justering</emph>" #: 00040500.xhp -#, fuzzy msgctxt "" "00040500.xhp\n" "par_id3147352\n" "help.text" msgid "Choose <emph>View - Styles and Formatting</emph> - open context menu of an entry and choose <emph>Modify/New - Alignment</emph> tab" -msgstr "Välj <emph>Format - Formatmallar och formatering</emph> - öppna snabbmenyn för en post och välj fliken <emph>Ändra/Nytt - Justering</emph>" +msgstr "Menyn <emph>Visa - Formatmallar och formatering</emph> - öppna snabbmenyn för en post och välj fliken <emph>Ändra/Nytt - Justering</emph>" #: 00040500.xhp -#, fuzzy msgctxt "" "00040500.xhp\n" "par_id3154640\n" "help.text" msgid "Choose <emph>Format - Paragraph - Indents & Spacing</emph> tab" -msgstr "Menyn <emph>Format - Stycke... -</emph> fliken <emph>Indrag och avstÃ¥nd</emph>" +msgstr "Menyn <emph>Format - Stycke... -</emph> fliken <emph>Indrag och avstÃ¥nd</emph>" #: 00040500.xhp -#, fuzzy msgctxt "" "00040500.xhp\n" "par_id3152463\n" "help.text" msgid "Choose <emph>View - Styles and Formatting</emph> - open context menu of an entry and choose <emph>Modify/New - Indents & Spacing</emph> tab" -msgstr "Välj <emph>Format - Formatmallar och formatering</emph> - öppna snabbmenyn för en post och välj fliken <emph>Ändra/Nytt - Indrag och avstÃ¥nd</emph>" +msgstr "Menyn <emph>Visa - Formatmallar och formatering</emph> - öppna snabbmenyn för en post och välj fliken <emph>Ändra/Nytt - Indrag och avstÃ¥nd</emph>" #: 00040500.xhp -#, fuzzy msgctxt "" "00040500.xhp\n" "par_id3154319\n" "help.text" msgid "Choose <emph>Format - Paragraph - Tabs</emph> tab" -msgstr "Menyn <emph>Format - Stycke... -</emph> fliken <emph>Tabulator</emph>" +msgstr "Menyn <emph>Format - Stycke... -</emph> fliken <emph>Tabulator</emph>" #: 00040500.xhp -#, fuzzy msgctxt "" "00040500.xhp\n" "par_id3154833\n" "help.text" msgid "Choose <emph>View - Styles and Formatting</emph> - open context menu of an entry and choose <emph>Modify/New - Tabs</emph> tab" -msgstr "Välj <emph>Format - Formatmallar och formatering</emph> - öppna snabbmenyn för en post och välj fliken <emph>Ändra/Nytt - Flikar</emph>" +msgstr "Välj <emph>Visa - Formatmallar och formatering</emph> - öppna snabbmenyn för en post och välj fliken <emph>Ändra/Nytt - Tabbar</emph>" #: 00040500.xhp -#, fuzzy msgctxt "" "00040500.xhp\n" "par_id3159155\n" "help.text" msgid "Double-click the ruler" -msgstr "Dubbelklicka pÃ¥ linjallisten" +msgstr "Dubbelklicka pÃ¥ linjalen" #: 00040500.xhp msgctxt "" @@ -10262,22 +10247,20 @@ msgstr "(alla alternativ gäller bara för Writer eller Calc)" #: 00040500.xhp -#, fuzzy msgctxt "" "00040500.xhp\n" "par_id3156105\n" "help.text" msgid "Choose <emph>Format - Paragraph - Borders</emph> tab" -msgstr "Menyn <emph>Format - Stycke... -</emph> fliken <emph>Inramning</emph>" +msgstr "Menyn <emph>Format - Stycke... -</emph> fliken <emph>Inramning</emph>" #: 00040500.xhp -#, fuzzy msgctxt "" "00040500.xhp\n" "par_id3154149\n" "help.text" msgid "Choose <emph>Format - Image - Borders</emph> tab" -msgstr "Menyn <emph>Format - Bild...</emph> fliken <emph>Inramning</emph>" +msgstr "Menyn <emph>Format - Bild - Egenskaper...</emph> fliken <emph>Inramning</emph>" #: 00040500.xhp #, fuzzy @@ -10289,16 +10272,14 @@ msgstr "Välj <emph>Format - Ram/Objekt -fliken Inramning </emph>" #: 00040500.xhp -#, fuzzy msgctxt "" "00040500.xhp\n" "par_id3150048\n" "help.text" msgid "Choose <emph>Format - Page - Borders</emph> tab" -msgstr "Menyn <emph>Format - Sida... -</emph> fliken <emph>Inramning</emph>" +msgstr "Menyn <emph>Format - Sida... -</emph> fliken <emph>Inramning</emph>" #: 00040500.xhp -#, fuzzy msgctxt "" "00040500.xhp\n" "par_id3151148\n" @@ -10307,58 +10288,52 @@ msgstr "Menyn <emph>Format - Tecken... -</emph> fliken <emph>Inramning</emph>" #: 00040500.xhp -#, fuzzy msgctxt "" "00040500.xhp\n" "par_id3149911\n" "help.text" msgid "Choose <emph>View - Styles and Formatting</emph> - open context menu of an entry and choose <emph>Modify/New - Borders</emph> tab" -msgstr "Välj <emph>Format - Formatmallar och formatering</emph> - öppna snabbmenyn för en post och välj <emph>Ändra/Nytt</emph> - fliken <emph>Ramar</emph>" +msgstr "Menyn <emph>Visa - Formatmallar och formatering -</emph> öppna snabbmenyn för en post och välj <emph>Ändra/Nytt -</emph> fliken <emph>Inramning</emph>" #: 00040500.xhp -#, fuzzy msgctxt "" "00040500.xhp\n" "par_id3150094\n" "help.text" msgid "Choose <emph>Format - Page - Header - More</emph> button" -msgstr "Menyn <emph>Format - Sida... -</emph> fliken <emph>Sidhuvud - Tillägg</emph>" +msgstr "Menyn <emph>Format - Sida... -</emph> fliken <emph>Sidhuvud -</emph> knappen <emph>Mer...</emph>" #: 00040500.xhp -#, fuzzy msgctxt "" "00040500.xhp\n" "par_id3154501\n" "help.text" msgid "Choose <emph>Format - Page - Footer - More</emph> button" -msgstr "Välj knappen <emph>Format - Sida - Sidfot - Fler</emph>" +msgstr "Menyn <emph>Format - Sida... -</emph> fliken <emph>Sidfot -</emph> knappen <emph>Mer...</emph>" #: 00040500.xhp -#, fuzzy msgctxt "" "00040500.xhp\n" "par_id3148455\n" "help.text" msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Choose <emph>Format - Cells - Borders</emph> tab </caseinline></switchinline>" -msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Välj <emph>Format - Celler</emph> - fliken <emph>Inramning</emph></caseinline></switchinline>" +msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Menyn <emph>Format - Celler -</emph> fliken <emph>Inramning</emph></caseinline></switchinline>" #: 00040500.xhp -#, fuzzy msgctxt "" "00040500.xhp\n" "par_id3155915\n" "help.text" msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Menu <emph>Format - Paragraph</emph> - <emph>Border</emph> tab -<emph> Spacing to contents</emph> </caseinline></switchinline>" -msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Menyn <emph>Format - Stycke</emph> - <emph>Kantlinje</emph> (flik) -<emph> AvstÃ¥nd till innehÃ¥ll</emph></caseinline></switchinline>" +msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Menyn <emph>Format - Stycke... -</emph> fliken <emph>Inramning -</emph> gruppen <emph>AvstÃ¥nd till innehÃ¥ll</emph></caseinline></switchinline>" #: 00040500.xhp -#, fuzzy msgctxt "" "00040500.xhp\n" "par_id3159130\n" "help.text" msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Menu<emph> Format - Page - Border - Spacing to contents</emph> </caseinline></switchinline>" -msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Menyn<emph> Format - Sida - Kantlinje - AvstÃ¥nd till innehÃ¥ll</emph></caseinline></switchinline>" +msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Menyn<emph> Format - Sida... -</emph> fliken <emph>Inramning -</emph> gruppen <emph>AvstÃ¥nd till innehÃ¥ll</emph></caseinline></switchinline>" #: 00040500.xhp #, fuzzy @@ -10558,22 +10533,20 @@ msgstr "" #: 00040500.xhp -#, fuzzy msgctxt "" "00040500.xhp\n" "par_id3153534\n" "help.text" msgid "Styles and Formatting" -msgstr "Stylist" +msgstr "Formatmallar och formatering" #: 00040500.xhp -#, fuzzy msgctxt "" "00040500.xhp\n" "par_id3159313\n" "help.text" msgid "<switchinline select=\"appl\"><caseinline select=\"CHART\"> </caseinline><caseinline select=\"CALC\"> </caseinline><caseinline select=\"WRITER\"> </caseinline><caseinline select=\"MATH\"> </caseinline><defaultinline>On the <emph>Drawing</emph> bar, click</defaultinline></switchinline>" -msgstr "<switchinline select=\"appl\"><caseinline select=\"CHART\"></caseinline><caseinline select=\"CALC\"></caseinline><caseinline select=\"WRITER\"></caseinline><caseinline select=\"MATH\"></caseinline><defaultinline>PÃ¥ raden <emph>Ritobjekt</emph> ska du klicka pÃ¥</defaultinline></switchinline>" +msgstr "<switchinline select=\"appl\"><caseinline select=\"CHART\"> </caseinline><caseinline select=\"CALC\"> </caseinline><caseinline select=\"WRITER\"> </caseinline><caseinline select=\"MATH\"> </caseinline><defaultinline>PÃ¥ verktygsraden <emph>Teckning</emph> ska du klicka pÃ¥</defaultinline></switchinline>" #: 00040500.xhp msgctxt "" @@ -10581,10 +10554,9 @@ "par_id3109845\n" "help.text" msgid "<image id=\"img_id3159236\" src=\"cmd/sc_window3d.png\"><alt id=\"alt_id3159236\">Icon</alt></image>" -msgstr "" +msgstr "<image id=\"img_id3159236\" src=\"cmd/sc_window3d.png\"><alt id=\"alt_id3159236\">Ikon</alt></image>" #: 00040500.xhp -#, fuzzy msgctxt "" "00040500.xhp\n" "par_id3152498\n" @@ -10593,49 +10565,44 @@ msgstr "<emph>3D-effekter</emph>" #: 00040500.xhp -#, fuzzy msgctxt "" "00040500.xhp\n" "par_id3145256\n" "help.text" msgid "<variable id=\"3dgeometrie\">Open the context menu of the 3D object, choose <emph>3D Effects - Geometry</emph> tab </variable>" -msgstr "<variable id=\"3dgeometrie\">Öppna snabbmenyn för 3D-objektet och välj fliken <emph>3D-effekter - Geometri</emph></variable>" +msgstr "<variable id=\"3dgeometrie\">Öppna snabbmenyn för 3D-objektet och välj <emph>3D-effekter - </emph>fliken <emph>Geometri</emph></variable>" #: 00040500.xhp -#, fuzzy msgctxt "" "00040500.xhp\n" "par_id3154203\n" "help.text" msgid "<variable id=\"3ddarstellung\">Open the context menu of the 3D object, choose <emph>3D Effects - Shading</emph> tab </variable>" -msgstr "<variable id=\"3ddarstellung\">Öppna snabbmenyn för 3D-objektet och välj fliken <emph>3D-effekter - Skuggning </emph></variable>" +msgstr "<variable id=\"3ddarstellung\">Öppna snabbmenyn för 3D-objektet och välj <emph>3D-effekter - </emph>fliken <emph>Skuggning </emph></variable>" #: 00040500.xhp -#, fuzzy msgctxt "" "00040500.xhp\n" "par_id3151284\n" "help.text" msgid "<variable id=\"3dbeleuchtung\">Open the context menu of the 3D object, choose <emph>3D Effects - Illumination</emph> tab </variable>" -msgstr "<variable id=\"3dbeleuchtung\">Öppna snabbmenyn för 3D-objektet och välj fliken <emph>3D-effekter - Belysning </emph></variable>" +msgstr "<variable id=\"3dbeleuchtung\">Öppna snabbmenyn för 3D-objektet och välj <emph>3D-effekter - </emph>fliken <emph>Belysning </emph></variable>" #: 00040500.xhp -#, fuzzy msgctxt "" "00040500.xhp\n" "par_id3152475\n" "help.text" msgid "<variable id=\"3dtexturen\">Open the context menu of the 3D object, choose <emph>3D Effects - Textures</emph> tab </variable>" -msgstr "<variable id=\"3dtexturen\">Öppna snabbmenyn för 3D-objektet och välj fliken <emph>3D-effekter - Geometri</emph></variable>" +msgstr "<variable id=\"3dtexturen\">Öppna snabbmenyn för 3D-objektet och välj <emph>3D-effekter - </emph>fliken <emph>Geometri</emph></variable>" #: 00040500.xhp -#, fuzzy msgctxt "" "00040500.xhp\n" "par_id3154572\n" "help.text" msgid "<variable id=\"3dmaterial\">Open the context menu of the 3D object, choose <emph>3D Effects - Material</emph> tab </variable>" -msgstr "<variable id=\"3dmaterial\">Öppna snabbmenyn för 3D-objektet och välj fliken <emph>3D-effekter - Material</emph></variable>" +msgstr "<variable id=\"3dmaterial\">Öppna snabbmenyn för 3D-objektet och välj <emph>3D-effekter - </emph>fliken <emph>Material</emph></variable>" #: 00040500.xhp #, fuzzy diff -Nru libreoffice-5.1.1~rc2/translations/source/sv/helpcontent2/source/text/shared/01.po libreoffice-5.1.2~rc2/translations/source/sv/helpcontent2/source/text/shared/01.po --- libreoffice-5.1.1~rc2/translations/source/sv/helpcontent2/source/text/shared/01.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/sv/helpcontent2/source/text/shared/01.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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:17+0000\n" +"PO-Revision-Date: 2016-03-04 05:58+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: sv\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1452604647.000000\n" +"X-POOTLE-MTIME: 1457071111.000000\n" #: 01010000.xhp msgctxt "" @@ -1744,14 +1744,13 @@ msgstr "<link href=\"text/shared/01/01010302.xhp\" name=\"Visitkort\">Visitkort</link>" #: 01010302.xhp -#, fuzzy msgctxt "" "01010302.xhp\n" "par_id3153882\n" "2\n" "help.text" msgid "<ahelp hid=\".\" visibility=\"visible\">Define the appearance of your business cards.</ahelp>" -msgstr "<ahelp hid=\"\" visibility=\"visible\">Definierar utseendet pÃ¥ visitkorten.</ahelp>" +msgstr "<ahelp hid=\".\" visibility=\"visible\">Definierar utseendet pÃ¥ visitkorten.</ahelp>" #: 01010302.xhp msgctxt "" @@ -2004,14 +2003,13 @@ msgstr "<link href=\"text/shared/01/01010304.xhp\" name=\"Affärsmässig\">Affärsmässig</link>" #: 01010304.xhp -#, fuzzy msgctxt "" "01010304.xhp\n" "par_id3151097\n" "2\n" "help.text" msgid "<ahelp hid=\".\">Contains contact information for business cards that use a layout from a 'Business Card, Work' category. Business card layouts are selected on the <emph>Business Cards</emph> tab.</ahelp>" -msgstr "<ahelp hid=\"\">InnehÃ¥ller kontaktinformation för visitkort som använder en layout i kategorin 'Visitkort, arbete'. Layouter för visitkort väljer du under fliken <emph>Visitkort</emph>.</ahelp>" +msgstr "<ahelp hid=\".\">InnehÃ¥ller kontaktinformation för visitkort som använder en layout i kategorin 'Visitkort, arbete'. Layouter för visitkort väljer du under fliken <emph>Visitkort</emph>.</ahelp>" #: 01010304.xhp msgctxt "" @@ -3753,14 +3751,13 @@ msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Vissa statistiska värden kan användas som <link href=\"text/swriter/02/14020000.xhp\" name=\"variabler i formler\">variabler i formler</link>. </caseinline></switchinline>" #: 01100400.xhp -#, fuzzy msgctxt "" "01100400.xhp\n" "hd_id3153255\n" "3\n" "help.text" msgid "Pages:" -msgstr "Sidor" +msgstr "Sidor:" #: 01100400.xhp msgctxt "" @@ -3772,14 +3769,13 @@ msgstr "Antal sidor i filen." #: 01100400.xhp -#, fuzzy msgctxt "" "01100400.xhp\n" "hd_id3156027\n" "5\n" "help.text" msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Tables: </caseinline><caseinline select=\"CALC\">Number of Sheets: </caseinline></switchinline>" -msgstr "<switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Färg </caseinline><caseinline select=\"DRAW\">Färg </caseinline></switchinline>" +msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Tabeller: </caseinline><caseinline select=\"CALC\">Antal blad:</caseinline></switchinline>" #: 01100400.xhp msgctxt "" @@ -3809,14 +3805,13 @@ msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Antal celler med innehÃ¥ll i filen. </caseinline></switchinline>" #: 01100400.xhp -#, fuzzy msgctxt "" "01100400.xhp\n" "hd_id3147210\n" "7\n" "help.text" msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Images: </caseinline></switchinline>" -msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Fast </caseinline></switchinline>" +msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Bilder: </caseinline></switchinline>" #: 01100400.xhp msgctxt "" @@ -3828,14 +3823,13 @@ msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Antalet bilder i filen. Den här statistiken räknar inte med bilder som är infogade som <link href=\"text/shared/00/00000005.xhp#ole\" name=\"OLE\">OLE</link>-objekt. </caseinline></switchinline>" #: 01100400.xhp -#, fuzzy msgctxt "" "01100400.xhp\n" "hd_id3147618\n" "9\n" "help.text" msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">OLE Objects: </caseinline></switchinline>" -msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Alla nivÃ¥er </caseinline></switchinline>" +msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">OLE-objekt: </caseinline></switchinline>" #: 01100400.xhp msgctxt "" @@ -3847,14 +3841,13 @@ msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Antal <link href=\"text/shared/00/00000005.xhp#ole\" name=\"OLE\">OLE</link>-objekt i filen, inklusive tabeller och grafik som är infogade som OLE-objekt. </caseinline></switchinline>" #: 01100400.xhp -#, fuzzy msgctxt "" "01100400.xhp\n" "hd_id3153665\n" "11\n" "help.text" msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Paragraphs: </caseinline></switchinline>" -msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Uppdatera </caseinline></switchinline>" +msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Stycken: </caseinline></switchinline>" #: 01100400.xhp msgctxt "" @@ -3866,14 +3859,13 @@ msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Antal stycken (inklusive tomma stycken) i filen. </caseinline></switchinline>" #: 01100400.xhp -#, fuzzy msgctxt "" "01100400.xhp\n" "hd_id3155261\n" "13\n" "help.text" msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Words: </caseinline></switchinline>" -msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">För</caseinline></switchinline>" +msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Ord: </caseinline></switchinline>" #: 01100400.xhp msgctxt "" @@ -3885,14 +3877,13 @@ msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Antal ord (inklusive ord som bestÃ¥r av ett tecken) i filen. </caseinline></switchinline>" #: 01100400.xhp -#, fuzzy msgctxt "" "01100400.xhp\n" "hd_id3150466\n" "15\n" "help.text" msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Characters: </caseinline></switchinline>" -msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Teckenformatmallar </caseinline></switchinline>" +msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Tecken: </caseinline></switchinline>" #: 01100400.xhp msgctxt "" @@ -3904,14 +3895,13 @@ msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Antalet tecken (inklusive mellanslag) i filen. Ej utskrivbara tecken ingÃ¥r inte. </caseinline></switchinline>" #: 01100400.xhp -#, fuzzy msgctxt "" "01100400.xhp\n" "hd_id3148947\n" "32\n" "help.text" msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Lines: </caseinline></switchinline>" -msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Fast </caseinline></switchinline>" +msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Rader: </caseinline></switchinline>" #: 01100400.xhp msgctxt "" @@ -4010,7 +4000,7 @@ "par_idN106B8\n" "help.text" msgid "<ahelp hid=\".\">Select to enable recording changes. This is the same as <emph>Edit - Track Changes - Record Changes</emph>.</ahelp>" -msgstr "" +msgstr "<ahelp hid=\".\">Markera det här alternativet om du vill kunna registrera ändringar. Det här är detsamma som <emph>Redigera – SpÃ¥ra ändringar – Registrera ändringar</emph>.</ahelp>" #: 01100600.xhp msgctxt "" @@ -4390,14 +4380,13 @@ msgstr "<bookmark_value>Skriva ut; dokument</bookmark_value><bookmark_value>Dokument; skriva ut</bookmark_value><bookmark_value>Kalkylblad; skriva ut</bookmark_value><bookmark_value>Kalkylblad; skriva ut</bookmark_value><bookmark_value>Presentationer; skriva ut meny</bookmark_value><bookmark_value>Ritobjekt; skriva ut</bookmark_value><bookmark_value>Välja skrivare</bookmark_value><bookmark_value>Skrivare; välja</bookmark_value><bookmark_value>Val av utskriftsomrÃ¥de</bookmark_value><bookmark_value>Markera; utskriftsomrÃ¥de</bookmark_value><bookmark_value>Sidor; markera en för utskrift</bookmark_value><bookmark_value>Skriva ut; markeringar</bookmark_value><bookmark_value>Skriva ut; kopior</bookmark_value><bookmark_value>Kopior; skriva ut</bookmark_value><bookmark_value>Köfiler med Xprinter</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=\"Avsluta\">Avsluta</link>" +msgstr "<link href=\"text/shared/01/01130000.xhp\" name=\"Print\">Skriv ut</link>" #: 01130000.xhp msgctxt "" @@ -5084,14 +5073,13 @@ msgstr "<bookmark_value>Skrivare; egenskaper</bookmark_value><bookmark_value>Inställningar; skrivare</bookmark_value><bookmark_value>Egenskaper; skrivare</bookmark_value><bookmark_value>Standardskrivare; ställa in</bookmark_value><bookmark_value>Skrivare; standardskrivare</bookmark_value><bookmark_value>Sidformat; begränsning</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-filterinställningar\">XML-filterinställningar</link>" +msgstr "<link href=\"text/shared/01/01140000.xhp\" name=\"Printer Settings\">Skrivarinställningar</link>" #: 01140000.xhp msgctxt "" @@ -5288,7 +5276,7 @@ "3\n" "help.text" msgid "<link href=\"text/shared/01/01160200.xhp\" name=\"Document as E-mail\">E-mail Document</link>" -msgstr "" +msgstr "<link href=\"text/shared/01/01160200.xhp\" name=\"Document as E-mail\">Dokument som e-post</link>" #: 01160000.xhp msgctxt "" @@ -5435,10 +5423,9 @@ "tit\n" "help.text" msgid "E-mail Document" -msgstr "" +msgstr "E-posta dokument" #: 01160200.xhp -#, fuzzy msgctxt "" "01160200.xhp\n" "hd_id3150702\n" @@ -5842,7 +5829,7 @@ "23\n" "help.text" msgid "<ahelp hid=\"sfx/ui/versionsofdialog/compare\">Compare the changes that were made in each version.</ahelp> If you want, you can <link href=\"text/shared/01/02230400.xhp\" name=\"Manage Changes\"><emph>Manage Changes</emph></link>." -msgstr "" +msgstr "<ahelp hid=\"sfx/ui/versionsofdialog/compare\">Jämför de ändringar som gjorts i varje version.</ahelp> Du kan om du vill acceptera eller ignorera ändringar med hjälp av <link href=\"text/shared/01/02230400.xhp\" name=\"Manage Changes\"><emph>Hantera ändringar</emph></link>." #: 01990000.xhp msgctxt "" @@ -6190,14 +6177,13 @@ msgstr "Klistra in innehÃ¥ll" #: 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=\"Klistra in\">Klistra in</link>" +msgstr "<link href=\"text/shared/01/02070000.xhp\" name=\"Paste Special\">Klistra in innehÃ¥ll...</link>" #: 02070000.xhp msgctxt "" @@ -7119,7 +7105,7 @@ "68\n" "help.text" msgid "Find Next" -msgstr "" +msgstr "Sök nästa" #: 02100000.xhp msgctxt "" @@ -9601,16 +9587,14 @@ msgstr "Redigera länkar" #: 02180000.xhp -#, fuzzy msgctxt "" "02180000.xhp\n" "bm_id3156156\n" "help.text" msgid "<bookmark_value>opening;documents with links</bookmark_value> <bookmark_value>links; updating specific links</bookmark_value> <bookmark_value>updating; links, on opening</bookmark_value> <bookmark_value>links; opening files with</bookmark_value>" -msgstr "<bookmark_value>öppna;dokument med länkar</bookmark_value> <bookmark_value>länkar; uppdatera specifika länkar</bookmark_value> <bookmark_value>uppdatera; länkar, när fil öppnas</bookmark_value> <bookmark_value>länkar; öppna filer med</bookmark_value>" +msgstr "<bookmark_value>Öppna;dokument med länkar</bookmark_value><bookmark_value>Länkar; uppdatera specifika länkar</bookmark_value><bookmark_value>Uppdatera; länkar, när fil öppnas</bookmark_value><bookmark_value>Länkar; öppna filer med</bookmark_value>" #: 02180000.xhp -#, fuzzy msgctxt "" "02180000.xhp\n" "hd_id3150279\n" @@ -9619,16 +9603,14 @@ msgstr "Redigera länkar" #: 02180000.xhp -#, fuzzy msgctxt "" "02180000.xhp\n" "par_id3150774\n" "help.text" msgid "<variable id=\"links_text\"><variable id=\"verknuepfungentext\"><ahelp hid=\".uno:ManageLinks\">Lets you edit the properties of each link in the current document, including the path to the source file. This command is not available if the current document does not contain links to other files.</ahelp> </variable></variable>" -msgstr "<variable id=\"verknuepfungentext\"><ahelp hid=\".uno:ManageLinks\">Här kan du redigera egenskaperna för alla länkar i dokumentet, inklusive källfilens sökväg. Det här kommandot är bara tillgängligt om det aktuella dokumentet innehÃ¥ller länkar till andra filer.</ahelp></variable>" +msgstr "<variable id=\"links_text\"><variable id=\"verknuepfungentext\"><ahelp hid=\".uno:ManageLinks\">Här kan du redigera egenskaperna för alla länkar i dokumentet, inklusive källfilens sökväg. Det här kommandot är bara tillgängligt om det aktuella dokumentet innehÃ¥ller länkar till andra filer.</ahelp></variable></variable>" #: 02180000.xhp -#, fuzzy msgctxt "" "02180000.xhp\n" "par_id3156156\n" @@ -9637,7 +9619,6 @@ msgstr "När du öppnar en fil som innehÃ¥ller länkar uppmanas du att uppdatera länkarna. Uppdateringen kan ta flera minuter, beroende pÃ¥ var de länkade filerna finns." #: 02180000.xhp -#, fuzzy msgctxt "" "02180000.xhp\n" "par_id3143270\n" @@ -9662,7 +9643,6 @@ msgstr "När du öppnar en fil via en URL frÃ¥n en dialogruta för filurval i Windows, öppnas en lokal kopia av filen som finns i Internet Explorers cacheminne. Dialogrutan för filurval i %PRODUCTNAME öppnar den fjärranslutna filen." #: 02180000.xhp -#, fuzzy msgctxt "" "02180000.xhp\n" "hd_id3155503\n" @@ -9671,7 +9651,6 @@ msgstr "Källfil" #: 02180000.xhp -#, fuzzy msgctxt "" "02180000.xhp\n" "par_id3156152\n" @@ -9680,7 +9659,6 @@ msgstr "Listar sökvägen till källfilen." #: 02180000.xhp -#, fuzzy msgctxt "" "02180000.xhp\n" "hd_id3155449\n" @@ -9689,7 +9667,6 @@ msgstr "Element" #: 02180000.xhp -#, fuzzy msgctxt "" "02180000.xhp\n" "par_id3153348\n" @@ -9698,7 +9675,6 @@ msgstr "Visar det program som senast sparade källfilen, om detta är känt." #: 02180000.xhp -#, fuzzy msgctxt "" "02180000.xhp\n" "hd_id3153061\n" @@ -9707,7 +9683,6 @@ msgstr "Typ" #: 02180000.xhp -#, fuzzy msgctxt "" "02180000.xhp\n" "par_id3151384\n" @@ -9716,7 +9691,6 @@ msgstr "Visar källfilens filtyp, t.ex. grafik." #: 02180000.xhp -#, fuzzy msgctxt "" "02180000.xhp\n" "hd_id3156343\n" @@ -9725,7 +9699,6 @@ msgstr "Status" #: 02180000.xhp -#, fuzzy msgctxt "" "02180000.xhp\n" "par_id3149046\n" @@ -9734,7 +9707,6 @@ msgstr "Visar ytterligare information om källfilen." #: 02180000.xhp -#, fuzzy msgctxt "" "02180000.xhp\n" "hd_id3147264\n" @@ -9743,7 +9715,6 @@ msgstr "Automatisk" #: 02180000.xhp -#, fuzzy msgctxt "" "02180000.xhp\n" "par_id3147304\n" @@ -9752,16 +9723,14 @@ msgstr "<ahelp hid=\"cui/ui/baselinksdialog/AUTOMATIC\">Uppdaterar automatiskt länkens innehÃ¥ll när du öppnar filen. Alla ändringar i källfilen visas sedan i den fil som innehÃ¥ller länken. Länkade grafikfiler kan bara uppdateras manuellt.</ahelp> Det här alternativet är inte tillgängligt för en länkad grafikfil." #: 02180000.xhp -#, fuzzy msgctxt "" "02180000.xhp\n" "par_id3149456\n" "help.text" msgid "The <emph>Automatic</emph> option is only available for DDE links. You can insert a DDE link by copying the contents from one file and pasting by choosing <emph>Edit - Paste Special</emph>, and then selecting the <emph>Link</emph> box. As DDE is a text based linking system, only the displayed decimals are copied into the target sheet." -msgstr "Alternativet <emph>Automatiskt</emph> är bara tillgängligt för DDE-länkar. Du kan infoga en DDE-länk genom att kopiera innehÃ¥llet frÃ¥n en fil, klistra in det med <emph>Redigera - Klistra in special</emph>, och sedan markera rutan <emph>Länk</emph>. Eftersom DDE är ett textbaserat länkningssystem kopieras bara de decimaler som visas till mÃ¥ltabellen." +msgstr "Alternativet <emph>Automatiskt</emph> är bara tillgängligt för DDE-länkar. Du kan infoga en DDE-länk genom att kopiera innehÃ¥llet frÃ¥n en fil, klistra in det med <emph>Redigera - Klistra in special</emph>, och sedan markera <emph>Länk</emph>. Eftersom DDE är ett textbaserat länkningssystem kopieras bara de decimaler som visas till mÃ¥ltabellen." #: 02180000.xhp -#, fuzzy msgctxt "" "02180000.xhp\n" "hd_id3154938\n" @@ -9770,7 +9739,6 @@ msgstr "Manuellt" #: 02180000.xhp -#, fuzzy msgctxt "" "02180000.xhp\n" "par_id3151210\n" @@ -9779,7 +9747,6 @@ msgstr "<ahelp hid=\"cui/ui/baselinksdialog/MANUAL\">Uppdaterar bara länken när du klickar pÃ¥ knappen <emph>Uppdatera</emph>.</ahelp>" #: 02180000.xhp -#, fuzzy msgctxt "" "02180000.xhp\n" "hd_id3156280\n" @@ -9788,7 +9755,6 @@ msgstr "Uppdatera" #: 02180000.xhp -#, fuzzy msgctxt "" "02180000.xhp\n" "par_id3157320\n" @@ -9797,7 +9763,6 @@ msgstr "<ahelp hid=\"cui/ui/baselinksdialog/UPDATE_NOW\">Uppdaterar den markerade länken sÃ¥ att den senast sparade versionen av den länkade filen visas i det aktuella dokumentet.</ahelp>" #: 02180000.xhp -#, fuzzy msgctxt "" "02180000.xhp\n" "hd_id3151381\n" @@ -9806,7 +9771,6 @@ msgstr "Modifiera" #: 02180000.xhp -#, fuzzy msgctxt "" "02180000.xhp\n" "par_id3154125\n" @@ -9815,16 +9779,14 @@ msgstr "<ahelp hid=\"cui/ui/baselinksdialog/CHANGE_SOURCE\">Ändrar källfilen för den markerade länken.</ahelp>" #: 02180000.xhp -#, fuzzy msgctxt "" "02180000.xhp\n" "hd_id3147084\n" "help.text" msgid "Break Link" -msgstr "Lös upp" +msgstr "Upphäv länk" #: 02180000.xhp -#, fuzzy msgctxt "" "02180000.xhp\n" "par_id3147230\n" @@ -9978,16 +9940,15 @@ "tit\n" "help.text" msgid "Edit Object" -msgstr "" +msgstr "Redigera objekt" #: 02200000.xhp -#, fuzzy msgctxt "" "02200000.xhp\n" "hd_id3146959\n" "help.text" msgid "<link href=\"text/shared/01/02200000.xhp\" name=\"Object\">Edit Object</link>" -msgstr "<link href=\"text/shared/01/02200000.xhp\" name=\"Objekt\">Objekt</link>" +msgstr "<link href=\"text/shared/01/02200000.xhp\" name=\"Objekt\">Redigera objekt</link>" #: 02200000.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/sv/svx/inc.po libreoffice-5.1.2~rc2/translations/source/sv/svx/inc.po --- libreoffice-5.1.1~rc2/translations/source/sv/svx/inc.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/sv/svx/inc.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\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-29 11:17+0000\n" -"Last-Translator: Niklas Johansson <sleeping.pillow@gmail.com>\n" +"PO-Revision-Date: 2016-03-09 12:13+0000\n" +"Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: sv\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1451387855.000000\n" +"X-POOTLE-MTIME: 1457525598.000000\n" #: globlmn_tmpl.hrc msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/sw-TZ/cui/uiconfig/ui.po libreoffice-5.1.2~rc2/translations/source/sw-TZ/cui/uiconfig/ui.po --- libreoffice-5.1.1~rc2/translations/source/sw-TZ/cui/uiconfig/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/sw-TZ/cui/uiconfig/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 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:51+0000\n" +"PO-Revision-Date: 2016-03-09 09:43+0000\n" "Last-Translator: system user <>\n" "Language-Team: none\n" "Language: sw_TZ\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1452264710.000000\n" +"X-POOTLE-MTIME: 1457516615.000000\n" #: aboutconfigdialog.ui msgctxt "" @@ -14058,31 +14058,34 @@ 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 @@ msgstr "(bila)" #: 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 @@ msgstr "(bila)" #: 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 -Nru libreoffice-5.1.1~rc2/translations/source/sw-TZ/dbaccess/uiconfig/ui.po libreoffice-5.1.2~rc2/translations/source/sw-TZ/dbaccess/uiconfig/ui.po --- libreoffice-5.1.1~rc2/translations/source/sw-TZ/dbaccess/uiconfig/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/sw-TZ/dbaccess/uiconfig/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: LibO 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:27+0000\n" -"Last-Translator: Andras <timar74@gmail.com>\n" +"PO-Revision-Date: 2016-03-09 09:48+0000\n" +"Last-Translator: system user <>\n" "Language-Team: none\n" "Language: sw_TZ\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: LibreOffice\n" +"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1361136479.0\n" +"X-POOTLE-MTIME: 1457516894.000000\n" #: admindialog.ui msgctxt "" @@ -1927,22 +1927,24 @@ 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 @@ msgstr "" #: queryfilterdialog.ui +#, fuzzy msgctxt "" "queryfilterdialog.ui\n" "cond1\n" "4\n" "stringlist.text" msgid ">" -msgstr "" +msgstr ">" #: queryfilterdialog.ui msgctxt "" @@ -3016,58 +3019,64 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/sw-TZ/extensions/uiconfig/sabpilot/ui.po libreoffice-5.1.2~rc2/translations/source/sw-TZ/extensions/uiconfig/sabpilot/ui.po --- libreoffice-5.1.1~rc2/translations/source/sw-TZ/extensions/uiconfig/sabpilot/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/sw-TZ/extensions/uiconfig/sabpilot/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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 03:13+0000\n" +"PO-Revision-Date: 2016-03-09 09:55+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: sw_TZ\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1435288383.000000\n" +"X-POOTLE-MTIME: 1457517328.000000\n" #: contentfieldpage.ui msgctxt "" @@ -280,13 +280,14 @@ msgstr "" #: gridfieldsselectionpage.ui +#, fuzzy msgctxt "" "gridfieldsselectionpage.ui\n" "fieldright\n" "label\n" "string.text" msgid "->" -msgstr "" +msgstr "->" #: gridfieldsselectionpage.ui msgctxt "" @@ -298,13 +299,14 @@ msgstr "" #: gridfieldsselectionpage.ui +#, fuzzy msgctxt "" "gridfieldsselectionpage.ui\n" "fieldleft\n" "label\n" "string.text" msgid "<-" -msgstr "" +msgstr "<-" #: gridfieldsselectionpage.ui msgctxt "" @@ -379,22 +381,24 @@ 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 @@ msgstr "" #: tableselectionpage.ui +#, fuzzy msgctxt "" "tableselectionpage.ui\n" "search\n" "label\n" "string.text" msgid "_..." -msgstr "" +msgstr "_..." #: tableselectionpage.ui msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/sw-TZ/librelogo/source/pythonpath.po libreoffice-5.1.2~rc2/translations/source/sw-TZ/librelogo/source/pythonpath.po --- libreoffice-5.1.1~rc2/translations/source/sw-TZ/librelogo/source/pythonpath.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/sw-TZ/librelogo/source/pythonpath.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,17 +3,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: 2014-05-02 00:06+0200\n" -"PO-Revision-Date: 2013-02-17 21:27+0000\n" -"Last-Translator: Andras <timar74@gmail.com>\n" +"POT-Creation-Date: 2015-04-22 23:40+0200\n" +"PO-Revision-Date: 2016-03-09 10:14+0000\n" +"Last-Translator: system user <>\n" "Language-Team: none\n" "Language: sw_TZ\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: LibreOffice\n" +"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1361136479.0\n" +"X-POOTLE-MTIME: 1457518480.000000\n" #: LibreLogo_en_US.properties msgctxt "" @@ -799,20 +799,22 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/sw-TZ/officecfg/registry/data/org/openoffice/Office.po libreoffice-5.1.2~rc2/translations/source/sw-TZ/officecfg/registry/data/org/openoffice/Office.po --- libreoffice-5.1.1~rc2/translations/source/sw-TZ/officecfg/registry/data/org/openoffice/Office.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/sw-TZ/officecfg/registry/data/org/openoffice/Office.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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:14+0000\n" +"PO-Revision-Date: 2016-03-09 10:25+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: sw_TZ\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1438902894.000000\n" +"X-POOTLE-MTIME: 1457519100.000000\n" #: Addons.xcu msgctxt "" @@ -1429,13 +1429,14 @@ msgstr "" #: PresentationMinimizer.xcu +#, fuzzy msgctxt "" "PresentationMinimizer.xcu\n" "..PresentationMinimizer.Strings\n" "STR_FILESIZESEPARATOR\n" "value.text" msgid "." -msgstr "" +msgstr "." #: PresentationMinimizer.xcu msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/sw-TZ/reportdesign/uiconfig/dbreport/ui.po libreoffice-5.1.2~rc2/translations/source/sw-TZ/reportdesign/uiconfig/dbreport/ui.po --- libreoffice-5.1.1~rc2/translations/source/sw-TZ/reportdesign/uiconfig/dbreport/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/sw-TZ/reportdesign/uiconfig/dbreport/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 16:30+0000\n" +"PO-Revision-Date: 2016-03-09 10:45+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: sw_TZ\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1416414632.000000\n" +"X-POOTLE-MTIME: 1457520349.000000\n" #: backgrounddialog.ui msgctxt "" @@ -196,13 +196,14 @@ msgstr "" #: conditionwin.ui +#, fuzzy msgctxt "" "conditionwin.ui\n" "lhsButton\n" "label\n" "string.text" msgid "..." -msgstr "" +msgstr "..." #: conditionwin.ui msgctxt "" @@ -214,13 +215,14 @@ msgstr "" #: conditionwin.ui +#, fuzzy msgctxt "" "conditionwin.ui\n" "rhsButton\n" "label\n" "string.text" msgid "..." -msgstr "" +msgstr "..." #: conditionwin.ui msgctxt "" @@ -277,13 +279,14 @@ msgstr "" #: conditionwin.ui +#, fuzzy msgctxt "" "conditionwin.ui\n" "removeButton\n" "label\n" "string.text" msgid "-" -msgstr "" +msgstr "-" #: conditionwin.ui msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/sw-TZ/sc/uiconfig/scalc/ui.po libreoffice-5.1.2~rc2/translations/source/sw-TZ/sc/uiconfig/scalc/ui.po --- libreoffice-5.1.1~rc2/translations/source/sw-TZ/sc/uiconfig/scalc/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/sw-TZ/sc/uiconfig/scalc/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 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 03:23+0000\n" +"PO-Revision-Date: 2016-03-09 11:08+0000\n" "Last-Translator: system user <>\n" "Language-Team: none\n" "Language: sw_TZ\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1435288982.000000\n" +"X-POOTLE-MTIME: 1457521725.000000\n" #: advancedfilterdialog.ui msgctxt "" @@ -6389,22 +6389,24 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/sw-TZ/sd/source/ui/app.po libreoffice-5.1.2~rc2/translations/source/sw-TZ/sd/source/ui/app.po --- libreoffice-5.1.1~rc2/translations/source/sw-TZ/sd/source/ui/app.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/sw-TZ/sd/source/ui/app.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 21:04+0000\n" +"PO-Revision-Date: 2016-03-09 11:26+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: sw_TZ\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1431551064.000000\n" +"X-POOTLE-MTIME: 1457522780.000000\n" #: menuids3_tmpl.src msgctxt "" @@ -3761,12 +3761,13 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/sw-TZ/sd/uiconfig/simpress/ui.po libreoffice-5.1.2~rc2/translations/source/sw-TZ/sd/uiconfig/simpress/ui.po --- libreoffice-5.1.1~rc2/translations/source/sw-TZ/sd/uiconfig/simpress/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/sw-TZ/sd/uiconfig/simpress/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 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 03:25+0000\n" +"PO-Revision-Date: 2016-03-09 11:28+0000\n" "Last-Translator: system user <>\n" "Language-Team: none\n" "Language: sw_TZ\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1435289119.000000\n" +"X-POOTLE-MTIME: 1457522887.000000\n" #: assistentdialog.ui msgctxt "" @@ -997,22 +997,24 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/sw-TZ/starmath/source.po libreoffice-5.1.2~rc2/translations/source/sw-TZ/starmath/source.po --- libreoffice-5.1.1~rc2/translations/source/sw-TZ/starmath/source.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/sw-TZ/starmath/source.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\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-12 13:26+0200\n" +"POT-Creation-Date: 2016-03-29 16:07+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff -Nru libreoffice-5.1.1~rc2/translations/source/sw-TZ/sw/source/ui/dbui.po libreoffice-5.1.2~rc2/translations/source/sw-TZ/sw/source/ui/dbui.po --- libreoffice-5.1.1~rc2/translations/source/sw-TZ/sw/source/ui/dbui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/sw-TZ/sw/source/ui/dbui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 21:18+0000\n" +"PO-Revision-Date: 2016-03-09 11:58+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: sw_TZ\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1431551938.000000\n" +"X-POOTLE-MTIME: 1457524715.000000\n" #: dbui.src msgctxt "" @@ -487,31 +487,34 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/sw-TZ/sw/source/ui/index.po libreoffice-5.1.2~rc2/translations/source/sw-TZ/sw/source/ui/index.po --- libreoffice-5.1.1~rc2/translations/source/sw-TZ/sw/source/ui/index.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/sw-TZ/sw/source/ui/index.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,16 +3,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-01-05 14:51+0200\n" -"Last-Translator: Anonymous Pootle User\n" +"POT-Creation-Date: 2015-04-22 23:40+0200\n" +"PO-Revision-Date: 2016-03-09 12:00+0000\n" +"Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: sw_TZ\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: LibreOffice\n" +"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" +"X-POOTLE-MTIME: 1457524815.000000\n" #: cnttab.src #, fuzzy @@ -56,20 +57,22 @@ 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 @@ msgstr "" #: cnttab.src +#, fuzzy msgctxt "" "cnttab.src\n" "STR_TOKEN_PAGE_NUMS\n" "string.text" msgid "#" -msgstr "" +msgstr "#" #: cnttab.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/sw-TZ/sw/uiconfig/swriter/ui.po libreoffice-5.1.2~rc2/translations/source/sw-TZ/sw/uiconfig/swriter/ui.po --- libreoffice-5.1.1~rc2/translations/source/sw-TZ/sw/uiconfig/swriter/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/sw-TZ/sw/uiconfig/swriter/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 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:15+0000\n" +"PO-Revision-Date: 2016-03-09 12:16+0000\n" "Last-Translator: system user <>\n" "Language-Team: none\n" "Language: sw_TZ\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1438902912.000000\n" +"X-POOTLE-MTIME: 1457525805.000000\n" #: abstractdialog.ui msgctxt "" @@ -2310,13 +2310,14 @@ msgstr "Geuza Jedwali kwenda Matini" #: converttexttable.ui +#, fuzzy msgctxt "" "converttexttable.ui\n" "othered\n" "text\n" "string.text" msgid "," -msgstr "" +msgstr "," #: converttexttable.ui msgctxt "" @@ -2502,13 +2503,14 @@ msgstr "" #: createaddresslist.ui +#, fuzzy msgctxt "" "createaddresslist.ui\n" "PREV\n" "label\n" "string.text" msgid "<" -msgstr "" +msgstr "<" #: createaddresslist.ui msgctxt "" @@ -2520,13 +2522,14 @@ msgstr "" #: createaddresslist.ui +#, fuzzy msgctxt "" "createaddresslist.ui\n" "NEXT\n" "label\n" "string.text" msgid ">" -msgstr "" +msgstr ">" #: createaddresslist.ui msgctxt "" @@ -4433,13 +4436,14 @@ msgstr "" #: fldvarpage.ui +#, fuzzy msgctxt "" "fldvarpage.ui\n" "separator\n" "text\n" "string.text" msgid "." -msgstr "" +msgstr "." #: fldvarpage.ui msgctxt "" @@ -5421,22 +5425,24 @@ 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 @@ msgstr "Position" #: insertcaption.ui +#, fuzzy msgctxt "" "insertcaption.ui\n" "separator_edit\n" "text\n" "string.text" msgid ": " -msgstr "" +msgstr ": " #: insertcaption.ui msgctxt "" @@ -6364,13 +6371,14 @@ 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 @@ msgstr "" #: mmpreparepage.ui +#, fuzzy msgctxt "" "mmpreparepage.ui\n" "prev\n" "label\n" "string.text" msgid "<" -msgstr "" +msgstr "<" #: mmpreparepage.ui msgctxt "" @@ -8724,13 +8733,14 @@ msgstr "" #: mmpreparepage.ui +#, fuzzy msgctxt "" "mmpreparepage.ui\n" "next\n" "label\n" "string.text" msgid ">" -msgstr "" +msgstr ">" #: mmpreparepage.ui #, fuzzy @@ -9578,13 +9588,14 @@ msgstr "Position" #: optcaptionpage.ui +#, fuzzy msgctxt "" "optcaptionpage.ui\n" "numseparator\n" "text\n" "string.text" msgid ". " -msgstr "" +msgstr ". " #: optcaptionpage.ui #, fuzzy @@ -15701,40 +15712,44 @@ msgstr "[Bila]" #: 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 -Nru libreoffice-5.1.1~rc2/translations/source/sw-TZ/vcl/source/src.po libreoffice-5.1.2~rc2/translations/source/sw-TZ/vcl/source/src.po --- libreoffice-5.1.1~rc2/translations/source/sw-TZ/vcl/source/src.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/sw-TZ/vcl/source/src.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 20:26+0000\n" +"PO-Revision-Date: 2016-03-09 12:21+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: sw_TZ\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1449865574.000000\n" +"X-POOTLE-MTIME: 1457526086.000000\n" #: app.src msgctxt "" @@ -1192,12 +1192,13 @@ msgstr "" #: print.src +#, fuzzy msgctxt "" "print.src\n" "SV_PRINT_INVALID_TXT\n" "string.text" msgid "<ignore>" -msgstr "" +msgstr "<ignore>" #: print.src msgctxt "" @@ -1475,13 +1476,14 @@ msgstr "" #: units.src +#, fuzzy msgctxt "" "units.src\n" "SV_FUNIT_STRINGS\n" "°\n" "itemlist.text" msgid "°" -msgstr "" +msgstr "°" #: units.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/ta/starmath/source.po libreoffice-5.1.2~rc2/translations/source/ta/starmath/source.po --- libreoffice-5.1.1~rc2/translations/source/ta/starmath/source.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ta/starmath/source.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\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-29 16:07+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff -Nru libreoffice-5.1.1~rc2/translations/source/te/dbaccess/uiconfig/ui.po libreoffice-5.1.2~rc2/translations/source/te/dbaccess/uiconfig/ui.po --- libreoffice-5.1.1~rc2/translations/source/te/dbaccess/uiconfig/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/te/dbaccess/uiconfig/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "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 22:57+0000\n" +"PO-Revision-Date: 2016-03-09 10:18+0000\n" "Last-Translator: system user <>\n" "Language-Team: Telugu <Fedora-trans-te@redhat.com>\n" "Language: te\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1431557822.000000\n" +"X-POOTLE-MTIME: 1457518721.000000\n" #: admindialog.ui msgctxt "" @@ -1931,22 +1931,24 @@ 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 @@ msgstr "" #: queryfilterdialog.ui +#, fuzzy msgctxt "" "queryfilterdialog.ui\n" "cond1\n" "4\n" "stringlist.text" msgid ">" -msgstr "" +msgstr ">" #: queryfilterdialog.ui msgctxt "" @@ -3022,58 +3025,64 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/te/extensions/uiconfig/sabpilot/ui.po libreoffice-5.1.2~rc2/translations/source/te/extensions/uiconfig/sabpilot/ui.po --- libreoffice-5.1.1~rc2/translations/source/te/extensions/uiconfig/sabpilot/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/te/extensions/uiconfig/sabpilot/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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 03:23+0000\n" +"PO-Revision-Date: 2016-03-09 10:27+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: te\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1435288989.000000\n" +"X-POOTLE-MTIME: 1457519237.000000\n" #: contentfieldpage.ui msgctxt "" @@ -281,13 +281,14 @@ msgstr "" #: gridfieldsselectionpage.ui +#, fuzzy msgctxt "" "gridfieldsselectionpage.ui\n" "fieldright\n" "label\n" "string.text" msgid "->" -msgstr "" +msgstr "->" #: gridfieldsselectionpage.ui msgctxt "" @@ -299,13 +300,14 @@ msgstr "" #: gridfieldsselectionpage.ui +#, fuzzy msgctxt "" "gridfieldsselectionpage.ui\n" "fieldleft\n" "label\n" "string.text" msgid "<-" -msgstr "" +msgstr "<-" #: gridfieldsselectionpage.ui msgctxt "" @@ -380,22 +382,24 @@ 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 @@ msgstr "" #: tableselectionpage.ui +#, fuzzy msgctxt "" "tableselectionpage.ui\n" "search\n" "label\n" "string.text" msgid "_..." -msgstr "" +msgstr "_..." #: tableselectionpage.ui msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/te/officecfg/registry/data/org/openoffice/Office.po libreoffice-5.1.2~rc2/translations/source/te/officecfg/registry/data/org/openoffice/Office.po --- libreoffice-5.1.1~rc2/translations/source/te/officecfg/registry/data/org/openoffice/Office.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/te/officecfg/registry/data/org/openoffice/Office.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "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:22+0000\n" +"PO-Revision-Date: 2016-03-09 10:51+0000\n" "Last-Translator: system user <>\n" "Language-Team: Telugu <Fedora-trans-te@redhat.com>\n" "Language: te\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1438903343.000000\n" +"X-POOTLE-MTIME: 1457520717.000000\n" #: Addons.xcu msgctxt "" @@ -1431,13 +1431,14 @@ msgstr "" #: PresentationMinimizer.xcu +#, fuzzy msgctxt "" "PresentationMinimizer.xcu\n" "..PresentationMinimizer.Strings\n" "STR_FILESIZESEPARATOR\n" "value.text" msgid "." -msgstr "" +msgstr "." #: PresentationMinimizer.xcu msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/te/reportdesign/uiconfig/dbreport/ui.po libreoffice-5.1.2~rc2/translations/source/te/reportdesign/uiconfig/dbreport/ui.po --- libreoffice-5.1.1~rc2/translations/source/te/reportdesign/uiconfig/dbreport/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/te/reportdesign/uiconfig/dbreport/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 17:03+0000\n" +"PO-Revision-Date: 2016-03-09 11:15+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: te\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1416416581.000000\n" +"X-POOTLE-MTIME: 1457522147.000000\n" #: backgrounddialog.ui msgctxt "" @@ -197,13 +197,14 @@ msgstr "" #: conditionwin.ui +#, fuzzy msgctxt "" "conditionwin.ui\n" "lhsButton\n" "label\n" "string.text" msgid "..." -msgstr "" +msgstr "..." #: conditionwin.ui msgctxt "" @@ -215,13 +216,14 @@ msgstr "" #: conditionwin.ui +#, fuzzy msgctxt "" "conditionwin.ui\n" "rhsButton\n" "label\n" "string.text" msgid "..." -msgstr "" +msgstr "..." #: conditionwin.ui msgctxt "" @@ -278,13 +280,14 @@ msgstr "" #: conditionwin.ui +#, fuzzy msgctxt "" "conditionwin.ui\n" "removeButton\n" "label\n" "string.text" msgid "-" -msgstr "" +msgstr "-" #: conditionwin.ui msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/te/starmath/source.po libreoffice-5.1.2~rc2/translations/source/te/starmath/source.po --- libreoffice-5.1.1~rc2/translations/source/te/starmath/source.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/te/starmath/source.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\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-12 13:26+0200\n" +"POT-Creation-Date: 2016-03-29 16:07+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff -Nru libreoffice-5.1.1~rc2/translations/source/te/sw/source/ui/dbui.po libreoffice-5.1.2~rc2/translations/source/te/sw/source/ui/dbui.po --- libreoffice-5.1.1~rc2/translations/source/te/sw/source/ui/dbui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/te/sw/source/ui/dbui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "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 23:30+0000\n" +"PO-Revision-Date: 2016-03-09 12:53+0000\n" "Last-Translator: system user <>\n" "Language-Team: Telugu <Fedora-trans-te@redhat.com>\n" "Language: te\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1431559822.000000\n" +"X-POOTLE-MTIME: 1457527984.000000\n" #: dbui.src msgctxt "" @@ -488,31 +488,34 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/te/sw/source/ui/index.po libreoffice-5.1.2~rc2/translations/source/te/sw/source/ui/index.po --- libreoffice-5.1.1~rc2/translations/source/te/sw/source/ui/index.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/te/sw/source/ui/index.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,17 +3,18 @@ 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-12 16:31+0530\n" -"Last-Translator: Krishnababu Krothapalli <kkrothap@redhat.com>\n" +"POT-Creation-Date: 2015-04-22 23:40+0200\n" +"PO-Revision-Date: 2016-03-09 12:54+0000\n" +"Last-Translator: system user <>\n" "Language-Team: Telugu <Fedora-trans-te@redhat.com>\n" "Language: te\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: LibreOffice\n" +"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" +"X-POOTLE-MTIME: 1457528075.000000\n" #: cnttab.src msgctxt "" @@ -56,20 +57,22 @@ 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 @@ msgstr "" #: cnttab.src +#, fuzzy msgctxt "" "cnttab.src\n" "STR_TOKEN_PAGE_NUMS\n" "string.text" msgid "#" -msgstr "" +msgstr "#" #: cnttab.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/te/sw/source/ui/utlui.po libreoffice-5.1.2~rc2/translations/source/te/sw/source/ui/utlui.po --- libreoffice-5.1.1~rc2/translations/source/te/sw/source/ui/utlui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/te/sw/source/ui/utlui.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE 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-20 11:59+0100\n" +"POT-Creation-Date: 2016-03-29 16:07+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff -Nru libreoffice-5.1.1~rc2/translations/source/te/sw/uiconfig/swriter/ui.po libreoffice-5.1.2~rc2/translations/source/te/sw/uiconfig/swriter/ui.po --- libreoffice-5.1.1~rc2/translations/source/te/sw/uiconfig/swriter/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/te/sw/uiconfig/swriter/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 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:23+0000\n" +"PO-Revision-Date: 2016-03-09 13:06+0000\n" "Last-Translator: system user <>\n" "Language-Team: Telugu <Fedora-trans-te@redhat.com>\n" "Language: te\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1438903395.000000\n" +"X-POOTLE-MTIME: 1457528804.000000\n" #: abstractdialog.ui msgctxt "" @@ -2478,13 +2478,14 @@ msgstr "" #: createaddresslist.ui +#, fuzzy msgctxt "" "createaddresslist.ui\n" "PREV\n" "label\n" "string.text" msgid "<" -msgstr "" +msgstr "<" #: createaddresslist.ui msgctxt "" @@ -2496,13 +2497,14 @@ msgstr "" #: createaddresslist.ui +#, fuzzy msgctxt "" "createaddresslist.ui\n" "NEXT\n" "label\n" "string.text" msgid ">" -msgstr "" +msgstr ">" #: createaddresslist.ui msgctxt "" @@ -4394,13 +4396,14 @@ msgstr "à°à°¦à±€ కాదà±" #: fldvarpage.ui +#, fuzzy msgctxt "" "fldvarpage.ui\n" "separator\n" "text\n" "string.text" msgid "." -msgstr "" +msgstr "." #: fldvarpage.ui msgctxt "" @@ -5353,22 +5356,24 @@ 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 @@ msgstr "" #: mmpreparepage.ui +#, fuzzy msgctxt "" "mmpreparepage.ui\n" "prev\n" "label\n" "string.text" msgid "<" -msgstr "" +msgstr "<" #: mmpreparepage.ui msgctxt "" @@ -8637,13 +8643,14 @@ msgstr "" #: mmpreparepage.ui +#, fuzzy msgctxt "" "mmpreparepage.ui\n" "next\n" "label\n" "string.text" msgid ">" -msgstr "" +msgstr ">" #: mmpreparepage.ui #, fuzzy @@ -15550,40 +15557,44 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/te/vcl/source/src.po libreoffice-5.1.2~rc2/translations/source/te/vcl/source/src.po --- libreoffice-5.1.1~rc2/translations/source/te/vcl/source/src.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/te/vcl/source/src.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "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 20:55+0000\n" +"PO-Revision-Date: 2016-03-09 13:09+0000\n" "Last-Translator: system user <>\n" "Language-Team: Telugu <Fedora-trans-te@redhat.com>\n" "Language: te\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1449867341.000000\n" +"X-POOTLE-MTIME: 1457528996.000000\n" #: app.src msgctxt "" @@ -1176,12 +1176,13 @@ 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 @@ msgstr "" #: units.src +#, fuzzy msgctxt "" "units.src\n" "SV_FUNIT_STRINGS\n" "°\n" "itemlist.text" msgid "°" -msgstr "" +msgstr "°" #: units.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/tg/cui/uiconfig/ui.po libreoffice-5.1.2~rc2/translations/source/tg/cui/uiconfig/ui.po --- libreoffice-5.1.1~rc2/translations/source/tg/cui/uiconfig/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/tg/cui/uiconfig/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 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:55+0000\n" +"PO-Revision-Date: 2016-03-09 10:17+0000\n" "Last-Translator: system user <>\n" "Language-Team: none\n" "Language: tg\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1452264955.000000\n" +"X-POOTLE-MTIME: 1457518623.000000\n" #: aboutconfigdialog.ui msgctxt "" @@ -14059,31 +14059,34 @@ 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 @@ 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 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/tg/dbaccess/uiconfig/ui.po libreoffice-5.1.2~rc2/translations/source/tg/dbaccess/uiconfig/ui.po --- libreoffice-5.1.1~rc2/translations/source/tg/dbaccess/uiconfig/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/tg/dbaccess/uiconfig/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,17 +4,17 @@ "Project-Id-Version: LibO 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:28+0000\n" -"Last-Translator: Andras <timar74@gmail.com>\n" +"PO-Revision-Date: 2016-03-09 10:22+0000\n" +"Last-Translator: system user <>\n" "Language-Team: none\n" "Language: tg\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: LibreOffice\n" +"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1361136518.0\n" +"X-POOTLE-MTIME: 1457518951.000000\n" #: admindialog.ui msgctxt "" @@ -1928,22 +1928,24 @@ 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 @@ msgstr "" #: queryfilterdialog.ui +#, fuzzy msgctxt "" "queryfilterdialog.ui\n" "cond1\n" "4\n" "stringlist.text" msgid ">" -msgstr "" +msgstr ">" #: queryfilterdialog.ui msgctxt "" @@ -3017,58 +3020,64 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/tg/extensions/uiconfig/sabpilot/ui.po libreoffice-5.1.2~rc2/translations/source/tg/extensions/uiconfig/sabpilot/ui.po --- libreoffice-5.1.1~rc2/translations/source/tg/extensions/uiconfig/sabpilot/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/tg/extensions/uiconfig/sabpilot/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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 03:17+0000\n" +"PO-Revision-Date: 2016-03-09 10:29+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: tg\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1435288639.000000\n" +"X-POOTLE-MTIME: 1457519359.000000\n" #: contentfieldpage.ui msgctxt "" @@ -281,13 +281,14 @@ msgstr "" #: gridfieldsselectionpage.ui +#, fuzzy msgctxt "" "gridfieldsselectionpage.ui\n" "fieldright\n" "label\n" "string.text" msgid "->" -msgstr "" +msgstr "->" #: gridfieldsselectionpage.ui msgctxt "" @@ -299,13 +300,14 @@ msgstr "" #: gridfieldsselectionpage.ui +#, fuzzy msgctxt "" "gridfieldsselectionpage.ui\n" "fieldleft\n" "label\n" "string.text" msgid "<-" -msgstr "" +msgstr "<-" #: gridfieldsselectionpage.ui msgctxt "" @@ -380,22 +382,24 @@ 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 @@ msgstr "" #: tableselectionpage.ui +#, fuzzy msgctxt "" "tableselectionpage.ui\n" "search\n" "label\n" "string.text" msgid "_..." -msgstr "" +msgstr "_..." #: tableselectionpage.ui msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/tg/helpcontent2/source/text/scalc/01.po libreoffice-5.1.2~rc2/translations/source/tg/helpcontent2/source/text/scalc/01.po --- libreoffice-5.1.1~rc2/translations/source/tg/helpcontent2/source/text/scalc/01.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/tg/helpcontent2/source/text/scalc/01.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 22:22+0000\n" +"PO-Revision-Date: 2016-03-04 05:50+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: tg\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1431382925.000000\n" +"X-POOTLE-MTIME: 1457070649.000000\n" #: 01120000.xhp msgctxt "" @@ -28842,13 +28842,14 @@ msgstr "" #: 04060112.xhp +#, fuzzy msgctxt "" "04060112.xhp\n" "par_id3159337\n" "120\n" "help.text" msgid "..." -msgstr "" +msgstr "..." #: 04060112.xhp msgctxt "" @@ -29266,13 +29267,14 @@ msgstr "" #: 04060112.xhp +#, fuzzy msgctxt "" "04060112.xhp\n" "par_id3154825\n" "167\n" "help.text" msgid "..." -msgstr "" +msgstr "..." #: 04060112.xhp msgctxt "" @@ -29726,13 +29728,14 @@ msgstr "" #: 04060112.xhp +#, fuzzy msgctxt "" "04060112.xhp\n" "par_id3163722\n" "218\n" "help.text" msgid "..." -msgstr "" +msgstr "..." #: 04060112.xhp msgctxt "" @@ -60092,13 +60095,14 @@ msgstr "баробарӣ" #: 12090103.xhp +#, fuzzy msgctxt "" "12090103.xhp\n" "par_id3154254\n" "15\n" "help.text" msgid "<" -msgstr "" +msgstr "<" #: 12090103.xhp msgctxt "" @@ -60110,13 +60114,14 @@ msgstr "хурд аз" #: 12090103.xhp +#, fuzzy msgctxt "" "12090103.xhp\n" "par_id3155335\n" "17\n" "help.text" msgid ">" -msgstr "" +msgstr ">" #: 12090103.xhp msgctxt "" @@ -60164,13 +60169,14 @@ msgstr "зиёд Ñ‘ баробари" #: 12090103.xhp +#, fuzzy msgctxt "" "12090103.xhp\n" "par_id3150345\n" "23\n" "help.text" msgid "<>" -msgstr "" +msgstr "<>" #: 12090103.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/tg/helpcontent2/source/text/scalc/05.po libreoffice-5.1.2~rc2/translations/source/tg/helpcontent2/source/text/scalc/05.po --- libreoffice-5.1.1~rc2/translations/source/tg/helpcontent2/source/text/scalc/05.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/tg/helpcontent2/source/text/scalc/05.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 17:48+0000\n" +"PO-Revision-Date: 2016-03-04 05:56+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: tg\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1429811311.000000\n" +"X-POOTLE-MTIME: 1457070988.000000\n" #: 02140000.xhp msgctxt "" @@ -102,12 +102,13 @@ msgstr "Шарҳ" #: 02140000.xhp +#, fuzzy msgctxt "" "02140000.xhp\n" "par_id1668467\n" "help.text" msgid "###" -msgstr "" +msgstr "###" #: 02140000.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/tg/helpcontent2/source/text/shared/00.po libreoffice-5.1.2~rc2/translations/source/tg/helpcontent2/source/text/shared/00.po --- libreoffice-5.1.1~rc2/translations/source/tg/helpcontent2/source/text/shared/00.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/tg/helpcontent2/source/text/shared/00.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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:05+0000\n" -"Last-Translator: Christian Lohmaier <lohmaier+pootle@googlemail.com>\n" +"PO-Revision-Date: 2016-03-04 06:33+0000\n" +"Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: tg\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1441130744.000000\n" +"X-POOTLE-MTIME: 1457073218.000000\n" #: 00000001.xhp msgctxt "" @@ -3972,12 +3972,13 @@ msgstr "" #: 00000021.xhp +#, fuzzy msgctxt "" "00000021.xhp\n" "par_id100120091238112\n" "help.text" msgid "-" -msgstr "" +msgstr "-" #: 00000021.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/tg/helpcontent2/source/text/shared/01.po libreoffice-5.1.2~rc2/translations/source/tg/helpcontent2/source/text/shared/01.po --- libreoffice-5.1.1~rc2/translations/source/tg/helpcontent2/source/text/shared/01.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/tg/helpcontent2/source/text/shared/01.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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:18+0000\n" +"PO-Revision-Date: 2016-03-04 06:51+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: tg\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1452604711.000000\n" +"X-POOTLE-MTIME: 1457074300.000000\n" #: 01010000.xhp msgctxt "" @@ -7516,13 +7516,14 @@ msgstr "" #: 02100001.xhp +#, fuzzy msgctxt "" "02100001.xhp\n" "par_id3152427\n" "19\n" "help.text" msgid "." -msgstr "" +msgstr "." #: 02100001.xhp msgctxt "" @@ -7534,13 +7535,14 @@ msgstr "" #: 02100001.xhp +#, fuzzy msgctxt "" "02100001.xhp\n" "par_id3154682\n" "21\n" "help.text" msgid "^" -msgstr "" +msgstr "^" #: 02100001.xhp msgctxt "" @@ -7552,13 +7554,14 @@ msgstr "" #: 02100001.xhp +#, fuzzy msgctxt "" "02100001.xhp\n" "par_id3159194\n" "23\n" "help.text" msgid "$" -msgstr "" +msgstr "$" #: 02100001.xhp msgctxt "" @@ -7578,13 +7581,14 @@ msgstr "" #: 02100001.xhp +#, fuzzy msgctxt "" "02100001.xhp\n" "par_id3156414\n" "25\n" "help.text" msgid "*" -msgstr "" +msgstr "*" #: 02100001.xhp msgctxt "" @@ -7623,13 +7627,14 @@ msgstr "" #: 02100001.xhp +#, fuzzy msgctxt "" "02100001.xhp\n" "par_id3143267\n" "199\n" "help.text" msgid "?" -msgstr "" +msgstr "?" #: 02100001.xhp msgctxt "" @@ -7641,13 +7646,14 @@ msgstr "" #: 02100001.xhp +#, fuzzy msgctxt "" "02100001.xhp\n" "par_id3166410\n" "158\n" "help.text" msgid "\\" -msgstr "" +msgstr "\\" #: 02100001.xhp msgctxt "" @@ -7729,13 +7735,14 @@ msgstr "" #: 02100001.xhp +#, fuzzy msgctxt "" "02100001.xhp\n" "par_id3149576\n" "37\n" "help.text" msgid "^$" -msgstr "" +msgstr "^$" #: 02100001.xhp msgctxt "" @@ -7747,13 +7754,14 @@ msgstr "" #: 02100001.xhp +#, fuzzy msgctxt "" "02100001.xhp\n" "par_id3148550\n" "41\n" "help.text" msgid "^." -msgstr "" +msgstr "^." #: 02100001.xhp msgctxt "" @@ -7996,13 +8004,14 @@ msgstr "" #: 02100001.xhp +#, fuzzy msgctxt "" "02100001.xhp\n" "par_id3148616\n" "213\n" "help.text" msgid "( )" -msgstr "" +msgstr "( )" #: 02100001.xhp msgctxt "" @@ -8338,13 +8347,14 @@ msgstr "" #: 02100100.xhp +#, fuzzy msgctxt "" "02100100.xhp\n" "hd_id3154621\n" "54\n" "help.text" msgid "..." -msgstr "" +msgstr "..." #: 02100100.xhp msgctxt "" @@ -10199,13 +10209,14 @@ msgstr "" #: 02210101.xhp +#, fuzzy msgctxt "" "02210101.xhp\n" "hd_id3147088\n" "10\n" "help.text" msgid "..." -msgstr "" +msgstr "..." #: 02210101.xhp msgctxt "" @@ -15811,13 +15822,14 @@ msgstr "Шарҳу Ñзоҳ" #: 05020301.xhp +#, fuzzy msgctxt "" "05020301.xhp\n" "par_id3152801\n" "5\n" "help.text" msgid "#" -msgstr "" +msgstr "#" #: 05020301.xhp msgctxt "" @@ -15901,13 +15913,14 @@ msgstr "" #: 05020301.xhp +#, fuzzy msgctxt "" "05020301.xhp\n" "par_id3150355\n" "12\n" "help.text" msgid "####.#" -msgstr "" +msgstr "####.#" #: 05020301.xhp msgctxt "" @@ -15955,13 +15968,14 @@ msgstr "" #: 05020301.xhp +#, fuzzy msgctxt "" "05020301.xhp\n" "par_id3145315\n" "18\n" "help.text" msgid "# ???/???" -msgstr "" +msgstr "# ???/???" #: 05020301.xhp msgctxt "" @@ -16045,13 +16059,14 @@ msgstr "" #: 05020301.xhp +#, fuzzy msgctxt "" "05020301.xhp\n" "par_id3151223\n" "25\n" "help.text" msgid "#,###" -msgstr "" +msgstr "#,###" #: 05020301.xhp msgctxt "" @@ -16063,13 +16078,14 @@ msgstr "" #: 05020301.xhp +#, fuzzy msgctxt "" "05020301.xhp\n" "par_id3153961\n" "27\n" "help.text" msgid "#," -msgstr "" +msgstr "#," #: 05020301.xhp msgctxt "" @@ -19856,13 +19872,14 @@ msgstr "" #: 05030300.xhp +#, fuzzy msgctxt "" "05030300.xhp\n" "hd_id3152933\n" "26\n" "help.text" msgid "......." -msgstr "" +msgstr "......." #: 05030300.xhp msgctxt "" @@ -19874,13 +19891,14 @@ msgstr "" #: 05030300.xhp +#, fuzzy msgctxt "" "05030300.xhp\n" "hd_id3156280\n" "28\n" "help.text" msgid "------" -msgstr "" +msgstr "------" #: 05030300.xhp msgctxt "" @@ -19892,13 +19910,14 @@ msgstr "" #: 05030300.xhp +#, fuzzy msgctxt "" "05030300.xhp\n" "hd_id3157960\n" "30\n" "help.text" msgid "______" -msgstr "" +msgstr "______" #: 05030300.xhp msgctxt "" @@ -34720,13 +34739,14 @@ msgstr "" #: 06040100.xhp +#, fuzzy msgctxt "" "06040100.xhp\n" "par_id3148576\n" "37\n" "help.text" msgid "---" -msgstr "" +msgstr "---" #: 06040100.xhp msgctxt "" @@ -34738,13 +34758,14 @@ msgstr "" #: 06040100.xhp +#, fuzzy msgctxt "" "06040100.xhp\n" "par_id3154472\n" "39\n" "help.text" msgid "___" -msgstr "" +msgstr "___" #: 06040100.xhp msgctxt "" @@ -34774,13 +34795,14 @@ msgstr "" #: 06040100.xhp +#, fuzzy msgctxt "" "06040100.xhp\n" "par_id3148647\n" "43\n" "help.text" msgid "***" -msgstr "" +msgstr "***" #: 06040100.xhp msgctxt "" @@ -34810,13 +34832,14 @@ msgstr "" #: 06040100.xhp +#, fuzzy msgctxt "" "06040100.xhp\n" "par_id3145591\n" "47\n" "help.text" msgid "###" -msgstr "" +msgstr "###" #: 06040100.xhp msgctxt "" @@ -41292,13 +41315,14 @@ 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 "" @@ -41310,13 +41334,14 @@ 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 "" @@ -41328,13 +41353,14 @@ 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 "" @@ -41346,13 +41372,14 @@ 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 "" @@ -41364,13 +41391,14 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/tg/helpcontent2/source/text/shared/02.po libreoffice-5.1.2~rc2/translations/source/tg/helpcontent2/source/text/shared/02.po --- libreoffice-5.1.1~rc2/translations/source/tg/helpcontent2/source/text/shared/02.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/tg/helpcontent2/source/text/shared/02.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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 22:22+0000\n" +"PO-Revision-Date: 2016-03-04 06:58+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: tg\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1431382975.000000\n" +"X-POOTLE-MTIME: 1457074718.000000\n" #: 01110000.xhp msgctxt "" @@ -6040,13 +6040,14 @@ msgstr "" #: 01170102.xhp +#, fuzzy msgctxt "" "01170102.xhp\n" "par_id3153109\n" "26\n" "help.text" msgid "\"\"" -msgstr "" +msgstr "\"\"" #: 01170102.xhp msgctxt "" @@ -13871,13 +13872,14 @@ msgstr "" #: 12070100.xhp +#, fuzzy msgctxt "" "12070100.xhp\n" "hd_id3146958\n" "5\n" "help.text" msgid ">>" -msgstr "" +msgstr ">>" #: 12070100.xhp msgctxt "" @@ -13889,13 +13891,14 @@ msgstr "" #: 12070100.xhp +#, fuzzy msgctxt "" "12070100.xhp\n" "hd_id3163802\n" "6\n" "help.text" msgid ">" -msgstr "" +msgstr ">" #: 12070100.xhp msgctxt "" @@ -13907,13 +13910,14 @@ msgstr "" #: 12070100.xhp +#, fuzzy msgctxt "" "12070100.xhp\n" "hd_id3149732\n" "7\n" "help.text" msgid "<" -msgstr "" +msgstr "<" #: 12070100.xhp msgctxt "" @@ -13925,13 +13929,14 @@ msgstr "" #: 12070100.xhp +#, fuzzy msgctxt "" "12070100.xhp\n" "hd_id3150771\n" "8\n" "help.text" msgid "<<" -msgstr "" +msgstr "<<" #: 12070100.xhp msgctxt "" @@ -14202,13 +14207,14 @@ msgstr "" #: 12070200.xhp +#, fuzzy msgctxt "" "12070200.xhp\n" "hd_id3152551\n" "4\n" "help.text" msgid ">" -msgstr "" +msgstr ">" #: 12070200.xhp msgctxt "" @@ -15710,13 +15716,14 @@ msgstr "Ðамуна" #: 12100200.xhp +#, fuzzy msgctxt "" "12100200.xhp\n" "par_id3158411\n" "42\n" "help.text" msgid "?" -msgstr "" +msgstr "?" #: 12100200.xhp msgctxt "" @@ -15746,13 +15753,14 @@ msgstr "" #: 12100200.xhp +#, fuzzy msgctxt "" "12100200.xhp\n" "par_id3148803\n" "45\n" "help.text" msgid "*" -msgstr "" +msgstr "*" #: 12100200.xhp msgctxt "" @@ -15836,40 +15844,44 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/tg/helpcontent2/source/text/shared/autopi.po libreoffice-5.1.2~rc2/translations/source/tg/helpcontent2/source/text/shared/autopi.po --- libreoffice-5.1.1~rc2/translations/source/tg/helpcontent2/source/text/shared/autopi.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/tg/helpcontent2/source/text/shared/autopi.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 22:23+0000\n" +"PO-Revision-Date: 2016-03-04 07:04+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: tg\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1431383022.000000\n" +"X-POOTLE-MTIME: 1457075073.000000\n" #: 01000000.xhp msgctxt "" @@ -1688,12 +1688,13 @@ msgstr "<ahelp hid=\".\">Ðоми қолаби факÑро дохил кунед.</ahelp>" #: 01020500.xhp +#, fuzzy msgctxt "" "01020500.xhp\n" "par_idN105DE\n" "help.text" msgid "..." -msgstr "" +msgstr "..." #: 01020500.xhp msgctxt "" @@ -3425,13 +3426,14 @@ 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 "" @@ -3443,13 +3445,14 @@ msgstr "<ahelp hid=\"HID_DLGFORM_CMDMOVESELECTED\">Бо муш пахш карда майдон(ҳо)ро ба қитъаи роÑÑ‚ кӯчонед.</ahelp>" #: 01090100.xhp +#, fuzzy msgctxt "" "01090100.xhp\n" "hd_id3154142\n" "12\n" "help.text" msgid ">>" -msgstr "" +msgstr ">>" #: 01090100.xhp msgctxt "" @@ -3461,13 +3464,14 @@ 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 "" @@ -3479,13 +3483,14 @@ msgstr "<ahelp hid=\"HID_DLGFORM_CMDREMOVESELECTED\">Бо муш пахш карда майдонро аз қитъаи роÑÑ‚ кӯр кунед.</ahelp>" #: 01090100.xhp +#, fuzzy msgctxt "" "01090100.xhp\n" "hd_id3159399\n" "16\n" "help.text" msgid "<<" -msgstr "" +msgstr "<<" #: 01090100.xhp msgctxt "" @@ -3497,12 +3502,13 @@ 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 "" @@ -4527,13 +4533,14 @@ 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 "" @@ -4545,13 +4552,14 @@ msgstr "<ahelp hid=\"HID_DLGREPORT_1_CMDMOVESELECTED\">Барои ба қитъаи роÑÑ‚ гузаронидани майдон пахш кунед.</ahelp>" #: 01100100.xhp +#, fuzzy msgctxt "" "01100100.xhp\n" "hd_id3159269\n" "12\n" "help.text" msgid ">>" -msgstr "" +msgstr ">>" #: 01100100.xhp msgctxt "" @@ -4563,13 +4571,14 @@ 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 "" @@ -4581,13 +4590,14 @@ msgstr "<ahelp hid=\"HID_DLGREPORT_1_CMDREMOVESELECTED\">Барои кӯр кардани майдон пахш кунед.</ahelp>" #: 01100100.xhp +#, fuzzy msgctxt "" "01100100.xhp\n" "hd_id3149233\n" "16\n" "help.text" msgid "<<" -msgstr "" +msgstr "<<" #: 01100100.xhp msgctxt "" @@ -4723,13 +4733,14 @@ 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 "" @@ -4741,13 +4752,14 @@ 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 "" @@ -6724,13 +6736,14 @@ msgstr "Қабулкунӣ" #: 01120100.xhp +#, fuzzy msgctxt "" "01120100.xhp\n" "par_id3147008\n" "12\n" "help.text" msgid ">>" -msgstr "" +msgstr ">>" #: 01120100.xhp msgctxt "" @@ -6778,13 +6791,14 @@ msgstr "Кӯркунӣ" #: 01120100.xhp +#, fuzzy msgctxt "" "01120100.xhp\n" "par_id3153561\n" "13\n" "help.text" msgid "<<" -msgstr "" +msgstr "<<" #: 01120100.xhp msgctxt "" @@ -7437,13 +7451,14 @@ msgstr "<ahelp hid=\"HID_DLGIMPORT_2_EDDOCUMENTPATH\" visibility=\"visible\">Рафи дар он Ñабт кардани дафтарҳои табидлдодашударо муайÑн меÑозад.</ahelp>" #: 01130200.xhp +#, fuzzy msgctxt "" "01130200.xhp\n" "hd_id3153126\n" "24\n" "help.text" msgid "..." -msgstr "" +msgstr "..." #: 01130200.xhp msgctxt "" @@ -7642,13 +7657,14 @@ msgstr "<ahelp hid=\"HID_DLGCONVERT_TBSOURCE\">Раф Ñ‘ ҳуҷҷати Ñгонаро барои табдилдиҳӣ нишон медиҳад.</ahelp>" #: 01150000.xhp +#, fuzzy msgctxt "" "01150000.xhp\n" "hd_id3151385\n" "13\n" "help.text" msgid "..." -msgstr "" +msgstr "..." #: 01150000.xhp msgctxt "" @@ -7741,13 +7757,14 @@ msgstr "<ahelp hid=\"HID_DLGCONVERT_TBTARGET\">Рафро барои Ñабткунии натиҷаи табдилдиҳӣ интихоб мекунад.</ahelp>" #: 01150000.xhp +#, fuzzy msgctxt "" "01150000.xhp\n" "par_id3154151\n" "19\n" "help.text" msgid "<emph>...</emph>" -msgstr "" +msgstr "<emph>...</emph>" #: 01150000.xhp msgctxt "" @@ -9468,12 +9485,13 @@ msgstr "<ahelp hid=\"34261\">Саҳифаи Ð¸Ð½Ð´ÐµÐºÑ Ð²Ð° дигар дафтарҳои шуморо ба равоқи хуӣ Ñабткашӣ мекунад. Саҳифаи Ð¸Ð½Ð´ÐµÐºÑ Ð´Ð°Ñ€ маҳали нишондодаи шумо Ñабт мешавад. Дигар ҳама дафтарҳо дар равоқи Вебиман \"myWebsite\" Ñабт мешаванд.</ahelp>" #: webwizard07.xhp +#, fuzzy msgctxt "" "webwizard07.xhp\n" "par_idN10565\n" "help.text" msgid "..." -msgstr "" +msgstr "..." #: webwizard07.xhp msgctxt "" @@ -9508,12 +9526,13 @@ msgstr "ВобаÑта ба ÑиÑтемаи оперативии шумо фишурдаҳо zip, gzip, ва war шуда метавонанд." #: webwizard07.xhp +#, fuzzy msgctxt "" "webwizard07.xhp\n" "par_idN10576\n" "help.text" msgid "..." -msgstr "" +msgstr "..." #: webwizard07.xhp msgctxt "" @@ -9708,12 +9727,13 @@ msgstr "<ahelp hid=\"41045\">Рафро дар Ñервери FTP дохил кунед барои Ñабти дафтарҳо.</ahelp>" #: webwizard07fc.xhp +#, fuzzy msgctxt "" "webwizard07fc.xhp\n" "par_idN1058D\n" "help.text" msgid "..." -msgstr "" +msgstr "..." #: webwizard07fc.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/tg/helpcontent2/source/text/shared/explorer/database.po libreoffice-5.1.2~rc2/translations/source/tg/helpcontent2/source/text/shared/explorer/database.po --- libreoffice-5.1.1~rc2/translations/source/tg/helpcontent2/source/text/shared/explorer/database.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/tg/helpcontent2/source/text/shared/explorer/database.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 22:23+0000\n" +"PO-Revision-Date: 2016-03-04 07:09+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: tg\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1431383028.000000\n" +"X-POOTLE-MTIME: 1457075391.000000\n" #: 02000000.xhp msgctxt "" @@ -1733,13 +1733,14 @@ 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 @@ 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 @@ msgstr "" #: 02010100.xhp +#, fuzzy msgctxt "" "02010100.xhp\n" "par_id3147270\n" "51\n" "help.text" msgid "<" -msgstr "" +msgstr "<" #: 02010100.xhp msgctxt "" @@ -2792,13 +2795,14 @@ msgstr "Ðе" #: 02010100.xhp +#, fuzzy msgctxt "" "02010100.xhp\n" "par_id3150997\n" "239\n" "help.text" msgid "." -msgstr "" +msgstr "." #: 02010100.xhp msgctxt "" @@ -4022,13 +4026,14 @@ msgstr "" #: 05010000.xhp +#, fuzzy msgctxt "" "05010000.xhp\n" "hd_id3154129\n" "35\n" "help.text" msgid "..." -msgstr "" +msgstr "..." #: 05010000.xhp msgctxt "" @@ -6233,13 +6238,14 @@ msgstr "" #: 11030100.xhp +#, fuzzy msgctxt "" "11030100.xhp\n" "hd_id3156152\n" "6\n" "help.text" msgid "<" -msgstr "" +msgstr "<" #: 11030100.xhp msgctxt "" @@ -6251,13 +6257,14 @@ msgstr "" #: 11030100.xhp +#, fuzzy msgctxt "" "11030100.xhp\n" "hd_id3149416\n" "7\n" "help.text" msgid "<<" -msgstr "" +msgstr "<<" #: 11030100.xhp msgctxt "" @@ -6269,13 +6276,14 @@ msgstr "" #: 11030100.xhp +#, fuzzy msgctxt "" "11030100.xhp\n" "hd_id3149579\n" "8\n" "help.text" msgid ">" -msgstr "" +msgstr ">" #: 11030100.xhp msgctxt "" @@ -6287,13 +6295,14 @@ msgstr "" #: 11030100.xhp +#, fuzzy msgctxt "" "11030100.xhp\n" "hd_id3155629\n" "9\n" "help.text" msgid ">>" -msgstr "" +msgstr ">>" #: 11030100.xhp msgctxt "" @@ -7268,13 +7277,14 @@ msgstr "" #: 30100000.xhp +#, fuzzy msgctxt "" "30100000.xhp\n" "hd_id3153189\n" "24\n" "help.text" msgid "..." -msgstr "" +msgstr "..." #: 30100000.xhp msgctxt "" @@ -12477,12 +12487,13 @@ msgstr "" #: querywizard04.xhp +#, fuzzy msgctxt "" "querywizard04.xhp\n" "par_idN105F1\n" "help.text" msgid "-" -msgstr "" +msgstr "-" #: querywizard04.xhp msgctxt "" @@ -14512,12 +14523,13 @@ msgstr "" #: tablewizard02.xhp +#, fuzzy msgctxt "" "tablewizard02.xhp\n" "par_idN10574\n" "help.text" msgid "-" -msgstr "" +msgstr "-" #: tablewizard02.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/tg/helpcontent2/source/text/shared/optionen.po libreoffice-5.1.2~rc2/translations/source/tg/helpcontent2/source/text/shared/optionen.po --- libreoffice-5.1.1~rc2/translations/source/tg/helpcontent2/source/text/shared/optionen.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/tg/helpcontent2/source/text/shared/optionen.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "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 22:24+0000\n" +"PO-Revision-Date: 2016-03-04 07:35+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: tg\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1431383066.000000\n" +"X-POOTLE-MTIME: 1457076947.000000\n" #: 01000000.xhp msgctxt "" @@ -2675,13 +2675,14 @@ msgstr "" #: 01010501.xhp +#, fuzzy msgctxt "" "01010501.xhp\n" "hd_id3153192\n" "11\n" "help.text" msgid "<--" -msgstr "" +msgstr "<--" #: 01010501.xhp msgctxt "" @@ -2693,13 +2694,14 @@ msgstr "<ahelp hid=\"SVTOOLS:PUSHBUTTON:DLG_COLOR:BTN_1\">Барои иваз кардани ранги равзанаи чап бо ранги интихобшудаи равзанаи чап тугмачаи <-- ро пахш кунед.</ahelp>" #: 01010501.xhp +#, fuzzy msgctxt "" "01010501.xhp\n" "hd_id3158409\n" "13\n" "help.text" msgid "-->" -msgstr "" +msgstr "-->" #: 01010501.xhp msgctxt "" @@ -5322,12 +5324,13 @@ msgstr "" #: 01020300.xhp +#, fuzzy msgctxt "" "01020300.xhp\n" "par_idN10591\n" "help.text" msgid "..." -msgstr "" +msgstr "..." #: 01020300.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/tg/helpcontent2/source/text/smath/01.po libreoffice-5.1.2~rc2/translations/source/tg/helpcontent2/source/text/smath/01.po --- libreoffice-5.1.1~rc2/translations/source/tg/helpcontent2/source/text/smath/01.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/tg/helpcontent2/source/text/smath/01.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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 17:50+0000\n" +"PO-Revision-Date: 2016-03-04 08:23+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: tg\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1429811430.000000\n" +"X-POOTLE-MTIME: 1457079804.000000\n" #: 02080000.xhp msgctxt "" @@ -6297,22 +6297,24 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/tg/helpcontent2/source/text/swriter/01.po libreoffice-5.1.2~rc2/translations/source/tg/helpcontent2/source/text/swriter/01.po --- libreoffice-5.1.1~rc2/translations/source/tg/helpcontent2/source/text/swriter/01.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/tg/helpcontent2/source/text/swriter/01.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 22:25+0000\n" +"PO-Revision-Date: 2016-03-04 08:51+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: tg\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1431383106.000000\n" +"X-POOTLE-MTIME: 1457081496.000000\n" #: 01120000.xhp msgctxt "" @@ -10972,13 +10972,14 @@ msgstr "" #: 04120201.xhp +#, fuzzy msgctxt "" "04120201.xhp\n" "hd_id3145418\n" "32\n" "help.text" msgid "<" -msgstr "" +msgstr "<" #: 04120201.xhp msgctxt "" @@ -12180,13 +12181,14 @@ msgstr "" #: 04120219.xhp +#, fuzzy msgctxt "" "04120219.xhp\n" "hd_id3150762\n" "6\n" "help.text" msgid "<<" -msgstr "" +msgstr "<<" #: 04120219.xhp msgctxt "" @@ -12198,13 +12200,14 @@ msgstr "" #: 04120219.xhp +#, fuzzy msgctxt "" "04120219.xhp\n" "hd_id3151178\n" "8\n" "help.text" msgid ">>" -msgstr "" +msgstr ">>" #: 04120219.xhp msgctxt "" @@ -14464,13 +14467,14 @@ 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 "" @@ -14482,13 +14486,14 @@ msgstr "" #: 04200000.xhp +#, fuzzy msgctxt "" "04200000.xhp\n" "par_id3154574\n" "17\n" "help.text" msgid "</SCRIPT>" -msgstr "" +msgstr "</SCRIPT>" #: 04200000.xhp #, fuzzy @@ -27756,12 +27761,13 @@ msgstr "" #: mm_cusaddfie.xhp +#, fuzzy msgctxt "" "mm_cusaddfie.xhp\n" "par_idN10570\n" "help.text" msgid ">" -msgstr "" +msgstr ">" #: mm_cusaddfie.xhp msgctxt "" @@ -27772,12 +27778,13 @@ msgstr "" #: mm_cusaddfie.xhp +#, fuzzy msgctxt "" "mm_cusaddfie.xhp\n" "par_idN10577\n" "help.text" msgid "<" -msgstr "" +msgstr "<" #: mm_cusaddfie.xhp msgctxt "" @@ -27964,12 +27971,13 @@ msgstr "" #: mm_cusgrelin.xhp +#, fuzzy msgctxt "" "mm_cusgrelin.xhp\n" "par_idN10558\n" "help.text" msgid ">" -msgstr "" +msgstr ">" #: mm_cusgrelin.xhp msgctxt "" @@ -27980,12 +27988,13 @@ msgstr "" #: mm_cusgrelin.xhp +#, fuzzy msgctxt "" "mm_cusgrelin.xhp\n" "par_idN1055F\n" "help.text" msgid "<" -msgstr "" +msgstr "<" #: mm_cusgrelin.xhp msgctxt "" @@ -28420,12 +28429,13 @@ msgstr "" #: mm_newaddblo.xhp +#, fuzzy msgctxt "" "mm_newaddblo.xhp\n" "par_idN10570\n" "help.text" msgid ">" -msgstr "" +msgstr ">" #: mm_newaddblo.xhp msgctxt "" @@ -28436,12 +28446,13 @@ msgstr "" #: mm_newaddblo.xhp +#, fuzzy msgctxt "" "mm_newaddblo.xhp\n" "par_idN10577\n" "help.text" msgid "<" -msgstr "" +msgstr "<" #: mm_newaddblo.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/tg/helpcontent2/source/text/swriter/02.po libreoffice-5.1.2~rc2/translations/source/tg/helpcontent2/source/text/swriter/02.po --- libreoffice-5.1.1~rc2/translations/source/tg/helpcontent2/source/text/swriter/02.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/tg/helpcontent2/source/text/swriter/02.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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 17:50+0000\n" +"PO-Revision-Date: 2016-03-04 08:54+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: tg\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1429811456.000000\n" +"X-POOTLE-MTIME: 1457081689.000000\n" #: 02110000.xhp msgctxt "" @@ -1671,13 +1671,14 @@ msgstr "Тарҳ" #: 14020000.xhp +#, fuzzy msgctxt "" "14020000.xhp\n" "par_id3150087\n" "12\n" "help.text" msgid "-" -msgstr "" +msgstr "-" #: 14020000.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/tg/librelogo/source/pythonpath.po libreoffice-5.1.2~rc2/translations/source/tg/librelogo/source/pythonpath.po --- libreoffice-5.1.1~rc2/translations/source/tg/librelogo/source/pythonpath.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/tg/librelogo/source/pythonpath.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,18 +3,18 @@ msgstr "" "Project-Id-Version: LibO 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:28+0000\n" -"Last-Translator: Andras <timar74@gmail.com>\n" +"POT-Creation-Date: 2015-04-22 23:40+0200\n" +"PO-Revision-Date: 2016-03-09 10:43+0000\n" +"Last-Translator: system user <>\n" "Language-Team: none\n" "Language: tg\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: LibreOffice\n" +"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1361136518.0\n" +"X-POOTLE-MTIME: 1457520203.000000\n" #: LibreLogo_en_US.properties msgctxt "" @@ -797,20 +797,22 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/tg/officecfg/registry/data/org/openoffice/Office.po libreoffice-5.1.2~rc2/translations/source/tg/officecfg/registry/data/org/openoffice/Office.po --- libreoffice-5.1.1~rc2/translations/source/tg/officecfg/registry/data/org/openoffice/Office.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/tg/officecfg/registry/data/org/openoffice/Office.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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:17+0000\n" +"PO-Revision-Date: 2016-03-09 10:52+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: tg\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1438903046.000000\n" +"X-POOTLE-MTIME: 1457520734.000000\n" #: Addons.xcu msgctxt "" @@ -1430,13 +1430,14 @@ msgstr "" #: PresentationMinimizer.xcu +#, fuzzy msgctxt "" "PresentationMinimizer.xcu\n" "..PresentationMinimizer.Strings\n" "STR_FILESIZESEPARATOR\n" "value.text" msgid "." -msgstr "" +msgstr "." #: PresentationMinimizer.xcu msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/tg/reportdesign/uiconfig/dbreport/ui.po libreoffice-5.1.2~rc2/translations/source/tg/reportdesign/uiconfig/dbreport/ui.po --- libreoffice-5.1.1~rc2/translations/source/tg/reportdesign/uiconfig/dbreport/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/tg/reportdesign/uiconfig/dbreport/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 17:20+0000\n" +"PO-Revision-Date: 2016-03-09 11:13+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: tg\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1416417657.000000\n" +"X-POOTLE-MTIME: 1457522031.000000\n" #: backgrounddialog.ui msgctxt "" @@ -197,13 +197,14 @@ msgstr "" #: conditionwin.ui +#, fuzzy msgctxt "" "conditionwin.ui\n" "lhsButton\n" "label\n" "string.text" msgid "..." -msgstr "" +msgstr "..." #: conditionwin.ui msgctxt "" @@ -215,13 +216,14 @@ msgstr "" #: conditionwin.ui +#, fuzzy msgctxt "" "conditionwin.ui\n" "rhsButton\n" "label\n" "string.text" msgid "..." -msgstr "" +msgstr "..." #: conditionwin.ui msgctxt "" @@ -278,13 +280,14 @@ msgstr "" #: conditionwin.ui +#, fuzzy msgctxt "" "conditionwin.ui\n" "removeButton\n" "label\n" "string.text" msgid "-" -msgstr "" +msgstr "-" #: conditionwin.ui msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/tg/sc/uiconfig/scalc/ui.po libreoffice-5.1.2~rc2/translations/source/tg/sc/uiconfig/scalc/ui.po --- libreoffice-5.1.1~rc2/translations/source/tg/sc/uiconfig/scalc/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/tg/sc/uiconfig/scalc/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 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 03:29+0000\n" +"PO-Revision-Date: 2016-03-09 11:35+0000\n" "Last-Translator: system user <>\n" "Language-Team: none\n" "Language: tg\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1435289359.000000\n" +"X-POOTLE-MTIME: 1457523350.000000\n" #: advancedfilterdialog.ui msgctxt "" @@ -6390,22 +6390,24 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/tg/sd/source/ui/app.po libreoffice-5.1.2~rc2/translations/source/tg/sd/source/ui/app.po --- libreoffice-5.1.1~rc2/translations/source/tg/sd/source/ui/app.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/tg/sd/source/ui/app.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 23:56+0000\n" +"PO-Revision-Date: 2016-03-09 11:52+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: tg\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1431561380.000000\n" +"X-POOTLE-MTIME: 1457524339.000000\n" #: menuids3_tmpl.src msgctxt "" @@ -3762,12 +3762,13 @@ msgstr "<рақам>" #: strings.src +#, fuzzy msgctxt "" "strings.src\n" "STR_FIELD_PLACEHOLDER_COUNT\n" "string.text" msgid "<count>" -msgstr "" +msgstr "<count>" #: strings.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/tg/sd/uiconfig/simpress/ui.po libreoffice-5.1.2~rc2/translations/source/tg/sd/uiconfig/simpress/ui.po --- libreoffice-5.1.1~rc2/translations/source/tg/sd/uiconfig/simpress/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/tg/sd/uiconfig/simpress/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 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 03:32+0000\n" +"PO-Revision-Date: 2016-03-09 11:54+0000\n" "Last-Translator: system user <>\n" "Language-Team: none\n" "Language: tg\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1435289568.000000\n" +"X-POOTLE-MTIME: 1457524474.000000\n" #: assistentdialog.ui msgctxt "" @@ -998,22 +998,24 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/tg/sw/source/ui/dbui.po libreoffice-5.1.2~rc2/translations/source/tg/sw/source/ui/dbui.po --- libreoffice-5.1.1~rc2/translations/source/tg/sw/source/ui/dbui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/tg/sw/source/ui/dbui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 00:08+0000\n" +"PO-Revision-Date: 2016-03-09 12:36+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: tg\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1431562135.000000\n" +"X-POOTLE-MTIME: 1457526983.000000\n" #: dbui.src msgctxt "" @@ -488,31 +488,34 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/tg/sw/source/ui/index.po libreoffice-5.1.2~rc2/translations/source/tg/sw/source/ui/index.po --- libreoffice-5.1.1~rc2/translations/source/tg/sw/source/ui/index.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/tg/sw/source/ui/index.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,17 +3,18 @@ msgstr "" "Project-Id-Version: PACKAGE 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:56+0200\n" -"Last-Translator: Anonymous Pootle User\n" +"POT-Creation-Date: 2015-04-22 23:40+0200\n" +"PO-Revision-Date: 2016-03-09 12:37+0000\n" +"Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: tg\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: LibreOffice\n" +"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" +"X-POOTLE-MTIME: 1457527077.000000\n" #: cnttab.src #, fuzzy @@ -57,20 +58,22 @@ 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 @@ msgstr "" #: cnttab.src +#, fuzzy msgctxt "" "cnttab.src\n" "STR_TOKEN_PAGE_NUMS\n" "string.text" msgid "#" -msgstr "" +msgstr "#" #: cnttab.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/tg/sw/source/ui/utlui.po libreoffice-5.1.2~rc2/translations/source/tg/sw/source/ui/utlui.po --- libreoffice-5.1.1~rc2/translations/source/tg/sw/source/ui/utlui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/tg/sw/source/ui/utlui.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE 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-20 11:59+0100\n" +"POT-Creation-Date: 2016-03-29 16:07+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff -Nru libreoffice-5.1.1~rc2/translations/source/tg/sw/uiconfig/swriter/ui.po libreoffice-5.1.2~rc2/translations/source/tg/sw/uiconfig/swriter/ui.po --- libreoffice-5.1.1~rc2/translations/source/tg/sw/uiconfig/swriter/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/tg/sw/uiconfig/swriter/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 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:18+0000\n" +"PO-Revision-Date: 2016-03-09 12:50+0000\n" "Last-Translator: system user <>\n" "Language-Team: none\n" "Language: tg\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1438903084.000000\n" +"X-POOTLE-MTIME: 1457527818.000000\n" #: abstractdialog.ui msgctxt "" @@ -2311,13 +2311,14 @@ msgstr "Табдилдиҳии ҷадвал ба матн" #: converttexttable.ui +#, fuzzy msgctxt "" "converttexttable.ui\n" "othered\n" "text\n" "string.text" msgid "," -msgstr "" +msgstr "," #: converttexttable.ui msgctxt "" @@ -2503,13 +2504,14 @@ msgstr "" #: createaddresslist.ui +#, fuzzy msgctxt "" "createaddresslist.ui\n" "PREV\n" "label\n" "string.text" msgid "<" -msgstr "" +msgstr "<" #: createaddresslist.ui msgctxt "" @@ -2521,13 +2523,14 @@ msgstr "" #: createaddresslist.ui +#, fuzzy msgctxt "" "createaddresslist.ui\n" "NEXT\n" "label\n" "string.text" msgid ">" -msgstr "" +msgstr ">" #: createaddresslist.ui msgctxt "" @@ -4434,13 +4437,14 @@ msgstr "" #: fldvarpage.ui +#, fuzzy msgctxt "" "fldvarpage.ui\n" "separator\n" "text\n" "string.text" msgid "." -msgstr "" +msgstr "." #: fldvarpage.ui msgctxt "" @@ -5422,22 +5426,24 @@ 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 @@ 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 @@ 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 @@ msgstr "" #: mmpreparepage.ui +#, fuzzy msgctxt "" "mmpreparepage.ui\n" "prev\n" "label\n" "string.text" msgid "<" -msgstr "" +msgstr "<" #: mmpreparepage.ui msgctxt "" @@ -8725,13 +8734,14 @@ msgstr "" #: mmpreparepage.ui +#, fuzzy msgctxt "" "mmpreparepage.ui\n" "next\n" "label\n" "string.text" msgid ">" -msgstr "" +msgstr ">" #: mmpreparepage.ui #, fuzzy @@ -9579,13 +9589,14 @@ msgstr "Ҷойгиршавӣ" #: optcaptionpage.ui +#, fuzzy msgctxt "" "optcaptionpage.ui\n" "numseparator\n" "text\n" "string.text" msgid ". " -msgstr "" +msgstr ". " #: optcaptionpage.ui #, fuzzy @@ -15704,40 +15715,44 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/tg/vcl/source/src.po libreoffice-5.1.2~rc2/translations/source/tg/vcl/source/src.po --- libreoffice-5.1.1~rc2/translations/source/tg/vcl/source/src.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/tg/vcl/source/src.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 20:44+0000\n" +"PO-Revision-Date: 2016-03-09 12:53+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: tg\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1449866696.000000\n" +"X-POOTLE-MTIME: 1457528000.000000\n" #: app.src msgctxt "" @@ -1193,12 +1193,13 @@ 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 +1477,14 @@ msgstr "" #: units.src +#, fuzzy msgctxt "" "units.src\n" "SV_FUNIT_STRINGS\n" "°\n" "itemlist.text" msgid "°" -msgstr "" +msgstr "°" #: units.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/th/cui/uiconfig/ui.po libreoffice-5.1.2~rc2/translations/source/th/cui/uiconfig/ui.po --- libreoffice-5.1.1~rc2/translations/source/th/cui/uiconfig/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/th/cui/uiconfig/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: LibO 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:56+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2016-03-17 17:15+0000\n" +"Last-Translator: jteera <jteera5@hotmail.com>\n" "Language-Team: none\n" "Language: th\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1452264985.000000\n" +"X-POOTLE-MTIME: 1458234916.000000\n" #: aboutconfigdialog.ui msgctxt "" @@ -1456,7 +1456,7 @@ "label\n" "string.text" msgid "Type:" -msgstr "" +msgstr "ชนิด:" #: baselinksdialog.ui msgctxt "" @@ -2588,14 +2588,13 @@ msgstr "รูปà¹à¸šà¸š" #: charnamepage.ui -#, fuzzy msgctxt "" "charnamepage.ui\n" "westsizeft-nocjk\n" "label\n" "string.text" msgid "Size:" -msgstr "ขนาด" +msgstr "ขนาด:" #: charnamepage.ui msgctxt "" @@ -2617,14 +2616,13 @@ msgstr "รูปà¹à¸šà¸š" #: charnamepage.ui -#, fuzzy msgctxt "" "charnamepage.ui\n" "westsizeft-cjk\n" "label\n" "string.text" msgid "Size:" -msgstr "ขนาด" +msgstr "ขนาด:" #: charnamepage.ui #, fuzzy @@ -2666,14 +2664,13 @@ msgstr "รูปà¹à¸šà¸š" #: charnamepage.ui -#, fuzzy msgctxt "" "charnamepage.ui\n" "eastsizeft\n" "label\n" "string.text" msgid "Size:" -msgstr "ขนาด" +msgstr "ขนาด:" #: charnamepage.ui #, fuzzy @@ -2715,14 +2712,13 @@ msgstr "รูปà¹à¸šà¸š" #: charnamepage.ui -#, fuzzy msgctxt "" "charnamepage.ui\n" "ctlsizeft\n" "label\n" "string.text" msgid "Size:" -msgstr "ขนาด" +msgstr "ขนาด:" #: charnamepage.ui #, fuzzy @@ -3655,7 +3651,7 @@ "label\n" "string.text" msgid "_Type:" -msgstr "" +msgstr "_ชนิด:" #: connectortabpage.ui msgctxt "" @@ -5537,7 +5533,7 @@ "label\n" "string.text" msgid "Modified:" -msgstr "" +msgstr "เปลี่ยนà¹à¸›à¸¥à¸‡:" #: gallerygeneralpage.ui msgctxt "" @@ -5546,7 +5542,7 @@ "label\n" "string.text" msgid "Type:" -msgstr "" +msgstr "ชนิด:" #: gallerygeneralpage.ui #, fuzzy @@ -5694,7 +5690,7 @@ "label\n" "string.text" msgid "_Type:" -msgstr "" +msgstr "_ชนิด:" #: gradientpage.ui msgctxt "" @@ -6677,7 +6673,7 @@ "label\n" "string.text" msgid "_Subject:" -msgstr "" +msgstr "เ_รื่อง:" #: hyperlinkmailpage.ui msgctxt "" @@ -7580,7 +7576,7 @@ "label\n" "string.text" msgid "_Type:" -msgstr "" +msgstr "_ชนิด:" #: linestyletabpage.ui #, fuzzy @@ -10577,14 +10573,13 @@ msgstr "" #: optfontspage.ui -#, fuzzy msgctxt "" "optfontspage.ui\n" "label9\n" "label\n" "string.text" msgid "_Size:" -msgstr "ขนาด" +msgstr "_ขนาด:" #: optfontspage.ui msgctxt "" @@ -14090,31 +14085,34 @@ 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 @@ -16908,7 +16906,7 @@ "label\n" "string.text" msgid "_Type:" -msgstr "" +msgstr "_ชนิด:" #: textflowpage.ui msgctxt "" @@ -17386,40 +17384,44 @@ 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 @@ -17442,40 +17444,44 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/th/dbaccess/uiconfig/ui.po libreoffice-5.1.2~rc2/translations/source/th/dbaccess/uiconfig/ui.po --- libreoffice-5.1.1~rc2/translations/source/th/dbaccess/uiconfig/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/th/dbaccess/uiconfig/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: LibO 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-14 00:25+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2016-03-17 17:15+0000\n" +"Last-Translator: jteera <jteera5@hotmail.com>\n" "Language-Team: none\n" "Language: th\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1431563148.000000\n" +"X-POOTLE-MTIME: 1458234919.000000\n" #: admindialog.ui msgctxt "" @@ -1343,7 +1343,7 @@ "label\n" "string.text" msgid "_Type:" -msgstr "" +msgstr "_ชนิด:" #: joindialog.ui msgctxt "" @@ -1949,22 +1949,24 @@ 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 "" @@ -1976,13 +1978,14 @@ msgstr "" #: queryfilterdialog.ui +#, fuzzy msgctxt "" "queryfilterdialog.ui\n" "cond1\n" "4\n" "stringlist.text" msgid ">" -msgstr "" +msgstr ">" #: queryfilterdialog.ui msgctxt "" @@ -3038,58 +3041,64 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/th/extensions/uiconfig/sabpilot/ui.po libreoffice-5.1.2~rc2/translations/source/th/extensions/uiconfig/sabpilot/ui.po --- libreoffice-5.1.1~rc2/translations/source/th/extensions/uiconfig/sabpilot/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/th/extensions/uiconfig/sabpilot/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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 03:25+0000\n" +"PO-Revision-Date: 2016-03-09 10:47+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: th\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1435289135.000000\n" +"X-POOTLE-MTIME: 1457520470.000000\n" #: contentfieldpage.ui msgctxt "" @@ -281,13 +281,14 @@ msgstr "" #: gridfieldsselectionpage.ui +#, fuzzy msgctxt "" "gridfieldsselectionpage.ui\n" "fieldright\n" "label\n" "string.text" msgid "->" -msgstr "" +msgstr "->" #: gridfieldsselectionpage.ui msgctxt "" @@ -299,13 +300,14 @@ msgstr "" #: gridfieldsselectionpage.ui +#, fuzzy msgctxt "" "gridfieldsselectionpage.ui\n" "fieldleft\n" "label\n" "string.text" msgid "<-" -msgstr "" +msgstr "<-" #: gridfieldsselectionpage.ui msgctxt "" @@ -380,22 +382,24 @@ 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 @@ msgstr "" #: tableselectionpage.ui +#, fuzzy msgctxt "" "tableselectionpage.ui\n" "search\n" "label\n" "string.text" msgid "_..." -msgstr "" +msgstr "_..." #: tableselectionpage.ui msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/th/instsetoo_native/inc_openoffice/windows/msi_languages.po libreoffice-5.1.2~rc2/translations/source/th/instsetoo_native/inc_openoffice/windows/msi_languages.po --- libreoffice-5.1.1~rc2/translations/source/th/instsetoo_native/inc_openoffice/windows/msi_languages.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/th/instsetoo_native/inc_openoffice/windows/msi_languages.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:40+0200\n" -"PO-Revision-Date: 2015-01-05 17:44+0000\n" +"PO-Revision-Date: 2016-03-15 03:00+0000\n" "Last-Translator: jteera <jteera5@hotmail.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: th\n" @@ -12,9 +12,9 @@ "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: 1420479842.000000\n" +"X-POOTLE-MTIME: 1458010823.000000\n" #: ActionTe.ulf msgctxt "" @@ -1310,7 +1310,7 @@ "OOO_CONTROL_55\n" "LngText.text" msgid "Feature Description:" -msgstr "คำบรรยายคุณลัà¸à¸©à¸“ะ:" +msgstr "คำบรรยายลัà¸à¸©à¸“ะสำคัà¸:" #: Control.ulf msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/th/librelogo/source/pythonpath.po libreoffice-5.1.2~rc2/translations/source/th/librelogo/source/pythonpath.po --- libreoffice-5.1.1~rc2/translations/source/th/librelogo/source/pythonpath.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/th/librelogo/source/pythonpath.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,8 +3,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: 2014-11-18 11:23+0100\n" -"PO-Revision-Date: 2015-02-24 01:06+0000\n" +"POT-Creation-Date: 2015-04-22 23:40+0200\n" +"PO-Revision-Date: 2016-03-09 11:02+0000\n" "Last-Translator: jteera <jteera5@hotmail.com>\n" "Language-Team: none\n" "Language: th\n" @@ -12,9 +12,9 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Pootle 2.5.1\n" +"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1424739961.000000\n" +"X-POOTLE-MTIME: 1457521357.000000\n" #: LibreLogo_en_US.properties msgctxt "" @@ -785,20 +785,22 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/th/officecfg/registry/data/org/openoffice/Office.po libreoffice-5.1.2~rc2/translations/source/th/officecfg/registry/data/org/openoffice/Office.po --- libreoffice-5.1.1~rc2/translations/source/th/officecfg/registry/data/org/openoffice/Office.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/th/officecfg/registry/data/org/openoffice/Office.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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:21+0000\n" +"PO-Revision-Date: 2016-03-09 11:12+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: th\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1438903312.000000\n" +"X-POOTLE-MTIME: 1457521971.000000\n" #: Addons.xcu msgctxt "" @@ -1430,13 +1430,14 @@ msgstr "" #: PresentationMinimizer.xcu +#, fuzzy msgctxt "" "PresentationMinimizer.xcu\n" "..PresentationMinimizer.Strings\n" "STR_FILESIZESEPARATOR\n" "value.text" msgid "." -msgstr "" +msgstr "." #: PresentationMinimizer.xcu msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/th/reportdesign/uiconfig/dbreport/ui.po libreoffice-5.1.2~rc2/translations/source/th/reportdesign/uiconfig/dbreport/ui.po --- libreoffice-5.1.1~rc2/translations/source/th/reportdesign/uiconfig/dbreport/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/th/reportdesign/uiconfig/dbreport/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-14 00:34+0000\n" +"PO-Revision-Date: 2016-03-09 11:34+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: th\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1431563675.000000\n" +"X-POOTLE-MTIME: 1457523248.000000\n" #: backgrounddialog.ui msgctxt "" @@ -198,13 +198,14 @@ msgstr "" #: conditionwin.ui +#, fuzzy msgctxt "" "conditionwin.ui\n" "lhsButton\n" "label\n" "string.text" msgid "..." -msgstr "" +msgstr "..." #: conditionwin.ui msgctxt "" @@ -216,13 +217,14 @@ msgstr "" #: conditionwin.ui +#, fuzzy msgctxt "" "conditionwin.ui\n" "rhsButton\n" "label\n" "string.text" msgid "..." -msgstr "" +msgstr "..." #: conditionwin.ui msgctxt "" @@ -279,13 +281,14 @@ msgstr "" #: conditionwin.ui +#, fuzzy msgctxt "" "conditionwin.ui\n" "removeButton\n" "label\n" "string.text" msgid "-" -msgstr "" +msgstr "-" #: conditionwin.ui msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/th/sc/source/ui/src.po libreoffice-5.1.2~rc2/translations/source/th/sc/source/ui/src.po --- libreoffice-5.1.1~rc2/translations/source/th/sc/source/ui/src.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/th/sc/source/ui/src.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\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-14 00:39+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2016-03-11 14:55+0000\n" +"Last-Translator: jteera <jteera5@hotmail.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: th\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1431563995.000000\n" +"X-POOTLE-MTIME: 1457708151.000000\n" #: condformatdlg.src #, fuzzy @@ -2619,13 +2619,14 @@ msgstr "ลัà¸à¸©à¸“ะข้อความ" #: globstr.src +#, fuzzy msgctxt "" "globstr.src\n" "RID_GLOBSTR\n" "STR_HFCMD_DELIMITER\n" "string.text" msgid "\\" -msgstr "" +msgstr "\\" #: globstr.src msgctxt "" @@ -20898,7 +20899,7 @@ "1\n" "string.text" msgid "Returns the slope of the linear regression line." -msgstr "ส่งà¸à¸¥à¸±à¸šà¸„วามชันของà¸à¸²à¸£à¸–ดถอยà¹à¸šà¸šà¹€à¸ªà¹‰à¸™à¸•à¸£à¸‡" +msgstr "ส่งà¸à¸¥à¸±à¸šà¸„วามชันของเส้นตรงà¸à¸²à¸£à¸–ดถอยเชิงเส้น" #: scfuncs.src msgctxt "" @@ -21408,7 +21409,7 @@ "1\n" "string.text" msgid "Selects a value from a list of up to 30 value arguments." -msgstr "เลือà¸à¸„่าจาà¸à¸£à¸²à¸¢à¸à¸²à¸£à¸‚องอาร์à¸à¸´à¸§à¹€à¸¡à¸™à¸•à¹Œà¸„่าถึง 30 " +msgstr "เลือà¸à¸ˆà¸²à¸à¸£à¸²à¸¢à¸à¸²à¸£à¸‚องอาร์à¸à¸´à¸§à¹€à¸¡à¸™à¸•à¹Œà¹„ด้ถึง 30 ค่า" #: scfuncs.src msgctxt "" @@ -21426,7 +21427,7 @@ "3\n" "string.text" msgid "The index of the value (1..30) selected." -msgstr "เลือà¸à¸”ัชนีของค่า (1..30) " +msgstr "เลือà¸à¸”ัชนีที่มีค่า (1..30) à¹à¸¥à¹‰à¸§" #: scfuncs.src msgctxt "" @@ -22247,7 +22248,7 @@ "1\n" "string.text" msgid "Result of a DDE link." -msgstr "ผลลัพธ์à¸à¸²à¸£à¹€à¸Šà¸·à¹ˆà¸­à¸¡à¹‚ยง DDE " +msgstr "ผลลัพธ์à¸à¸²à¸£à¹€à¸Šà¸·à¹ˆà¸­à¸¡à¹‚ยง DDE" #: scfuncs.src msgctxt "" @@ -23165,7 +23166,7 @@ "5\n" "string.text" msgid "Decimal places. The number of fixed decimal places that are to be displayed." -msgstr "ตำà¹à¸«à¸™à¹ˆà¸‡à¸—ศนิยม à¹à¸ªà¸”งผลจำนวนของจุดทศนิยมที่คงที่ " +msgstr "ทศนิยม จำนวนตัวเลขคงที่หลังจุดทศนิยมที่à¹à¸ªà¸”งผล" #: scfuncs.src msgctxt "" @@ -23453,7 +23454,7 @@ "5\n" "string.text" msgid "The partial string to be (repeatedly) replaced." -msgstr "à¹à¸—นที่สายอัà¸à¸‚ระบางส่วน (ทำซ้ำ) " +msgstr "สายอัà¸à¸‚ระบางส่วนที่จะถูà¸à¹à¸—นที่ (ซ้ำๆ)" #: scfuncs.src msgctxt "" @@ -23688,7 +23689,7 @@ "3\n" "string.text" msgid "The number to be converted to a Roman numeral must be in the 0 - 3999 range." -msgstr "à¹à¸›à¸¥à¸‡à¸•à¸±à¸§à¹€à¸¥à¸‚เป็นตัวเลขโรมันต้องอยู่ในช่วง 0 - 3999 " +msgstr "ตัวเลขที่จะà¹à¸›à¸¥à¸‡à¹€à¸›à¹‡à¸™à¸•à¸±à¸§à¹€à¸¥à¸‚โรมันต้องอยู่ในช่วง 0 - 3999" #: scfuncs.src msgctxt "" @@ -23706,7 +23707,7 @@ "5\n" "string.text" msgid "The more this value increases, the more the Roman numeral is simplified. The value must be in the 0 - 4 range." -msgstr "ค่าเพิ่มขึ้นมาà¸à¹€à¸—่าไหร่ ตัวเลขโรมันà¸à¹‡à¸‡à¹ˆà¸²à¸¢à¸‚ึ้นเท่านั้น ค่าต้องอยู่ในช่วง 0 - 4 " +msgstr "ค่าเพิ่มขึ้นมาà¸à¹€à¸—่าไหร่ ตัวเลขโรมันà¸à¹‡à¸‡à¹ˆà¸²à¸¢à¸‚ึ้นเท่านั้น ค่าต้องอยู่ในช่วง 0 - 4" #: scfuncs.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/th/sc/uiconfig/scalc/ui.po libreoffice-5.1.2~rc2/translations/source/th/sc/uiconfig/scalc/ui.po --- libreoffice-5.1.1~rc2/translations/source/th/sc/uiconfig/scalc/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/th/sc/uiconfig/scalc/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: LibO 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-05-14 00:40+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2016-03-28 04:24+0000\n" +"Last-Translator: jteera <jteera5@hotmail.com>\n" "Language-Team: none\n" "Language: th\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1431564034.000000\n" +"X-POOTLE-MTIME: 1459139097.000000\n" #: advancedfilterdialog.ui msgctxt "" @@ -1609,7 +1609,7 @@ "label\n" "string.text" msgid "_Type:" -msgstr "" +msgstr "_ชนิด:" #: datafielddialog.ui msgctxt "" @@ -2611,7 +2611,7 @@ "label\n" "string.text" msgid "_Action:" -msgstr "" +msgstr "_à¸à¸²à¸£à¸à¸£à¸°à¸—ำ:" #: erroralerttabpage.ui msgctxt "" @@ -6424,22 +6424,24 @@ 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 "" @@ -7276,7 +7278,7 @@ "label\n" "string.text" msgid "_Type:" -msgstr "" +msgstr "_ชนิด:" #: selectdatasource.ui msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/th/scaddins/source/analysis.po libreoffice-5.1.2~rc2/translations/source/th/scaddins/source/analysis.po --- libreoffice-5.1.1~rc2/translations/source/th/scaddins/source/analysis.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/th/scaddins/source/analysis.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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-28 11:42+0000\n" +"PO-Revision-Date: 2016-03-12 01:43+0000\n" "Last-Translator: jteera <jteera5@hotmail.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: th\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1411904568.000000\n" +"X-POOTLE-MTIME: 1457747022.000000\n" #: analysis.src msgctxt "" @@ -469,7 +469,7 @@ "5\n" "string.text" msgid "The initial power to which x is to be raised" -msgstr "à¸à¸³à¸¥à¸±à¸‡à¹€à¸£à¸´à¹ˆà¸¡à¹€à¸›à¹‡à¸™à¸¢à¸à¸à¸³à¸¥à¸±à¸‡ x " +msgstr "เลขชี้à¸à¸³à¸¥à¸±à¸‡à¹€à¸£à¸´à¹ˆà¸¡à¸•à¹‰à¸™à¸ªà¸³à¸«à¸£à¸±à¸šà¸¢à¸à¸à¸³à¸¥à¸±à¸‡à¸‚องà¸à¸²à¸™ x" #: analysis.src msgctxt "" @@ -772,7 +772,7 @@ "5\n" "string.text" msgid "The order of the Bessel function" -msgstr "ลำดับฟังà¸à¹Œà¸Šà¸±à¸™ Bessel " +msgstr "ลำดับฟังà¸à¹Œà¸Šà¸±à¸™ Bessel" #: analysis.src msgctxt "" @@ -817,7 +817,7 @@ "5\n" "string.text" msgid "The order of the Bessel function" -msgstr "ลำดับฟังà¸à¹Œà¸Šà¸±à¸™ Bessel " +msgstr "ลำดับฟังà¸à¹Œà¸Šà¸±à¸™ Bessel" #: analysis.src msgctxt "" @@ -862,7 +862,7 @@ "5\n" "string.text" msgid "The order of the Bessel function" -msgstr "ลำดับฟังà¸à¹Œà¸Šà¸±à¸™ Bessel " +msgstr "ลำดับฟังà¸à¹Œà¸Šà¸±à¸™ Bessel" #: analysis.src msgctxt "" @@ -907,7 +907,7 @@ "5\n" "string.text" msgid "The order of the Bessel function" -msgstr "ลำดับฟังà¸à¹Œà¸Šà¸±à¸™ Bessel " +msgstr "ลำดับฟังà¸à¹Œà¸Šà¸±à¸™ Bessel" #: analysis.src msgctxt "" @@ -2374,7 +2374,7 @@ "4\n" "string.text" msgid "I num" -msgstr "จำนวนจินตภาพ " +msgstr "จำนวนจินตภาพ" #: analysis.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/th/scp2/source/draw.po libreoffice-5.1.2~rc2/translations/source/th/scp2/source/draw.po --- libreoffice-5.1.1~rc2/translations/source/th/scp2/source/draw.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/th/scp2/source/draw.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,8 +3,8 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2014-11-18 11:23+0100\n" -"PO-Revision-Date: 2015-01-10 02:35+0000\n" +"POT-Creation-Date: 2015-04-22 23:41+0200\n" +"PO-Revision-Date: 2016-03-12 01:46+0000\n" "Last-Translator: jteera <jteera5@hotmail.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: th\n" @@ -12,9 +12,9 @@ "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: 1420857342.000000\n" +"X-POOTLE-MTIME: 1457747181.000000\n" #: folderitem_draw.ulf msgctxt "" @@ -70,7 +70,7 @@ "STR_NAME_MODULE_PRG_DRAW_HELP\n" "LngText.text" msgid "%PRODUCTNAME Draw Help" -msgstr "%PRODUCTNAME Draw วิธีใช้ " +msgstr "วิธีใช้ %PRODUCTNAME Draw" #: module_draw.ulf msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/th/scp2/source/impress.po libreoffice-5.1.2~rc2/translations/source/th/scp2/source/impress.po --- libreoffice-5.1.1~rc2/translations/source/th/scp2/source/impress.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/th/scp2/source/impress.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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: 2014-06-01 17:56+0000\n" +"PO-Revision-Date: 2016-03-12 01:47+0000\n" "Last-Translator: jteera <jteera5@hotmail.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: th\n" @@ -12,9 +12,9 @@ "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: 1401645391.000000\n" +"X-POOTLE-MTIME: 1457747227.000000\n" #: folderitem_impress.ulf msgctxt "" @@ -78,7 +78,7 @@ "STR_DESC_MODULE_PRG_IMPRESS_HELP\n" "LngText.text" msgid "Help about %PRODUCTNAME Impress" -msgstr "วิธีใช้เà¸à¸µà¹ˆà¸¢à¸§à¸à¸±à¸š %PRODUCTNAME Impress " +msgstr "วิธีใช้เà¸à¸µà¹ˆà¸¢à¸§à¸à¸±à¸š %PRODUCTNAME Impress" #: registryitem_impress.ulf msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/th/scp2/source/math.po libreoffice-5.1.2~rc2/translations/source/th/scp2/source/math.po --- libreoffice-5.1.1~rc2/translations/source/th/scp2/source/math.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/th/scp2/source/math.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,8 +3,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: 2013-11-20 13:01+0100\n" -"PO-Revision-Date: 2014-03-09 16:35+0000\n" +"POT-Creation-Date: 2015-04-22 23:41+0200\n" +"PO-Revision-Date: 2016-03-12 01:49+0000\n" "Last-Translator: jteera <jteera5@hotmail.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: th\n" @@ -12,9 +12,9 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Pootle 2.5.0\n" +"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1394382933.0\n" +"X-POOTLE-MTIME: 1457747359.000000\n" #: folderitem_math.ulf msgctxt "" @@ -62,7 +62,7 @@ "STR_NAME_MODULE_PRG_MATH_HELP\n" "LngText.text" msgid "%PRODUCTNAME Math Help" -msgstr "%PRODUCTNAME Math วิธีใช้ " +msgstr "วิธีใช้ %PRODUCTNAME Math" #: module_math.ulf msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/th/sd/source/ui/app.po libreoffice-5.1.2~rc2/translations/source/th/sd/source/ui/app.po --- libreoffice-5.1.1~rc2/translations/source/th/sd/source/ui/app.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/th/sd/source/ui/app.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\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 03:41+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2016-03-12 04:25+0000\n" +"Last-Translator: jteera <jteera5@hotmail.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: th\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1435290102.000000\n" +"X-POOTLE-MTIME: 1457756722.000000\n" #: menuids3_tmpl.src msgctxt "" @@ -1772,7 +1772,7 @@ "STR_GLUEPOINTS_TOOLBOX\n" "string.text" msgid "Glue Point Object Bar" -msgstr "à¹à¸–บวัตถุจุดเชื่อม " +msgstr "à¹à¸–บวัตถุจุดเชื่อม" #: strings.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/th/sd/uiconfig/sdraw/ui.po libreoffice-5.1.2~rc2/translations/source/th/sd/uiconfig/sdraw/ui.po --- libreoffice-5.1.1~rc2/translations/source/th/sd/uiconfig/sdraw/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/th/sd/uiconfig/sdraw/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 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-01-25 07:24+0000\n" +"PO-Revision-Date: 2016-03-12 01:55+0000\n" "Last-Translator: jteera <jteera5@hotmail.com>\n" "Language-Team: none\n" "Language: th\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1422170664.000000\n" +"X-POOTLE-MTIME: 1457747738.000000\n" #: breakdialog.ui msgctxt "" @@ -728,7 +728,7 @@ "title\n" "string.text" msgid "Name HTML Design" -msgstr "" +msgstr "ตั้งชื่อดีไซน์ HTML" #: paranumberingtab.ui msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/th/sd/uiconfig/simpress/ui.po libreoffice-5.1.2~rc2/translations/source/th/sd/uiconfig/simpress/ui.po --- libreoffice-5.1.1~rc2/translations/source/th/sd/uiconfig/simpress/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/th/sd/uiconfig/simpress/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: LibO 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-14 00:43+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2016-03-25 03:28+0000\n" +"Last-Translator: jteera <jteera5@hotmail.com>\n" "Language-Team: none\n" "Language: th\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1431564220.000000\n" +"X-POOTLE-MTIME: 1458876483.000000\n" #: assistentdialog.ui msgctxt "" @@ -23,7 +23,7 @@ "title\n" "string.text" msgid "Presentation Wizard" -msgstr "" +msgstr "ตัวช่วยสร้างà¸à¸²à¸£à¸™à¸³à¹€à¸ªà¸™à¸­" #: assistentdialog.ui msgctxt "" @@ -776,7 +776,7 @@ "2\n" "stringlist.text" msgid "By 1st level paragraphs" -msgstr "" +msgstr "ข้างย่อหน้าขั้นที่ 1" #: customanimationtexttab.ui msgctxt "" @@ -785,7 +785,7 @@ "3\n" "stringlist.text" msgid "By 2nd level paragraphs" -msgstr "" +msgstr "ข้างย่อหน้าขั้นที่ 2" #: customanimationtexttab.ui msgctxt "" @@ -794,7 +794,7 @@ "4\n" "stringlist.text" msgid "By 3rd level paragraphs" -msgstr "" +msgstr "ข้างย่อหน้าขั้นที่ 3" #: customanimationtexttab.ui msgctxt "" @@ -803,7 +803,7 @@ "5\n" "stringlist.text" msgid "By 4th level paragraphs" -msgstr "" +msgstr "ข้างย่อหน้าขั้นที่ 4" #: customanimationtexttab.ui msgctxt "" @@ -812,7 +812,7 @@ "6\n" "stringlist.text" msgid "By 5th level paragraphs" -msgstr "" +msgstr "ข้างย่อหน้าขั้นที่ 5" #: customanimationtexttab.ui msgctxt "" @@ -866,7 +866,7 @@ "label\n" "string.text" msgid "_Repeat:" -msgstr "" +msgstr "_ซ้ำ:" #: customanimationtimingtab.ui msgctxt "" @@ -1005,22 +1005,24 @@ 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 "" @@ -2591,7 +2593,7 @@ "title\n" "string.text" msgid "HTML Export" -msgstr "" +msgstr "ส่งออภHTML" #: publishingdialog.ui msgctxt "" @@ -3150,7 +3152,7 @@ "label\n" "string.text" msgid "_All control points in Bézier editor" -msgstr "" +msgstr "จุดควบคุม_ทั้งหมดในตัวà¹à¸à¹‰à¹„ข Bézier" #: sdviewpage.ui msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/th/sfx2/source/appl.po libreoffice-5.1.2~rc2/translations/source/th/sfx2/source/appl.po --- libreoffice-5.1.1~rc2/translations/source/th/sfx2/source/appl.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/th/sfx2/source/appl.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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-14 00:43+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2016-03-13 17:23+0000\n" +"Last-Translator: jteera <jteera5@hotmail.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: th\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1431564233.000000\n" +"X-POOTLE-MTIME: 1457889839.000000\n" #: app.src msgctxt "" @@ -693,7 +693,7 @@ "STR_HELP_WINDOW_TITLE\n" "string.text" msgid "%PRODUCTNAME Help" -msgstr "ตัวช่วย %PRODUCTNAME " +msgstr "วิธีใช้ %PRODUCTNAME" #: newhelp.src msgctxt "" @@ -765,7 +765,7 @@ "STR_HELP_BUTTON_SOURCEVIEW\n" "string.text" msgid "HTML Source" -msgstr "à¹à¸«à¸¥à¹ˆà¸‡ HTML " +msgstr "ภาษา HTML" #: newhelp.src msgctxt "" @@ -773,7 +773,7 @@ "STR_HELP_FIRST_MESSAGE\n" "string.text" msgid "The Help is being started..." -msgstr "เริ่มตัวช่วย..." +msgstr "à¸à¸³à¸¥à¸±à¸‡à¹€à¸£à¸´à¹ˆà¸¡à¹à¸ªà¸”งวิธีใช้..." #: newhelp.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/th/sfx2/uiconfig/ui.po libreoffice-5.1.2~rc2/translations/source/th/sfx2/uiconfig/ui.po --- libreoffice-5.1.1~rc2/translations/source/th/sfx2/uiconfig/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/th/sfx2/uiconfig/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: LibO 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 15:06+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2016-03-17 17:15+0000\n" +"Last-Translator: jteera <jteera5@hotmail.com>\n" "Language-Team: none\n" "Language: th\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1452265574.000000\n" +"X-POOTLE-MTIME: 1458234938.000000\n" #: alienwarndialog.ui msgctxt "" @@ -231,7 +231,7 @@ "label\n" "string.text" msgid "_Subject:" -msgstr "" +msgstr "เ_รื่อง:" #: descriptioninfopage.ui msgctxt "" @@ -240,7 +240,7 @@ "label\n" "string.text" msgid "_Keywords:" -msgstr "" +msgstr "_คำสำคัà¸:" #: descriptioninfopage.ui #, fuzzy @@ -286,7 +286,7 @@ "label\n" "string.text" msgid "_Modified:" -msgstr "" +msgstr "เ_ปลี่ยนà¹à¸›à¸¥à¸‡:" #: documentinfopage.ui msgctxt "" @@ -376,7 +376,7 @@ "label\n" "string.text" msgid "_Size:" -msgstr "" +msgstr "_ขนาด:" #: documentinfopage.ui msgctxt "" @@ -403,7 +403,7 @@ "label\n" "string.text" msgid "_Type:" -msgstr "" +msgstr "_ชนิด:" #: documentinfopage.ui msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/th/shell/source/win32/shlxthandler/res.po libreoffice-5.1.2~rc2/translations/source/th/shell/source/win32/shlxthandler/res.po --- libreoffice-5.1.1~rc2/translations/source/th/shell/source/win32/shlxthandler/res.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/th/shell/source/win32/shlxthandler/res.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,8 +3,8 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2014-11-18 11:23+0100\n" -"PO-Revision-Date: 2015-01-10 02:25+0000\n" +"POT-Creation-Date: 2015-04-22 23:40+0200\n" +"PO-Revision-Date: 2016-03-17 17:15+0000\n" "Last-Translator: jteera <jteera5@hotmail.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: th\n" @@ -12,9 +12,9 @@ "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: 1420856724.000000\n" +"X-POOTLE-MTIME: 1458234943.000000\n" #: shlxthdl.ulf msgctxt "" @@ -46,7 +46,7 @@ "%SUBJECT_COLON%\n" "LngText.text" msgid "Subject:" -msgstr "เรื่อง: " +msgstr "เรื่อง:" #: shlxthdl.ulf msgctxt "" @@ -78,7 +78,7 @@ "%KEYWORDS_COLON%\n" "LngText.text" msgid "Keywords:" -msgstr "คำสำคัà¸: " +msgstr "คำสำคัà¸:" #: shlxthdl.ulf msgctxt "" @@ -246,7 +246,7 @@ "%MODIFIED_COLON%\n" "LngText.text" msgid "Modified:" -msgstr "à¹à¸à¹‰à¹„ข: " +msgstr "เปลี่ยนà¹à¸›à¸¥à¸‡:" #: shlxthdl.ulf msgctxt "" @@ -278,7 +278,7 @@ "%EDITING_TIME_COLON%\n" "LngText.text" msgid "Total editing time:" -msgstr "เวลาà¸à¸²à¸£à¹à¸à¹‰à¹„ขทั้งหมด: " +msgstr "เวลาà¸à¸²à¸£à¹à¸à¹‰à¹„ขทั้งหมด:" #: shlxthdl.ulf msgctxt "" @@ -302,7 +302,7 @@ "%SIZE_COLON%\n" "LngText.text" msgid "Size:" -msgstr "ขนาด: " +msgstr "ขนาด:" #: shlxthdl.ulf msgctxt "" @@ -310,4 +310,4 @@ "%TYPE_COLON%\n" "LngText.text" msgid "Type:" -msgstr "ชนิด: " +msgstr "ชนิด:" diff -Nru libreoffice-5.1.1~rc2/translations/source/th/starmath/source.po libreoffice-5.1.2~rc2/translations/source/th/starmath/source.po --- libreoffice-5.1.1~rc2/translations/source/th/starmath/source.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/th/starmath/source.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\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 00:52+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2016-03-17 17:25+0000\n" +"Last-Translator: jteera <jteera5@hotmail.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: th\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1431564774.000000\n" +"X-POOTLE-MTIME: 1458235531.000000\n" #: commands.src msgctxt "" @@ -1918,7 +1918,7 @@ "RID_CATEGORY_UNARY_BINARY_OPERATORS\n" "string.text" msgid "Unary/Binary Operators" -msgstr "ตัวปà¸à¸´à¸šà¸±à¸•à¸´à¸à¸²à¸£à¹€à¸­à¸à¸ à¸²à¸„ (Unary) / ทวิภาค (Binary)" +msgstr "ตัวดำเนินà¸à¸²à¸£à¹€à¸­à¸à¸ à¸²à¸„ (Unary)/ทวิภาค (Binary)" #: commands.src msgctxt "" @@ -1999,7 +1999,7 @@ "RID_UNBINOPS_MENU\n" "menuitem.text" msgid "~Unary/Binary Operators" -msgstr "~ตัวปà¸à¸´à¸šà¸±à¸•à¸´à¸à¸²à¸£ Unary/Binary " +msgstr "~ตัวดำเนินà¸à¸²à¸£à¹€à¸­à¸à¸ à¸²à¸„ (Unary)/ทวิภาค (Binary)" #: commands.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/th/svl/source/misc.po libreoffice-5.1.2~rc2/translations/source/th/svl/source/misc.po --- libreoffice-5.1.1~rc2/translations/source/th/svl/source/misc.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/th/svl/source/misc.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,8 +3,8 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2014-11-18 11:23+0100\n" -"PO-Revision-Date: 2015-01-09 13:34+0000\n" +"POT-Creation-Date: 2015-04-22 23:40+0200\n" +"PO-Revision-Date: 2016-03-12 04:41+0000\n" "Last-Translator: jteera <jteera5@hotmail.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: th\n" @@ -12,9 +12,9 @@ "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: 1420810488.000000\n" +"X-POOTLE-MTIME: 1457757665.000000\n" #: mediatyp.src msgctxt "" @@ -294,7 +294,7 @@ "STR_SVT_MIMETYPE_APP_STARHELP\n" "string.text" msgid "%PRODUCTNAME Help" -msgstr "ตัวช่วย %PRODUCTNAME " +msgstr "วิธีใช้ %PRODUCTNAME" #: mediatyp.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/th/svtools/source/dialogs.po libreoffice-5.1.2~rc2/translations/source/th/svtools/source/dialogs.po --- libreoffice-5.1.1~rc2/translations/source/th/svtools/source/dialogs.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/th/svtools/source/dialogs.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-08-25 12:33+0200\n" -"PO-Revision-Date: 2015-05-14 00:54+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2016-03-24 02:05+0000\n" +"Last-Translator: jteera <jteera5@hotmail.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: th\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1431564842.000000\n" +"X-POOTLE-MTIME: 1458785114.000000\n" #: addresstemplate.src msgctxt "" @@ -254,7 +254,7 @@ "STR_FIELD_TELOTHER\n" "string.text" msgid "Tel: Other" -msgstr "โทร: ที่อื่น " +msgstr "โทร: ที่อื่น" #: addresstemplate.src msgctxt "" @@ -398,7 +398,7 @@ "STR_FORMAT_ID_APPLETOBJECT\n" "string.text" msgid "Applet object" -msgstr "วัตถุà¹à¸­à¸›à¹€à¸žà¸¥à¹‡à¸• " +msgstr "วัตถุà¹à¸­à¹‡à¸›à¹€à¸žà¸¥à¹‡à¸•" #: formats.src msgctxt "" @@ -526,7 +526,7 @@ "STR_FORMAT_ID_STARCHART\n" "string.text" msgid "StarChart object" -msgstr "วัตถุ StarChart " +msgstr "วัตถุ StarChart" #: formats.src msgctxt "" @@ -854,7 +854,7 @@ "ERRCODE_SO_CANT_BINDTOSOURCE&S_MAX\n" "string.text" msgid "The connection to the object cannot be established." -msgstr "ไม่สามารถสร้างà¸à¸²à¸£à¹€à¸Šà¸·à¹ˆà¸­à¸¡à¸•à¹ˆà¸­à¹„ปยังวัตถุ " +msgstr "ไม่สามารถสร้างà¸à¸²à¸£à¹€à¸Šà¸·à¹ˆà¸­à¸¡à¸•à¹ˆà¸­à¹„ปยังวัตถุ" #: so3res.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/th/svtools/source/misc.po libreoffice-5.1.2~rc2/translations/source/th/svtools/source/misc.po --- libreoffice-5.1.1~rc2/translations/source/th/svtools/source/misc.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/th/svtools/source/misc.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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 03:43+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2016-03-25 03:25+0000\n" +"Last-Translator: jteera <jteera5@hotmail.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: th\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1435290225.000000\n" +"X-POOTLE-MTIME: 1458876359.000000\n" #: imagemgr.src msgctxt "" @@ -78,7 +78,7 @@ "STR_DESCRIPTION_WORD_DOC\n" "string.text" msgid "MS Word document" -msgstr "เอà¸à¸ªà¸²à¸£ MS Word " +msgstr "เอà¸à¸ªà¸²à¸£à¹„มโครซอฟท์เวิร์ด" #: imagemgr.src msgctxt "" @@ -343,7 +343,7 @@ "STR_DESCRIPTION_POWERPOINT_TEMPLATE\n" "string.text" msgid "MS PowerPoint Template" -msgstr "à¹à¸¡à¹ˆà¹à¸šà¸š MS PowerPoint " +msgstr "à¹à¸¡à¹ˆà¹à¸šà¸šà¹„มโครซอฟท์เพาเวอร์พอยนต์" #: imagemgr.src msgctxt "" @@ -4146,7 +4146,7 @@ "STR_UNDO\n" "string.text" msgid "Undo: " -msgstr "ทำà¸à¸¥à¸±à¸š:" +msgstr "ทำà¸à¸¥à¸±à¸š: " #: undo.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/th/svtools/uiconfig/ui.po libreoffice-5.1.2~rc2/translations/source/th/svtools/uiconfig/ui.po --- libreoffice-5.1.1~rc2/translations/source/th/svtools/uiconfig/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/th/svtools/uiconfig/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: LibO 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 03:44+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2016-03-17 17:16+0000\n" +"Last-Translator: jteera <jteera5@hotmail.com>\n" "Language-Team: none\n" "Language: th\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1435290247.000000\n" +"X-POOTLE-MTIME: 1458234964.000000\n" #: GraphicExportOptionsDialog.ui msgctxt "" @@ -517,14 +517,13 @@ msgstr "" #: placeedit.ui -#, fuzzy msgctxt "" "placeedit.ui\n" "typeLabel\n" "label\n" "string.text" msgid "Type:" -msgstr "ชนิด" +msgstr "ชนิด:" #: placeedit.ui #, fuzzy @@ -693,14 +692,13 @@ msgstr "" #: printersetupdialog.ui -#, fuzzy msgctxt "" "printersetupdialog.ui\n" "label4\n" "label\n" "string.text" msgid "Type:" -msgstr "ชนิด" +msgstr "ชนิด:" #: printersetupdialog.ui msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/th/svx/source/accessibility.po libreoffice-5.1.2~rc2/translations/source/th/svx/source/accessibility.po --- libreoffice-5.1.1~rc2/translations/source/th/svx/source/accessibility.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/th/svx/source/accessibility.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,8 +3,8 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2014-11-18 11:23+0100\n" -"PO-Revision-Date: 2015-01-10 08:36+0000\n" +"POT-Creation-Date: 2015-04-22 23:41+0200\n" +"PO-Revision-Date: 2016-03-25 03:35+0000\n" "Last-Translator: jteera <jteera5@hotmail.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: th\n" @@ -12,9 +12,9 @@ "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: 1420879008.000000\n" +"X-POOTLE-MTIME: 1458876907.000000\n" #: accessibility.src msgctxt "" @@ -310,4 +310,4 @@ "RID_SVXSTR_CHARACTER_CODE\n" "string.text" msgid "Character code " -msgstr "รหัสอัà¸à¸‚ระ" +msgstr "รหัสอัà¸à¸‚ระ " diff -Nru libreoffice-5.1.1~rc2/translations/source/th/svx/source/fmcomp.po libreoffice-5.1.2~rc2/translations/source/th/svx/source/fmcomp.po --- libreoffice-5.1.1~rc2/translations/source/th/svx/source/fmcomp.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/th/svx/source/fmcomp.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,8 +3,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: 2013-11-20 13:02+0100\n" -"PO-Revision-Date: 2014-03-14 16:26+0000\n" +"POT-Creation-Date: 2015-04-22 23:41+0200\n" +"PO-Revision-Date: 2016-03-28 04:14+0000\n" "Last-Translator: jteera <jteera5@hotmail.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: th\n" @@ -12,9 +12,9 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Pootle 2.5.1\n" +"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1394814386.000000\n" +"X-POOTLE-MTIME: 1459138457.000000\n" #: gridctrl.src msgctxt "" @@ -68,7 +68,7 @@ "SID_FM_COMBOBOX\n" "menuitem.text" msgid "Combo Box" -msgstr "à¸à¸¥à¹ˆà¸­à¸‡à¸„อมโบ " +msgstr "à¸à¸¥à¹ˆà¸­à¸‡à¸„อมโบ" #: gridctrl.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/th/svx/source/form.po libreoffice-5.1.2~rc2/translations/source/th/svx/source/form.po --- libreoffice-5.1.1~rc2/translations/source/th/svx/source/form.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/th/svx/source/form.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\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-14 00:57+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2016-03-28 04:46+0000\n" +"Last-Translator: jteera <jteera5@hotmail.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: th\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1431565030.000000\n" +"X-POOTLE-MTIME: 1459140417.000000\n" #: datanavi.src msgctxt "" @@ -231,7 +231,7 @@ "RID_STR_DATANAV_SUBM_REF\n" "string.text" msgid "Reference: " -msgstr "อ้างอิง:" +msgstr "อ้างอิง: " #: datanavi.src msgctxt "" @@ -239,7 +239,7 @@ "RID_STR_DATANAV_SUBM_ACTION\n" "string.text" msgid "Action: " -msgstr "à¸à¸²à¸£à¸›à¸à¸´à¸šà¸±à¸•à¸´à¸à¸²à¸£:" +msgstr "à¸à¸²à¸£à¸à¸£à¸°à¸—ำ: " #: datanavi.src msgctxt "" @@ -247,7 +247,7 @@ "RID_STR_DATANAV_SUBM_METHOD\n" "string.text" msgid "Method: " -msgstr "วิธีใช้:" +msgstr "วิธี: " #: datanavi.src msgctxt "" @@ -956,7 +956,7 @@ "RID_STR_UNDO_CONTAINER_REMOVE_MULTIPLE\n" "string.text" msgid "Delete # objects" -msgstr "ลบวัตถุ # " +msgstr "ลบ # วัตถุ" #: fmstring.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/th/svx/uiconfig/ui.po libreoffice-5.1.2~rc2/translations/source/th/svx/uiconfig/ui.po --- libreoffice-5.1.1~rc2/translations/source/th/svx/uiconfig/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/th/svx/uiconfig/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\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 03:46+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2016-03-28 04:42+0000\n" +"Last-Translator: jteera <jteera5@hotmail.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: th\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1435290366.000000\n" +"X-POOTLE-MTIME: 1459140157.000000\n" #: acceptrejectchangesdialog.ui msgctxt "" @@ -412,7 +412,7 @@ "label\n" "string.text" msgid "_Action:" -msgstr "" +msgstr "_à¸à¸²à¸£à¸à¸£à¸°à¸—ำ:" #: addsubmissiondialog.ui msgctxt "" @@ -421,7 +421,7 @@ "label\n" "string.text" msgid "_Method:" -msgstr "" +msgstr "_วิธี:" #: addsubmissiondialog.ui #, fuzzy @@ -1051,7 +1051,7 @@ "label\n" "string.text" msgid "Type:" -msgstr "" +msgstr "ชนิด:" #: compressgraphicdialog.ui msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/th/sw/source/ui/dbui.po libreoffice-5.1.2~rc2/translations/source/th/sw/source/ui/dbui.po --- libreoffice-5.1.1~rc2/translations/source/th/sw/source/ui/dbui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/th/sw/source/ui/dbui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 01:01+0000\n" +"PO-Revision-Date: 2016-03-09 13:03+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: th\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1431565277.000000\n" +"X-POOTLE-MTIME: 1457528606.000000\n" #: dbui.src msgctxt "" @@ -486,31 +486,34 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/th/sw/source/ui/index.po libreoffice-5.1.2~rc2/translations/source/th/sw/source/ui/index.po --- libreoffice-5.1.1~rc2/translations/source/th/sw/source/ui/index.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/th/sw/source/ui/index.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,18 +3,18 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2014-11-18 11:23+0100\n" -"PO-Revision-Date: 2014-11-26 12:30+0000\n" -"Last-Translator: jteera <jteera5@hotmail.com>\n" +"POT-Creation-Date: 2015-04-22 23:40+0200\n" +"PO-Revision-Date: 2016-03-09 13:04+0000\n" +"Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: th\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: LibreOffice\n" +"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1417005032.000000\n" +"X-POOTLE-MTIME: 1457528695.000000\n" #: cnttab.src #, fuzzy @@ -106,12 +106,13 @@ msgstr "" #: cnttab.src +#, fuzzy msgctxt "" "cnttab.src\n" "STR_TOKEN_PAGE_NUMS\n" "string.text" msgid "#" -msgstr "" +msgstr "#" #: cnttab.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/th/sw/source/ui/utlui.po libreoffice-5.1.2~rc2/translations/source/th/sw/source/ui/utlui.po --- libreoffice-5.1.1~rc2/translations/source/th/sw/source/ui/utlui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/th/sw/source/ui/utlui.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,8 +3,8 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2014-11-18 11:23+0100\n" -"PO-Revision-Date: 2015-01-02 10:19+0000\n" +"POT-Creation-Date: 2015-04-22 23:40+0200\n" +"PO-Revision-Date: 2016-03-11 15:23+0000\n" "Last-Translator: jteera <jteera5@hotmail.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: th\n" @@ -12,9 +12,9 @@ "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: 1420193981.000000\n" +"X-POOTLE-MTIME: 1457709786.000000\n" #: poolfmt.src msgctxt "" @@ -1817,7 +1817,7 @@ "STR_CONTENT_TYPE_OLE\n" "string.text" msgid "OLE objects" -msgstr "วัตถุ OLE " +msgstr "วัตถุ OLE" #: utlui.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/th/sw/source/uibase/uiview.po libreoffice-5.1.2~rc2/translations/source/th/sw/source/uibase/uiview.po --- libreoffice-5.1.1~rc2/translations/source/th/sw/source/uibase/uiview.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/th/sw/source/uibase/uiview.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,16 +3,18 @@ msgstr "" "Project-Id-Version: PACKAGE 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: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"POT-Creation-Date: 2015-04-22 23:40+0200\n" +"PO-Revision-Date: 2016-03-13 17:22+0000\n" +"Last-Translator: jteera <jteera5@hotmail.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: th\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: LibreOffice\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" +"X-POOTLE-MTIME: 1457889754.000000\n" #: view.src msgctxt "" @@ -197,4 +199,4 @@ "SID_SOURCEVIEW\n" "menuitem.text" msgid "HTML Source" -msgstr "" +msgstr "ภาษา HTML" diff -Nru libreoffice-5.1.1~rc2/translations/source/th/sw/uiconfig/swriter/ui.po libreoffice-5.1.2~rc2/translations/source/th/sw/uiconfig/swriter/ui.po --- libreoffice-5.1.1~rc2/translations/source/th/sw/uiconfig/swriter/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/th/sw/uiconfig/swriter/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: LibO 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:22+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2016-03-17 17:16+0000\n" +"Last-Translator: jteera <jteera5@hotmail.com>\n" "Language-Team: none\n" "Language: th\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1438903327.000000\n" +"X-POOTLE-MTIME: 1458234985.000000\n" #: abstractdialog.ui msgctxt "" @@ -516,14 +516,13 @@ msgstr "" #: authenticationsettingsdialog.ui -#, fuzzy msgctxt "" "authenticationsettingsdialog.ui\n" "label3\n" "label\n" "string.text" msgid "Type:" -msgstr "ชนิด" +msgstr "ชนิด:" #: authenticationsettingsdialog.ui msgctxt "" @@ -1462,14 +1461,13 @@ msgstr "" #: cardmediumpage.ui -#, fuzzy msgctxt "" "cardmediumpage.ui\n" "label3\n" "label\n" "string.text" msgid "_Type:" -msgstr "ชนิด" +msgstr "_ชนิด:" #: cardmediumpage.ui #, fuzzy @@ -2305,13 +2303,14 @@ msgstr "à¹à¸›à¸¥à¸‡à¸•à¸²à¸£à¸²à¸‡à¹€à¸›à¹‡à¸™à¸‚้อความ" #: converttexttable.ui +#, fuzzy msgctxt "" "converttexttable.ui\n" "othered\n" "text\n" "string.text" msgid "," -msgstr "" +msgstr "," #: converttexttable.ui msgctxt "" @@ -2492,13 +2491,14 @@ msgstr "" #: createaddresslist.ui +#, fuzzy msgctxt "" "createaddresslist.ui\n" "PREV\n" "label\n" "string.text" msgid "<" -msgstr "" +msgstr "<" #: createaddresslist.ui msgctxt "" @@ -2510,13 +2510,14 @@ msgstr "" #: createaddresslist.ui +#, fuzzy msgctxt "" "createaddresslist.ui\n" "NEXT\n" "label\n" "string.text" msgid ">" -msgstr "" +msgstr ">" #: createaddresslist.ui msgctxt "" @@ -4417,13 +4418,14 @@ msgstr "ไ_ม่มี" #: fldvarpage.ui +#, fuzzy msgctxt "" "fldvarpage.ui\n" "separator\n" "text\n" "string.text" msgid "." -msgstr "" +msgstr "." #: fldvarpage.ui msgctxt "" @@ -5395,22 +5397,24 @@ 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 "" @@ -6319,13 +6323,14 @@ msgstr "ตำà¹à¸«à¸™à¹ˆà¸‡:" #: insertcaption.ui +#, fuzzy msgctxt "" "insertcaption.ui\n" "separator_edit\n" "text\n" "string.text" msgid ": " -msgstr "" +msgstr ": " #: insertcaption.ui #, fuzzy @@ -6338,13 +6343,14 @@ msgstr "ตัวà¹à¸šà¹ˆà¸‡à¹€à¸¥à¸‚ลำดับ" #: insertcaption.ui +#, fuzzy msgctxt "" "insertcaption.ui\n" "num_separator_edit\n" "text\n" "string.text" msgid ". " -msgstr "" +msgstr ". " #: insertcaption.ui #, fuzzy @@ -7590,7 +7596,7 @@ "label\n" "string.text" msgid "_Subject:" -msgstr "" +msgstr "เ_รื่อง:" #: mailmerge.ui msgctxt "" @@ -8688,13 +8694,14 @@ msgstr "" #: mmpreparepage.ui +#, fuzzy msgctxt "" "mmpreparepage.ui\n" "prev\n" "label\n" "string.text" msgid "<" -msgstr "" +msgstr "<" #: mmpreparepage.ui msgctxt "" @@ -8706,13 +8713,14 @@ msgstr "" #: mmpreparepage.ui +#, fuzzy msgctxt "" "mmpreparepage.ui\n" "next\n" "label\n" "string.text" msgid ">" -msgstr "" +msgstr ">" #: mmpreparepage.ui #, fuzzy @@ -9569,13 +9577,14 @@ msgstr "ตำà¹à¸«à¸™à¹ˆà¸‡" #: optcaptionpage.ui +#, fuzzy msgctxt "" "optcaptionpage.ui\n" "numseparator\n" "text\n" "string.text" msgid ". " -msgstr "" +msgstr ". " #: optcaptionpage.ui #, fuzzy @@ -13524,7 +13533,7 @@ "label\n" "string.text" msgid "OLE objects:" -msgstr "" +msgstr "วัตถุ OLE:" #: statisticsinfopage.ui msgctxt "" @@ -13627,7 +13636,7 @@ "label\n" "string.text" msgid "Subject:" -msgstr "" +msgstr "เรื่อง:" #: tablecolumnpage.ui msgctxt "" @@ -15410,14 +15419,13 @@ msgstr "ชื่อเรื่อง" #: tocindexpage.ui -#, fuzzy msgctxt "" "tocindexpage.ui\n" "typeft\n" "label\n" "string.text" msgid "Type:" -msgstr "ชนิด" +msgstr "ชนิด:" #: tocindexpage.ui msgctxt "" @@ -15534,7 +15542,7 @@ "label\n" "string.text" msgid "OLE objects" -msgstr "" +msgstr "วัตถุ OLE" #: tocindexpage.ui msgctxt "" @@ -15685,40 +15693,44 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/th/vcl/source/src.po libreoffice-5.1.2~rc2/translations/source/th/vcl/source/src.po --- libreoffice-5.1.1~rc2/translations/source/th/vcl/source/src.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/th/vcl/source/src.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 20:54+0000\n" +"PO-Revision-Date: 2016-03-09 13:20+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: th\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1449867242.000000\n" +"X-POOTLE-MTIME: 1457529608.000000\n" #: app.src msgctxt "" @@ -1212,12 +1212,13 @@ msgstr "" #: print.src +#, fuzzy msgctxt "" "print.src\n" "SV_PRINT_INVALID_TXT\n" "string.text" msgid "<ignore>" -msgstr "" +msgstr "<ignore>" #: print.src msgctxt "" @@ -1495,13 +1496,14 @@ msgstr "" #: units.src +#, fuzzy msgctxt "" "units.src\n" "SV_FUNIT_STRINGS\n" "°\n" "itemlist.text" msgid "°" -msgstr "" +msgstr "°" #: units.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/th/wizards/source/formwizard.po libreoffice-5.1.2~rc2/translations/source/th/wizards/source/formwizard.po --- libreoffice-5.1.1~rc2/translations/source/th/wizards/source/formwizard.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/th/wizards/source/formwizard.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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-14 01:05+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2016-03-14 17:19+0000\n" +"Last-Translator: jteera <jteera5@hotmail.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: th\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1431565520.000000\n" +"X-POOTLE-MTIME: 1457975973.000000\n" #: dbwizres.src msgctxt "" @@ -2101,7 +2101,7 @@ "RID_DB_REPORT_WIZARD_START + 86\n" "string.text" msgid "Title:" -msgstr "ชื่อเรื่อง: " +msgstr "ชื่อเรื่อง:" #: dbwizres.src msgctxt "" @@ -3234,7 +3234,7 @@ "RID_LETTERWIZARDDIALOG_START + 59\n" "string.text" msgid "Subject:" -msgstr "เรื่อง: " +msgstr "เรื่อง:" #: dbwizres.src msgctxt "" @@ -4029,7 +4029,7 @@ "RID_WEBWIZARDDIALOG_START +9\n" "string.text" msgid "~Title:" -msgstr "~ชื่อเรื่อง: " +msgstr "~ชื่อเรื่อง:" #: dbwizres.src msgctxt "" @@ -4069,7 +4069,7 @@ "RID_WEBWIZARDDIALOG_START +14\n" "string.text" msgid "Title:" -msgstr "ชื่อเรื่อง: " +msgstr "ชื่อเรื่อง:" #: dbwizres.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/tn/cui/uiconfig/ui.po libreoffice-5.1.2~rc2/translations/source/tn/cui/uiconfig/ui.po --- libreoffice-5.1.1~rc2/translations/source/tn/cui/uiconfig/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/tn/cui/uiconfig/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 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:56+0000\n" +"PO-Revision-Date: 2016-03-09 11:41+0000\n" "Last-Translator: system user <>\n" "Language-Team: none\n" "Language: tn\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1452264995.000000\n" +"X-POOTLE-MTIME: 1457523695.000000\n" #: aboutconfigdialog.ui msgctxt "" @@ -14069,31 +14069,34 @@ 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 @@ -17372,40 +17375,44 @@ msgstr "(sepe)" #: 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 "" @@ -17427,40 +17434,44 @@ msgstr "(sepe)" #: 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 -Nru libreoffice-5.1.1~rc2/translations/source/tn/dbaccess/uiconfig/ui.po libreoffice-5.1.2~rc2/translations/source/tn/dbaccess/uiconfig/ui.po --- libreoffice-5.1.1~rc2/translations/source/tn/dbaccess/uiconfig/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/tn/dbaccess/uiconfig/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: LibO 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 12:32+0000\n" -"Last-Translator: Anonymous Pootle User\n" +"PO-Revision-Date: 2016-03-09 11:46+0000\n" +"Last-Translator: system user <>\n" "Language-Team: none\n" "Language: tn\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: 1366029138.0\n" +"X-POOTLE-MTIME: 1457523964.000000\n" #: admindialog.ui msgctxt "" @@ -1927,22 +1927,24 @@ 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 @@ msgstr "" #: queryfilterdialog.ui +#, fuzzy msgctxt "" "queryfilterdialog.ui\n" "cond1\n" "4\n" "stringlist.text" msgid ">" -msgstr "" +msgstr ">" #: queryfilterdialog.ui msgctxt "" @@ -3016,58 +3019,64 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/tn/extensions/uiconfig/sabpilot/ui.po libreoffice-5.1.2~rc2/translations/source/tn/extensions/uiconfig/sabpilot/ui.po --- libreoffice-5.1.1~rc2/translations/source/tn/extensions/uiconfig/sabpilot/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/tn/extensions/uiconfig/sabpilot/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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 03:34+0000\n" +"PO-Revision-Date: 2016-03-09 11:52+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: tn\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1435289698.000000\n" +"X-POOTLE-MTIME: 1457524357.000000\n" #: contentfieldpage.ui msgctxt "" @@ -280,13 +280,14 @@ msgstr "" #: gridfieldsselectionpage.ui +#, fuzzy msgctxt "" "gridfieldsselectionpage.ui\n" "fieldright\n" "label\n" "string.text" msgid "->" -msgstr "" +msgstr "->" #: gridfieldsselectionpage.ui msgctxt "" @@ -298,13 +299,14 @@ msgstr "" #: gridfieldsselectionpage.ui +#, fuzzy msgctxt "" "gridfieldsselectionpage.ui\n" "fieldleft\n" "label\n" "string.text" msgid "<-" -msgstr "" +msgstr "<-" #: gridfieldsselectionpage.ui msgctxt "" @@ -379,22 +381,24 @@ 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 @@ msgstr "" #: tableselectionpage.ui +#, fuzzy msgctxt "" "tableselectionpage.ui\n" "search\n" "label\n" "string.text" msgid "_..." -msgstr "" +msgstr "_..." #: tableselectionpage.ui msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/tn/formula/source/core/resource.po libreoffice-5.1.2~rc2/translations/source/tn/formula/source/core/resource.po --- libreoffice-5.1.1~rc2/translations/source/tn/formula/source/core/resource.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/tn/formula/source/core/resource.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\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-29 16:07+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff -Nru libreoffice-5.1.1~rc2/translations/source/tn/librelogo/source/pythonpath.po libreoffice-5.1.2~rc2/translations/source/tn/librelogo/source/pythonpath.po --- libreoffice-5.1.1~rc2/translations/source/tn/librelogo/source/pythonpath.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/tn/librelogo/source/pythonpath.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,17 +3,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: 2014-05-02 00:06+0200\n" -"PO-Revision-Date: 2013-04-15 12:32+0000\n" -"Last-Translator: Anonymous Pootle User\n" +"POT-Creation-Date: 2015-04-22 23:40+0200\n" +"PO-Revision-Date: 2016-03-09 12:08+0000\n" +"Last-Translator: system user <>\n" "Language-Team: none\n" "Language: tn\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: 1366029144.0\n" +"X-POOTLE-MTIME: 1457525281.000000\n" #: LibreLogo_en_US.properties msgctxt "" @@ -793,20 +793,22 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/tn/officecfg/registry/data/org/openoffice/Office.po libreoffice-5.1.2~rc2/translations/source/tn/officecfg/registry/data/org/openoffice/Office.po --- libreoffice-5.1.1~rc2/translations/source/tn/officecfg/registry/data/org/openoffice/Office.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/tn/officecfg/registry/data/org/openoffice/Office.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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:18+0000\n" +"PO-Revision-Date: 2016-03-09 12:17+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: tn\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1438903082.000000\n" +"X-POOTLE-MTIME: 1457525856.000000\n" #: Addons.xcu msgctxt "" @@ -1438,13 +1438,14 @@ msgstr "" #: PresentationMinimizer.xcu +#, fuzzy msgctxt "" "PresentationMinimizer.xcu\n" "..PresentationMinimizer.Strings\n" "STR_FILESIZESEPARATOR\n" "value.text" msgid "." -msgstr "" +msgstr "." #: PresentationMinimizer.xcu msgctxt "" @@ -12431,13 +12432,14 @@ msgstr "Tafolo" #: Writer.xcu +#, fuzzy msgctxt "" "Writer.xcu\n" "..Writer.Insert.Caption.WriterObject.Table.Settings\n" "CaptionText\n" "value.text" msgid ": " -msgstr "" +msgstr ": " #: Writer.xcu msgctxt "" @@ -12449,13 +12451,14 @@ msgstr "Kago" #: Writer.xcu +#, fuzzy msgctxt "" "Writer.xcu\n" "..Writer.Insert.Caption.WriterObject.Frame.Settings\n" "CaptionText\n" "value.text" msgid ": " -msgstr "" +msgstr ": " #: Writer.xcu #, fuzzy @@ -12468,13 +12471,14 @@ msgstr "Moralo" #: Writer.xcu +#, fuzzy msgctxt "" "Writer.xcu\n" "..Writer.Insert.Caption.WriterObject.Graphic.Settings\n" "CaptionText\n" "value.text" msgid ": " -msgstr "" +msgstr ": " #: Writer.xcu #, fuzzy @@ -12487,13 +12491,14 @@ msgstr "Moralo" #: Writer.xcu +#, fuzzy msgctxt "" "Writer.xcu\n" "..Writer.Insert.Caption.OfficeObject.Calc.Settings\n" "CaptionText\n" "value.text" msgid ": " -msgstr "" +msgstr ": " #: Writer.xcu #, fuzzy @@ -12506,13 +12511,14 @@ msgstr "Moralo" #: Writer.xcu +#, fuzzy msgctxt "" "Writer.xcu\n" "..Writer.Insert.Caption.OfficeObject.Draw.Settings\n" "CaptionText\n" "value.text" msgid ": " -msgstr "" +msgstr ": " #: Writer.xcu #, fuzzy @@ -12525,13 +12531,14 @@ msgstr "Moralo" #: Writer.xcu +#, fuzzy msgctxt "" "Writer.xcu\n" "..Writer.Insert.Caption.OfficeObject.Chart.Settings\n" "CaptionText\n" "value.text" msgid ": " -msgstr "" +msgstr ": " #: Writer.xcu #, fuzzy @@ -12544,13 +12551,14 @@ msgstr "Moralo" #: Writer.xcu +#, fuzzy msgctxt "" "Writer.xcu\n" "..Writer.Insert.Caption.OfficeObject.Image.Settings\n" "CaptionText\n" "value.text" msgid ": " -msgstr "" +msgstr ": " #: Writer.xcu #, fuzzy @@ -12563,13 +12571,14 @@ msgstr "Moralo" #: Writer.xcu +#, fuzzy msgctxt "" "Writer.xcu\n" "..Writer.Insert.Caption.OfficeObject.Formula.Settings\n" "CaptionText\n" "value.text" msgid ": " -msgstr "" +msgstr ": " #: Writer.xcu #, fuzzy @@ -12582,13 +12591,14 @@ msgstr "Moralo" #: Writer.xcu +#, fuzzy msgctxt "" "Writer.xcu\n" "..Writer.Insert.Caption.OfficeObject.Impress.Settings\n" "CaptionText\n" "value.text" msgid ": " -msgstr "" +msgstr ": " #: Writer.xcu #, fuzzy @@ -12601,10 +12611,11 @@ msgstr "Moralo" #: Writer.xcu +#, fuzzy msgctxt "" "Writer.xcu\n" "..Writer.Insert.Caption.OfficeObject.OLEMisc.Settings\n" "CaptionText\n" "value.text" msgid ": " -msgstr "" +msgstr ": " diff -Nru libreoffice-5.1.1~rc2/translations/source/tn/reportdesign/uiconfig/dbreport/ui.po libreoffice-5.1.2~rc2/translations/source/tn/reportdesign/uiconfig/dbreport/ui.po --- libreoffice-5.1.1~rc2/translations/source/tn/reportdesign/uiconfig/dbreport/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/tn/reportdesign/uiconfig/dbreport/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 18:11+0000\n" +"PO-Revision-Date: 2016-03-09 12:40+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: tn\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1416420710.000000\n" +"X-POOTLE-MTIME: 1457527235.000000\n" #: backgrounddialog.ui msgctxt "" @@ -196,13 +196,14 @@ msgstr "" #: conditionwin.ui +#, fuzzy msgctxt "" "conditionwin.ui\n" "lhsButton\n" "label\n" "string.text" msgid "..." -msgstr "" +msgstr "..." #: conditionwin.ui msgctxt "" @@ -214,13 +215,14 @@ msgstr "" #: conditionwin.ui +#, fuzzy msgctxt "" "conditionwin.ui\n" "rhsButton\n" "label\n" "string.text" msgid "..." -msgstr "" +msgstr "..." #: conditionwin.ui msgctxt "" @@ -277,13 +279,14 @@ msgstr "" #: conditionwin.ui +#, fuzzy msgctxt "" "conditionwin.ui\n" "removeButton\n" "label\n" "string.text" msgid "-" -msgstr "" +msgstr "-" #: conditionwin.ui msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/tn/sc/uiconfig/scalc/ui.po libreoffice-5.1.2~rc2/translations/source/tn/sc/uiconfig/scalc/ui.po --- libreoffice-5.1.1~rc2/translations/source/tn/sc/uiconfig/scalc/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/tn/sc/uiconfig/scalc/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 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 03:45+0000\n" +"PO-Revision-Date: 2016-03-09 13:02+0000\n" "Last-Translator: system user <>\n" "Language-Team: none\n" "Language: tn\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1435290347.000000\n" +"X-POOTLE-MTIME: 1457528527.000000\n" #: advancedfilterdialog.ui msgctxt "" @@ -6390,22 +6390,24 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/tn/scaddins/source/analysis.po libreoffice-5.1.2~rc2/translations/source/tn/scaddins/source/analysis.po --- libreoffice-5.1.1~rc2/translations/source/tn/scaddins/source/analysis.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/tn/scaddins/source/analysis.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-11-24 04:39-0500\n" +"POT-Creation-Date: 2016-03-29 16:07+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff -Nru libreoffice-5.1.1~rc2/translations/source/tn/sd/source/ui/app.po libreoffice-5.1.2~rc2/translations/source/tn/sd/source/ui/app.po --- libreoffice-5.1.1~rc2/translations/source/tn/sd/source/ui/app.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/tn/sd/source/ui/app.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-14 01:27+0000\n" +"PO-Revision-Date: 2016-03-09 13:14+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: tn\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1431566878.000000\n" +"X-POOTLE-MTIME: 1457529285.000000\n" #: menuids3_tmpl.src msgctxt "" @@ -3760,20 +3760,22 @@ msgstr "" #: strings.src +#, fuzzy msgctxt "" "strings.src\n" "STR_FIELD_PLACEHOLDER_HEADER\n" "string.text" msgid "<header>" -msgstr "" +msgstr "<header>" #: strings.src +#, fuzzy msgctxt "" "strings.src\n" "STR_FIELD_PLACEHOLDER_FOOTER\n" "string.text" msgid "<footer>" -msgstr "" +msgstr "<footer>" #: strings.src msgctxt "" @@ -3784,20 +3786,22 @@ msgstr "" #: strings.src +#, fuzzy msgctxt "" "strings.src\n" "STR_FIELD_PLACEHOLDER_NUMBER\n" "string.text" msgid "<number>" -msgstr "" +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 -Nru libreoffice-5.1.1~rc2/translations/source/tn/sd/uiconfig/simpress/ui.po libreoffice-5.1.2~rc2/translations/source/tn/sd/uiconfig/simpress/ui.po --- libreoffice-5.1.1~rc2/translations/source/tn/sd/uiconfig/simpress/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/tn/sd/uiconfig/simpress/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 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 03:47+0000\n" +"PO-Revision-Date: 2016-03-09 13:16+0000\n" "Last-Translator: system user <>\n" "Language-Team: none\n" "Language: tn\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1435290423.000000\n" +"X-POOTLE-MTIME: 1457529402.000000\n" #: assistentdialog.ui msgctxt "" @@ -997,22 +997,24 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/tn/starmath/source.po libreoffice-5.1.2~rc2/translations/source/tn/starmath/source.po --- libreoffice-5.1.1~rc2/translations/source/tn/starmath/source.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/tn/starmath/source.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\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-12 13:26+0200\n" +"POT-Creation-Date: 2016-03-29 16:07+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff -Nru libreoffice-5.1.1~rc2/translations/source/tn/sw/source/core/undo.po libreoffice-5.1.2~rc2/translations/source/tn/sw/source/core/undo.po --- libreoffice-5.1.1~rc2/translations/source/tn/sw/source/core/undo.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/tn/sw/source/core/undo.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 01:40+0000\n" +"PO-Revision-Date: 2016-03-09 13:46+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: tn\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1431567603.000000\n" +"X-POOTLE-MTIME: 1457531187.000000\n" #: undo.src msgctxt "" @@ -826,20 +826,22 @@ 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 "" @@ -882,12 +884,13 @@ msgstr "Gatisa clipboard" #: undo.src +#, fuzzy msgctxt "" "undo.src\n" "STR_YIELDS\n" "string.text" msgid "->" -msgstr "" +msgstr "->" #: undo.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/tn/sw/source/ui/dbui.po libreoffice-5.1.2~rc2/translations/source/tn/sw/source/ui/dbui.po --- libreoffice-5.1.1~rc2/translations/source/tn/sw/source/ui/dbui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/tn/sw/source/ui/dbui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 01:43+0000\n" +"PO-Revision-Date: 2016-03-09 13:48+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: tn\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1431567791.000000\n" +"X-POOTLE-MTIME: 1457531335.000000\n" #: dbui.src msgctxt "" @@ -538,31 +538,34 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/tn/sw/source/ui/index.po libreoffice-5.1.2~rc2/translations/source/tn/sw/source/ui/index.po --- libreoffice-5.1.1~rc2/translations/source/tn/sw/source/ui/index.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/tn/sw/source/ui/index.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,16 +3,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-01-05 15:00+0200\n" -"Last-Translator: Anonymous Pootle User\n" +"POT-Creation-Date: 2015-04-22 23:40+0200\n" +"PO-Revision-Date: 2016-03-09 13:49+0000\n" +"Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: tn\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: LibreOffice\n" +"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" +"X-POOTLE-MTIME: 1457531393.000000\n" #: cnttab.src #, fuzzy @@ -56,20 +57,22 @@ 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 @@ msgstr "" #: cnttab.src +#, fuzzy msgctxt "" "cnttab.src\n" "STR_TOKEN_PAGE_NUMS\n" "string.text" msgid "#" -msgstr "" +msgstr "#" #: cnttab.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/tn/sw/source/ui/utlui.po libreoffice-5.1.2~rc2/translations/source/tn/sw/source/ui/utlui.po --- libreoffice-5.1.1~rc2/translations/source/tn/sw/source/ui/utlui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/tn/sw/source/ui/utlui.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE 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-20 11:59+0100\n" +"POT-Creation-Date: 2016-03-29 16:07+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff -Nru libreoffice-5.1.1~rc2/translations/source/tn/sw/uiconfig/swriter/ui.po libreoffice-5.1.2~rc2/translations/source/tn/sw/uiconfig/swriter/ui.po --- libreoffice-5.1.1~rc2/translations/source/tn/sw/uiconfig/swriter/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/tn/sw/uiconfig/swriter/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 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:18+0000\n" +"PO-Revision-Date: 2016-03-09 14:01+0000\n" "Last-Translator: system user <>\n" "Language-Team: none\n" "Language: tn\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1438903096.000000\n" +"X-POOTLE-MTIME: 1457532096.000000\n" #: abstractdialog.ui msgctxt "" @@ -2316,13 +2316,14 @@ msgstr "Fetolela Tafole go Kago" #: converttexttable.ui +#, fuzzy msgctxt "" "converttexttable.ui\n" "othered\n" "text\n" "string.text" msgid "," -msgstr "" +msgstr "," #: converttexttable.ui msgctxt "" @@ -2507,13 +2508,14 @@ msgstr "" #: createaddresslist.ui +#, fuzzy msgctxt "" "createaddresslist.ui\n" "PREV\n" "label\n" "string.text" msgid "<" -msgstr "" +msgstr "<" #: createaddresslist.ui msgctxt "" @@ -2525,13 +2527,14 @@ msgstr "" #: createaddresslist.ui +#, fuzzy msgctxt "" "createaddresslist.ui\n" "NEXT\n" "label\n" "string.text" msgid ">" -msgstr "" +msgstr ">" #: createaddresslist.ui msgctxt "" @@ -4437,13 +4440,14 @@ msgstr "" #: fldvarpage.ui +#, fuzzy msgctxt "" "fldvarpage.ui\n" "separator\n" "text\n" "string.text" msgid "." -msgstr "" +msgstr "." #: fldvarpage.ui msgctxt "" @@ -5424,22 +5428,24 @@ 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 "" @@ -6349,13 +6355,14 @@ msgstr "Maemo" #: insertcaption.ui +#, fuzzy msgctxt "" "insertcaption.ui\n" "separator_edit\n" "text\n" "string.text" msgid ": " -msgstr "" +msgstr ": " #: insertcaption.ui msgctxt "" @@ -6367,13 +6374,14 @@ msgstr "" #: insertcaption.ui +#, fuzzy msgctxt "" "insertcaption.ui\n" "num_separator_edit\n" "text\n" "string.text" msgid ". " -msgstr "" +msgstr ". " #: insertcaption.ui msgctxt "" @@ -8710,13 +8718,14 @@ msgstr "" #: mmpreparepage.ui +#, fuzzy msgctxt "" "mmpreparepage.ui\n" "prev\n" "label\n" "string.text" msgid "<" -msgstr "" +msgstr "<" #: mmpreparepage.ui msgctxt "" @@ -8728,13 +8737,14 @@ msgstr "" #: mmpreparepage.ui +#, fuzzy msgctxt "" "mmpreparepage.ui\n" "next\n" "label\n" "string.text" msgid ">" -msgstr "" +msgstr ">" #: mmpreparepage.ui #, fuzzy @@ -9583,13 +9593,14 @@ msgstr "Maemo" #: optcaptionpage.ui +#, fuzzy msgctxt "" "optcaptionpage.ui\n" "numseparator\n" "text\n" "string.text" msgid ". " -msgstr "" +msgstr ". " #: optcaptionpage.ui #, fuzzy @@ -15712,40 +15723,44 @@ msgstr "[Sepe]" #: 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 -Nru libreoffice-5.1.1~rc2/translations/source/tn/vcl/source/src.po libreoffice-5.1.2~rc2/translations/source/tn/vcl/source/src.po --- libreoffice-5.1.1~rc2/translations/source/tn/vcl/source/src.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/tn/vcl/source/src.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 20:48+0000\n" +"PO-Revision-Date: 2016-03-09 14:04+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: tn\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1449866926.000000\n" +"X-POOTLE-MTIME: 1457532270.000000\n" #: app.src msgctxt "" @@ -1253,12 +1253,13 @@ 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 @@ msgstr "" #: units.src +#, fuzzy msgctxt "" "units.src\n" "SV_FUNIT_STRINGS\n" "°\n" "itemlist.text" msgid "°" -msgstr "" +msgstr "°" #: units.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/tn/wizards/source/formwizard.po libreoffice-5.1.2~rc2/translations/source/tn/wizards/source/formwizard.po --- libreoffice-5.1.1~rc2/translations/source/tn/wizards/source/formwizard.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/tn/wizards/source/formwizard.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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-04-25 15:44+0000\n" +"PO-Revision-Date: 2016-03-09 14:08+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: tn\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1429976644.000000\n" +"X-POOTLE-MTIME: 1457532516.000000\n" #: dbwizres.src msgctxt "" @@ -1573,52 +1573,58 @@ msgstr "" #: dbwizres.src +#, fuzzy msgctxt "" "dbwizres.src\n" "RID_DB_QUERY_WIZARD_START + 91\n" "string.text" msgid ", " -msgstr "" +msgstr ", " #: dbwizres.src +#, fuzzy msgctxt "" "dbwizres.src\n" "RID_DB_QUERY_WIZARD_START + 92\n" "string.text" msgid "<FIELDTITLE> (<FIELDNAME>)" -msgstr "" +msgstr "<FIELDTITLE> (<FIELDNAME>)" #: dbwizres.src +#, fuzzy msgctxt "" "dbwizres.src\n" "RID_DB_QUERY_WIZARD_START + 93\n" "string.text" msgid "<FIELDNAME> (<SORTMODE>)" -msgstr "" +msgstr "<FIELDNAME> (<SORTMODE>)" #: dbwizres.src +#, fuzzy msgctxt "" "dbwizres.src\n" "RID_DB_QUERY_WIZARD_START + 94\n" "string.text" msgid "<FIELDNAME> <LOGICOPERATOR> <VALUE>" -msgstr "" +msgstr "<FIELDNAME> <LOGICOPERATOR> <VALUE>" #: dbwizres.src +#, fuzzy msgctxt "" "dbwizres.src\n" "RID_DB_QUERY_WIZARD_START + 95\n" "string.text" msgid "<CALCULATEDFUNCTION> <FIELDNAME>" -msgstr "" +msgstr "<CALCULATEDFUNCTION> <FIELDNAME>" #: dbwizres.src +#, fuzzy msgctxt "" "dbwizres.src\n" "RID_DB_QUERY_WIZARD_START + 96\n" "string.text" msgid "<FIELDNAME> <LOGICOPERATOR> <VALUE>" -msgstr "" +msgstr "<FIELDNAME> <LOGICOPERATOR> <VALUE>" #: dbwizres.src #, fuzzy diff -Nru libreoffice-5.1.1~rc2/translations/source/tr/basic/source/classes.po libreoffice-5.1.2~rc2/translations/source/tr/basic/source/classes.po --- libreoffice-5.1.1~rc2/translations/source/tr/basic/source/classes.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/tr/basic/source/classes.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-08-25 12:33+0200\n" -"PO-Revision-Date: 2013-05-24 01:04+0000\n" +"PO-Revision-Date: 2016-03-09 12:33+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: tr\n" @@ -14,10 +14,9 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1369357469.000000\n" +"X-POOTLE-MTIME: 1457526813.000000\n" #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -27,7 +26,6 @@ msgstr "Sözdizim hatası." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -37,17 +35,15 @@ msgstr "Gosub olmadan geri dön." #: 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 "GiriÅŸ yanlış; lütfen yeniden girin." +msgstr "GiriÅŸ yanlış; lütfen yeniden deneyin." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -57,7 +53,6 @@ msgstr "Geçersiz yöntem çaÄŸrısı." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -67,7 +62,6 @@ msgstr "TaÅŸma." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -77,7 +71,6 @@ msgstr "Bellek yeterli deÄŸil." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -87,7 +80,6 @@ msgstr "Dizi boyutlandırılmış durumda." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -97,7 +89,6 @@ msgstr "Dizin tanımlanan aralığın dışında." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -107,7 +98,6 @@ msgstr "Çift tanımlama." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -117,7 +107,6 @@ msgstr "Sıfıra bölme." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -127,7 +116,6 @@ msgstr "DeÄŸiÅŸken tanımlanmadı." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -137,7 +125,6 @@ msgstr "Veri türleri uyuÅŸmuyor." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -147,7 +134,6 @@ msgstr "Geçersiz parametre." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -157,7 +143,6 @@ msgstr "Süreç kullanıcı tarafından kesildi." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -167,7 +152,6 @@ msgstr "Hata olmaksızın devam et." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -177,7 +161,6 @@ msgstr "Yığın belleÄŸi yeterli deÄŸil." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -187,7 +170,6 @@ msgstr "Alt yöntem ya da iÅŸlev yöntemi tanımlanmadı." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -197,7 +179,6 @@ msgstr "DLL dosyasını yükleme sırasında hata." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -207,7 +188,6 @@ msgstr "Yanlış DLL çaÄŸrı kuralı." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -217,17 +197,15 @@ msgstr "İç hata $(ARG1)." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" "ERRCODE_BASIC_BAD_CHANNEL & ERRCODE_RES_MASK\n" "string.text" msgid "Invalid file name or file number." -msgstr "Dosya adı ya da numarası yanlış." +msgstr "Dosya adı ya da numarası geçersiz." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -237,7 +215,6 @@ msgstr "Dosya bulunamadı." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -247,7 +224,6 @@ msgstr "Dosya kipi yanlış." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -257,7 +233,6 @@ msgstr "Dosya açık durumda." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -267,27 +242,24 @@ msgstr "Cihaz I/O hatası." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" "ERRCODE_BASIC_FILE_EXISTS & ERRCODE_RES_MASK\n" "string.text" msgid "File already exists." -msgstr "Dosya mevcut durumda." +msgstr "Dosya zaten mevcut." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" "ERRCODE_BASIC_BAD_RECORD_LENGTH & ERRCODE_RES_MASK\n" "string.text" msgid "Incorrect record length." -msgstr "Yanlış kayıt uzunluÄŸu." +msgstr "Hatalı kayıt uzunluÄŸu." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -297,7 +269,6 @@ msgstr "Disk ya da sabit disk dolu." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -307,7 +278,6 @@ msgstr "Okuma dosya sonunu aşıyor." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -317,17 +287,15 @@ msgstr "Yanlış kayıt sayısı." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" "ERRCODE_BASIC_TOO_MANY_FILES & ERRCODE_RES_MASK\n" "string.text" msgid "Too many files." -msgstr "Dosya sayısı fazla." +msgstr "Çok fazla dosya." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -337,7 +305,6 @@ msgstr "Cihaz kullanılabilir durumda deÄŸil." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -347,7 +314,6 @@ msgstr "EriÅŸim engellendi." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -357,7 +323,6 @@ msgstr "Disk hazır deÄŸil." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -367,7 +332,6 @@ msgstr "Uygulanmadı." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -377,7 +341,6 @@ msgstr "Farklı sürücülerde yeniden adlandırma yapılamaz." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -387,7 +350,6 @@ msgstr "Veri yolu/Dosya eriÅŸim hatası." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -397,7 +359,6 @@ msgstr "Veri yolu bulunamadı." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -407,27 +368,24 @@ msgstr "Nesne deÄŸiÅŸkeni belirlenmedi." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" "ERRCODE_BASIC_BAD_PATTERN & ERRCODE_RES_MASK\n" "string.text" msgid "Invalid string pattern." -msgstr "Dizilim örneÄŸi geçerli deÄŸil." +msgstr "Dizi deseni geçerli deÄŸil." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" "ERRCODE_BASIC_IS_NULL & ERRCODE_RES_MASK\n" "string.text" msgid "Use of zero not permitted." -msgstr "Sıfır kullanımı geçerli deÄŸil." +msgstr "Sıfır kullanımına izin verilmiyor." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -437,7 +395,6 @@ msgstr "DDE Hatası." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -447,7 +404,6 @@ msgstr "DDE baÄŸlantısına yanıt bekleniyor." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -457,7 +413,6 @@ msgstr "Kullanılabilir DDE kanalı yok." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -467,7 +422,6 @@ msgstr "Hiçbir uygulama DDE baÄŸlantı talebine yanıt vermiyor." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -477,7 +431,6 @@ msgstr "DDE baÄŸlantı talebine çok fazla uygulama yanıt veriyor." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -487,17 +440,15 @@ msgstr "DDE kanalı kilitli." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" "ERRCODE_BASIC_DDE_NOTPROCESSED & ERRCODE_RES_MASK\n" "string.text" msgid "External application cannot execute DDE operation." -msgstr "Harici uygulama DDE iÅŸlemini yürütemiyor." +msgstr "Harici uygulama DDE iÅŸlemini yürütemez." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -507,7 +458,6 @@ msgstr "DDE yanıtını beklemede zaman aşımı." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -517,7 +467,6 @@ msgstr "DDE iÅŸlemi sırasında ESCAPE tuÅŸuna basıldı." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -527,7 +476,6 @@ msgstr "Harici uygulama meÅŸgul." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -537,7 +485,6 @@ msgstr "Verisiz DDE iÅŸlemi." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -547,17 +494,15 @@ msgstr "Veri biçimi hatalı." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" "ERRCODE_BASIC_DDE_PARTNER_QUIT & ERRCODE_RES_MASK\n" "string.text" msgid "External application has been terminated." -msgstr "Harici uygulamadan çıkıldı." +msgstr "Harici uygulama sonlandırıldı." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -567,7 +512,6 @@ msgstr "DDE baÄŸlantısı kesildi ya da deÄŸiÅŸtirildi." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -577,7 +521,6 @@ msgstr "Açık kanal olmadan DDE yöntem çaÄŸrısı." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -587,7 +530,6 @@ msgstr "Geçersiz DDE baÄŸlantı biçimi." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -597,7 +539,6 @@ msgstr "DDE iletisi kayboldu." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -607,37 +548,33 @@ msgstr "Yapıştırılmış baÄŸlantı önceden gerçekleÅŸtirildi." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" "ERRCODE_BASIC_DDE_LINK_INV_TOPIC & ERRCODE_RES_MASK\n" "string.text" msgid "Link mode cannot be set due to invalid link topic." -msgstr "BaÄŸlantı kipi geçersiz baÄŸlantı yüzünden belirlenemedi." +msgstr "BaÄŸlantı kipi geçersiz baÄŸlantı yüzünden ayarlanamadı." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" "ERRCODE_BASIC_DDE_DLL_NOT_FOUND & ERRCODE_RES_MASK\n" "string.text" msgid "DDE requires the DDEML.DLL file." -msgstr "DDE için DDEML.DLL gerekli." +msgstr "DDE için DDEML.DLL dosyası gerekli." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" "ERRCODE_BASIC_CANNOT_LOAD & ERRCODE_RES_MASK\n" "string.text" msgid "Module cannot be loaded; invalid format." -msgstr "Modül yüklenemiyor, biçim geçersiz." +msgstr "Modül yüklenemedi, biçim geçersiz." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -647,7 +584,6 @@ msgstr "Geçersiz nesne dizini." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -657,17 +593,15 @@ msgstr "Nesne mevcut deÄŸil." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" "ERRCODE_BASIC_BAD_PROP_VALUE & ERRCODE_RES_MASK\n" "string.text" msgid "Incorrect property value." -msgstr "Yanlış özellik deÄŸeri." +msgstr "Hatalı özellik deÄŸeri." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -677,17 +611,15 @@ msgstr "Bu özellik salt-okunurdur." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" "ERRCODE_BASIC_PROP_WRITEONLY & ERRCODE_RES_MASK\n" "string.text" msgid "This property is write only." -msgstr "Bu özellik sadece yazmadır." +msgstr "Bu özellik sadece yazılabilir." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -697,17 +629,15 @@ msgstr "Geçersiz nesne baÅŸvurusu." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" "ERRCODE_BASIC_NO_METHOD & ERRCODE_RES_MASK\n" "string.text" msgid "Property or method not found: $(ARG1)." -msgstr "Özellik ya da yöntem bulunamadı.$(ARG1)." +msgstr "Özellik ya da yöntem bulunamadı: $(ARG1)." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -717,7 +647,6 @@ msgstr "Nesne gerekli." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -727,7 +656,6 @@ msgstr "Nesne kullanımı yanlış." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -737,7 +665,6 @@ msgstr "OLE otomasyonu bu nesne tarafından desteklenmiyor." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -747,17 +674,15 @@ msgstr "Nesne bu özelliÄŸi ya da yöntemi desteklemiyor." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" "ERRCODE_BASIC_OLE_ERROR & ERRCODE_RES_MASK\n" "string.text" msgid "OLE Automation Error." -msgstr "OLE Otomasyonunda Hata." +msgstr "OLE Otomasyon Hatası." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -767,7 +692,6 @@ msgstr "Bu iÅŸlem belirtilen nesne tarafından desteklenmiyor." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -777,7 +701,6 @@ msgstr "Adlandırılmış bağımsız deÄŸiÅŸkenler, belirtilen nesne tarafından desteklenmiyor." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -787,27 +710,24 @@ msgstr "Geçerli yerel ayarlar, belirtilen nesne tarafından desteklenmiyor." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" "ERRCODE_BASIC_NAMED_NOT_FOUND & ERRCODE_RES_MASK\n" "string.text" msgid "Named argument not found." -msgstr "Adlandırılan bağımsız deÄŸiÅŸken bulunamadı." +msgstr "Adlandırılan deÄŸiÅŸken bulunamadı." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" "ERRCODE_BASIC_NOT_OPTIONAL & ERRCODE_RES_MASK\n" "string.text" msgid "Argument is not optional." -msgstr "Bağımsız deÄŸiÅŸken isteÄŸe baÄŸlı deÄŸil." +msgstr "DeÄŸiÅŸken seçimlik deÄŸil." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -817,7 +737,6 @@ msgstr "Bağımsız deÄŸiÅŸken sayısı yanlış." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -827,7 +746,6 @@ msgstr "Nesne bir liste deÄŸil." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -837,7 +755,6 @@ msgstr "Sıra sayısı geçersiz." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -847,7 +764,6 @@ msgstr "Belirtilen DLL iÅŸlevi bulunamadı." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -857,7 +773,6 @@ msgstr "Geçersiz pano biçimi." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -867,7 +782,6 @@ msgstr "Nesne bu özelliÄŸe sahip deÄŸil." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -877,7 +791,6 @@ msgstr "Nesne bu yönteme sahip deÄŸil." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -887,7 +800,6 @@ msgstr "Gerekli bağımsız deÄŸiÅŸken eksik." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -897,7 +809,6 @@ msgstr "Bağımsız deÄŸiÅŸken sayısı yanlış." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -907,7 +818,6 @@ msgstr "Yöntemin yürütülmesinde hata." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -917,7 +827,6 @@ msgstr "Özellik tanımlanamadı." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -927,7 +836,6 @@ msgstr "Özellik belirlenemedi." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -937,7 +845,6 @@ msgstr "Beklenmeyen simge: $(ARG1)." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -947,7 +854,6 @@ msgstr "Beklenen: $(ARG1)." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -957,7 +863,6 @@ msgstr "Simge bekleniyor." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -967,7 +872,6 @@ msgstr "DeÄŸiÅŸken bekleniyor." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -977,37 +881,33 @@ msgstr "Etiket bekleniyor." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" "ERRCODE_BASIC_LVALUE_EXPECTED & ERRCODE_RES_MASK\n" "string.text" msgid "Value cannot be applied." -msgstr "DeÄŸer atanamıyor." +msgstr "DeÄŸer uygulanamadı." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" "ERRCODE_BASIC_VAR_DEFINED & ERRCODE_RES_MASK\n" "string.text" msgid "Variable $(ARG1) already defined." -msgstr "DeÄŸiÅŸken $(ARG1) tanımlanmış durumda." +msgstr "DeÄŸiÅŸken $(ARG1) zaten tanımlanmış." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" "ERRCODE_BASIC_PROC_DEFINED & ERRCODE_RES_MASK\n" "string.text" msgid "Sub procedure or function procedure $(ARG1) already defined." -msgstr "Alt yöntem ya da iÅŸlev yöntemi $(ARG1)'de tanımlanmış durumda." +msgstr "Alt yöntem ya da iÅŸlev yöntemi $(ARG1) zaten tanımlanmış durumda." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -1017,7 +917,6 @@ msgstr "Etiket $(ARG1) tanımlanmış durumda." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -1027,7 +926,6 @@ msgstr "DeÄŸiÅŸken $(ARG1) bulunamadı." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -1037,7 +935,6 @@ msgstr "Dizi ya da yöntem $(ARG1) bulunamadı." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -1047,7 +944,6 @@ msgstr "Yöntem $(ARG1) bulunamadı." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -1057,7 +953,6 @@ msgstr "Etiket $(ARG1) tanımlanmadı." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -1067,7 +962,6 @@ msgstr "Bilinmeyen veri türü $(ARG1)." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -1077,27 +971,24 @@ msgstr "Çıkış $(ARG1) bekleniyor." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" "ERRCODE_BASIC_BAD_BLOCK & ERRCODE_RES_MASK\n" "string.text" msgid "Statement block still open: $(ARG1) missing." -msgstr "Açık deyim bloku: $(ARG1) eksik." +msgstr "Açık deyim bloÄŸu: $(ARG1) eksik." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" "ERRCODE_BASIC_BAD_BRACKETS & ERRCODE_RES_MASK\n" "string.text" msgid "Parentheses do not match." -msgstr "Ayraçlar uyumsuz." +msgstr "Parantezler uyuÅŸmuyor." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -1107,7 +998,6 @@ msgstr "Simge $(ARG1) farklı bir biçimde tanımlanmış durumda." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -1117,7 +1007,6 @@ msgstr "Parametreler yönteme uymuyor." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -1127,7 +1016,6 @@ msgstr "Numara geçersiz bir karakter içeriyor." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -1137,37 +1025,33 @@ msgstr "Dizinin boyutlandırılması gerekiyor." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" "ERRCODE_BASIC_NO_IF & ERRCODE_RES_MASK\n" "string.text" msgid "Else/Endif without If." -msgstr "'If''siz Else/Endif." +msgstr "If kullanmadan Else/Endif kullanılmış." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" "ERRCODE_BASIC_NOT_IN_SUBR & ERRCODE_RES_MASK\n" "string.text" msgid "$(ARG1) not allowed within a procedure." -msgstr "Yöntem $(ARG1) geçerli deÄŸil." +msgstr "$(ARG1) bir yöntem içinde kullanılamaz." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" "ERRCODE_BASIC_NOT_IN_MAIN & ERRCODE_RES_MASK\n" "string.text" msgid "$(ARG1) not allowed outside a procedure." -msgstr "Yöntem dışında $(ARG1) geçerli deÄŸil." +msgstr "$(ARG1) bir yöntem dışında kullanılamaz." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -1177,7 +1061,6 @@ msgstr "Boyut verileri arasında uyuÅŸmazlık." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -1187,7 +1070,6 @@ msgstr "Bilinmeyen seçenek: $(ARG1)." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -1197,7 +1079,6 @@ msgstr "Sabit $(ARG1) yeniden tanımlandı." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -1207,7 +1088,6 @@ msgstr "Program çok büyük." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" diff -Nru libreoffice-5.1.1~rc2/translations/source/tr/chart2/uiconfig/ui.po libreoffice-5.1.2~rc2/translations/source/tr/chart2/uiconfig/ui.po --- libreoffice-5.1.1~rc2/translations/source/tr/chart2/uiconfig/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/tr/chart2/uiconfig/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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-10 10:12+0000\n" +"PO-Revision-Date: 2016-03-09 12:38+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: tr\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1455099158.000000\n" +"X-POOTLE-MTIME: 1457527105.000000\n" #: 3dviewdialog.ui msgctxt "" @@ -203,7 +203,7 @@ "label\n" "string.text" msgid "Auto text _wrap" -msgstr "" +msgstr "Otomatik metin _sarmala" #: dlg_DataLabel.ui msgctxt "" @@ -1175,7 +1175,7 @@ "4\n" "stringlist.text" msgid "Manual" -msgstr "" +msgstr "Elle" #: sidebarelements.ui msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/tr/cui/source/tabpages.po libreoffice-5.1.2~rc2/translations/source/tr/cui/source/tabpages.po --- libreoffice-5.1.1~rc2/translations/source/tr/cui/source/tabpages.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/tr/cui/source/tabpages.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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-11 12:29+0000\n" -"Last-Translator: Necdet Yucel <necdetyucel@gmail.com>\n" +"PO-Revision-Date: 2016-03-09 12:44+0000\n" +"Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: tr\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1449836963.000000\n" +"X-POOTLE-MTIME: 1457527459.000000\n" #: border.src msgctxt "" @@ -962,7 +962,6 @@ msgstr "Yazı biçimi" #: strings.src -#, fuzzy msgctxt "" "strings.src\n" "RID_SVXSTR_CHARNAME_HIGHLIGHTING\n" diff -Nru libreoffice-5.1.1~rc2/translations/source/tr/cui/uiconfig/ui.po libreoffice-5.1.2~rc2/translations/source/tr/cui/uiconfig/ui.po --- libreoffice-5.1.1~rc2/translations/source/tr/cui/uiconfig/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/tr/cui/uiconfig/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: LibO 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-10 10:15+0000\n" -"Last-Translator: Zeki Bildirici <kobzeci@gmail.com>\n" +"PO-Revision-Date: 2016-03-09 12:55+0000\n" +"Last-Translator: system user <>\n" "Language-Team: none\n" "Language: tr\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1455099336.000000\n" +"X-POOTLE-MTIME: 1457528135.000000\n" #: aboutconfigdialog.ui msgctxt "" @@ -179,14 +179,13 @@ msgstr "%PRODUCTNAME; kelime iÅŸlemci, hesap tablosu, sunum ve çok daha fazlası için modern, kullanımı kolay ve açık kaynaklı bir üretkenlik takımıdır." #: aboutdialog.ui -#, fuzzy msgctxt "" "aboutdialog.ui\n" "copyright\n" "label\n" "string.text" msgid "Copyright © 2000–2016 LibreOffice contributors." -msgstr "Telif Hakkı © 2000 - 2015 LibreOffice katkıcıları." +msgstr "Telif Hakkı © 2000–2016 LibreOffice katkıcıları." #: aboutdialog.ui msgctxt "" @@ -11351,7 +11350,7 @@ "label\n" "string.text" msgid "_Send OS version & simple hardware info." -msgstr "" +msgstr "Ä°ÅŸletim Sistemi sürümünü ve basit donanım bilgisini _gönder." #: optonlineupdatepage.ui msgctxt "" @@ -11360,7 +11359,7 @@ "tooltip_text\n" "string.text" msgid "This information lets us optimize for your hardware & OS." -msgstr "" +msgstr "Bu bilgi sizin donanımınız ve iÅŸletim sisteminiz için iyileÅŸtirmeler yapmamıza imkan verir." #: optonlineupdatepage.ui msgctxt "" @@ -11369,7 +11368,7 @@ "label\n" "string.text" msgid "User Agent:" -msgstr "" +msgstr "Kullanıcı Aracı:" #: optonlineupdatepage.ui msgctxt "" @@ -11378,7 +11377,7 @@ "label\n" "string.text" msgid "Hit apply to update" -msgstr "" +msgstr "Güncellemeyi uygulamak için tıklayın" #: optonlineupdatepage.ui msgctxt "" @@ -11405,7 +11404,7 @@ "label\n" "string.text" msgid "Allow use of Software Interpreter (even when OpenCL is not available)" -msgstr "" +msgstr "Yazılım Yorumlayıcısının kullanımına izin ver (OpenCL kullanılabilir olmasa bile)" #: optopenclpage.ui msgctxt "" @@ -12518,7 +12517,7 @@ "label\n" "string.text" msgid "Force OpenGL even if blacklisted (on restart)" -msgstr "Kara listede olsa bile OpenGL kullanmaya zorla (yeniden baÅŸlatıldığında)" +msgstr "Kara listede bile olsa OpenGL kullanmaya zorla (yeniden baÅŸlatıldığında)" #: optviewpage.ui msgctxt "" @@ -15650,14 +15649,13 @@ msgstr "Karakter:" #: specialcharacters.ui -#, fuzzy msgctxt "" "specialcharacters.ui\n" "decimallabel\n" "label\n" "string.text" msgid "Decimal:" -msgstr "On_dalık" +msgstr "Ondalık:" #: specialcharacters.ui msgctxt "" @@ -15666,7 +15664,7 @@ "label\n" "string.text" msgid "Hexadecimal:" -msgstr "" +msgstr "Onaltılık:" #: spellingdialog.ui msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/tr/desktop/uiconfig/ui.po libreoffice-5.1.2~rc2/translations/source/tr/desktop/uiconfig/ui.po --- libreoffice-5.1.1~rc2/translations/source/tr/desktop/uiconfig/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/tr/desktop/uiconfig/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 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: 2014-11-23 13:32+0000\n" +"PO-Revision-Date: 2016-03-09 13:03+0000\n" "Last-Translator: system user <>\n" "Language-Team: none\n" "Language: tr\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1416749555.000000\n" +"X-POOTLE-MTIME: 1457528587.000000\n" #: cmdlinehelp.ui msgctxt "" @@ -215,14 +215,13 @@ 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 "Tüm Lisans AnlaÅŸmasını okuyun. Bu metni okumak için kaydırma çubuÄŸunu ya da 'AÅŸağı Kaydır' düğmesini kullanabilirsiniz.\"" +msgstr "Tüm Lisans AnlaÅŸmasını okuyun. Bu metni okumak için kaydırma çubuÄŸunu ya da 'AÅŸağı Kaydır' düğmesini kullanabilirsiniz." #: licensedialog.ui msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/tr/extras/source/autocorr/emoji.po libreoffice-5.1.2~rc2/translations/source/tr/extras/source/autocorr/emoji.po --- libreoffice-5.1.1~rc2/translations/source/tr/extras/source/autocorr/emoji.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/tr/extras/source/autocorr/emoji.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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-05 13:38+0000\n" -"Last-Translator: Necdet Yucel <necdetyucel@gmail.com>\n" +"PO-Revision-Date: 2016-03-09 13:18+0000\n" +"Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: tr\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1441460325.000000\n" +"X-POOTLE-MTIME: 1457529493.000000\n" #. ¢ (U+000A2), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -630,7 +630,6 @@ #. … (U+02026), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "HORIZONTAL_ELLIPSIS\n" diff -Nru libreoffice-5.1.1~rc2/translations/source/tr/filter/source/config/fragments/filters.po libreoffice-5.1.2~rc2/translations/source/tr/filter/source/config/fragments/filters.po --- libreoffice-5.1.1~rc2/translations/source/tr/filter/source/config/fragments/filters.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/tr/filter/source/config/fragments/filters.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 20:35+0000\n" +"PO-Revision-Date: 2016-03-09 13:19+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: tr\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1449866119.000000\n" +"X-POOTLE-MTIME: 1457529583.000000\n" #: AbiWord.xcu msgctxt "" @@ -500,7 +500,7 @@ "UIName\n" "value.text" msgid "Legacy Mac Bitmap" -msgstr "" +msgstr "Eski Mac Bit EÅŸlem" #: MWAW_Database.xcu msgctxt "" @@ -509,7 +509,7 @@ "UIName\n" "value.text" msgid "Legacy Mac Database" -msgstr "" +msgstr "Eski Mac Veritabanı" #: MWAW_Drawing.xcu msgctxt "" @@ -518,7 +518,7 @@ "UIName\n" "value.text" msgid "Legacy Mac Drawing" -msgstr "" +msgstr "Eski Mac Çizim" #: MWAW_Presentation.xcu msgctxt "" @@ -527,7 +527,7 @@ "UIName\n" "value.text" msgid "Legacy Mac Presentation" -msgstr "" +msgstr "Eski Mac Sunum" #: MWAW_Spreadsheet.xcu msgctxt "" @@ -536,7 +536,7 @@ "UIName\n" "value.text" msgid "Legacy Mac Spreadsheet" -msgstr "" +msgstr "Eski Mac Çalışma Sayfası" #: MWAW_Text_Document.xcu msgctxt "" @@ -545,7 +545,7 @@ "UIName\n" "value.text" msgid "Legacy Mac Text Document" -msgstr "" +msgstr "Eski Mac Metin Belgesi" #: MacWrite.xcu msgctxt "" @@ -710,14 +710,13 @@ 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 Metin Belgesi" +msgstr "Palm Metin Belgesi" #: Plucker_eBook.xcu msgctxt "" @@ -1899,7 +1898,6 @@ msgstr "OpenOffice.org 1.0 HTML Åžablonu" #: writer_web_jpg_Export.xcu -#, fuzzy msgctxt "" "writer_web_jpg_Export.xcu\n" "writer_web_jpg_Export\n" @@ -1918,7 +1916,6 @@ msgstr "PDF - Taşınabilir Belge Biçimi" #: writer_web_png_Export.xcu -#, fuzzy msgctxt "" "writer_web_png_Export.xcu\n" "writer_web_png_Export\n" diff -Nru libreoffice-5.1.1~rc2/translations/source/tr/formula/source/core/resource.po libreoffice-5.1.2~rc2/translations/source/tr/formula/source/core/resource.po --- libreoffice-5.1.1~rc2/translations/source/tr/formula/source/core/resource.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/tr/formula/source/core/resource.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\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-29 16:07+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff -Nru libreoffice-5.1.1~rc2/translations/source/tr/fpicker/source/office.po libreoffice-5.1.2~rc2/translations/source/tr/fpicker/source/office.po --- libreoffice-5.1.1~rc2/translations/source/tr/fpicker/source/office.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/tr/fpicker/source/office.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\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-01-11 22:07+0000\n" -"Last-Translator: Necdet Yucel <necdetyucel@gmail.com>\n" +"PO-Revision-Date: 2016-03-09 13:25+0000\n" +"Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: tr\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1421014065.000000\n" +"X-POOTLE-MTIME: 1457529918.000000\n" #: OfficeFilePicker.src msgctxt "" @@ -251,6 +251,8 @@ "Are you sure you want to delete the service?\n" "\"$servicename$\"" msgstr "" +"Bu servisi silmek istediÄŸinizden emin misiniz?\n" +"\"$servicename$\"" #: iodlg.src msgctxt "" @@ -258,7 +260,7 @@ "STR_SVT_ROOTLABEL\n" "string.text" msgid "Root" -msgstr "" +msgstr "Kök Dizini" #: iodlg.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/tr/fpicker/uiconfig/ui.po libreoffice-5.1.2~rc2/translations/source/tr/fpicker/uiconfig/ui.po --- libreoffice-5.1.1~rc2/translations/source/tr/fpicker/uiconfig/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/tr/fpicker/uiconfig/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 15:56+0000\n" +"PO-Revision-Date: 2016-03-09 13:25+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: tr\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1429977411.000000\n" +"X-POOTLE-MTIME: 1457529924.000000\n" #: explorerfiledialog.ui msgctxt "" @@ -149,7 +149,7 @@ "title\n" "string.text" msgid "Remote Files" -msgstr "" +msgstr "Uzak Dosyalar" #: remotefilesdialog.ui msgctxt "" @@ -158,7 +158,7 @@ "label\n" "string.text" msgid "Service:" -msgstr "" +msgstr "Hizmet:" #: remotefilesdialog.ui msgctxt "" @@ -167,10 +167,9 @@ "label\n" "string.text" msgid "Add service" -msgstr "" +msgstr "Hizmet ekle" #: remotefilesdialog.ui -#, fuzzy msgctxt "" "remotefilesdialog.ui\n" "new_folder\n" @@ -180,7 +179,6 @@ msgstr "Yeni Klasör OluÅŸtur" #: remotefilesdialog.ui -#, fuzzy msgctxt "" "remotefilesdialog.ui\n" "new_folder\n" @@ -196,17 +194,16 @@ "label\n" "string.text" msgid "Filter" -msgstr "" +msgstr "Süzgeç" #: remotefilesdialog.ui -#, fuzzy msgctxt "" "remotefilesdialog.ui\n" "nameLabel\n" "label\n" "string.text" msgid "File name" -msgstr "Dosya _ismi:" +msgstr "Dosya adı" #: remotefilesdialog.ui msgctxt "" @@ -215,7 +212,7 @@ "label\n" "string.text" msgid "_Edit service" -msgstr "" +msgstr "_Hizmeti düzenle" #: remotefilesdialog.ui msgctxt "" @@ -224,7 +221,7 @@ "label\n" "string.text" msgid "_Delete service" -msgstr "" +msgstr "Hizmeti _sil" #: remotefilesdialog.ui msgctxt "" @@ -233,4 +230,4 @@ "label\n" "string.text" msgid "_Change password" -msgstr "" +msgstr "_Parola deÄŸiÅŸtir" diff -Nru libreoffice-5.1.1~rc2/translations/source/tr/framework/source/classes.po libreoffice-5.1.2~rc2/translations/source/tr/framework/source/classes.po --- libreoffice-5.1.1~rc2/translations/source/tr/framework/source/classes.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/tr/framework/source/classes.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\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-20 14:59+0000\n" -"Last-Translator: Necdet Yucel <necdetyucel@gmail.com>\n" +"PO-Revision-Date: 2016-03-09 13:25+0000\n" +"Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: tr\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1416495584.000000\n" +"X-POOTLE-MTIME: 1457529939.000000\n" #: resource.src msgctxt "" @@ -148,7 +148,7 @@ "STR_OPEN_REMOTE\n" "string.text" msgid "Open remote file" -msgstr "" +msgstr "Uzak dosya aç" #: resource.src msgctxt "" @@ -156,7 +156,7 @@ "STR_REMOTE_TITLE\n" "string.text" msgid " (Remote)" -msgstr "" +msgstr " (Uzak)" #: resource.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/tr/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-5.1.2~rc2/translations/source/tr/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-5.1.1~rc2/translations/source/tr/officecfg/registry/data/org/openoffice/Office/UI.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/tr/officecfg/registry/data/org/openoffice/Office/UI.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\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 10:20+0000\n" -"Last-Translator: Zeki Bildirici <kobzeci@gmail.com>\n" +"PO-Revision-Date: 2016-03-09 14:01+0000\n" +"Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: tr\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1455099607.000000\n" +"X-POOTLE-MTIME: 1457532100.000000\n" #: BaseWindowState.xcu msgctxt "" @@ -1499,7 +1499,7 @@ "Label\n" "value.text" msgid "~Regression..." -msgstr "" +msgstr "~Regresyon..." #: CalcCommands.xcu msgctxt "" @@ -3194,7 +3194,6 @@ msgstr "Geçerli Sayfa için Izgara Çizgilerini Aç/Kapat" #: CalcCommands.xcu -#, fuzzy msgctxt "" "CalcCommands.xcu\n" "..CalcCommands.UserInterface.Commands..uno:ToggleSheetGrid\n" @@ -5904,24 +5903,22 @@ msgstr "S~layt" #: DrawImpressCommands.xcu -#, fuzzy msgctxt "" "DrawImpressCommands.xcu\n" "..DrawImpressCommands.UserInterface.Commands..uno:SlideNavigateMenu\n" "Label\n" "value.text" msgid "Navigate" -msgstr "Gezinim" +msgstr "Gezinme" #: DrawImpressCommands.xcu -#, fuzzy msgctxt "" "DrawImpressCommands.xcu\n" "..DrawImpressCommands.UserInterface.Commands..uno:SlideMoveMenu\n" "Label\n" "value.text" msgid "Move" -msgstr "Kip" +msgstr "Taşı" #: DrawImpressCommands.xcu msgctxt "" @@ -6338,14 +6335,13 @@ msgstr "Önizleme" #: DrawImpressCommands.xcu -#, fuzzy msgctxt "" "DrawImpressCommands.xcu\n" "..DrawImpressCommands.UserInterface.Commands..uno:CustomAnimation\n" "Label\n" "value.text" msgid "Custom Animation" -msgstr "Canlandırmayı ÖzelleÅŸtir" +msgstr "Özel Canlandırma" #: DrawImpressCommands.xcu msgctxt "" @@ -6357,7 +6353,6 @@ msgstr "Åžema Canlandırma..." #: DrawImpressCommands.xcu -#, fuzzy msgctxt "" "DrawImpressCommands.xcu\n" "..DrawImpressCommands.UserInterface.Commands..uno:SlideChangeWindow\n" @@ -6952,7 +6947,6 @@ msgstr "Kavrama Noktası/Çizgisi ~Ekle..." #: DrawImpressCommands.xcu -#, fuzzy msgctxt "" "DrawImpressCommands.xcu\n" "..DrawImpressCommands.UserInterface.Commands..uno:ShowRuler\n" @@ -6971,14 +6965,13 @@ msgstr "~Katman..." #: DrawImpressCommands.xcu -#, fuzzy msgctxt "" "DrawImpressCommands.xcu\n" "..DrawImpressCommands.UserInterface.Commands..uno:ModifyPage\n" "Label\n" "value.text" msgid "Slide ~Layout" -msgstr "Slayt Düzeni" +msgstr "Slayt ~Düzeni" #: DrawImpressCommands.xcu msgctxt "" @@ -7131,7 +7124,7 @@ "Label\n" "value.text" msgid "Display Mode" -msgstr "" +msgstr "Görünüm Kipi" #: DrawImpressCommands.xcu msgctxt "" @@ -7140,7 +7133,7 @@ "Label\n" "value.text" msgid "Toggle Tab Bar Visibility" -msgstr "" +msgstr "DeÄŸiÅŸtirme Sekme Araç ÇubuÄŸu Görünürlüğü" #: DrawImpressCommands.xcu msgctxt "" @@ -7149,7 +7142,7 @@ "ContextLabel\n" "value.text" msgid "Modes Tab Bar" -msgstr "" +msgstr "Kip Sekme ÇubuÄŸu" #: DrawImpressCommands.xcu msgctxt "" @@ -7755,14 +7748,13 @@ msgstr "Metni düzenlemek için çift tıklayın" #: DrawImpressCommands.xcu -#, fuzzy msgctxt "" "DrawImpressCommands.xcu\n" "..DrawImpressCommands.UserInterface.Commands..uno:SaveGraphic\n" "Label\n" "value.text" msgid "~Save..." -msgstr "Sayfa..." +msgstr "~Kaydet..." #: DrawImpressCommands.xcu msgctxt "" @@ -7780,7 +7772,7 @@ "Label\n" "value.text" msgid "~Replace..." -msgstr "" +msgstr "~DeÄŸiÅŸtir..." #: DrawImpressCommands.xcu msgctxt "" @@ -7789,27 +7781,25 @@ "Label\n" "value.text" msgid "Co~mpress..." -msgstr "" +msgstr "Sı~kıştır..." #: DrawImpressCommands.xcu -#, fuzzy msgctxt "" "DrawImpressCommands.xcu\n" "..DrawImpressCommands.UserInterface.Commands..uno:SelectBackground\n" "Label\n" "value.text" msgid "Set Background Image..." -msgstr "Arkaplan Resmi..." +msgstr "Arkaplan Resmini Ayarla..." #: DrawImpressCommands.xcu -#, fuzzy msgctxt "" "DrawImpressCommands.xcu\n" "..DrawImpressCommands.UserInterface.Commands..uno:SaveBackground\n" "Label\n" "value.text" msgid "Save Background Image..." -msgstr "Arkaplan Resmi..." +msgstr "Arkaplan Resmini Kaydet..." #: DrawImpressCommands.xcu msgctxt "" @@ -7818,7 +7808,7 @@ "Label\n" "value.text" msgid "Display Master Background" -msgstr "" +msgstr "Ana Arkaplanı Görüntüle" #: DrawImpressCommands.xcu msgctxt "" @@ -7827,7 +7817,7 @@ "Label\n" "value.text" msgid "Display Master Objects" -msgstr "" +msgstr "Ana Nesneleri Görüntüle" #: DrawImpressCommands.xcu msgctxt "" @@ -8529,7 +8519,7 @@ "Label\n" "value.text" msgid "Go to First Page/Slide" -msgstr "" +msgstr "Ä°lk Sayfaya/Slayta Git" #: DrawImpressCommands.xcu msgctxt "" @@ -8538,7 +8528,7 @@ "ContextLabel\n" "value.text" msgid "To First Page/Slide" -msgstr "" +msgstr "Ä°lk Sayfaya/Slayta" #: DrawImpressCommands.xcu msgctxt "" @@ -8547,7 +8537,7 @@ "Label\n" "value.text" msgid "Go to Previous Page/Slide" -msgstr "" +msgstr "Önceki Sayfaya/Slayta Git" #: DrawImpressCommands.xcu msgctxt "" @@ -8556,7 +8546,7 @@ "ContextLabel\n" "value.text" msgid "To Previous Page/Slide" -msgstr "" +msgstr "Önceki Sayfaya/Slayta" #: DrawImpressCommands.xcu msgctxt "" @@ -8565,7 +8555,7 @@ "Label\n" "value.text" msgid "Go to Next Page/Slide" -msgstr "" +msgstr "Sonraki Sayfaya/Slayta Git" #: DrawImpressCommands.xcu msgctxt "" @@ -8574,7 +8564,7 @@ "ContextLabel\n" "value.text" msgid "To Next Page/Slide" -msgstr "" +msgstr "Sonraki Sayfaya/Slayta" #: DrawImpressCommands.xcu msgctxt "" @@ -8583,7 +8573,7 @@ "Label\n" "value.text" msgid "Go to Last Page" -msgstr "" +msgstr "Son Sayfaya Git" #: DrawImpressCommands.xcu #, fuzzy @@ -11405,7 +11395,6 @@ msgstr "Ä°nce" #: Effects.xcu -#, fuzzy msgctxt "" "Effects.xcu\n" "..Effects.UserInterface.TransitionGroups.exciting\n" @@ -11433,7 +11422,6 @@ msgstr "" #: Effects.xcu -#, fuzzy msgctxt "" "Effects.xcu\n" "..Effects.UserInterface.TransitionSets.box\n" @@ -11449,7 +11437,7 @@ "Label\n" "value.text" msgid "Checkers" -msgstr "" +msgstr "Kareler" #: Effects.xcu msgctxt "" @@ -11461,14 +11449,13 @@ msgstr "Tarak" #: Effects.xcu -#, fuzzy msgctxt "" "Effects.xcu\n" "..Effects.UserInterface.TransitionSets.cover\n" "Label\n" "value.text" msgid "Cover" -msgstr "Yonca" +msgstr "Kapak" #: Effects.xcu msgctxt "" @@ -11477,7 +11464,7 @@ "Label\n" "value.text" msgid "Uncover" -msgstr "" +msgstr "Açığa çıkar" #: Effects.xcu #, fuzzy @@ -11519,7 +11506,6 @@ msgstr "" #: Effects.xcu -#, fuzzy msgctxt "" "Effects.xcu\n" "..Effects.UserInterface.TransitionSets.cut\n" @@ -11538,7 +11524,6 @@ msgstr "Soldur" #: Effects.xcu -#, fuzzy msgctxt "" "Effects.xcu\n" "..Effects.UserInterface.TransitionSets.random-bars\n" @@ -11548,17 +11533,15 @@ msgstr "Rastgele Çubuklar" #: Effects.xcu -#, fuzzy msgctxt "" "Effects.xcu\n" "..Effects.UserInterface.TransitionSets.shape\n" "Label\n" "value.text" msgid "Shape" -msgstr "~Åžekil" +msgstr "Åžekil" #: Effects.xcu -#, fuzzy msgctxt "" "Effects.xcu\n" "..Effects.UserInterface.TransitionSets.split\n" @@ -11586,7 +11569,6 @@ msgstr "Rasgele" #: Effects.xcu -#, fuzzy msgctxt "" "Effects.xcu\n" "..Effects.UserInterface.TransitionSets.dissolve\n" @@ -11596,7 +11578,6 @@ msgstr "Dağıt" #: Effects.xcu -#, fuzzy msgctxt "" "Effects.xcu\n" "..Effects.UserInterface.TransitionSets.finedissolve\n" @@ -11622,10 +11603,9 @@ "Label\n" "value.text" msgid "Tiles" -msgstr "" +msgstr "Döşeme" #: Effects.xcu -#, fuzzy msgctxt "" "Effects.xcu\n" "..Effects.UserInterface.TransitionSets.cube-turning\n" @@ -11635,14 +11615,13 @@ msgstr "Küp" #: Effects.xcu -#, fuzzy msgctxt "" "Effects.xcu\n" "..Effects.UserInterface.TransitionSets.revolving-circles\n" "Label\n" "value.text" msgid "Circles" -msgstr "Daire" +msgstr "Çemberler" #: Effects.xcu msgctxt "" @@ -11651,7 +11630,7 @@ "Label\n" "value.text" msgid "Helix" -msgstr "" +msgstr "Burgu" #: Effects.xcu #, fuzzy @@ -11704,7 +11683,6 @@ msgstr "Rochade" #: Effects.xcu -#, fuzzy msgctxt "" "Effects.xcu\n" "..Effects.UserInterface.TransitionSets.static\n" @@ -11720,7 +11698,7 @@ "Label\n" "value.text" msgid "Vortex" -msgstr "" +msgstr "Girdap" #: Effects.xcu msgctxt "" @@ -11729,7 +11707,7 @@ "Label\n" "value.text" msgid "Ripple" -msgstr "" +msgstr "Dalgacı" #: Effects.xcu msgctxt "" @@ -11738,7 +11716,7 @@ "Label\n" "value.text" msgid "Glitter" -msgstr "" +msgstr "Parıltı" #: Effects.xcu msgctxt "" @@ -11756,7 +11734,7 @@ "Label\n" "value.text" msgid "Plain" -msgstr "" +msgstr "Düz" #: Effects.xcu #, fuzzy @@ -11779,7 +11757,6 @@ msgstr "Siyahtan Ä°tibaren Kes" #: Effects.xcu -#, fuzzy msgctxt "" "Effects.xcu\n" "..Effects.UserInterface.TransitionVariants.left-right\n" @@ -11795,7 +11772,7 @@ "Label\n" "value.text" msgid "Top Left to Bottom Right" -msgstr "" +msgstr "Sol Yukarıdan SaÄŸ AÅŸağıya" #: Effects.xcu msgctxt "" @@ -11804,7 +11781,7 @@ "Label\n" "value.text" msgid "Top to Bottom" -msgstr "" +msgstr "Yukarıdan AÅŸağıya" #: Effects.xcu msgctxt "" @@ -11813,10 +11790,9 @@ "Label\n" "value.text" msgid "Top Right to Bottom Left" -msgstr "" +msgstr "SaÄŸ Yukarıdan Sol AÅŸağıya" #: Effects.xcu -#, fuzzy msgctxt "" "Effects.xcu\n" "..Effects.UserInterface.TransitionVariants.right-left\n" @@ -11832,7 +11808,7 @@ "Label\n" "value.text" msgid "Bottom Right to Top Left" -msgstr "" +msgstr "SaÄŸ Alttan Sol Yukarıya" #: Effects.xcu msgctxt "" @@ -11841,7 +11817,7 @@ "Label\n" "value.text" msgid "Bottom to Top" -msgstr "" +msgstr "Alttan Yukarıya" #: Effects.xcu msgctxt "" @@ -11850,10 +11826,9 @@ "Label\n" "value.text" msgid "Bottom Left to Top Right" -msgstr "" +msgstr "Sol Alttan SaÄŸ Yukarıya" #: Effects.xcu -#, fuzzy msgctxt "" "Effects.xcu\n" "..Effects.UserInterface.TransitionVariants.vertical\n" @@ -11863,7 +11838,6 @@ msgstr "Dikey" #: Effects.xcu -#, fuzzy msgctxt "" "Effects.xcu\n" "..Effects.UserInterface.TransitionVariants.horizontal\n" @@ -11873,7 +11847,6 @@ msgstr "Yatay" #: Effects.xcu -#, fuzzy msgctxt "" "Effects.xcu\n" "..Effects.UserInterface.TransitionVariants.in\n" @@ -11883,7 +11856,6 @@ msgstr "İçeri" #: Effects.xcu -#, fuzzy msgctxt "" "Effects.xcu\n" "..Effects.UserInterface.TransitionVariants.out\n" @@ -11893,7 +11865,6 @@ msgstr "Dışarı" #: Effects.xcu -#, fuzzy msgctxt "" "Effects.xcu\n" "..Effects.UserInterface.TransitionVariants.across\n" @@ -11903,54 +11874,49 @@ msgstr "Karşısı" #: Effects.xcu -#, fuzzy msgctxt "" "Effects.xcu\n" "..Effects.UserInterface.TransitionVariants.down\n" "Label\n" "value.text" msgid "Down" -msgstr "AÅŸağıya" +msgstr "AÅŸağı" #: Effects.xcu -#, fuzzy msgctxt "" "Effects.xcu\n" "..Effects.UserInterface.TransitionVariants.up\n" "Label\n" "value.text" msgid "Up" -msgstr "Yukarıya" +msgstr "Yukarı" #: Effects.xcu -#, fuzzy msgctxt "" "Effects.xcu\n" "..Effects.UserInterface.TransitionVariants.right\n" "Label\n" "value.text" msgid "Right" -msgstr "SaÄŸda" +msgstr "SaÄŸ" #: Effects.xcu -#, fuzzy msgctxt "" "Effects.xcu\n" "..Effects.UserInterface.TransitionVariants.left\n" "Label\n" "value.text" msgid "Left" -msgstr "Solda" +msgstr "Sol" #: Effects.xcu -#, fuzzy msgctxt "" "Effects.xcu\n" "..Effects.UserInterface.TransitionVariants.circle\n" "Label\n" "value.text" msgid "Circle" -msgstr "Daire" +msgstr "Çember" #: Effects.xcu #, fuzzy @@ -11963,7 +11929,6 @@ msgstr "Baklava dilimi" #: Effects.xcu -#, fuzzy msgctxt "" "Effects.xcu\n" "..Effects.UserInterface.TransitionVariants.plus\n" @@ -11973,7 +11938,6 @@ msgstr "Artı" #: Effects.xcu -#, fuzzy msgctxt "" "Effects.xcu\n" "..Effects.UserInterface.TransitionVariants.horizontal-in\n" @@ -11983,7 +11947,6 @@ msgstr "Yatay içeri" #: Effects.xcu -#, fuzzy msgctxt "" "Effects.xcu\n" "..Effects.UserInterface.TransitionVariants.horizontal-out\n" @@ -11993,7 +11956,6 @@ msgstr "Yatay dışarı" #: Effects.xcu -#, fuzzy msgctxt "" "Effects.xcu\n" "..Effects.UserInterface.TransitionVariants.vertical-in\n" @@ -12003,7 +11965,6 @@ msgstr "Dikey içeri" #: Effects.xcu -#, fuzzy msgctxt "" "Effects.xcu\n" "..Effects.UserInterface.TransitionVariants.vertical-out\n" @@ -12019,7 +11980,7 @@ "Label\n" "value.text" msgid "Clockwise 1 Spoke" -msgstr "" +msgstr "Saat yönünde 1 Tekli Çevir" #: Effects.xcu msgctxt "" @@ -12028,7 +11989,7 @@ "Label\n" "value.text" msgid "Clockwise 2 Spokes" -msgstr "" +msgstr "Saat yönünde Çiftli Çevir" #: Effects.xcu msgctxt "" @@ -12037,7 +11998,7 @@ "Label\n" "value.text" msgid "Clockwise 3 Spokes" -msgstr "" +msgstr "Saat yönünde Üçlü Çevir" #: Effects.xcu msgctxt "" @@ -12046,7 +12007,7 @@ "Label\n" "value.text" msgid "Clockwise 4 Spokes" -msgstr "" +msgstr "Saat yönünde Dörtlü Çevir" #: Effects.xcu msgctxt "" @@ -12055,7 +12016,7 @@ "Label\n" "value.text" msgid "Clockwise 8 Spokes" -msgstr "" +msgstr "Saat Yönünde Sekizli Çevir" #: Effects.xcu msgctxt "" @@ -14811,17 +14772,16 @@ "ContextLabel\n" "value.text" msgid "~Replace..." -msgstr "" +msgstr "~DeÄŸiÅŸtir..." #: GenericCommands.xcu -#, fuzzy msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Commands..uno:CompressGraphic\n" "Label\n" "value.text" msgid "Compress Image" -msgstr "Resimleri ~Sıkıştır..." +msgstr "Resmi Sıkıştır" #: GenericCommands.xcu msgctxt "" @@ -14830,17 +14790,16 @@ "ContextLabel\n" "value.text" msgid "Co~mpress..." -msgstr "" +msgstr "Sı~kıştır..." #: GenericCommands.xcu -#, fuzzy msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Commands..uno:SaveGraphic\n" "Label\n" "value.text" msgid "Save Image" -msgstr "Resmi Kaydet..." +msgstr "Resmi Kaydet" #: GenericCommands.xcu msgctxt "" @@ -14849,7 +14808,7 @@ "ContextLabel\n" "value.text" msgid "Save..." -msgstr "" +msgstr "Kaydet..." #: GenericCommands.xcu msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/tr/officecfg/registry/data/org/openoffice/Office.po libreoffice-5.1.2~rc2/translations/source/tr/officecfg/registry/data/org/openoffice/Office.po --- libreoffice-5.1.1~rc2/translations/source/tr/officecfg/registry/data/org/openoffice/Office.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/tr/officecfg/registry/data/org/openoffice/Office.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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-02 09:30+0000\n" -"Last-Translator: Özgür Sarıer <ozgursarier1011601115@gmail.com>\n" +"PO-Revision-Date: 2016-03-09 13:41+0000\n" +"Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: tr\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1449048623.000000\n" +"X-POOTLE-MTIME: 1457530875.000000\n" #: Addons.xcu msgctxt "" @@ -1520,7 +1520,6 @@ msgstr "Yeniden BaÅŸlat" #: PresenterScreen.xcu -#, fuzzy msgctxt "" "PresenterScreen.xcu\n" "..PresenterScreen.PresenterScreenSettings.ToolBars.ToolBar.Entries.m.Normal\n" @@ -1530,7 +1529,6 @@ msgstr "DeÄŸiÅŸtir" #: PresenterScreen.xcu -#, fuzzy msgctxt "" "PresenterScreen.xcu\n" "..PresenterScreen.PresenterScreenSettings.ToolBars.ToolBar.Entries.o.Normal\n" diff -Nru libreoffice-5.1.1~rc2/translations/source/tr/readlicense_oo/docs.po libreoffice-5.1.2~rc2/translations/source/tr/readlicense_oo/docs.po --- libreoffice-5.1.1~rc2/translations/source/tr/readlicense_oo/docs.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/tr/readlicense_oo/docs.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-08-25 12:33+0200\n" -"PO-Revision-Date: 2015-09-14 10:50+0000\n" -"Last-Translator: Zeki Bildirici <kobzeci@gmail.com>\n" +"PO-Revision-Date: 2016-03-09 14:02+0000\n" +"Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: tr\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1442227841.000000\n" +"X-POOTLE-MTIME: 1457532163.000000\n" #: readme.xrm msgctxt "" @@ -585,13 +585,12 @@ msgstr "Kısayol tuÅŸları" #: readme.xrm -#, fuzzy msgctxt "" "readme.xrm\n" "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 documentation of your operating system." -msgstr "${PRODUCTNAME} kısayollarının (kısayol birleÅŸimleri) bir kısmı bazı iÅŸletimlerinde kullanılamayabilir. EÄŸer ${PRODUCTNAME} içinde bazı kısayol birleÅŸimleri çalışmıyorsa, iÅŸletiminin kullandığı kısayolları kontrol edip çalışma olup olmadığını kontrol ediniz. EÄŸer böyle bir durum var ise çakışan kısayol atamalarını deÄŸiÅŸtirebilirsiniz. Bu konu da daha fazla bilgi almak için ${PRODUCTNAME} Yardım'a ya da iÅŸletim sisteminizin yardım belgelerine göz atınız." +msgstr "${PRODUCTNAME} kısayollarının (kısayol birleÅŸimleri) bir kısmı bazı iÅŸletimlerinde kullanılamayabilir. EÄŸer ${PRODUCTNAME} içinde bazı kısayol birleÅŸimleri ${PRODUCTNAME} Yardım belgesinde anlatıldığı gibi çalışmıyorsa, iÅŸletiminin kullandığı kısayolları kontrol edip çalışma olup olmadığını kontrol ediniz. EÄŸer böyle bir durum var ise çakışan kısayol atamalarını deÄŸiÅŸtirebilirsiniz. Bir alternatif olarak ${PRODUCTNAME} tuÅŸ atamasını da deÄŸiÅŸtirebilirsiniz. Bu konu da daha fazla bilgi almak için ${PRODUCTNAME} Yardım'a ya da iÅŸletim sisteminizin yardım belgelerine göz atınız." #: readme.xrm msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/tr/starmath/uiconfig/smath/ui.po libreoffice-5.1.2~rc2/translations/source/tr/starmath/uiconfig/smath/ui.po --- libreoffice-5.1.1~rc2/translations/source/tr/starmath/uiconfig/smath/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/tr/starmath/uiconfig/smath/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: LibO 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-07-13 22:57+0000\n" -"Last-Translator: Necdet Yucel <necdetyucel@gmail.com>\n" +"PO-Revision-Date: 2016-03-09 15:11+0000\n" +"Last-Translator: system user <>\n" "Language-Team: none\n" "Language: tr\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1436828254.000000\n" +"X-POOTLE-MTIME: 1457536298.000000\n" #: alignmentdialog.ui msgctxt "" @@ -626,7 +626,7 @@ "label\n" "string.text" msgid "Auto close brackets, parentheses and braces" -msgstr "" +msgstr "Köşeli parantezleri, küme iÅŸaretlerini ve parantezleri otomatik kapat" #: smathsettings.ui msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/tr/svtools/source/dialogs.po libreoffice-5.1.2~rc2/translations/source/tr/svtools/source/dialogs.po --- libreoffice-5.1.1~rc2/translations/source/tr/svtools/source/dialogs.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/tr/svtools/source/dialogs.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-08-25 12:33+0200\n" -"PO-Revision-Date: 2013-12-19 08:31+0000\n" -"Last-Translator: Necdet Yucel <necdetyucel@gmail.com>\n" +"PO-Revision-Date: 2016-03-09 15:13+0000\n" +"Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: tr\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1387441897.000000\n" +"X-POOTLE-MTIME: 1457536420.000000\n" #: addresstemplate.src msgctxt "" @@ -302,7 +302,7 @@ "STR_SVT_DEFAULT_SERVICE_LABEL\n" "string.text" msgid "$user$'s $service$" -msgstr "" +msgstr "$user$'s $service$" #: formats.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/tr/svtools/source/misc.po libreoffice-5.1.2~rc2/translations/source/tr/svtools/source/misc.po --- libreoffice-5.1.1~rc2/translations/source/tr/svtools/source/misc.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/tr/svtools/source/misc.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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-07-13 23:13+0000\n" -"Last-Translator: Necdet Yucel <necdetyucel@gmail.com>\n" +"PO-Revision-Date: 2016-03-09 15:17+0000\n" +"Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: tr\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1436829220.000000\n" +"X-POOTLE-MTIME: 1457536626.000000\n" #: imagemgr.src msgctxt "" @@ -2232,14 +2232,13 @@ msgstr "Sardinyalı" #: langtab.src -#, fuzzy msgctxt "" "langtab.src\n" "STR_ARR_SVT_LANGUAGE_TABLE\n" "LANGUAGE_DZONGKHA_BHUTAN\n" "pairedlist.text" msgid "Dzongkha" -msgstr "Dzongkha" +msgstr "Dzongkha dili" #: langtab.src msgctxt "" @@ -2815,7 +2814,7 @@ "LANGUAGE_GUARANI_PARAGUAY\n" "pairedlist.text" msgid "Guarani (Paraguay)" -msgstr "" +msgstr "Guarani (Paraguay)" #: langtab.src msgctxt "" @@ -3781,24 +3780,22 @@ msgstr "Venedik Dili" #: langtab.src -#, fuzzy msgctxt "" "langtab.src\n" "STR_ARR_SVT_LANGUAGE_TABLE\n" "LANGUAGE_USER_ENGLISH_GAMBIA\n" "pairedlist.text" msgid "English (Gambia)" -msgstr "Ä°ngilizce (Güneybatı Afrika)" +msgstr "Ä°ngilizce (Gambia)" #: langtab.src -#, fuzzy msgctxt "" "langtab.src\n" "STR_ARR_SVT_LANGUAGE_TABLE\n" "LANGUAGE_USER_OCCITAN_ARANESE\n" "pairedlist.text" msgid "Aranese" -msgstr "Aragon" +msgstr "Aranese" #: langtab.src msgctxt "" @@ -3807,7 +3804,7 @@ "LANGUAGE_USER_ARPITAN_FRANCE\n" "pairedlist.text" msgid "Arpitan (France)" -msgstr "" +msgstr "Arpitan (Fransa)" #: langtab.src msgctxt "" @@ -3816,17 +3813,16 @@ "LANGUAGE_USER_ARPITAN_ITALY\n" "pairedlist.text" msgid "Arpitan (Italy)" -msgstr "" +msgstr "Arpitan (Ä°talya)" #: langtab.src -#, fuzzy msgctxt "" "langtab.src\n" "STR_ARR_SVT_LANGUAGE_TABLE\n" "LANGUAGE_USER_ARPITAN_SWITZERLAND\n" "pairedlist.text" msgid "Arpitan (Switzerland)" -msgstr "Almanca (Ä°sviçre)" +msgstr "Arpitan (Ä°sviçre)" #: langtab.src msgctxt "" @@ -3835,7 +3831,7 @@ "LANGUAGE_USER_ENGLISH_BOTSWANA\n" "pairedlist.text" msgid "English (Botswana)" -msgstr "" +msgstr "Ä°ngilizce (Botswana)" #: svtools.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/tr/svtools/uiconfig/ui.po libreoffice-5.1.2~rc2/translations/source/tr/svtools/uiconfig/ui.po --- libreoffice-5.1.1~rc2/translations/source/tr/svtools/uiconfig/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/tr/svtools/uiconfig/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: LibO 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-09-06 14:21+0000\n" -"Last-Translator: Zeki Bildirici <kobzeci@gmail.com>\n" +"PO-Revision-Date: 2016-03-09 15:17+0000\n" +"Last-Translator: system user <>\n" "Language-Team: none\n" "Language: tr\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1441549311.000000\n" +"X-POOTLE-MTIME: 1457536671.000000\n" #: GraphicExportOptionsDialog.ui msgctxt "" @@ -23,7 +23,7 @@ "title\n" "string.text" msgid "Image Options" -msgstr "" +msgstr "Resim Seçenekleri" #: GraphicExportOptionsDialog.ui msgctxt "" @@ -512,7 +512,6 @@ msgstr "Dosya Hizmetleri" #: placeedit.ui -#, fuzzy msgctxt "" "placeedit.ui\n" "typeLabel\n" @@ -537,10 +536,9 @@ "label\n" "string.text" msgid "Root:" -msgstr "" +msgstr "Kök Dizini:" #: placeedit.ui -#, fuzzy msgctxt "" "placeedit.ui\n" "shareLabel\n" @@ -565,7 +563,7 @@ "label\n" "string.text" msgid "Secure connection" -msgstr "" +msgstr "Güvenli baÄŸlantı" #: placeedit.ui msgctxt "" @@ -574,7 +572,7 @@ "label\n" "string.text" msgid "User:" -msgstr "" +msgstr "Kullanıcı:" #: placeedit.ui msgctxt "" @@ -583,7 +581,7 @@ "label\n" "string.text" msgid "Label:" -msgstr "" +msgstr "Etiket:" #: placeedit.ui msgctxt "" @@ -601,7 +599,7 @@ "label\n" "string.text" msgid "Password:" -msgstr "" +msgstr "Parola:" #: placeedit.ui msgctxt "" @@ -610,7 +608,7 @@ "label\n" "string.text" msgid "Remember password" -msgstr "" +msgstr "Parolayı hatırla" #: placeedit.ui msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/tr/sw/source/ui/app.po libreoffice-5.1.2~rc2/translations/source/tr/sw/source/ui/app.po --- libreoffice-5.1.1~rc2/translations/source/tr/sw/source/ui/app.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/tr/sw/source/ui/app.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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-13 23:11+0000\n" -"Last-Translator: Necdet Yucel <necdetyucel@gmail.com>\n" +"PO-Revision-Date: 2016-03-09 15:41+0000\n" +"Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: tr\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1436829119.000000\n" +"X-POOTLE-MTIME: 1457538100.000000\n" #: app.src msgctxt "" @@ -687,7 +687,7 @@ "STR_SHAPE_DEFNAME\n" "string.text" msgid "Shape" -msgstr "" +msgstr "Åžekil" #: app.src msgctxt "" @@ -1150,14 +1150,13 @@ msgstr "Parola ile korunan dosyalar açılamaz." #: 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 "Bu dosya WinWord6 dosyası deÄŸil" +msgstr "Bu dosya WinWord6 dosyası deÄŸil." #: error.src msgctxt "" @@ -1187,14 +1186,13 @@ msgstr "Dosya daha yeni bir sürüm ile yazılmış" #: 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 "Bu dosya WinWord97 dosyası deÄŸil" +msgstr "Bu dosya WinWord97 dosyası deÄŸil." #: error.src msgctxt "" @@ -1549,7 +1547,7 @@ "FN_UPDATE_CUR_TOX\n" "menuitem.text" msgid "~Update Index or Table of Contents" -msgstr "" +msgstr "~Dizin veya İçindekiler Sayfasını Güncelle" #: mn.src msgctxt "" @@ -1558,7 +1556,7 @@ "FN_EDIT_CURRENT_TOX\n" "menuitem.text" msgid "~Edit Index or Table of Contents" -msgstr "" +msgstr "Dizin veya İçindekiler ~Sayfasını Düzenle" #: mn.src msgctxt "" @@ -1567,7 +1565,7 @@ "FN_REMOVE_CUR_TOX\n" "menuitem.text" msgid "Delete Index or Table of Contents" -msgstr "" +msgstr "Dizin veya İçindekiler Sayfasını Sil" #: mn.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/tr/sw/source/ui/dochdl.po libreoffice-5.1.2~rc2/translations/source/tr/sw/source/ui/dochdl.po --- libreoffice-5.1.1~rc2/translations/source/tr/sw/source/ui/dochdl.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/tr/sw/source/ui/dochdl.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\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-01-11 22:06+0000\n" -"Last-Translator: Necdet Yucel <necdetyucel@gmail.com>\n" +"PO-Revision-Date: 2016-03-09 15:42+0000\n" +"Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: tr\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1421013991.000000\n" +"X-POOTLE-MTIME: 1457538154.000000\n" #: dochdl.src msgctxt "" @@ -30,7 +30,7 @@ "STR_NO_TABLE\n" "string.text" msgid "A table with no rows or no cells cannot be inserted" -msgstr "" +msgstr "Hiç satırı veya sütunu olmayan bir tablo eklenemez" #: dochdl.src msgctxt "" @@ -38,7 +38,7 @@ "STR_TABLE_TOO_LARGE\n" "string.text" msgid "The table cannot be inserted because it is too large" -msgstr "" +msgstr "Tablo çok büyük olduÄŸundan eklenemez" #: dochdl.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/tr/sw/source/uibase/lingu.po libreoffice-5.1.2~rc2/translations/source/tr/sw/source/uibase/lingu.po --- libreoffice-5.1.1~rc2/translations/source/tr/sw/source/uibase/lingu.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/tr/sw/source/uibase/lingu.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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-11-21 08:07+0000\n" -"Last-Translator: Necdet Yucel <necdetyucel@gmail.com>\n" +"PO-Revision-Date: 2016-03-09 15:47+0000\n" +"Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: tr\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1416557259.000000\n" +"X-POOTLE-MTIME: 1457538433.000000\n" #: olmenu.src msgctxt "" @@ -44,14 +44,13 @@ msgstr "~Sözlüğe Ekle" #: olmenu.src -#, fuzzy msgctxt "" "olmenu.src\n" "MN_SPELL_POPUP\n" "MN_AUTOCORR\n" "menuitem.text" msgid "Always correct ~to" -msgstr "Her zaman düzelt" +msgstr "Her zaman ~düzelt" #: olmenu.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/tr/sw/source/uibase/utlui.po libreoffice-5.1.2~rc2/translations/source/tr/sw/source/uibase/utlui.po --- libreoffice-5.1.1~rc2/translations/source/tr/sw/source/uibase/utlui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/tr/sw/source/uibase/utlui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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-25 03:29+0000\n" -"Last-Translator: Necdet Yucel <necdetyucel@gmail.com>\n" +"PO-Revision-Date: 2016-03-09 15:49+0000\n" +"Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: tr\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1432524566.000000\n" +"X-POOTLE-MTIME: 1457538580.000000\n" #: attrdesc.src msgctxt "" @@ -1689,7 +1689,6 @@ msgstr "İçerik Görünümü" #: navipi.src -#, fuzzy msgctxt "" "navipi.src\n" "STR_OUTLINE_LEVEL\n" @@ -1698,7 +1697,6 @@ msgstr "Anahat Düzeyi" #: navipi.src -#, fuzzy msgctxt "" "navipi.src\n" "STR_DRAGMODE\n" @@ -1707,7 +1705,6 @@ msgstr "Sürükleme Kipi" #: navipi.src -#, fuzzy msgctxt "" "navipi.src\n" "STR_HYPERLINK\n" @@ -1716,7 +1713,6 @@ msgstr "Köprü olarak Ekle" #: navipi.src -#, fuzzy msgctxt "" "navipi.src\n" "STR_LINK_REGION\n" @@ -1725,7 +1721,6 @@ msgstr "BaÄŸlantı olarak Ekle" #: navipi.src -#, fuzzy msgctxt "" "navipi.src\n" "STR_COPY_REGION\n" @@ -1734,7 +1729,6 @@ msgstr "Kopya olarak Ekle" #: navipi.src -#, fuzzy msgctxt "" "navipi.src\n" "STR_DISPLAY\n" @@ -1743,7 +1737,6 @@ msgstr "Göster" #: navipi.src -#, fuzzy msgctxt "" "navipi.src\n" "STR_ACTIVE_VIEW\n" @@ -1752,7 +1745,6 @@ msgstr "Etkin Pencere" #: navipi.src -#, fuzzy msgctxt "" "navipi.src\n" "STR_HIDDEN\n" @@ -1761,7 +1753,6 @@ msgstr "gizli" #: navipi.src -#, fuzzy msgctxt "" "navipi.src\n" "STR_ACTIVE\n" @@ -1770,16 +1761,14 @@ msgstr "etkin" #: navipi.src -#, fuzzy msgctxt "" "navipi.src\n" "STR_INACTIVE\n" "string.text" msgid "inactive" -msgstr "etkisiz" +msgstr "etkin olmayan" #: navipi.src -#, fuzzy msgctxt "" "navipi.src\n" "STR_EDIT_ENTRY\n" @@ -1788,7 +1777,6 @@ msgstr "Düzenle..." #: navipi.src -#, fuzzy msgctxt "" "navipi.src\n" "STR_UPDATE\n" @@ -1797,7 +1785,6 @@ msgstr "~Güncelle" #: navipi.src -#, fuzzy msgctxt "" "navipi.src\n" "STR_EDIT_CONTENT\n" @@ -1806,7 +1793,6 @@ msgstr "Düzenle" #: navipi.src -#, fuzzy msgctxt "" "navipi.src\n" "STR_EDIT_LINK\n" @@ -1815,7 +1801,6 @@ msgstr "BaÄŸlantıyı düzenle" #: navipi.src -#, fuzzy msgctxt "" "navipi.src\n" "STR_EDIT_INSERT\n" @@ -1824,7 +1809,6 @@ msgstr "Ekle" #: navipi.src -#, fuzzy msgctxt "" "navipi.src\n" "STR_INDEX\n" @@ -1833,7 +1817,6 @@ msgstr "~Dizin" #: navipi.src -#, fuzzy msgctxt "" "navipi.src\n" "STR_FILE\n" @@ -1842,7 +1825,6 @@ msgstr "Dosya" #: navipi.src -#, fuzzy msgctxt "" "navipi.src\n" "STR_NEW_FILE\n" @@ -1851,7 +1833,6 @@ msgstr "Yeni Belge" #: navipi.src -#, fuzzy msgctxt "" "navipi.src\n" "STR_INSERT_TEXT\n" @@ -1860,7 +1841,6 @@ msgstr "Metin" #: navipi.src -#, fuzzy msgctxt "" "navipi.src\n" "STR_DELETE\n" @@ -1869,7 +1849,6 @@ msgstr "Sil" #: navipi.src -#, fuzzy msgctxt "" "navipi.src\n" "STR_DELETE_ENTRY\n" @@ -1878,7 +1857,6 @@ msgstr "~Sil" #: navipi.src -#, fuzzy msgctxt "" "navipi.src\n" "STR_UPDATE_SEL\n" @@ -1887,7 +1865,6 @@ msgstr "Seçim" #: navipi.src -#, fuzzy msgctxt "" "navipi.src\n" "STR_UPDATE_INDEX\n" @@ -1896,7 +1873,6 @@ msgstr "Dizinler" #: navipi.src -#, fuzzy msgctxt "" "navipi.src\n" "STR_UPDATE_LINK\n" @@ -1905,7 +1881,6 @@ msgstr "BaÄŸlantılar" #: navipi.src -#, fuzzy msgctxt "" "navipi.src\n" "STR_UPDATE_ALL\n" @@ -1914,7 +1889,6 @@ msgstr "Tümü" #: navipi.src -#, fuzzy msgctxt "" "navipi.src\n" "STR_REMOVE_INDEX\n" @@ -1923,7 +1897,6 @@ msgstr "~Dizini kaldır" #: navipi.src -#, fuzzy msgctxt "" "navipi.src\n" "STR_REMOVE_TBL_PROTECTION\n" @@ -1932,7 +1905,6 @@ msgstr "~Korumayı kaldır" #: navipi.src -#, fuzzy msgctxt "" "navipi.src\n" "STR_INVISIBLE\n" @@ -1941,7 +1913,6 @@ msgstr "gizli" #: navipi.src -#, fuzzy msgctxt "" "navipi.src\n" "STR_BROKEN_LINK\n" @@ -1950,7 +1921,6 @@ msgstr "Dosya bulunamadı: " #: navipi.src -#, fuzzy msgctxt "" "navipi.src\n" "STR_RENAME\n" @@ -1959,7 +1929,6 @@ msgstr "~Yeniden adlandır" #: navipi.src -#, fuzzy msgctxt "" "navipi.src\n" "STR_READONLY_IDX\n" @@ -1968,7 +1937,6 @@ msgstr "Salt ~okunur" #: navipi.src -#, fuzzy msgctxt "" "navipi.src\n" "STR_POSTIT_SHOW\n" @@ -1977,7 +1945,6 @@ msgstr "Tümünü Göster" #: navipi.src -#, fuzzy msgctxt "" "navipi.src\n" "STR_POSTIT_HIDE\n" @@ -1986,7 +1953,6 @@ msgstr "Tümünü Gizle" #: navipi.src -#, fuzzy msgctxt "" "navipi.src\n" "STR_POSTIT_DELETE\n" diff -Nru libreoffice-5.1.1~rc2/translations/source/tr/vcl/source/src.po libreoffice-5.1.2~rc2/translations/source/tr/vcl/source/src.po --- libreoffice-5.1.1~rc2/translations/source/tr/vcl/source/src.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/tr/vcl/source/src.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 21:16+0000\n" +"PO-Revision-Date: 2016-03-09 16:04+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: tr\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1449868618.000000\n" +"X-POOTLE-MTIME: 1457539493.000000\n" #: app.src msgctxt "" @@ -22,7 +22,7 @@ "SV_APP_CPUTHREADS\n" "string.text" msgid "CPU Threads: " -msgstr "" +msgstr "Ä°ÅŸlemci Görevleri: " #: app.src msgctxt "" @@ -30,7 +30,7 @@ "SV_APP_OSVERSION\n" "string.text" msgid "OS Version: " -msgstr "" +msgstr "Ä°ÅŸletim Sistemi Sürümü: " #: app.src msgctxt "" @@ -38,7 +38,7 @@ "SV_APP_UIRENDER\n" "string.text" msgid "UI Render: " -msgstr "" +msgstr "UI Gerçekleyici: " #: app.src msgctxt "" @@ -46,7 +46,7 @@ "SV_APP_GL\n" "string.text" msgid "GL" -msgstr "" +msgstr "GL" #: app.src msgctxt "" @@ -54,7 +54,7 @@ "SV_APP_DEFAULT\n" "string.text" msgid "default" -msgstr "" +msgstr "varsayılan" #. This is used on buttons for platforms other than windows, there should be a ~ mnemonic in this string #: btntext.src diff -Nru libreoffice-5.1.1~rc2/translations/source/tr/wizards/source/formwizard.po libreoffice-5.1.2~rc2/translations/source/tr/wizards/source/formwizard.po --- libreoffice-5.1.1~rc2/translations/source/tr/wizards/source/formwizard.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/tr/wizards/source/formwizard.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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-12 18:40+0000\n" +"PO-Revision-Date: 2016-03-09 16:11+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: tr\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1434134417.000000\n" +"X-POOTLE-MTIME: 1457539886.000000\n" #: dbwizres.src msgctxt "" @@ -1255,7 +1255,6 @@ msgstr "en büyüğünü al" #: dbwizres.src -#, fuzzy msgctxt "" "dbwizres.src\n" "RID_DB_QUERY_WIZARD_START + 44\n" diff -Nru libreoffice-5.1.1~rc2/translations/source/ts/cui/uiconfig/ui.po libreoffice-5.1.2~rc2/translations/source/ts/cui/uiconfig/ui.po --- libreoffice-5.1.1~rc2/translations/source/ts/cui/uiconfig/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ts/cui/uiconfig/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 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 15:04+0000\n" +"PO-Revision-Date: 2016-03-09 12:50+0000\n" "Last-Translator: system user <>\n" "Language-Team: none\n" "Language: ts\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1452265472.000000\n" +"X-POOTLE-MTIME: 1457527805.000000\n" #: aboutconfigdialog.ui msgctxt "" @@ -14064,31 +14064,34 @@ 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 @@ -17370,40 +17373,44 @@ msgstr "(ku hava)" #: 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 "" @@ -17425,40 +17432,44 @@ msgstr "(ku hava)" #: 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 -Nru libreoffice-5.1.1~rc2/translations/source/ts/dbaccess/uiconfig/ui.po libreoffice-5.1.2~rc2/translations/source/ts/dbaccess/uiconfig/ui.po --- libreoffice-5.1.1~rc2/translations/source/ts/dbaccess/uiconfig/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ts/dbaccess/uiconfig/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: LibO 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 12:34+0000\n" -"Last-Translator: Anonymous Pootle User\n" +"PO-Revision-Date: 2016-03-09 12:54+0000\n" +"Last-Translator: system user <>\n" "Language-Team: none\n" "Language: ts\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: 1366029269.0\n" +"X-POOTLE-MTIME: 1457528079.000000\n" #: admindialog.ui msgctxt "" @@ -1927,22 +1927,24 @@ 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 @@ msgstr "" #: queryfilterdialog.ui +#, fuzzy msgctxt "" "queryfilterdialog.ui\n" "cond1\n" "4\n" "stringlist.text" msgid ">" -msgstr "" +msgstr ">" #: queryfilterdialog.ui msgctxt "" @@ -3016,58 +3019,64 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/ts/extensions/uiconfig/sabpilot/ui.po libreoffice-5.1.2~rc2/translations/source/ts/extensions/uiconfig/sabpilot/ui.po --- libreoffice-5.1.1~rc2/translations/source/ts/extensions/uiconfig/sabpilot/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ts/extensions/uiconfig/sabpilot/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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 03:36+0000\n" +"PO-Revision-Date: 2016-03-09 13:01+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: ts\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1435289794.000000\n" +"X-POOTLE-MTIME: 1457528490.000000\n" #: contentfieldpage.ui msgctxt "" @@ -280,13 +280,14 @@ msgstr "" #: gridfieldsselectionpage.ui +#, fuzzy msgctxt "" "gridfieldsselectionpage.ui\n" "fieldright\n" "label\n" "string.text" msgid "->" -msgstr "" +msgstr "->" #: gridfieldsselectionpage.ui msgctxt "" @@ -298,13 +299,14 @@ msgstr "" #: gridfieldsselectionpage.ui +#, fuzzy msgctxt "" "gridfieldsselectionpage.ui\n" "fieldleft\n" "label\n" "string.text" msgid "<-" -msgstr "" +msgstr "<-" #: gridfieldsselectionpage.ui msgctxt "" @@ -379,22 +381,24 @@ 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 @@ msgstr "" #: tableselectionpage.ui +#, fuzzy msgctxt "" "tableselectionpage.ui\n" "search\n" "label\n" "string.text" msgid "_..." -msgstr "" +msgstr "_..." #: tableselectionpage.ui msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/ts/librelogo/source/pythonpath.po libreoffice-5.1.2~rc2/translations/source/ts/librelogo/source/pythonpath.po --- libreoffice-5.1.1~rc2/translations/source/ts/librelogo/source/pythonpath.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ts/librelogo/source/pythonpath.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,17 +3,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: 2014-05-02 00:06+0200\n" -"PO-Revision-Date: 2013-04-15 12:34+0000\n" -"Last-Translator: Anonymous Pootle User\n" +"POT-Creation-Date: 2015-04-22 23:40+0200\n" +"PO-Revision-Date: 2016-03-09 13:14+0000\n" +"Last-Translator: system user <>\n" "Language-Team: none\n" "Language: ts\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: 1366029277.0\n" +"X-POOTLE-MTIME: 1457529295.000000\n" #: LibreLogo_en_US.properties msgctxt "" @@ -795,20 +795,22 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/ts/officecfg/registry/data/org/openoffice/Office.po libreoffice-5.1.2~rc2/translations/source/ts/officecfg/registry/data/org/openoffice/Office.po --- libreoffice-5.1.1~rc2/translations/source/ts/officecfg/registry/data/org/openoffice/Office.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ts/officecfg/registry/data/org/openoffice/Office.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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:18+0000\n" +"PO-Revision-Date: 2016-03-09 13:22+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: ts\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1438903090.000000\n" +"X-POOTLE-MTIME: 1457529744.000000\n" #: Addons.xcu msgctxt "" @@ -1437,13 +1437,14 @@ msgstr "" #: PresentationMinimizer.xcu +#, fuzzy msgctxt "" "PresentationMinimizer.xcu\n" "..PresentationMinimizer.Strings\n" "STR_FILESIZESEPARATOR\n" "value.text" msgid "." -msgstr "" +msgstr "." #: PresentationMinimizer.xcu msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/ts/reportdesign/uiconfig/dbreport/ui.po libreoffice-5.1.2~rc2/translations/source/ts/reportdesign/uiconfig/dbreport/ui.po --- libreoffice-5.1.1~rc2/translations/source/ts/reportdesign/uiconfig/dbreport/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ts/reportdesign/uiconfig/dbreport/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 18:40+0000\n" +"PO-Revision-Date: 2016-03-09 13:42+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: ts\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1416422433.000000\n" +"X-POOTLE-MTIME: 1457530926.000000\n" #: backgrounddialog.ui msgctxt "" @@ -196,13 +196,14 @@ msgstr "" #: conditionwin.ui +#, fuzzy msgctxt "" "conditionwin.ui\n" "lhsButton\n" "label\n" "string.text" msgid "..." -msgstr "" +msgstr "..." #: conditionwin.ui msgctxt "" @@ -214,13 +215,14 @@ msgstr "" #: conditionwin.ui +#, fuzzy msgctxt "" "conditionwin.ui\n" "rhsButton\n" "label\n" "string.text" msgid "..." -msgstr "" +msgstr "..." #: conditionwin.ui msgctxt "" @@ -277,13 +279,14 @@ msgstr "" #: conditionwin.ui +#, fuzzy msgctxt "" "conditionwin.ui\n" "removeButton\n" "label\n" "string.text" msgid "-" -msgstr "" +msgstr "-" #: conditionwin.ui msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/ts/sc/uiconfig/scalc/ui.po libreoffice-5.1.2~rc2/translations/source/ts/sc/uiconfig/scalc/ui.po --- libreoffice-5.1.1~rc2/translations/source/ts/sc/uiconfig/scalc/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ts/sc/uiconfig/scalc/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 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 03:47+0000\n" +"PO-Revision-Date: 2016-03-09 14:05+0000\n" "Last-Translator: system user <>\n" "Language-Team: none\n" "Language: ts\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1435290424.000000\n" +"X-POOTLE-MTIME: 1457532340.000000\n" #: advancedfilterdialog.ui msgctxt "" @@ -6390,22 +6390,24 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/ts/scaddins/source/analysis.po libreoffice-5.1.2~rc2/translations/source/ts/scaddins/source/analysis.po --- libreoffice-5.1.1~rc2/translations/source/ts/scaddins/source/analysis.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ts/scaddins/source/analysis.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-11-24 04:39-0500\n" +"POT-Creation-Date: 2016-03-29 16:07+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff -Nru libreoffice-5.1.1~rc2/translations/source/ts/sd/source/ui/app.po libreoffice-5.1.2~rc2/translations/source/ts/sd/source/ui/app.po --- libreoffice-5.1.1~rc2/translations/source/ts/sd/source/ui/app.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ts/sd/source/ui/app.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-14 03:11+0000\n" +"PO-Revision-Date: 2016-03-09 14:21+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: ts\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1431573080.000000\n" +"X-POOTLE-MTIME: 1457533263.000000\n" #: menuids3_tmpl.src msgctxt "" @@ -3778,12 +3778,13 @@ msgstr "<nomboro>" #: strings.src +#, fuzzy msgctxt "" "strings.src\n" "STR_FIELD_PLACEHOLDER_COUNT\n" "string.text" msgid "<count>" -msgstr "" +msgstr "<count>" #: strings.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/ts/sd/uiconfig/simpress/ui.po libreoffice-5.1.2~rc2/translations/source/ts/sd/uiconfig/simpress/ui.po --- libreoffice-5.1.1~rc2/translations/source/ts/sd/uiconfig/simpress/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ts/sd/uiconfig/simpress/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 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 03:49+0000\n" +"PO-Revision-Date: 2016-03-09 14:24+0000\n" "Last-Translator: system user <>\n" "Language-Team: none\n" "Language: ts\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1435290551.000000\n" +"X-POOTLE-MTIME: 1457533454.000000\n" #: assistentdialog.ui msgctxt "" @@ -997,22 +997,24 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/ts/starmath/source.po libreoffice-5.1.2~rc2/translations/source/ts/starmath/source.po --- libreoffice-5.1.1~rc2/translations/source/ts/starmath/source.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ts/starmath/source.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\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-12 13:26+0200\n" +"POT-Creation-Date: 2016-03-29 16:07+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff -Nru libreoffice-5.1.1~rc2/translations/source/ts/sw/source/core/undo.po libreoffice-5.1.2~rc2/translations/source/ts/sw/source/core/undo.po --- libreoffice-5.1.1~rc2/translations/source/ts/sw/source/core/undo.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ts/sw/source/core/undo.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 03:22+0000\n" +"PO-Revision-Date: 2016-03-09 14:56+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: ts\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1431573766.000000\n" +"X-POOTLE-MTIME: 1457535402.000000\n" #: undo.src msgctxt "" @@ -807,20 +807,22 @@ msgstr "Tafula/xikombo xi cinciwile" #: 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 -Nru libreoffice-5.1.1~rc2/translations/source/ts/sw/source/ui/dbui.po libreoffice-5.1.2~rc2/translations/source/ts/sw/source/ui/dbui.po --- libreoffice-5.1.1~rc2/translations/source/ts/sw/source/ui/dbui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ts/sw/source/ui/dbui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 03:24+0000\n" +"PO-Revision-Date: 2016-03-09 14:59+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: ts\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1431573898.000000\n" +"X-POOTLE-MTIME: 1457535568.000000\n" #: dbui.src msgctxt "" @@ -487,31 +487,34 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/ts/sw/source/ui/index.po libreoffice-5.1.2~rc2/translations/source/ts/sw/source/ui/index.po --- libreoffice-5.1.1~rc2/translations/source/ts/sw/source/ui/index.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ts/sw/source/ui/index.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,16 +3,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-01-05 15:03+0200\n" -"Last-Translator: Anonymous Pootle User\n" +"POT-Creation-Date: 2015-04-22 23:40+0200\n" +"PO-Revision-Date: 2016-03-09 15:01+0000\n" +"Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: ts\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: LibreOffice\n" +"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" +"X-POOTLE-MTIME: 1457535667.000000\n" #: cnttab.src #, fuzzy @@ -56,20 +57,22 @@ 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 @@ msgstr "" #: cnttab.src +#, fuzzy msgctxt "" "cnttab.src\n" "STR_TOKEN_PAGE_NUMS\n" "string.text" msgid "#" -msgstr "" +msgstr "#" #: cnttab.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/ts/sw/uiconfig/swriter/ui.po libreoffice-5.1.2~rc2/translations/source/ts/sw/uiconfig/swriter/ui.po --- libreoffice-5.1.1~rc2/translations/source/ts/sw/uiconfig/swriter/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ts/sw/uiconfig/swriter/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 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:18+0000\n" +"PO-Revision-Date: 2016-03-09 15:12+0000\n" "Last-Translator: system user <>\n" "Language-Team: none\n" "Language: ts\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1438903127.000000\n" +"X-POOTLE-MTIME: 1457536357.000000\n" #: abstractdialog.ui msgctxt "" @@ -2320,13 +2320,14 @@ msgstr "Hundzuluxa tafula eka xitsariwa" #: converttexttable.ui +#, fuzzy msgctxt "" "converttexttable.ui\n" "othered\n" "text\n" "string.text" msgid "," -msgstr "" +msgstr "," #: converttexttable.ui msgctxt "" @@ -2511,13 +2512,14 @@ msgstr "" #: createaddresslist.ui +#, fuzzy msgctxt "" "createaddresslist.ui\n" "PREV\n" "label\n" "string.text" msgid "<" -msgstr "" +msgstr "<" #: createaddresslist.ui msgctxt "" @@ -2529,13 +2531,14 @@ msgstr "" #: createaddresslist.ui +#, fuzzy msgctxt "" "createaddresslist.ui\n" "NEXT\n" "label\n" "string.text" msgid ">" -msgstr "" +msgstr ">" #: createaddresslist.ui msgctxt "" @@ -4442,13 +4445,14 @@ msgstr "" #: fldvarpage.ui +#, fuzzy msgctxt "" "fldvarpage.ui\n" "separator\n" "text\n" "string.text" msgid "." -msgstr "" +msgstr "." #: fldvarpage.ui msgctxt "" @@ -5429,22 +5433,24 @@ 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 "" @@ -6355,13 +6361,14 @@ msgstr "XiyimoX" #: insertcaption.ui +#, fuzzy msgctxt "" "insertcaption.ui\n" "separator_edit\n" "text\n" "string.text" msgid ": " -msgstr "" +msgstr ": " #: insertcaption.ui msgctxt "" @@ -6373,13 +6380,14 @@ msgstr "" #: insertcaption.ui +#, fuzzy msgctxt "" "insertcaption.ui\n" "num_separator_edit\n" "text\n" "string.text" msgid ". " -msgstr "" +msgstr ". " #: insertcaption.ui msgctxt "" @@ -8718,13 +8726,14 @@ msgstr "" #: mmpreparepage.ui +#, fuzzy msgctxt "" "mmpreparepage.ui\n" "prev\n" "label\n" "string.text" msgid "<" -msgstr "" +msgstr "<" #: mmpreparepage.ui msgctxt "" @@ -8736,13 +8745,14 @@ msgstr "" #: mmpreparepage.ui +#, fuzzy msgctxt "" "mmpreparepage.ui\n" "next\n" "label\n" "string.text" msgid ">" -msgstr "" +msgstr ">" #: mmpreparepage.ui #, fuzzy @@ -9592,13 +9602,14 @@ msgstr "XiyimoX" #: optcaptionpage.ui +#, fuzzy msgctxt "" "optcaptionpage.ui\n" "numseparator\n" "text\n" "string.text" msgid ". " -msgstr "" +msgstr ". " #: optcaptionpage.ui #, fuzzy @@ -15727,40 +15738,44 @@ msgstr "[Ku hava]" #: 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 -Nru libreoffice-5.1.1~rc2/translations/source/ts/vcl/source/src.po libreoffice-5.1.2~rc2/translations/source/ts/vcl/source/src.po --- libreoffice-5.1.1~rc2/translations/source/ts/vcl/source/src.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ts/vcl/source/src.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 20:57+0000\n" +"PO-Revision-Date: 2016-03-09 15:14+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: ts\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1449867468.000000\n" +"X-POOTLE-MTIME: 1457536492.000000\n" #: app.src msgctxt "" @@ -1279,12 +1279,13 @@ msgstr "" #: print.src +#, fuzzy msgctxt "" "print.src\n" "SV_PRINT_INVALID_TXT\n" "string.text" msgid "<ignore>" -msgstr "" +msgstr "<ignore>" #: print.src msgctxt "" @@ -1560,13 +1561,14 @@ msgstr "" #: units.src +#, fuzzy msgctxt "" "units.src\n" "SV_FUNIT_STRINGS\n" "°\n" "itemlist.text" msgid "°" -msgstr "" +msgstr "°" #: units.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/ts/wizards/source/formwizard.po libreoffice-5.1.2~rc2/translations/source/ts/wizards/source/formwizard.po --- libreoffice-5.1.1~rc2/translations/source/ts/wizards/source/formwizard.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ts/wizards/source/formwizard.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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-04-25 16:45+0000\n" +"PO-Revision-Date: 2016-03-09 15:20+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: ts\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1429980353.000000\n" +"X-POOTLE-MTIME: 1457536820.000000\n" #: dbwizres.src msgctxt "" @@ -1537,12 +1537,13 @@ msgstr "<FIELDNAME> (<SORTMODE>)" #: dbwizres.src +#, fuzzy msgctxt "" "dbwizres.src\n" "RID_DB_QUERY_WIZARD_START + 94\n" "string.text" msgid "<FIELDNAME> <LOGICOPERATOR> <VALUE>" -msgstr "" +msgstr "<FIELDNAME> <LOGICOPERATOR> <VALUE>" #: dbwizres.src msgctxt "" @@ -1553,12 +1554,13 @@ msgstr "<CALCULATEDFUNCTION> <FIELDNAME>" #: dbwizres.src +#, fuzzy msgctxt "" "dbwizres.src\n" "RID_DB_QUERY_WIZARD_START + 96\n" "string.text" msgid "<FIELDNAME> <LOGICOPERATOR> <VALUE>" -msgstr "" +msgstr "<FIELDNAME> <LOGICOPERATOR> <VALUE>" #: dbwizres.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/ug/cui/uiconfig/ui.po libreoffice-5.1.2~rc2/translations/source/ug/cui/uiconfig/ui.po --- libreoffice-5.1.1~rc2/translations/source/ug/cui/uiconfig/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ug/cui/uiconfig/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: LibO 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-14 17:04+0000\n" -"Last-Translator: Abduqadir Abliz <Sahran@live.com>\n" +"PO-Revision-Date: 2016-03-09 13:32+0000\n" +"Last-Translator: system user <>\n" "Language-Team: none\n" "Language: ug\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1452791067.000000\n" +"X-POOTLE-MTIME: 1457530325.000000\n" #: aboutconfigdialog.ui msgctxt "" @@ -14171,31 +14171,34 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/ug/dbaccess/uiconfig/ui.po libreoffice-5.1.2~rc2/translations/source/ug/dbaccess/uiconfig/ui.po --- libreoffice-5.1.1~rc2/translations/source/ug/dbaccess/uiconfig/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ug/dbaccess/uiconfig/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 04:30+0000\n" +"PO-Revision-Date: 2016-03-09 13:37+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: ug\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1431577840.000000\n" +"X-POOTLE-MTIME: 1457530631.000000\n" #: admindialog.ui msgctxt "" @@ -1935,22 +1935,24 @@ 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 @@ msgstr "" #: queryfilterdialog.ui +#, fuzzy msgctxt "" "queryfilterdialog.ui\n" "cond1\n" "4\n" "stringlist.text" msgid ">" -msgstr "" +msgstr ">" #: queryfilterdialog.ui msgctxt "" @@ -3026,58 +3029,64 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/ug/extensions/uiconfig/sabpilot/ui.po libreoffice-5.1.2~rc2/translations/source/ug/extensions/uiconfig/sabpilot/ui.po --- libreoffice-5.1.1~rc2/translations/source/ug/extensions/uiconfig/sabpilot/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ug/extensions/uiconfig/sabpilot/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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 03:57+0000\n" +"PO-Revision-Date: 2016-03-09 13:46+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: ug\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1435291064.000000\n" +"X-POOTLE-MTIME: 1457531185.000000\n" #: contentfieldpage.ui msgctxt "" @@ -281,13 +281,14 @@ msgstr "" #: gridfieldsselectionpage.ui +#, fuzzy msgctxt "" "gridfieldsselectionpage.ui\n" "fieldright\n" "label\n" "string.text" msgid "->" -msgstr "" +msgstr "->" #: gridfieldsselectionpage.ui msgctxt "" @@ -299,13 +300,14 @@ msgstr "" #: gridfieldsselectionpage.ui +#, fuzzy msgctxt "" "gridfieldsselectionpage.ui\n" "fieldleft\n" "label\n" "string.text" msgid "<-" -msgstr "" +msgstr "<-" #: gridfieldsselectionpage.ui msgctxt "" @@ -380,22 +382,24 @@ 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 @@ msgstr "" #: tableselectionpage.ui +#, fuzzy msgctxt "" "tableselectionpage.ui\n" "search\n" "label\n" "string.text" msgid "_..." -msgstr "" +msgstr "_..." #: tableselectionpage.ui msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/ug/helpcontent2/source/text/scalc/01.po libreoffice-5.1.2~rc2/translations/source/ug/helpcontent2/source/text/scalc/01.po --- libreoffice-5.1.1~rc2/translations/source/ug/helpcontent2/source/text/scalc/01.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ug/helpcontent2/source/text/scalc/01.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 22:37+0000\n" +"PO-Revision-Date: 2016-03-04 06:56+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: ug\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1431383826.000000\n" +"X-POOTLE-MTIME: 1457074570.000000\n" #: 01120000.xhp msgctxt "" @@ -59711,13 +59711,14 @@ msgstr "تەڭ" #: 12090103.xhp +#, fuzzy msgctxt "" "12090103.xhp\n" "par_id3154254\n" "15\n" "help.text" msgid "<" -msgstr "" +msgstr "<" #: 12090103.xhp msgctxt "" @@ -59729,13 +59730,14 @@ msgstr "كىچىك" #: 12090103.xhp +#, fuzzy msgctxt "" "12090103.xhp\n" "par_id3155335\n" "17\n" "help.text" msgid ">" -msgstr "" +msgstr ">" #: 12090103.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/ug/helpcontent2/source/text/scalc/05.po libreoffice-5.1.2~rc2/translations/source/ug/helpcontent2/source/text/scalc/05.po --- libreoffice-5.1.1~rc2/translations/source/ug/helpcontent2/source/text/scalc/05.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ug/helpcontent2/source/text/scalc/05.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 17:57+0000\n" +"PO-Revision-Date: 2016-03-04 06:58+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: ug\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1429811849.000000\n" +"X-POOTLE-MTIME: 1457074718.000000\n" #: 02140000.xhp msgctxt "" @@ -102,12 +102,13 @@ msgstr "ئىزاھ" #: 02140000.xhp +#, fuzzy msgctxt "" "02140000.xhp\n" "par_id1668467\n" "help.text" msgid "###" -msgstr "" +msgstr "###" #: 02140000.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/ug/helpcontent2/source/text/shared/00.po libreoffice-5.1.2~rc2/translations/source/ug/helpcontent2/source/text/shared/00.po --- libreoffice-5.1.1~rc2/translations/source/ug/helpcontent2/source/text/shared/00.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ug/helpcontent2/source/text/shared/00.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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 17:57+0000\n" +"PO-Revision-Date: 2016-03-04 07:12+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: ug\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1429811863.000000\n" +"X-POOTLE-MTIME: 1457075540.000000\n" #: 00000001.xhp msgctxt "" @@ -3972,12 +3972,13 @@ msgstr "" #: 00000021.xhp +#, fuzzy msgctxt "" "00000021.xhp\n" "par_id100120091238112\n" "help.text" msgid "-" -msgstr "" +msgstr "-" #: 00000021.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/ug/helpcontent2/source/text/shared/01.po libreoffice-5.1.2~rc2/translations/source/ug/helpcontent2/source/text/shared/01.po --- libreoffice-5.1.1~rc2/translations/source/ug/helpcontent2/source/text/shared/01.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ug/helpcontent2/source/text/shared/01.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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:16+0000\n" +"PO-Revision-Date: 2016-03-04 07:38+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: ug\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1452604590.000000\n" +"X-POOTLE-MTIME: 1457077124.000000\n" #: 01010000.xhp msgctxt "" @@ -7484,13 +7484,14 @@ msgstr "" #: 02100001.xhp +#, fuzzy msgctxt "" "02100001.xhp\n" "par_id3152427\n" "19\n" "help.text" msgid "." -msgstr "" +msgstr "." #: 02100001.xhp msgctxt "" @@ -7502,13 +7503,14 @@ msgstr "" #: 02100001.xhp +#, fuzzy msgctxt "" "02100001.xhp\n" "par_id3154682\n" "21\n" "help.text" msgid "^" -msgstr "" +msgstr "^" #: 02100001.xhp msgctxt "" @@ -7520,13 +7522,14 @@ msgstr "" #: 02100001.xhp +#, fuzzy msgctxt "" "02100001.xhp\n" "par_id3159194\n" "23\n" "help.text" msgid "$" -msgstr "" +msgstr "$" #: 02100001.xhp msgctxt "" @@ -7546,13 +7549,14 @@ msgstr "" #: 02100001.xhp +#, fuzzy msgctxt "" "02100001.xhp\n" "par_id3156414\n" "25\n" "help.text" msgid "*" -msgstr "" +msgstr "*" #: 02100001.xhp msgctxt "" @@ -7591,13 +7595,14 @@ msgstr "" #: 02100001.xhp +#, fuzzy msgctxt "" "02100001.xhp\n" "par_id3143267\n" "199\n" "help.text" msgid "?" -msgstr "" +msgstr "?" #: 02100001.xhp msgctxt "" @@ -7609,13 +7614,14 @@ msgstr "" #: 02100001.xhp +#, fuzzy msgctxt "" "02100001.xhp\n" "par_id3166410\n" "158\n" "help.text" msgid "\\" -msgstr "" +msgstr "\\" #: 02100001.xhp msgctxt "" @@ -7697,13 +7703,14 @@ msgstr "" #: 02100001.xhp +#, fuzzy msgctxt "" "02100001.xhp\n" "par_id3149576\n" "37\n" "help.text" msgid "^$" -msgstr "" +msgstr "^$" #: 02100001.xhp msgctxt "" @@ -7715,13 +7722,14 @@ msgstr "" #: 02100001.xhp +#, fuzzy msgctxt "" "02100001.xhp\n" "par_id3148550\n" "41\n" "help.text" msgid "^." -msgstr "" +msgstr "^." #: 02100001.xhp msgctxt "" @@ -7964,13 +7972,14 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ msgstr "" #: 05020301.xhp +#, fuzzy msgctxt "" "05020301.xhp\n" "par_id3153961\n" "27\n" "help.text" msgid "#," -msgstr "" +msgstr "#," #: 05020301.xhp msgctxt "" @@ -19786,13 +19800,14 @@ msgstr "" #: 05030300.xhp +#, fuzzy msgctxt "" "05030300.xhp\n" "hd_id3152933\n" "26\n" "help.text" msgid "......." -msgstr "" +msgstr "......." #: 05030300.xhp msgctxt "" @@ -19804,13 +19819,14 @@ msgstr "" #: 05030300.xhp +#, fuzzy msgctxt "" "05030300.xhp\n" "hd_id3156280\n" "28\n" "help.text" msgid "------" -msgstr "" +msgstr "------" #: 05030300.xhp msgctxt "" @@ -19822,13 +19838,14 @@ msgstr "" #: 05030300.xhp +#, fuzzy msgctxt "" "05030300.xhp\n" "hd_id3157960\n" "30\n" "help.text" msgid "______" -msgstr "" +msgstr "______" #: 05030300.xhp msgctxt "" @@ -34559,13 +34576,14 @@ msgstr "" #: 06040100.xhp +#, fuzzy msgctxt "" "06040100.xhp\n" "par_id3154472\n" "39\n" "help.text" msgid "___" -msgstr "" +msgstr "___" #: 06040100.xhp msgctxt "" @@ -34595,13 +34613,14 @@ msgstr "" #: 06040100.xhp +#, fuzzy msgctxt "" "06040100.xhp\n" "par_id3148647\n" "43\n" "help.text" msgid "***" -msgstr "" +msgstr "***" #: 06040100.xhp msgctxt "" @@ -34631,13 +34650,14 @@ msgstr "" #: 06040100.xhp +#, fuzzy msgctxt "" "06040100.xhp\n" "par_id3145591\n" "47\n" "help.text" msgid "###" -msgstr "" +msgstr "###" #: 06040100.xhp msgctxt "" @@ -41089,13 +41109,14 @@ 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 "" @@ -41107,13 +41128,14 @@ 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 "" @@ -41125,13 +41147,14 @@ 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 "" @@ -41143,13 +41166,14 @@ 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 "" @@ -41161,13 +41185,14 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/ug/helpcontent2/source/text/shared/02.po libreoffice-5.1.2~rc2/translations/source/ug/helpcontent2/source/text/shared/02.po --- libreoffice-5.1.1~rc2/translations/source/ug/helpcontent2/source/text/shared/02.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ug/helpcontent2/source/text/shared/02.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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 17:58+0000\n" +"PO-Revision-Date: 2016-03-04 07:55+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: ug\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1429811916.000000\n" +"X-POOTLE-MTIME: 1457078146.000000\n" #: 01110000.xhp msgctxt "" @@ -6038,13 +6038,14 @@ msgstr "" #: 01170102.xhp +#, fuzzy msgctxt "" "01170102.xhp\n" "par_id3153109\n" "26\n" "help.text" msgid "\"\"" -msgstr "" +msgstr "\"\"" #: 01170102.xhp msgctxt "" @@ -13842,13 +13843,14 @@ msgstr "" #: 12070100.xhp +#, fuzzy msgctxt "" "12070100.xhp\n" "hd_id3146958\n" "5\n" "help.text" msgid ">>" -msgstr "" +msgstr ">>" #: 12070100.xhp msgctxt "" @@ -13860,13 +13862,14 @@ msgstr "" #: 12070100.xhp +#, fuzzy msgctxt "" "12070100.xhp\n" "hd_id3163802\n" "6\n" "help.text" msgid ">" -msgstr "" +msgstr ">" #: 12070100.xhp msgctxt "" @@ -13878,13 +13881,14 @@ msgstr "" #: 12070100.xhp +#, fuzzy msgctxt "" "12070100.xhp\n" "hd_id3149732\n" "7\n" "help.text" msgid "<" -msgstr "" +msgstr "<" #: 12070100.xhp msgctxt "" @@ -13896,13 +13900,14 @@ msgstr "" #: 12070100.xhp +#, fuzzy msgctxt "" "12070100.xhp\n" "hd_id3150771\n" "8\n" "help.text" msgid "<<" -msgstr "" +msgstr "<<" #: 12070100.xhp msgctxt "" @@ -14173,13 +14178,14 @@ msgstr "" #: 12070200.xhp +#, fuzzy msgctxt "" "12070200.xhp\n" "hd_id3152551\n" "4\n" "help.text" msgid ">" -msgstr "" +msgstr ">" #: 12070200.xhp msgctxt "" @@ -15677,13 +15683,14 @@ msgstr "مىسال" #: 12100200.xhp +#, fuzzy msgctxt "" "12100200.xhp\n" "par_id3158411\n" "42\n" "help.text" msgid "?" -msgstr "" +msgstr "?" #: 12100200.xhp msgctxt "" @@ -15713,13 +15720,14 @@ msgstr "" #: 12100200.xhp +#, fuzzy msgctxt "" "12100200.xhp\n" "par_id3148803\n" "45\n" "help.text" msgid "*" -msgstr "" +msgstr "*" #: 12100200.xhp msgctxt "" @@ -15803,40 +15811,44 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/ug/helpcontent2/source/text/shared/autopi.po libreoffice-5.1.2~rc2/translations/source/ug/helpcontent2/source/text/shared/autopi.po --- libreoffice-5.1.1~rc2/translations/source/ug/helpcontent2/source/text/shared/autopi.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ug/helpcontent2/source/text/shared/autopi.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,18 +3,18 @@ msgstr "" "Project-Id-Version: PACKAGE 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-22 10:15+0000\n" -"Last-Translator: Abduqadir <Sahran@live.com>\n" +"POT-Creation-Date: 2015-04-22 23:39+0200\n" +"PO-Revision-Date: 2016-03-04 08:15+0000\n" +"Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: ug\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: LibreOffice\n" +"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1361528116.0\n" +"X-POOTLE-MTIME: 1457079350.000000\n" #: 01000000.xhp msgctxt "" @@ -3422,13 +3422,14 @@ msgstr "" #: 01090100.xhp +#, fuzzy msgctxt "" "01090100.xhp\n" "hd_id3150443\n" "10\n" "help.text" msgid ">" -msgstr "" +msgstr ">" #: 01090100.xhp msgctxt "" @@ -3440,13 +3441,14 @@ msgstr "" #: 01090100.xhp +#, fuzzy msgctxt "" "01090100.xhp\n" "hd_id3154142\n" "12\n" "help.text" msgid ">>" -msgstr "" +msgstr ">>" #: 01090100.xhp msgctxt "" @@ -3458,13 +3460,14 @@ msgstr "" #: 01090100.xhp +#, fuzzy msgctxt "" "01090100.xhp\n" "hd_id3155419\n" "14\n" "help.text" msgid "<" -msgstr "" +msgstr "<" #: 01090100.xhp msgctxt "" @@ -3476,13 +3479,14 @@ msgstr "" #: 01090100.xhp +#, fuzzy msgctxt "" "01090100.xhp\n" "hd_id3159399\n" "16\n" "help.text" msgid "<<" -msgstr "" +msgstr "<<" #: 01090100.xhp msgctxt "" @@ -3494,12 +3498,13 @@ msgstr "" #: 01090100.xhp +#, fuzzy msgctxt "" "01090100.xhp\n" "par_idN1074A\n" "help.text" msgid "^" -msgstr "" +msgstr "^" #: 01090100.xhp msgctxt "" @@ -4524,13 +4529,14 @@ msgstr "" #: 01100100.xhp +#, fuzzy msgctxt "" "01100100.xhp\n" "hd_id3147209\n" "10\n" "help.text" msgid ">" -msgstr "" +msgstr ">" #: 01100100.xhp msgctxt "" @@ -4542,13 +4548,14 @@ msgstr "" #: 01100100.xhp +#, fuzzy msgctxt "" "01100100.xhp\n" "hd_id3159269\n" "12\n" "help.text" msgid ">>" -msgstr "" +msgstr ">>" #: 01100100.xhp msgctxt "" @@ -4560,13 +4567,14 @@ msgstr "" #: 01100100.xhp +#, fuzzy msgctxt "" "01100100.xhp\n" "hd_id3153146\n" "14\n" "help.text" msgid "<" -msgstr "" +msgstr "<" #: 01100100.xhp msgctxt "" @@ -4578,13 +4586,14 @@ msgstr "" #: 01100100.xhp +#, fuzzy msgctxt "" "01100100.xhp\n" "hd_id3149233\n" "16\n" "help.text" msgid "<<" -msgstr "" +msgstr "<<" #: 01100100.xhp msgctxt "" @@ -4720,13 +4729,14 @@ msgstr "" #: 01100200.xhp +#, fuzzy msgctxt "" "01100200.xhp\n" "hd_id3154289\n" "4\n" "help.text" msgid ">" -msgstr "" +msgstr ">" #: 01100200.xhp msgctxt "" @@ -4738,13 +4748,14 @@ msgstr "" #: 01100200.xhp +#, fuzzy msgctxt "" "01100200.xhp\n" "hd_id3154823\n" "5\n" "help.text" msgid "<" -msgstr "" +msgstr "<" #: 01100200.xhp msgctxt "" @@ -6721,13 +6732,14 @@ msgstr "قوشۇل" #: 01120100.xhp +#, fuzzy msgctxt "" "01120100.xhp\n" "par_id3147008\n" "12\n" "help.text" msgid ">>" -msgstr "" +msgstr ">>" #: 01120100.xhp msgctxt "" @@ -6775,13 +6787,14 @@ msgstr "چىقىرىۋەت" #: 01120100.xhp +#, fuzzy msgctxt "" "01120100.xhp\n" "par_id3153561\n" "13\n" "help.text" msgid "<<" -msgstr "" +msgstr "<<" #: 01120100.xhp msgctxt "" @@ -7738,13 +7751,14 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/ug/helpcontent2/source/text/shared/explorer/database.po libreoffice-5.1.2~rc2/translations/source/ug/helpcontent2/source/text/shared/explorer/database.po --- libreoffice-5.1.1~rc2/translations/source/ug/helpcontent2/source/text/shared/explorer/database.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ug/helpcontent2/source/text/shared/explorer/database.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 22:37+0000\n" +"PO-Revision-Date: 2016-03-04 08:25+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: ug\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1431383877.000000\n" +"X-POOTLE-MTIME: 1457079918.000000\n" #: 02000000.xhp msgctxt "" @@ -1760,13 +1760,14 @@ 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 @@ 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 @@ msgstr "ياق" #: 02010100.xhp +#, fuzzy msgctxt "" "02010100.xhp\n" "par_id3150997\n" "239\n" "help.text" msgid "." -msgstr "" +msgstr "." #: 02010100.xhp msgctxt "" @@ -6229,13 +6232,14 @@ msgstr "" #: 11030100.xhp +#, fuzzy msgctxt "" "11030100.xhp\n" "hd_id3156152\n" "6\n" "help.text" msgid "<" -msgstr "" +msgstr "<" #: 11030100.xhp msgctxt "" @@ -6247,13 +6251,14 @@ msgstr "" #: 11030100.xhp +#, fuzzy msgctxt "" "11030100.xhp\n" "hd_id3149416\n" "7\n" "help.text" msgid "<<" -msgstr "" +msgstr "<<" #: 11030100.xhp msgctxt "" @@ -6265,13 +6270,14 @@ msgstr "" #: 11030100.xhp +#, fuzzy msgctxt "" "11030100.xhp\n" "hd_id3149579\n" "8\n" "help.text" msgid ">" -msgstr "" +msgstr ">" #: 11030100.xhp msgctxt "" @@ -6283,13 +6289,14 @@ msgstr "" #: 11030100.xhp +#, fuzzy msgctxt "" "11030100.xhp\n" "hd_id3155629\n" "9\n" "help.text" msgid ">>" -msgstr "" +msgstr ">>" #: 11030100.xhp msgctxt "" @@ -12418,12 +12425,13 @@ msgstr "" #: querywizard04.xhp +#, fuzzy msgctxt "" "querywizard04.xhp\n" "par_idN105F1\n" "help.text" msgid "-" -msgstr "" +msgstr "-" #: querywizard04.xhp msgctxt "" @@ -14442,12 +14450,13 @@ msgstr "" #: tablewizard02.xhp +#, fuzzy msgctxt "" "tablewizard02.xhp\n" "par_idN10574\n" "help.text" msgid "-" -msgstr "" +msgstr "-" #: tablewizard02.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/ug/helpcontent2/source/text/shared/optionen.po libreoffice-5.1.2~rc2/translations/source/ug/helpcontent2/source/text/shared/optionen.po --- libreoffice-5.1.1~rc2/translations/source/ug/helpcontent2/source/text/shared/optionen.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ug/helpcontent2/source/text/shared/optionen.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "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 17:59+0000\n" +"PO-Revision-Date: 2016-03-04 08:50+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: ug\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1429811945.000000\n" +"X-POOTLE-MTIME: 1457081432.000000\n" #: 01000000.xhp msgctxt "" @@ -2670,13 +2670,14 @@ 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 @@ msgstr "" #: 01010501.xhp +#, fuzzy msgctxt "" "01010501.xhp\n" "hd_id3158409\n" "13\n" "help.text" msgid "-->" -msgstr "" +msgstr "-->" #: 01010501.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/ug/helpcontent2/source/text/smath/01.po libreoffice-5.1.2~rc2/translations/source/ug/helpcontent2/source/text/smath/01.po --- libreoffice-5.1.1~rc2/translations/source/ug/helpcontent2/source/text/smath/01.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ug/helpcontent2/source/text/smath/01.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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 17:59+0000\n" +"PO-Revision-Date: 2016-03-04 09:21+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: ug\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1429811960.000000\n" +"X-POOTLE-MTIME: 1457083275.000000\n" #: 02080000.xhp msgctxt "" @@ -6275,22 +6275,24 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/ug/helpcontent2/source/text/swriter/01.po libreoffice-5.1.2~rc2/translations/source/ug/helpcontent2/source/text/swriter/01.po --- libreoffice-5.1.1~rc2/translations/source/ug/helpcontent2/source/text/swriter/01.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ug/helpcontent2/source/text/swriter/01.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 22:38+0000\n" +"PO-Revision-Date: 2016-03-04 09:40+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: ug\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1431383926.000000\n" +"X-POOTLE-MTIME: 1457084420.000000\n" #: 01120000.xhp msgctxt "" @@ -10948,13 +10948,14 @@ msgstr "" #: 04120201.xhp +#, fuzzy msgctxt "" "04120201.xhp\n" "hd_id3145418\n" "32\n" "help.text" msgid "<" -msgstr "" +msgstr "<" #: 04120201.xhp msgctxt "" @@ -12144,13 +12145,14 @@ msgstr "" #: 04120219.xhp +#, fuzzy msgctxt "" "04120219.xhp\n" "hd_id3150762\n" "6\n" "help.text" msgid "<<" -msgstr "" +msgstr "<<" #: 04120219.xhp msgctxt "" @@ -12162,13 +12164,14 @@ msgstr "" #: 04120219.xhp +#, fuzzy msgctxt "" "04120219.xhp\n" "hd_id3151178\n" "8\n" "help.text" msgid ">>" -msgstr "" +msgstr ">>" #: 04120219.xhp msgctxt "" @@ -14422,13 +14425,14 @@ 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 "" @@ -14440,13 +14444,14 @@ msgstr "" #: 04200000.xhp +#, fuzzy msgctxt "" "04200000.xhp\n" "par_id3154574\n" "17\n" "help.text" msgid "</SCRIPT>" -msgstr "" +msgstr "</SCRIPT>" #: 04200000.xhp msgctxt "" @@ -27645,12 +27650,13 @@ msgstr "" #: mm_cusaddfie.xhp +#, fuzzy msgctxt "" "mm_cusaddfie.xhp\n" "par_idN10570\n" "help.text" msgid ">" -msgstr "" +msgstr ">" #: mm_cusaddfie.xhp msgctxt "" @@ -27661,12 +27667,13 @@ msgstr "" #: mm_cusaddfie.xhp +#, fuzzy msgctxt "" "mm_cusaddfie.xhp\n" "par_idN10577\n" "help.text" msgid "<" -msgstr "" +msgstr "<" #: mm_cusaddfie.xhp msgctxt "" @@ -27853,12 +27860,13 @@ msgstr "" #: mm_cusgrelin.xhp +#, fuzzy msgctxt "" "mm_cusgrelin.xhp\n" "par_idN10558\n" "help.text" msgid ">" -msgstr "" +msgstr ">" #: mm_cusgrelin.xhp msgctxt "" @@ -27869,12 +27877,13 @@ msgstr "" #: mm_cusgrelin.xhp +#, fuzzy msgctxt "" "mm_cusgrelin.xhp\n" "par_idN1055F\n" "help.text" msgid "<" -msgstr "" +msgstr "<" #: mm_cusgrelin.xhp msgctxt "" @@ -28309,12 +28318,13 @@ msgstr "" #: mm_newaddblo.xhp +#, fuzzy msgctxt "" "mm_newaddblo.xhp\n" "par_idN10570\n" "help.text" msgid ">" -msgstr "" +msgstr ">" #: mm_newaddblo.xhp msgctxt "" @@ -28325,12 +28335,13 @@ msgstr "" #: mm_newaddblo.xhp +#, fuzzy msgctxt "" "mm_newaddblo.xhp\n" "par_idN10577\n" "help.text" msgid "<" -msgstr "" +msgstr "<" #: mm_newaddblo.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/ug/helpcontent2/source/text/swriter/02.po libreoffice-5.1.2~rc2/translations/source/ug/helpcontent2/source/text/swriter/02.po --- libreoffice-5.1.1~rc2/translations/source/ug/helpcontent2/source/text/swriter/02.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ug/helpcontent2/source/text/swriter/02.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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 17:59+0000\n" +"PO-Revision-Date: 2016-03-04 09:43+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: ug\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1429811978.000000\n" +"X-POOTLE-MTIME: 1457084588.000000\n" #: 02110000.xhp msgctxt "" @@ -1673,13 +1673,14 @@ msgstr "ئÛلىش" #: 14020000.xhp +#, fuzzy msgctxt "" "14020000.xhp\n" "par_id3150087\n" "12\n" "help.text" msgid "-" -msgstr "" +msgstr "-" #: 14020000.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/ug/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-5.1.2~rc2/translations/source/ug/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-5.1.1~rc2/translations/source/ug/officecfg/registry/data/org/openoffice/Office/UI.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ug/officecfg/registry/data/org/openoffice/Office/UI.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\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-21 02:36+0000\n" -"Last-Translator: Abduqadir Abliz <Sahran@live.com>\n" +"PO-Revision-Date: 2016-03-09 14:37+0000\n" +"Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: ug\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1456022192.000000\n" +"X-POOTLE-MTIME: 1457534220.000000\n" #: BaseWindowState.xcu msgctxt "" @@ -14216,7 +14216,7 @@ "Label\n" "value.text" msgid "Search Formatted Display String" -msgstr "" +msgstr "پىچىملىق كۆرسىتىلگەن تىزىقنى ئىزدەيدۇ" #: GenericCommands.xcu msgctxt "" @@ -14225,7 +14225,7 @@ "Label\n" "value.text" msgid "Find All" -msgstr "" +msgstr "ھەممىنى ئىزدە" #: GenericCommands.xcu msgctxt "" @@ -14234,7 +14234,7 @@ "Label\n" "value.text" msgid "Close Find Bar" -msgstr "" +msgstr "ئىزدەش بالداقنى ياپ" #: GenericCommands.xcu msgctxt "" @@ -14243,7 +14243,7 @@ "Label\n" "value.text" msgid "[placeholder for message]" -msgstr "" +msgstr "[ئۇچۇرنىڭ ئورۇن بەلگىسى]" #: GenericCommands.xcu msgctxt "" @@ -14336,14 +14336,13 @@ msgstr "ئوڭغا توغرىلا" #: GenericCommands.xcu -#, fuzzy msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Commands..uno:CenterPara\n" "Label\n" "value.text" msgid "Center Horizontally" -msgstr "يانتۇ ئوتتۇرىغا توغرىلا" +msgstr "توغرىسىغا ئوتتۇرىغا توغرىلا" #: GenericCommands.xcu msgctxt "" @@ -14364,14 +14363,13 @@ msgstr "ئوڭ سولغا توغرىلا" #: GenericCommands.xcu -#, fuzzy msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Commands..uno:LineSpacing\n" "Label\n" "value.text" msgid "Line Spacing" -msgstr "قۇر ئارىلىقى: 1" +msgstr "قۇر ئارىلىقى" #: GenericCommands.xcu msgctxt "" @@ -14383,7 +14381,6 @@ msgstr "قۇر ئارىلىقى: 1" #: GenericCommands.xcu -#, fuzzy msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Commands..uno:SpacePara15\n" @@ -14393,7 +14390,6 @@ msgstr "قۇر ئارىلىقى: 1.5" #: GenericCommands.xcu -#, fuzzy msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Commands..uno:SpacePara2\n" @@ -14616,7 +14612,7 @@ "Label\n" "value.text" msgid "Optimal view" -msgstr "" +msgstr "ئەڭ ئەلا كۆرۈنۈش" #: GenericCommands.xcu msgctxt "" @@ -14724,7 +14720,7 @@ "Label\n" "value.text" msgid "Crop Image..." -msgstr "" +msgstr "سۈرەت كەس…" #: GenericCommands.xcu msgctxt "" @@ -14733,7 +14729,7 @@ "Label\n" "value.text" msgid "Crop Image" -msgstr "" +msgstr "سۈرەت كەس" #: GenericCommands.xcu msgctxt "" @@ -14742,7 +14738,7 @@ "ContextLabel\n" "value.text" msgid "Crop" -msgstr "" +msgstr "كەس" #: GenericCommands.xcu msgctxt "" @@ -14751,7 +14747,7 @@ "Label\n" "value.text" msgid "Replace Image" -msgstr "" +msgstr "سۈرەت ئالماشتۇر" #: GenericCommands.xcu msgctxt "" @@ -14760,7 +14756,7 @@ "ContextLabel\n" "value.text" msgid "~Replace..." -msgstr "" +msgstr "ئالماشتۇر(~R)…" #: GenericCommands.xcu msgctxt "" @@ -14769,7 +14765,7 @@ "Label\n" "value.text" msgid "Compress Image" -msgstr "" +msgstr "سۈرەتنى پىرىسلا" #: GenericCommands.xcu msgctxt "" @@ -14778,7 +14774,7 @@ "ContextLabel\n" "value.text" msgid "Co~mpress..." -msgstr "" +msgstr "پرىس(~M)…" #: GenericCommands.xcu msgctxt "" @@ -14787,7 +14783,7 @@ "Label\n" "value.text" msgid "Save Image" -msgstr "" +msgstr "سۈرەت ساقلا" #: GenericCommands.xcu msgctxt "" @@ -14796,7 +14792,7 @@ "ContextLabel\n" "value.text" msgid "Save..." -msgstr "" +msgstr "ساقلا…" #: GenericCommands.xcu msgctxt "" @@ -14805,17 +14801,16 @@ "Label\n" "value.text" msgid "Gr~id and Helplines" -msgstr "" +msgstr "سÛتكا Û‹Û• ياردەمچى سىزىق(~I)" #: GenericCommands.xcu -#, fuzzy msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Commands..uno:ToolsFormsMenu\n" "Label\n" "value.text" msgid "~Forms" -msgstr "كۆزنەك" +msgstr "كۆزنەك(~F)" #: GenericCommands.xcu msgctxt "" @@ -14824,7 +14819,7 @@ "Label\n" "value.text" msgid "Manage Templates" -msgstr "" +msgstr "Ù‚Ûلىپ باشقۇرۇش" #: GenericCommands.xcu msgctxt "" @@ -14833,7 +14828,7 @@ "ContextLabel\n" "value.text" msgid "Manage" -msgstr "" +msgstr "باشقۇر" #: GenericCommands.xcu msgctxt "" @@ -14860,7 +14855,7 @@ "Label\n" "value.text" msgid "Open Remote ~File..." -msgstr "" +msgstr "يىراقتىكى ھۆججەتنى ئاچ(~F)…" #: GenericCommands.xcu msgctxt "" @@ -14869,7 +14864,7 @@ "Label\n" "value.text" msgid "Save to Remote Ser~ver" -msgstr "" +msgstr "يىراقتىكى مۇلازىمىتىرغا ساقلا(~V)" #: GenericCommands.xcu msgctxt "" @@ -14878,7 +14873,7 @@ "PopupLabel\n" "value.text" msgid "Save Remote File..." -msgstr "" +msgstr "يىراقتىكى ھۆججەتنى ساقلا…" #: GenericCommands.xcu msgctxt "" @@ -15000,14 +14995,13 @@ msgstr "نۇقتا يۆتكە" #: GenericCommands.xcu -#, fuzzy msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Commands..uno:Reload\n" "Label\n" "value.text" msgid "Re~load" -msgstr "قايتا يۈكلە" +msgstr "قايتا يۈكلە(~L)" #: GenericCommands.xcu msgctxt "" @@ -15025,7 +15019,7 @@ "Label\n" "value.text" msgid "Print Directly" -msgstr "" +msgstr "بىۋاسىتە باس" #: GenericCommands.xcu msgctxt "" @@ -15037,7 +15031,6 @@ msgstr "تەكشى ئالماشتۇر" #: GenericCommands.xcu -#, fuzzy msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Commands..uno:ToggleObjectBezierMode\n" @@ -15047,7 +15040,6 @@ msgstr "نۇقتا تەھرىر" #: GenericCommands.xcu -#, fuzzy msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Commands..uno:ToggleObjectBezierMode\n" @@ -15351,7 +15343,7 @@ "Label\n" "value.text" msgid "Outline Presets" -msgstr "" +msgstr "ئالدىن تەڭشەلگەن تىزÛس" #: GenericCommands.xcu msgctxt "" @@ -15498,14 +15490,13 @@ msgstr "چۈشۈر" #: GenericCommands.xcu -#, fuzzy msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Commands..uno:OutlineFormat\n" "Label\n" "value.text" msgid "Show Formatting" -msgstr "بەت پىچىمى" +msgstr "پىچىمنى كۆرسەت" #: GenericCommands.xcu msgctxt "" @@ -15514,7 +15505,7 @@ "Label\n" "value.text" msgid "Show Only First Level" -msgstr "" +msgstr "بىرىنچى دەرىجىنىلا كۆرسەت" #: GenericCommands.xcu msgctxt "" @@ -15532,7 +15523,7 @@ "Label\n" "value.text" msgid "E~dit Mode" -msgstr "" +msgstr "تەھرىرلەش ھالىتى(~D)" #: GenericCommands.xcu msgctxt "" @@ -15550,7 +15541,7 @@ "Label\n" "value.text" msgid "~Web View" -msgstr "" +msgstr "توربەت كۆرۈنۈشى(~W)" #: GenericCommands.xcu msgctxt "" @@ -15559,7 +15550,7 @@ "ContextLabel\n" "value.text" msgid "~Web" -msgstr "" +msgstr "توربەت(~W)" #: GenericCommands.xcu msgctxt "" @@ -15685,7 +15676,7 @@ "Label\n" "value.text" msgid "~Edit Style..." -msgstr "" +msgstr "ئۇسلۇب تەھرىر(~E)…" #: GenericCommands.xcu msgctxt "" @@ -15694,7 +15685,7 @@ "Label\n" "value.text" msgid "~New Style..." -msgstr "" +msgstr "ÙŠÛÚ­Ù‰ ئۇسلۇب(~N)…" #: GenericCommands.xcu msgctxt "" @@ -15715,14 +15706,13 @@ msgstr "رەقەم بۆلىكى" #: GenericCommands.xcu -#, fuzzy msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Commands..uno:StyleUpdateByExample\n" "Label\n" "value.text" msgid "~Update Style" -msgstr "ئۇسلۇب ÙŠÛڭىلا" +msgstr "ئۇسلۇب ÙŠÛڭىلا(~U)" #: GenericCommands.xcu msgctxt "" @@ -15941,7 +15931,6 @@ msgstr "تەگلىك رەڭگى" #: GenericCommands.xcu -#, fuzzy msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Commands..uno:CharBackColor\n" @@ -15993,7 +15982,7 @@ "Label\n" "value.text" msgid "Borders (Shift to overwrite)" -msgstr "" +msgstr "گىرۋەك (Shift بÛسىلسا قاپلايدۇ)" #: GenericCommands.xcu msgctxt "" @@ -16182,7 +16171,7 @@ "Label\n" "value.text" msgid "Border Style" -msgstr "" +msgstr "گىرۋەك ئۇسلۇبى" #: GenericCommands.xcu msgctxt "" @@ -16191,7 +16180,7 @@ "Label\n" "value.text" msgid "Border Color" -msgstr "" +msgstr "گىرۋەك رەڭگى" #: GenericCommands.xcu msgctxt "" @@ -16272,7 +16261,7 @@ "Label\n" "value.text" msgid "Show All Levels" -msgstr "" +msgstr "ھەممە دەرىجىنى كۆرسەت" #: GenericCommands.xcu msgctxt "" @@ -16299,7 +16288,7 @@ "Label\n" "value.text" msgid "~Remove Outline" -msgstr "" +msgstr "تÛزىسنى چىقىرىۋەت(~R)" #: GenericCommands.xcu msgctxt "" @@ -16347,34 +16336,31 @@ msgstr "پۈتۈن ئÛكران(~U)" #: GenericCommands.xcu -#, fuzzy msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Commands..uno:InsertFrameMenu\n" "Label\n" "value.text" msgid "~Frame" -msgstr "كاندۇك" +msgstr "كاندۇك(~F)" #: GenericCommands.xcu -#, fuzzy msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Commands..uno:InsertFootnotesMenu\n" "Label\n" "value.text" msgid "Footnote and En~dnote" -msgstr "بەت ئاستى/بەت ئاخىرى ئىزاھات(~F)…" +msgstr "بەت ئاستى/بەت ئاخىرى ئىزاھات(~D)" #: GenericCommands.xcu -#, fuzzy msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Commands..uno:FormatImageMenu\n" "Label\n" "value.text" msgid "~Image" -msgstr "سۈرەت" +msgstr "سۈرەت(~I)" #: GenericCommands.xcu msgctxt "" @@ -16383,10 +16369,9 @@ "Label\n" "value.text" msgid "~Object and Shape" -msgstr "" +msgstr "ئوبيÛكت Û‹Û• شەكىل(~O)" #: GenericCommands.xcu -#, fuzzy msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Commands..uno:FormatImageFiltersMenu\n" @@ -16396,24 +16381,22 @@ msgstr "سۈزگۈچ(~F)" #: GenericCommands.xcu -#, fuzzy msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Commands..uno:FormatImageModeMenu\n" "Label\n" "value.text" msgid "Mo~de" -msgstr "ھالەت" +msgstr "ھالەت(~D)" #: GenericCommands.xcu -#, fuzzy msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Commands..uno:FormatTextMenu\n" "Label\n" "value.text" msgid "~Text" -msgstr "تÛكىست" +msgstr "تÛكىست(~T)" #: GenericCommands.xcu msgctxt "" @@ -16422,7 +16405,7 @@ "Label\n" "value.text" msgid "~Spacing" -msgstr "" +msgstr "بوشلۇق(~S)" #: GenericCommands.xcu msgctxt "" @@ -16431,17 +16414,16 @@ "Label\n" "value.text" msgid "Lis~ts" -msgstr "" +msgstr "تىزىم(~T)" #: GenericCommands.xcu -#, fuzzy msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Commands..uno:FormatStylesMenu\n" "Label\n" "value.text" msgid "~Styles" -msgstr "ئۇسلۇب(~E)" +msgstr "ئۇسلۇب(~S)" #: GenericCommands.xcu msgctxt "" @@ -16450,27 +16432,25 @@ "Label\n" "value.text" msgid "Frame and Ob~ject" -msgstr "" +msgstr "كاندۇك Û‹Û• ئوبيÛكت(~J)" #: GenericCommands.xcu -#, fuzzy msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Commands..uno:FormatFormMenu\n" "Label\n" "value.text" msgid "~Form" -msgstr "كۆزنەك" +msgstr "كۆزنەك(~F)" #: GenericCommands.xcu -#, fuzzy msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Commands..uno:InsertGraphic\n" "Label\n" "value.text" msgid "~Image..." -msgstr "بەت(~P)…" +msgstr "سۈرەت(~I)…" #: GenericCommands.xcu msgctxt "" @@ -16479,7 +16459,7 @@ "Label\n" "value.text" msgid "AutoFormat Table Styles" -msgstr "" +msgstr "ئاپتوماتىك پىچىم جەدۋەل ئۇسلۇبى" #: GenericCommands.xcu msgctxt "" @@ -16488,7 +16468,7 @@ "ContextLabel\n" "value.text" msgid "Auto~Format Styles..." -msgstr "" +msgstr "ئاپتوماتىك پىچىم ئۇسلۇبى(~F)…" #: GenericCommands.xcu msgctxt "" @@ -16554,47 +16534,42 @@ msgstr "سىزمىچىلىق ئىقتىدارىنى كۆرسەت" #: GenericCommands.xcu -#, fuzzy msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Commands..uno:ShapesMenu\n" "Label\n" "value.text" msgid "~Shape" -msgstr "شەكىللەر(~S)" +msgstr "شەكىل(~S)" #: GenericCommands.xcu -#, fuzzy msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Commands..uno:ShapesLineMenu\n" "Label\n" "value.text" msgid "~Line" -msgstr "سىزىق" +msgstr "سىزىق(~L)" #: GenericCommands.xcu -#, fuzzy msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Commands..uno:ShapesBasicMenu\n" "Label\n" "value.text" msgid "~Basic" -msgstr "ئاساس" +msgstr "ئاساس(~B)" #: GenericCommands.xcu -#, fuzzy msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Commands..uno:ShapesSymbolMenu\n" "Label\n" "value.text" msgid "~Symbol" -msgstr "بەلگىلەر" +msgstr "بەلگە(~S)" #: GenericCommands.xcu -#, fuzzy msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Commands..uno:RulerMenu\n" @@ -16604,24 +16579,22 @@ msgstr "سىزغۇچ(~R)" #: GenericCommands.xcu -#, fuzzy msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Commands..uno:ScrollBarMenu\n" "Label\n" "value.text" msgid "~Scrollbars" -msgstr "دومىلىما سۈرگۈچ" +msgstr "دومىلىما سۈرگۈچ(~S)" #: GenericCommands.xcu -#, fuzzy msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Commands..uno:SidebarMenu\n" "Label\n" "value.text" msgid "~Sidebar" -msgstr "يان بالداق" +msgstr "يان بالداق(~S)" #: GenericCommands.xcu msgctxt "" @@ -16642,14 +16615,13 @@ msgstr "مەنىداش سۆزلەر لۇغىتى(~T)…" #: GenericCommands.xcu -#, fuzzy msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Commands..uno:DrawText\n" "Label\n" "value.text" msgid "~Text Box" -msgstr "تÛكست رامكىسى" +msgstr "تÛكست رامكىسى(~T)" #: GenericCommands.xcu msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/ug/starmath/source.po libreoffice-5.1.2~rc2/translations/source/ug/starmath/source.po --- libreoffice-5.1.1~rc2/translations/source/ug/starmath/source.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ug/starmath/source.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\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-29 16:07+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff -Nru libreoffice-5.1.1~rc2/translations/source/ug/sw/source/ui/dbui.po libreoffice-5.1.2~rc2/translations/source/ug/sw/source/ui/dbui.po --- libreoffice-5.1.1~rc2/translations/source/ug/sw/source/ui/dbui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ug/sw/source/ui/dbui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 04:50+0000\n" +"PO-Revision-Date: 2016-03-09 16:07+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: ug\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1431579021.000000\n" +"X-POOTLE-MTIME: 1457539639.000000\n" #: dbui.src msgctxt "" @@ -488,31 +488,34 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/ug/sw/source/ui/index.po libreoffice-5.1.2~rc2/translations/source/ug/sw/source/ui/index.po --- libreoffice-5.1.1~rc2/translations/source/ug/sw/source/ui/index.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ug/sw/source/ui/index.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,18 +3,18 @@ msgstr "" "Project-Id-Version: PACKAGE 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-20 11:41+0000\n" -"Last-Translator: Abduqadir <Sahran@live.com>\n" +"POT-Creation-Date: 2015-04-22 23:40+0200\n" +"PO-Revision-Date: 2016-03-09 16:08+0000\n" +"Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: ug\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: LibreOffice\n" +"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1371728514.0\n" +"X-POOTLE-MTIME: 1457539726.000000\n" #: cnttab.src msgctxt "" @@ -57,20 +57,22 @@ 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 @@ msgstr "" #: cnttab.src +#, fuzzy msgctxt "" "cnttab.src\n" "STR_TOKEN_PAGE_NUMS\n" "string.text" msgid "#" -msgstr "" +msgstr "#" #: cnttab.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/ug/sw/source/ui/utlui.po libreoffice-5.1.2~rc2/translations/source/ug/sw/source/ui/utlui.po --- libreoffice-5.1.1~rc2/translations/source/ug/sw/source/ui/utlui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ug/sw/source/ui/utlui.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\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-29 16:07+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff -Nru libreoffice-5.1.1~rc2/translations/source/ug/sw/uiconfig/swriter/ui.po libreoffice-5.1.2~rc2/translations/source/ug/sw/uiconfig/swriter/ui.po --- libreoffice-5.1.1~rc2/translations/source/ug/sw/uiconfig/swriter/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ug/sw/uiconfig/swriter/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: LibO 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-28 17:04+0000\n" -"Last-Translator: Abduqadir Abliz <Sahran@live.com>\n" +"PO-Revision-Date: 2016-03-09 16:22+0000\n" +"Last-Translator: system user <>\n" "Language-Team: none\n" "Language: ug\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1451322245.000000\n" +"X-POOTLE-MTIME: 1457540558.000000\n" #: abstractdialog.ui msgctxt "" @@ -2478,13 +2478,14 @@ msgstr "" #: createaddresslist.ui +#, fuzzy msgctxt "" "createaddresslist.ui\n" "PREV\n" "label\n" "string.text" msgid "<" -msgstr "" +msgstr "<" #: createaddresslist.ui msgctxt "" @@ -2496,13 +2497,14 @@ msgstr "" #: createaddresslist.ui +#, fuzzy msgctxt "" "createaddresslist.ui\n" "NEXT\n" "label\n" "string.text" msgid ">" -msgstr "" +msgstr ">" #: createaddresslist.ui msgctxt "" @@ -4394,13 +4396,14 @@ msgstr "يوق" #: fldvarpage.ui +#, fuzzy msgctxt "" "fldvarpage.ui\n" "separator\n" "text\n" "string.text" msgid "." -msgstr "" +msgstr "." #: fldvarpage.ui msgctxt "" @@ -5353,22 +5356,24 @@ 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 @@ msgstr "" #: mmpreparepage.ui +#, fuzzy msgctxt "" "mmpreparepage.ui\n" "prev\n" "label\n" "string.text" msgid "<" -msgstr "" +msgstr "<" #: mmpreparepage.ui msgctxt "" @@ -8637,13 +8643,14 @@ msgstr "" #: mmpreparepage.ui +#, fuzzy msgctxt "" "mmpreparepage.ui\n" "next\n" "label\n" "string.text" msgid ">" -msgstr "" +msgstr ">" #: mmpreparepage.ui #, fuzzy @@ -15549,40 +15556,44 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/uk/cui/uiconfig/ui.po libreoffice-5.1.2~rc2/translations/source/uk/cui/uiconfig/ui.po --- libreoffice-5.1.1~rc2/translations/source/uk/cui/uiconfig/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/uk/cui/uiconfig/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 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-23 15:11+0000\n" +"PO-Revision-Date: 2016-03-16 17:00+0000\n" "Last-Translator: Olexandr Pylypchuk <pilipchukap@rambler.ru>\n" "Language-Team: none\n" "Language: uk\n" @@ -14,7 +14,7 @@ "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: 1456240286.000000\n" +"X-POOTLE-MTIME: 1458147639.000000\n" #: aboutconfigdialog.ui msgctxt "" @@ -10999,7 +10999,7 @@ "label\n" "string.text" msgid "Default Languages for Documents" -msgstr "Типові мови Ð´Ð»Ñ Ð´Ð¾ÐºÑƒÐ¼ÐµÐ½Ñ‚Ñ–Ð² " +msgstr "Типові мови Ð´Ð»Ñ Ð´Ð¾ÐºÑƒÐ¼ÐµÐ½Ñ‚Ñ–Ð²" #: optlanguagespage.ui msgctxt "" @@ -12634,7 +12634,7 @@ "label\n" "string.text" msgid "Icon _size and style:" -msgstr "Ро_змір та Ñтиль піктограми:" +msgstr "Ро_змір та Ñтиль піктограм:" #: optviewpage.ui msgctxt "" @@ -16051,7 +16051,7 @@ "label\n" "string.text" msgid "To _frame" -msgstr "До _кадру" +msgstr "До рам_ки" #: swpossizepage.ui msgctxt "" @@ -16447,7 +16447,7 @@ "label\n" "string.text" msgid "_Fit to frame" -msgstr "По _рамці" +msgstr "За _рамкою" #: textattrtabpage.ui msgctxt "" @@ -17239,7 +17239,7 @@ "label\n" "string.text" msgid "_Append space" -msgstr "_Додати пропуÑк" +msgstr "_Додавати пропуÑк" #: wordcompletionpage.ui msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/uk/helpcontent2/source/text/scalc/01.po libreoffice-5.1.2~rc2/translations/source/uk/helpcontent2/source/text/scalc/01.po --- libreoffice-5.1.1~rc2/translations/source/uk/helpcontent2/source/text/scalc/01.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/uk/helpcontent2/source/text/scalc/01.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\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-08 08:53+0000\n" -"Last-Translator: Ðндрій Бандура <andriykopanytsia@gmail.com>\n" +"PO-Revision-Date: 2016-03-04 06:58+0000\n" +"Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: uk\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "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: 1454921613.000000\n" +"X-POOTLE-MTIME: 1457074719.000000\n" #: 01120000.xhp msgctxt "" @@ -2112,7 +2112,7 @@ "5\n" "help.text" msgid "Delete All" -msgstr "" +msgstr "Видалити вÑе" #: 02150000.xhp msgctxt "" @@ -58977,7 +58977,7 @@ "2\n" "help.text" msgid "<ahelp hid=\".uno:DataDataPilotRun\">Opens a dialog where you can select the source for your pivot table, and then create your table.</ahelp>" -msgstr "" +msgstr "<ahelp hid=\".uno:DataDataPilotRun\">Відкрити діалогове вікно, де можна вибрати джерело даних зведеної таблиці Ñ– Ñтворити таблицю.</ahelp>" #: 12090100.xhp msgctxt "" @@ -59443,7 +59443,7 @@ "par_idN108CD\n" "help.text" msgid "<ahelp hid=\".\">Select this check box and double-click an item label in the table to show or hide details for the item. Clear this check box and double-click a cell in the table to edit the contents of the cell.</ahelp>" -msgstr "" +msgstr "<ahelp hid=\".\">Ð’Ñтановіть цей прапорець Ñ– двічі клацніть на підпиÑÑ– елемента в таблиці, щоб розгорнути або приховати докладні відомоÑÑ‚Ñ– про нього. Зніміть цей прапорець Ñ– двічі клацніть на комірці таблиці, щоб змінити Ñ—Ñ— вміÑÑ‚.</ahelp>" #: 12090102.xhp msgctxt "" @@ -59499,7 +59499,7 @@ "par_idN10904\n" "help.text" msgid "<ahelp hid=\".\">Choose the field that you want to view the details for.</ahelp>" -msgstr "" +msgstr "<ahelp hid=\".\">Виберіть поле, Ð´Ð»Ñ Ñкого потрібно подивитиÑÑ Ð´Ð¾ÐºÐ»Ð°Ð´Ð½Ñ– відомоÑÑ‚Ñ–.</ahelp>" #: 12090102.xhp msgctxt "" @@ -59570,7 +59570,7 @@ "6\n" "help.text" msgid "<ahelp hid=\"modules/scalc/ui/pivotfilterdialog/connect2\" visibility=\"visible\">Select a logical operator for the filter.</ahelp>" -msgstr "" +msgstr "<ahelp hid=\"modules/scalc/ui/pivotfilterdialog/connect2\" visibility=\"visible\">Виберіть логічну операцію Ð´Ð»Ñ Ñ„Ñ–Ð»ÑŒÑ‚Ñ€Ð°.</ahelp>" #: 12090103.xhp msgctxt "" @@ -59588,7 +59588,7 @@ "8\n" "help.text" msgid "<ahelp hid=\"modules/scalc/ui/pivotfilterdialog/field3\" visibility=\"visible\">Select the field that you want to use in the filter. If field names are not available, the column labels are listed.</ahelp>" -msgstr "" +msgstr "<ahelp hid=\"modules/scalc/ui/pivotfilterdialog/field3\" visibility=\"visible\">Виберіть поле, Ñке потрібно викориÑтовувати у фільтрі. Якщо імена фільтрів недоÑтупні, тут перераховані підпиÑи Ñтовпців.</ahelp>" #: 12090103.xhp msgctxt "" @@ -59645,13 +59645,14 @@ msgstr "дорівнює" #: 12090103.xhp +#, fuzzy msgctxt "" "12090103.xhp\n" "par_id3154254\n" "15\n" "help.text" msgid "<" -msgstr "" +msgstr "<" #: 12090103.xhp msgctxt "" @@ -59663,13 +59664,14 @@ msgstr "менше, ніж" #: 12090103.xhp +#, fuzzy msgctxt "" "12090103.xhp\n" "par_id3155335\n" "17\n" "help.text" msgid ">" -msgstr "" +msgstr ">" #: 12090103.xhp msgctxt "" @@ -59717,13 +59719,14 @@ msgstr "більше або дорівнює" #: 12090103.xhp +#, fuzzy msgctxt "" "12090103.xhp\n" "par_id3150345\n" "23\n" "help.text" msgid "<>" -msgstr "" +msgstr "<>" #: 12090103.xhp msgctxt "" @@ -59750,7 +59753,7 @@ "26\n" "help.text" msgid "<ahelp hid=\"modules/scalc/ui/pivotfilterdialog/val3\" visibility=\"visible\">Select the value that you want to compare to the selected field.</ahelp>" -msgstr "" +msgstr "<ahelp hid=\"modules/scalc/ui/pivotfilterdialog/val3\" visibility=\"visible\">Виберіть значеннÑ, Ñке потрібно порівнÑти з вибраним полем.</ahelp>" #: 12090103.xhp msgctxt "" @@ -59784,7 +59787,7 @@ "2\n" "help.text" msgid "<variable id=\"zusaetzetext\"><ahelp hid=\"modules/scalc/ui/pivotfilterdialog/more\" visibility=\"visible\">Displays or hides additional filtering options.</ahelp></variable>" -msgstr "" +msgstr "<variable id=\"zusaetzetext\"><ahelp hid=\"modules/scalc/ui/pivotfilterdialog/more\" visibility=\"visible\">Показує або приховує додаткові параметри фільтрації.</ahelp></variable>" #: 12090104.xhp msgctxt "" @@ -59811,7 +59814,7 @@ "6\n" "help.text" msgid "<ahelp hid=\".\" visibility=\"visible\">Distinguishes between uppercase and lowercase letters.</ahelp>" -msgstr "" +msgstr "<ahelp hid=\".\" visibility=\"visible\">РозрізнÑти великі Ñ– малі літери.</ahelp>" #: 12090104.xhp msgctxt "" @@ -59829,7 +59832,7 @@ "8\n" "help.text" msgid "<ahelp hid=\".\" visibility=\"visible\">Allows you to use wildcards in the filter definition.</ahelp>" -msgstr "" +msgstr "<ahelp hid=\".\" visibility=\"visible\">ДозволÑÑ” викориÑтовувати шаблони фільтрації.</ahelp>" #: 12090104.xhp msgctxt "" @@ -59855,7 +59858,7 @@ "31\n" "help.text" msgid "<ahelp hid=\".\" visibility=\"visible\">Excludes duplicate rows in the list of filtered data.</ahelp>" -msgstr "" +msgstr "<ahelp hid=\".\" visibility=\"visible\">Виключити з відфільтрованих даних повторювані Ñ€Ñдки.</ahelp>" #: 12090104.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/uk/helpcontent2/source/text/scalc.po libreoffice-5.1.2~rc2/translations/source/uk/helpcontent2/source/text/scalc.po --- libreoffice-5.1.1~rc2/translations/source/uk/helpcontent2/source/text/scalc.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/uk/helpcontent2/source/text/scalc.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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-08 05:52+0000\n" -"Last-Translator: Ðндрій Бандура <andriykopanytsia@gmail.com>\n" +"PO-Revision-Date: 2016-02-25 10:59+0000\n" +"Last-Translator: Olexandr Pylypchuk <pilipchukap@rambler.ru>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: uk\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "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: 1449553970.000000\n" +"X-POOTLE-MTIME: 1456397987.000000\n" #: main0000.xhp msgctxt "" @@ -455,7 +455,7 @@ "2\n" "help.text" msgid "<ahelp hid=\".\">The <emph>Tools </emph>menu contains commands to check spelling, to trace sheet references, to find mistakes and to define scenarios.</ahelp>" -msgstr "<ahelp hid=\".\">Меню <emph>ЗаÑоби</emph> міÑтить команди Ð´Ð»Ñ Ð¿ÐµÑ€ÐµÐ²Ñ–Ñ€ÐºÐ¸ орфографії, відÑÑ‚ÐµÐ¶ÐµÐ½Ð½Ñ Ð¿Ð¾Ñилань на аркуші, пошуку помилок Ñ– Ð²Ð¸Ð·Ð½Ð°Ñ‡ÐµÐ½Ð½Ñ Ñценаріїв.</ahelp>" +msgstr "<ahelp hid=\".\">Меню <emph>ЗаÑоби</emph> міÑтить команди Ð´Ð»Ñ Ð¿ÐµÑ€ÐµÐ²Ñ–Ñ€ÐºÐ¸ правопиÑу, відÑÑ‚ÐµÐ¶ÐµÐ½Ð½Ñ Ð¿Ð¾Ñилань на аркуші, пошуку помилок Ñ– Ð²Ð¸Ð·Ð½Ð°Ñ‡ÐµÐ½Ð½Ñ Ñценаріїв.</ahelp>" #: main0106.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/uk/helpcontent2/source/text/shared/00.po libreoffice-5.1.2~rc2/translations/source/uk/helpcontent2/source/text/shared/00.po --- libreoffice-5.1.1~rc2/translations/source/uk/helpcontent2/source/text/shared/00.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/uk/helpcontent2/source/text/shared/00.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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-23 15:14+0000\n" -"Last-Translator: Olexandr Pylypchuk <pilipchukap@rambler.ru>\n" +"PO-Revision-Date: 2016-03-04 07:20+0000\n" +"Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: uk\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "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: 1456240445.000000\n" +"X-POOTLE-MTIME: 1457076034.000000\n" #: 00000001.xhp msgctxt "" @@ -3970,12 +3970,13 @@ msgstr "" #: 00000021.xhp +#, fuzzy msgctxt "" "00000021.xhp\n" "par_id100120091238112\n" "help.text" msgid "-" -msgstr "" +msgstr "-" #: 00000021.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/uk/helpcontent2/source/text/shared/01.po libreoffice-5.1.2~rc2/translations/source/uk/helpcontent2/source/text/shared/01.po --- libreoffice-5.1.1~rc2/translations/source/uk/helpcontent2/source/text/shared/01.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/uk/helpcontent2/source/text/shared/01.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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:18+0000\n" +"PO-Revision-Date: 2016-03-04 07:56+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: uk\n" @@ -14,7 +14,7 @@ "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: 1452604707.000000\n" +"X-POOTLE-MTIME: 1457078186.000000\n" #: 01010000.xhp msgctxt "" @@ -7504,13 +7504,14 @@ msgstr "" #: 02100001.xhp +#, fuzzy msgctxt "" "02100001.xhp\n" "par_id3152427\n" "19\n" "help.text" msgid "." -msgstr "" +msgstr "." #: 02100001.xhp msgctxt "" @@ -7522,13 +7523,14 @@ msgstr "" #: 02100001.xhp +#, fuzzy msgctxt "" "02100001.xhp\n" "par_id3154682\n" "21\n" "help.text" msgid "^" -msgstr "" +msgstr "^" #: 02100001.xhp msgctxt "" @@ -7540,13 +7542,14 @@ msgstr "" #: 02100001.xhp +#, fuzzy msgctxt "" "02100001.xhp\n" "par_id3159194\n" "23\n" "help.text" msgid "$" -msgstr "" +msgstr "$" #: 02100001.xhp msgctxt "" @@ -7566,13 +7569,14 @@ msgstr "" #: 02100001.xhp +#, fuzzy msgctxt "" "02100001.xhp\n" "par_id3156414\n" "25\n" "help.text" msgid "*" -msgstr "" +msgstr "*" #: 02100001.xhp msgctxt "" @@ -7611,13 +7615,14 @@ msgstr "" #: 02100001.xhp +#, fuzzy msgctxt "" "02100001.xhp\n" "par_id3143267\n" "199\n" "help.text" msgid "?" -msgstr "" +msgstr "?" #: 02100001.xhp msgctxt "" @@ -7629,13 +7634,14 @@ msgstr "" #: 02100001.xhp +#, fuzzy msgctxt "" "02100001.xhp\n" "par_id3166410\n" "158\n" "help.text" msgid "\\" -msgstr "" +msgstr "\\" #: 02100001.xhp msgctxt "" @@ -7717,13 +7723,14 @@ msgstr "" #: 02100001.xhp +#, fuzzy msgctxt "" "02100001.xhp\n" "par_id3149576\n" "37\n" "help.text" msgid "^$" -msgstr "" +msgstr "^$" #: 02100001.xhp msgctxt "" @@ -7735,13 +7742,14 @@ msgstr "" #: 02100001.xhp +#, fuzzy msgctxt "" "02100001.xhp\n" "par_id3148550\n" "41\n" "help.text" msgid "^." -msgstr "" +msgstr "^." #: 02100001.xhp msgctxt "" @@ -7984,13 +7992,14 @@ msgstr "" #: 02100001.xhp +#, fuzzy msgctxt "" "02100001.xhp\n" "par_id3148616\n" "213\n" "help.text" msgid "( )" -msgstr "" +msgstr "( )" #: 02100001.xhp msgctxt "" @@ -15768,13 +15777,14 @@ msgstr "" #: 05020301.xhp +#, fuzzy msgctxt "" "05020301.xhp\n" "par_id3152801\n" "5\n" "help.text" msgid "#" -msgstr "" +msgstr "#" #: 05020301.xhp msgctxt "" @@ -15858,13 +15868,14 @@ msgstr "" #: 05020301.xhp +#, fuzzy msgctxt "" "05020301.xhp\n" "par_id3150355\n" "12\n" "help.text" msgid "####.#" -msgstr "" +msgstr "####.#" #: 05020301.xhp msgctxt "" @@ -15912,13 +15923,14 @@ msgstr "" #: 05020301.xhp +#, fuzzy msgctxt "" "05020301.xhp\n" "par_id3145315\n" "18\n" "help.text" msgid "# ???/???" -msgstr "" +msgstr "# ???/???" #: 05020301.xhp msgctxt "" @@ -16002,13 +16014,14 @@ msgstr "" #: 05020301.xhp +#, fuzzy msgctxt "" "05020301.xhp\n" "par_id3151223\n" "25\n" "help.text" msgid "#,###" -msgstr "" +msgstr "#,###" #: 05020301.xhp msgctxt "" @@ -16020,13 +16033,14 @@ msgstr "" #: 05020301.xhp +#, fuzzy msgctxt "" "05020301.xhp\n" "par_id3153961\n" "27\n" "help.text" msgid "#," -msgstr "" +msgstr "#," #: 05020301.xhp msgctxt "" @@ -19806,13 +19820,14 @@ msgstr "" #: 05030300.xhp +#, fuzzy msgctxt "" "05030300.xhp\n" "hd_id3152933\n" "26\n" "help.text" msgid "......." -msgstr "" +msgstr "......." #: 05030300.xhp msgctxt "" @@ -19824,13 +19839,14 @@ msgstr "" #: 05030300.xhp +#, fuzzy msgctxt "" "05030300.xhp\n" "hd_id3156280\n" "28\n" "help.text" msgid "------" -msgstr "" +msgstr "------" #: 05030300.xhp msgctxt "" @@ -19842,13 +19858,14 @@ msgstr "" #: 05030300.xhp +#, fuzzy msgctxt "" "05030300.xhp\n" "hd_id3157960\n" "30\n" "help.text" msgid "______" -msgstr "" +msgstr "______" #: 05030300.xhp msgctxt "" @@ -34591,13 +34608,14 @@ msgstr "" #: 06040100.xhp +#, fuzzy msgctxt "" "06040100.xhp\n" "par_id3148576\n" "37\n" "help.text" msgid "---" -msgstr "" +msgstr "---" #: 06040100.xhp msgctxt "" @@ -34609,13 +34627,14 @@ msgstr "" #: 06040100.xhp +#, fuzzy msgctxt "" "06040100.xhp\n" "par_id3154472\n" "39\n" "help.text" msgid "___" -msgstr "" +msgstr "___" #: 06040100.xhp msgctxt "" @@ -34645,13 +34664,14 @@ msgstr "" #: 06040100.xhp +#, fuzzy msgctxt "" "06040100.xhp\n" "par_id3148647\n" "43\n" "help.text" msgid "***" -msgstr "" +msgstr "***" #: 06040100.xhp msgctxt "" @@ -34681,13 +34701,14 @@ msgstr "" #: 06040100.xhp +#, fuzzy msgctxt "" "06040100.xhp\n" "par_id3145591\n" "47\n" "help.text" msgid "###" -msgstr "" +msgstr "###" #: 06040100.xhp msgctxt "" @@ -41154,13 +41175,14 @@ 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 "" @@ -41172,13 +41194,14 @@ 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 "" @@ -41190,13 +41213,14 @@ 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 "" @@ -41208,13 +41232,14 @@ 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 "" @@ -41226,13 +41251,14 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/uk/helpcontent2/source/text/shared/02.po libreoffice-5.1.2~rc2/translations/source/uk/helpcontent2/source/text/shared/02.po --- libreoffice-5.1.1~rc2/translations/source/uk/helpcontent2/source/text/shared/02.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/uk/helpcontent2/source/text/shared/02.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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:41+0000\n" -"Last-Translator: Olexandr Pylypchuk <pilipchukap@rambler.ru>\n" +"PO-Revision-Date: 2016-03-04 08:17+0000\n" +"Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: uk\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "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: 1449790863.000000\n" +"X-POOTLE-MTIME: 1457079465.000000\n" #: 01110000.xhp msgctxt "" @@ -6040,13 +6040,14 @@ msgstr "" #: 01170102.xhp +#, fuzzy msgctxt "" "01170102.xhp\n" "par_id3153109\n" "26\n" "help.text" msgid "\"\"" -msgstr "" +msgstr "\"\"" #: 01170102.xhp msgctxt "" @@ -13859,13 +13860,14 @@ msgstr "" #: 12070100.xhp +#, fuzzy msgctxt "" "12070100.xhp\n" "hd_id3163802\n" "6\n" "help.text" msgid ">" -msgstr "" +msgstr ">" #: 12070100.xhp msgctxt "" @@ -13877,13 +13879,14 @@ msgstr "" #: 12070100.xhp +#, fuzzy msgctxt "" "12070100.xhp\n" "hd_id3149732\n" "7\n" "help.text" msgid "<" -msgstr "" +msgstr "<" #: 12070100.xhp msgctxt "" @@ -14172,13 +14175,14 @@ msgstr "" #: 12070200.xhp +#, fuzzy msgctxt "" "12070200.xhp\n" "hd_id3152551\n" "4\n" "help.text" msgid ">" -msgstr "" +msgstr ">" #: 12070200.xhp msgctxt "" @@ -15676,13 +15680,14 @@ msgstr "Приклад" #: 12100200.xhp +#, fuzzy msgctxt "" "12100200.xhp\n" "par_id3158411\n" "42\n" "help.text" msgid "?" -msgstr "" +msgstr "?" #: 12100200.xhp msgctxt "" @@ -15712,13 +15717,14 @@ msgstr "" #: 12100200.xhp +#, fuzzy msgctxt "" "12100200.xhp\n" "par_id3148803\n" "45\n" "help.text" msgid "*" -msgstr "" +msgstr "*" #: 12100200.xhp msgctxt "" @@ -15802,40 +15808,44 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/uk/helpcontent2/source/text/shared/autopi.po libreoffice-5.1.2~rc2/translations/source/uk/helpcontent2/source/text/shared/autopi.po --- libreoffice-5.1.1~rc2/translations/source/uk/helpcontent2/source/text/shared/autopi.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/uk/helpcontent2/source/text/shared/autopi.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\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-20 17:38+0000\n" -"Last-Translator: Olexandr Pylypchuk <pilipchukap@rambler.ru>\n" +"PO-Revision-Date: 2016-03-04 08:28+0000\n" +"Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: uk\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "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: 1453311528.000000\n" +"X-POOTLE-MTIME: 1457080137.000000\n" #: 01000000.xhp msgctxt "" @@ -3422,13 +3422,14 @@ 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 @@ 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 @@ msgstr "" #: 01090100.xhp +#, fuzzy msgctxt "" "01090100.xhp\n" "par_idN1074A\n" "help.text" msgid "^" -msgstr "" +msgstr "^" #: 01090100.xhp msgctxt "" @@ -4524,13 +4527,14 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/uk/helpcontent2/source/text/shared/explorer/database.po libreoffice-5.1.2~rc2/translations/source/uk/helpcontent2/source/text/shared/explorer/database.po --- libreoffice-5.1.1~rc2/translations/source/uk/helpcontent2/source/text/shared/explorer/database.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/uk/helpcontent2/source/text/shared/explorer/database.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\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-19 05:57+0000\n" -"Last-Translator: Ðндрій Бандура <andriykopanytsia@gmail.com>\n" +"PO-Revision-Date: 2016-03-04 08:38+0000\n" +"Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: uk\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "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: 1450504644.000000\n" +"X-POOTLE-MTIME: 1457080729.000000\n" #: 02000000.xhp msgctxt "" @@ -1733,13 +1733,14 @@ 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 @@ 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 @@ msgstr "" #: 02010100.xhp +#, fuzzy msgctxt "" "02010100.xhp\n" "par_id3147270\n" "51\n" "help.text" msgid "<" -msgstr "" +msgstr "<" #: 02010100.xhp msgctxt "" @@ -2792,13 +2795,14 @@ msgstr "" #: 02010100.xhp +#, fuzzy msgctxt "" "02010100.xhp\n" "par_id3150997\n" "239\n" "help.text" msgid "." -msgstr "" +msgstr "." #: 02010100.xhp msgctxt "" @@ -6229,13 +6233,14 @@ msgstr "" #: 11030100.xhp +#, fuzzy msgctxt "" "11030100.xhp\n" "hd_id3156152\n" "6\n" "help.text" msgid "<" -msgstr "" +msgstr "<" #: 11030100.xhp msgctxt "" @@ -6265,13 +6270,14 @@ msgstr "" #: 11030100.xhp +#, fuzzy msgctxt "" "11030100.xhp\n" "hd_id3149579\n" "8\n" "help.text" msgid ">" -msgstr "" +msgstr ">" #: 11030100.xhp msgctxt "" @@ -12417,12 +12423,13 @@ msgstr "" #: querywizard04.xhp +#, fuzzy msgctxt "" "querywizard04.xhp\n" "par_idN105F1\n" "help.text" msgid "-" -msgstr "" +msgstr "-" #: querywizard04.xhp msgctxt "" @@ -14441,12 +14448,13 @@ msgstr "" #: tablewizard02.xhp +#, fuzzy msgctxt "" "tablewizard02.xhp\n" "par_idN10574\n" "help.text" msgid "-" -msgstr "" +msgstr "-" #: tablewizard02.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/uk/helpcontent2/source/text/shared/optionen.po libreoffice-5.1.2~rc2/translations/source/uk/helpcontent2/source/text/shared/optionen.po --- libreoffice-5.1.1~rc2/translations/source/uk/helpcontent2/source/text/shared/optionen.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/uk/helpcontent2/source/text/shared/optionen.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "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-12-09 19:31+0000\n" -"Last-Translator: Olexandr Pylypchuk <pilipchukap@rambler.ru>\n" +"PO-Revision-Date: 2016-03-04 09:04+0000\n" +"Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: uk\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "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: 1449689518.000000\n" +"X-POOTLE-MTIME: 1457082285.000000\n" #: 01000000.xhp msgctxt "" @@ -2670,13 +2670,14 @@ 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 @@ msgstr "" #: 01010501.xhp +#, fuzzy msgctxt "" "01010501.xhp\n" "hd_id3158409\n" "13\n" "help.text" msgid "-->" -msgstr "" +msgstr "-->" #: 01010501.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/uk/helpcontent2/source/text/swriter/01.po libreoffice-5.1.2~rc2/translations/source/uk/helpcontent2/source/text/swriter/01.po --- libreoffice-5.1.1~rc2/translations/source/uk/helpcontent2/source/text/swriter/01.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/uk/helpcontent2/source/text/swriter/01.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\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-25 17:03+0000\n" -"Last-Translator: Olexandr Pylypchuk <pilipchukap@rambler.ru>\n" +"PO-Revision-Date: 2016-03-04 09:59+0000\n" +"Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: uk\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "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: 1453741417.000000\n" +"X-POOTLE-MTIME: 1457085568.000000\n" #: 01120000.xhp msgctxt "" @@ -10887,13 +10887,14 @@ msgstr "" #: 04120201.xhp +#, fuzzy msgctxt "" "04120201.xhp\n" "hd_id3145418\n" "32\n" "help.text" msgid "<" -msgstr "" +msgstr "<" #: 04120201.xhp msgctxt "" @@ -27565,12 +27566,13 @@ msgstr "" #: mm_cusaddfie.xhp +#, fuzzy msgctxt "" "mm_cusaddfie.xhp\n" "par_idN10570\n" "help.text" msgid ">" -msgstr "" +msgstr ">" #: mm_cusaddfie.xhp msgctxt "" @@ -27581,12 +27583,13 @@ msgstr "" #: mm_cusaddfie.xhp +#, fuzzy msgctxt "" "mm_cusaddfie.xhp\n" "par_idN10577\n" "help.text" msgid "<" -msgstr "" +msgstr "<" #: mm_cusaddfie.xhp msgctxt "" @@ -27773,12 +27776,13 @@ msgstr "" #: mm_cusgrelin.xhp +#, fuzzy msgctxt "" "mm_cusgrelin.xhp\n" "par_idN10558\n" "help.text" msgid ">" -msgstr "" +msgstr ">" #: mm_cusgrelin.xhp msgctxt "" @@ -27789,12 +27793,13 @@ msgstr "" #: mm_cusgrelin.xhp +#, fuzzy msgctxt "" "mm_cusgrelin.xhp\n" "par_idN1055F\n" "help.text" msgid "<" -msgstr "" +msgstr "<" #: mm_cusgrelin.xhp msgctxt "" @@ -28229,12 +28234,13 @@ msgstr "" #: mm_newaddblo.xhp +#, fuzzy msgctxt "" "mm_newaddblo.xhp\n" "par_idN10570\n" "help.text" msgid ">" -msgstr "" +msgstr ">" #: mm_newaddblo.xhp msgctxt "" @@ -28245,12 +28251,13 @@ msgstr "" #: mm_newaddblo.xhp +#, fuzzy msgctxt "" "mm_newaddblo.xhp\n" "par_idN10577\n" "help.text" msgid "<" -msgstr "" +msgstr "<" #: mm_newaddblo.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/uk/helpcontent2/source/text/swriter/guide.po libreoffice-5.1.2~rc2/translations/source/uk/helpcontent2/source/text/swriter/guide.po --- libreoffice-5.1.1~rc2/translations/source/uk/helpcontent2/source/text/swriter/guide.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/uk/helpcontent2/source/text/swriter/guide.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\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-23 20:18+0000\n" -"Last-Translator: Olexandr Pylypchuk <pilipchukap@rambler.ru>\n" +"PO-Revision-Date: 2016-03-04 10:14+0000\n" +"Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: uk\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "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: 1456258729.000000\n" +"X-POOTLE-MTIME: 1457086456.000000\n" #: anchor_object.xhp msgctxt "" @@ -6893,7 +6893,7 @@ "23\n" "help.text" msgid "Type a name for the variable in the <item type=\"menuitem\">Name</item> box, for example, <item type=\"literal\">Hide</item>." -msgstr "Введіть в полі <item type=\"menuitem\">Ім'Ñ</item> ім'Ñ Ð·Ð¼Ñ–Ð½Ð½Ð¾Ñ—, наприклад, <item type=\"literal\">ПрихованнÑ</item>." +msgstr "Введіть у полі <item type=\"menuitem\">Ðазва</item> назву змінної, наприклад, <item type=\"literal\">ПрихованнÑ</item>." #: hidden_text.xhp msgctxt "" @@ -9253,7 +9253,7 @@ "31\n" "help.text" msgid "To go to a specific bookmark in your document, <switchinline select=\"sys\"><caseinline select=\"MAC\">hold down Ctrl and click </caseinline><defaultinline>right-click</defaultinline></switchinline> in the <emph>Page</emph> field on the <emph>Status Bar</emph>, and then choose the bookmark." -msgstr "Щоб перейти до певної закладки в документі, <switchinline select=\"sys\"><caseinline select=\"MAC\">натиÑніть Ñ– утримуйте клавішу CTRL Ñ– клацніть </caseinline><defaultinline>клацніть правою кнопкою миші</defaultinline></switchinline> поле <emph>Сторінка</emph> <emph>Ñ€Ñдок Ñтану</emph>, піÑÐ»Ñ Ñ‡Ð¾Ð³Ð¾ виберіть закладку." +msgstr "Щоб перейти до певної закладки в документі, <switchinline select=\"sys\"><caseinline select=\"MAC\">натиÑніть Ñ– утримуйте клавішу CTRL Ñ– клацніть </caseinline><defaultinline>клацніть правою кнопкою</defaultinline></switchinline> поле <emph>Сторінка</emph> у <emph>Ñ€Ñдку Ñтану</emph>, піÑÐ»Ñ Ñ‡Ð¾Ð³Ð¾ виберіть закладку." #: jump2statusbar.xhp msgctxt "" @@ -10881,7 +10881,7 @@ "par_id2632831\n" "help.text" msgid "Choose <emph>Format - Paragraph - Text flow</emph>." -msgstr "Виберіть <emph>Формат - Ðбзац - ÐŸÐ¾Ð»Ð¾Ð¶ÐµÐ½Ð½Ñ Ð½Ð° Ñторінці</emph>." +msgstr "Виберіть <emph>Формат - Ðбзац - Ð Ð¾Ð·Ñ‚Ð°ÑˆÑƒÐ²Ð°Ð½Ð½Ñ Ñ‚ÐµÐºÑту</emph>." #: pagenumbers.xhp msgctxt "" @@ -16366,7 +16366,7 @@ "65\n" "help.text" msgid "A text frame is a container for text and graphics that you can place anywhere on a page. You can also use a frame to apply a column layout to text." -msgstr "" +msgstr "Рамка - це вміÑтилище Ð´Ð»Ñ Ñ‚ÐµÐºÑту Ñ– графічних об'єктів, Ñке можна розташувати в будь-Ñкому міÑці Ñторінки. Також рамку можна викориÑтовувати Ð´Ð»Ñ Ñ€Ð¾Ð·Ð¼Ñ–Ñ‰ÐµÐ½Ð½Ñ Ñ‚ÐµÐºÑту в колонках." #: text_frame.xhp msgctxt "" @@ -16375,7 +16375,7 @@ "64\n" "help.text" msgid "To Insert a Text Frame" -msgstr "" +msgstr "Ð’ÑтавлÑÐ½Ð½Ñ Ñ€Ð°Ð¼ÐºÐ¸" #: text_frame.xhp msgctxt "" @@ -16393,7 +16393,7 @@ "9\n" "help.text" msgid "Choose <emph>Insert - Frame</emph>, and click OK." -msgstr "" +msgstr "Виберіть команду <emph>Ð’Ñтавка - Рамка</emph> Ñ– натиÑніть кнопку \"Гаразд\"." #: text_frame.xhp msgctxt "" @@ -16402,7 +16402,7 @@ "66\n" "help.text" msgid "To Edit a Text Frame" -msgstr "" +msgstr "Ð ÐµÐ´Ð°Ð³ÑƒÐ²Ð°Ð½Ð½Ñ Ñ€Ð°Ð¼ÐºÐ¸" #: text_frame.xhp msgctxt "" @@ -16411,7 +16411,7 @@ "16\n" "help.text" msgid "To edit the contents of a text frame, click in the frame, and make the changes that you want." -msgstr "" +msgstr "Щоб змінити вміÑÑ‚ текÑтової рамки, клацніть вÑередині неї Ñ– внеÑÑ–Ñ‚ÑŒ потрібні зміни." #: text_frame.xhp msgctxt "" @@ -16420,7 +16420,7 @@ "14\n" "help.text" msgid "To edit a frame, select the frame, right-click, and then choose a formatting option. You can also right-click the selected frame, and choose <emph>Frame</emph>." -msgstr "" +msgstr "Щоб змінити рамку, виділіть Ñ—Ñ—, клацніть правою кнопкою миші Ñ– виберіть параметр форматуваннÑ. Також можна клацнути вибрану рамку правою кнопкою миші Ñ– вибрати команду <emph>Рамка</emph>." #: text_frame.xhp msgctxt "" @@ -16429,7 +16429,7 @@ "63\n" "help.text" msgid "To resize a text frame, click an edge of the frame, and drag one of the edges or corners of the frame. Hold down Shift while you drag to maintain the proportion of the frame." -msgstr "" +msgstr "Ð”Ð»Ñ Ð·Ð¼Ñ–Ð½Ð¸ розміру рамки клацніть Ñ—Ñ— край Ñ– перетÑгніть край або кут рамки. Ð”Ð»Ñ Ð·Ð±ÐµÑ€ÐµÐ¶ÐµÐ½Ð½Ñ Ð¿Ñ€Ð¾Ð¿Ð¾Ñ€Ñ†Ñ–Ð¹ рамки, при перетÑгуванні натиÑніть Ñ– утримуйте клавішу Shift." #: text_frame.xhp msgctxt "" @@ -16438,7 +16438,7 @@ "98\n" "help.text" msgid "To Hide Text From Printing" -msgstr "" +msgstr "ÐŸÑ€Ð¸Ñ…Ð¾Ð²ÑƒÐ²Ð°Ð½Ð½Ñ Ñ‚ÐµÐºÑту під Ñ‡Ð°Ñ Ð´Ñ€ÑƒÐºÑƒ" #: text_frame.xhp msgctxt "" @@ -16447,7 +16447,7 @@ "99\n" "help.text" msgid "Any Writer text frame can be set to a mode which allows viewing the text on screen, but hides the text from printing." -msgstr "" +msgstr "Ð”Ð»Ñ Ð±ÑƒÐ´ÑŒ-Ñкої рамки Writer можна задати режим, при Ñкому Ñ—Ñ— вміÑÑ‚ показуєтьÑÑ Ð½Ð° екрані, але ховаєтьÑÑ Ð¿Ñ€Ð¸ друку." #: text_frame.xhp msgctxt "" @@ -16456,7 +16456,7 @@ "100\n" "help.text" msgid "Select the text frame (you see the eight handles)." -msgstr "" +msgstr "Виділіть рамку (ви побачите віÑім маркерів)." #: text_frame.xhp msgctxt "" @@ -16474,7 +16474,7 @@ "102\n" "help.text" msgid "In the <emph>Properties</emph> area, unmark the <emph>Print</emph> check box and click <emph>OK</emph>." -msgstr "" +msgstr "Ð’ ділÑнці <emph>ВлаÑтивоÑÑ‚Ñ–</emph> зніміть прапорець <emph>Друк</emph> Ñ– натиÑніть кнопку <emph>Гаразд</emph>." #: text_frame.xhp msgctxt "" @@ -16483,7 +16483,7 @@ "83\n" "help.text" msgid "To Link Text Frames" -msgstr "" +msgstr "Зв'ÑÐ·ÑƒÐ²Ð°Ð½Ð½Ñ Ñ€Ð°Ð¼Ð¾Ðº" #: text_frame.xhp msgctxt "" @@ -16492,7 +16492,7 @@ "84\n" "help.text" msgid "You can link Writer text frames so that their contents automatically flow from one frame to another." -msgstr "" +msgstr "Можна зв'Ñзати рамки Writer, Ñ– Ñ—Ñ… вміÑÑ‚ буде автоматично переходити з однієї рамки в іншу." #: text_frame.xhp msgctxt "" @@ -16501,7 +16501,7 @@ "71\n" "help.text" msgid "Click the edge of a frame that you want to link. Selection handles appear on the edges of the frame." -msgstr "" +msgstr "Клацніть край рамки, Ñку потрібно зв'Ñзати. По краÑÑ… рамки з'ÑвлÑÑŽÑ‚ÑŒÑÑ Ð¼Ð°Ñ€ÐºÐµÑ€Ð¸ вибору." #: text_frame.xhp msgctxt "" @@ -16510,7 +16510,7 @@ "87\n" "help.text" msgid "On the <item type=\"menuitem\">Frame</item> Bar, click the <item type=\"menuitem\">Link Frames</item> icon <image id=\"img_id3148968\" src=\"cmd/sc_chainframes.png\" width=\"0.222in\" height=\"0.222in\"><alt id=\"alt_id3148968\">Icon</alt></image>." -msgstr "" +msgstr "Ðа панелі <item type=\"menuitem\">Рамка</item> клацніть значок <item type=\"menuitem\">Зв'Ñзати рамки</item> <image id=\"img_id3148968\" src=\"cmd/sc_chainframes.png\" width=\"0.222in\" height=\"0.222in\"><alt id=\"alt_id3148968\">Піктограма</alt></image>." #: text_frame.xhp msgctxt "" @@ -16519,7 +16519,7 @@ "89\n" "help.text" msgid "Click the frame that you want to link to." -msgstr "" +msgstr "Клацніть рамку, з Ñкою потрібно зв'Ñзати першу." #: text_frame.xhp msgctxt "" @@ -16528,7 +16528,7 @@ "75\n" "help.text" msgid "You can only link frames if:" -msgstr "" +msgstr "Рамки можна пов'Ñзати лише тоді, коли:" #: text_frame.xhp msgctxt "" @@ -16537,7 +16537,7 @@ "76\n" "help.text" msgid "The target frame is empty." -msgstr "" +msgstr "Кінцева рамка порожнÑ." #: text_frame.xhp msgctxt "" @@ -16546,7 +16546,7 @@ "77\n" "help.text" msgid "The target frame is not linked to another frame." -msgstr "" +msgstr "Кінцева рамка не зв'Ñзана з іншою рамкою." #: text_frame.xhp msgctxt "" @@ -16555,7 +16555,7 @@ "78\n" "help.text" msgid "The source and the target frames are in the same section. For example, you cannot link a header frame to a footer frame." -msgstr "" +msgstr "Вихідна Ñ– кінцева рамки повинні знаходитиÑÑ Ð² одному розділі. Ðаприклад, не можна пов'Ñзати рамку з верхнього колонтитула з рамкою з нижнього колонтитула." #: text_frame.xhp msgctxt "" @@ -16564,7 +16564,7 @@ "79\n" "help.text" msgid "The source frame does not have a next link." -msgstr "" +msgstr "У вихідної рамки не повинно бути іншого вихідного зв'Ñзку." #: text_frame.xhp msgctxt "" @@ -16573,7 +16573,7 @@ "81\n" "help.text" msgid "The target or the source frame are not contained in each other." -msgstr "" +msgstr "Вихідна Ñ– кінцева рамки не повинні міÑтити в Ñобі одна іншу." #: text_frame.xhp msgctxt "" @@ -16582,7 +16582,7 @@ "90\n" "help.text" msgid "When you select a linked frame, a line is displayed that connects the linked frames." -msgstr "" +msgstr "При виборі пов'Ñзаної рамки з'ÑвлÑєтьÑÑ Ð»Ñ–Ð½Ñ–Ñ, що з'єднує рамки." #: text_frame.xhp msgctxt "" @@ -16590,7 +16590,7 @@ "par_id5853144\n" "help.text" msgid "The AutoSize feature is available only for the last frame in a chain of linked frames." -msgstr "" +msgstr "Ð¤ÑƒÐ½ÐºÑ†Ñ–Ñ Ð°Ð²Ñ‚Ð¾Ð¿Ñ–Ð´Ð±Ð¾Ñ€Ñƒ розміру доÑтупна тільки Ð´Ð»Ñ Ð¾Ñтанньої рамки в ланцюжку пов'Ñзаних рамок." #: text_nav_keyb.xhp msgctxt "" @@ -16598,7 +16598,7 @@ "tit\n" "help.text" msgid "Navigating and Selecting With the Keyboard" -msgstr "" +msgstr "ÐŸÐµÑ€ÐµÐ¼Ñ–Ñ‰ÐµÐ½Ð½Ñ Ñ– вибір за допомогою клавіатури" #: text_nav_keyb.xhp msgctxt "" @@ -16606,7 +16606,7 @@ "bm_id3159260\n" "help.text" msgid "<bookmark_value>text; navigating and selecting with keyboard</bookmark_value> <bookmark_value>navigating; in text, with keyboard</bookmark_value> <bookmark_value>selecting;text, with keyboard</bookmark_value> <bookmark_value>keyboard; navigating and selecting in text</bookmark_value>" -msgstr "" +msgstr "<bookmark_value>текÑÑ‚; Ð¿ÐµÑ€ÐµÐ¼Ñ–Ñ‰ÐµÐ½Ð½Ñ Ñ– вибір за допомогою клавіатури</bookmark_value> <bookmark_value>переміщеннÑ; у текÑÑ‚Ñ–, за допомогою клавіатури</bookmark_value> <bookmark_value>вибір;текÑÑ‚, за допомогою клавіатури</bookmark_value> <bookmark_value>клавіатура; Ð¿ÐµÑ€ÐµÐ¼Ñ–Ñ‰ÐµÐ½Ð½Ñ Ñƒ текÑÑ‚Ñ– Ñ– вибір текÑту</bookmark_value>" #: text_nav_keyb.xhp msgctxt "" @@ -16615,7 +16615,7 @@ "33\n" "help.text" msgid "<variable id=\"text_nav_keyb\"><link href=\"text/swriter/guide/text_nav_keyb.xhp\" name=\"Navigating and Selecting With the Keyboard\">Navigating and Selecting With the Keyboard</link></variable>" -msgstr "" +msgstr "<variable id=\"text_nav_keyb\"><link href=\"text/swriter/guide/text_nav_keyb.xhp\" name=\"ÐŸÐµÑ€ÐµÐ¼Ñ–Ñ‰ÐµÐ½Ð½Ñ Ñ– вибір за допомогою клавіатури\">ÐŸÐµÑ€ÐµÐ¼Ñ–Ñ‰ÐµÐ½Ð½Ñ Ñ– вибір за допомогою клавіатури</link></variable>" #: text_nav_keyb.xhp msgctxt "" @@ -16624,7 +16624,7 @@ "13\n" "help.text" msgid "You can navigate through a document and make selections with the keyboard." -msgstr "" +msgstr "Можна переміщатиÑÑ Ð¿Ð¾ документу Ñ– вибирати фрагменти за допомогою клавіатури." #: text_nav_keyb.xhp msgctxt "" @@ -16632,7 +16632,7 @@ "par_id1031200810571916\n" "help.text" msgid "To move the cursor, press the key or key combination given in the following table." -msgstr "" +msgstr "Щоб переміÑтити курÑор, натиÑніть клавішу або комбінацію клавіш з наведеної таблиці." #: text_nav_keyb.xhp msgctxt "" @@ -16640,7 +16640,7 @@ "par_id1031200810571929\n" "help.text" msgid "To select the characters under the moving cursor, additionally hold down the Shift key when you move the cursor." -msgstr "" +msgstr "Щоб вибрати Ñимволи під рухомим курÑором, при переміщенні курÑора утримуйте Shift." #: text_nav_keyb.xhp msgctxt "" @@ -16649,7 +16649,7 @@ "23\n" "help.text" msgid "Key" -msgstr "" +msgstr "Клавіші" #: text_nav_keyb.xhp msgctxt "" @@ -16667,7 +16667,7 @@ "25\n" "help.text" msgid "<emph>+</emph><switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>Command key</emph></caseinline><defaultinline><emph>Ctrl key</emph></defaultinline></switchinline>" -msgstr "" +msgstr "<emph>+</emph> клавіша <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>Command</emph></caseinline><defaultinline><emph>Ctrl</emph></defaultinline></switchinline>" #: text_nav_keyb.xhp msgctxt "" @@ -16676,7 +16676,7 @@ "26\n" "help.text" msgid "Right, left arrow keys" -msgstr "" +msgstr "Стрілка вправо або вліво" #: text_nav_keyb.xhp msgctxt "" @@ -16685,7 +16685,7 @@ "27\n" "help.text" msgid "Moves the cursor one character to the left or to the right." -msgstr "" +msgstr "Переміщує курÑор на один Ñимвол вліво або вправо." #: text_nav_keyb.xhp msgctxt "" @@ -16694,7 +16694,7 @@ "28\n" "help.text" msgid "Moves the cursor one word to the left or to the right." -msgstr "" +msgstr "Переміщує курÑор на одне Ñлово вліво або вправо." #: text_nav_keyb.xhp msgctxt "" @@ -16703,7 +16703,7 @@ "29\n" "help.text" msgid "Up, down arrow keys" -msgstr "" +msgstr "Стрілка вгору або вниз" #: text_nav_keyb.xhp msgctxt "" @@ -16712,7 +16712,7 @@ "30\n" "help.text" msgid "Moves the cursor up or down one line." -msgstr "" +msgstr "Переміщує курÑор на один Ñ€Ñдок вгору або вниз. " #: text_nav_keyb.xhp msgctxt "" @@ -16721,7 +16721,7 @@ "31\n" "help.text" msgid "(<switchinline select=\"sys\"><caseinline select=\"MAC\">Command+Option</caseinline><defaultinline>Ctrl+Alt</defaultinline></switchinline>) Moves the current paragraph up or down." -msgstr "" +msgstr "(<switchinline select=\"sys\"><caseinline select=\"MAC\">Command+Option</caseinline><defaultinline>Ctrl+Alt</defaultinline></switchinline>) Переміщує поточний абзац вгору або вниз." #: text_nav_keyb.xhp msgctxt "" @@ -16739,7 +16739,7 @@ "56\n" "help.text" msgid "Moves the cursor to the beginning of the current line." -msgstr "" +msgstr "Переміщує курÑор на початок поточного Ñ€Ñдка." #: text_nav_keyb.xhp msgctxt "" @@ -16748,7 +16748,7 @@ "34\n" "help.text" msgid "Moves the cursor to the beginning of the document." -msgstr "" +msgstr "Переміщує курÑор на початок документа." #: text_nav_keyb.xhp msgctxt "" @@ -16766,7 +16766,7 @@ "36\n" "help.text" msgid "In a table" -msgstr "" +msgstr "У таблиці" #: text_nav_keyb.xhp msgctxt "" @@ -16775,7 +16775,7 @@ "37\n" "help.text" msgid "Moves the cursor to the beginning of the contents in the current cell." -msgstr "" +msgstr "Переміщує курÑор на початок вміÑту поточної комірки." #: text_nav_keyb.xhp msgctxt "" @@ -16784,7 +16784,7 @@ "38\n" "help.text" msgid "Moves the cursor to the beginning of the contents of the current cell. Press again to move the cursor to the first cell in the table. Press again to move the cursor to the beginning of the document." -msgstr "" +msgstr "Переміщує курÑор на початок вміÑту поточної комірки. Повторне натиÑÐºÐ°Ð½Ð½Ñ Ð¿ÐµÑ€ÐµÐ¼Ñ–Ñ‰ÑƒÑ” курÑор до першої комірки в таблиці. Ще одне натиÑÐºÐ°Ð½Ð½Ñ Ð¿ÐµÑ€ÐµÐ¼Ñ–Ñ‰ÑƒÑ” курÑор на початок документа." #: text_nav_keyb.xhp msgctxt "" @@ -16802,7 +16802,7 @@ "42\n" "help.text" msgid "Moves the cursor to the end of the current line." -msgstr "" +msgstr "Переміщує курÑор до ÐºÑ–Ð½Ñ†Ñ Ð¿Ð¾Ñ‚Ð¾Ñ‡Ð½Ð¾Ð³Ð¾ Ñ€Ñдка." #: text_nav_keyb.xhp msgctxt "" @@ -16811,7 +16811,7 @@ "43\n" "help.text" msgid "Moves the cursor to the end of the document" -msgstr "" +msgstr "Переміщує курÑор до ÐºÑ–Ð½Ñ†Ñ Ð´Ð¾ÐºÑƒÐ¼ÐµÐ½Ñ‚Ð°." #: text_nav_keyb.xhp msgctxt "" @@ -16829,7 +16829,7 @@ "45\n" "help.text" msgid "In a table" -msgstr "" +msgstr "Ð’ таблиці" #: text_nav_keyb.xhp msgctxt "" @@ -16838,7 +16838,7 @@ "46\n" "help.text" msgid "Moves to the end of the contents in the current cell." -msgstr "" +msgstr "Переміщує курÑор до ÐºÑ–Ð½Ñ†Ñ Ð²Ð¼Ñ–Ñту поточної комірки." #: text_nav_keyb.xhp msgctxt "" @@ -16847,7 +16847,7 @@ "47\n" "help.text" msgid "Moves the cursor to the end of the contents of the current cell. Press again to move the cursor to the last cell in the table. Press again to move the cursor to the end of the document." -msgstr "" +msgstr "Переміщує курÑор до ÐºÑ–Ð½Ñ†Ñ Ð²Ð¼Ñ–Ñту поточної комірки. Повторне натиÑÐºÐ°Ð½Ð½Ñ Ð¿ÐµÑ€ÐµÐ¼Ñ–Ñ‰ÑƒÑ” курÑор до оÑтанньої комірки в таблиці. Ще одне натиÑÐºÐ°Ð½Ð½Ñ Ð¿ÐµÑ€ÐµÐ¼Ñ–Ñ‰ÑƒÑ” курÑор в кінець документа." #: text_nav_keyb.xhp msgctxt "" @@ -16856,7 +16856,7 @@ "50\n" "help.text" msgid "PgUp" -msgstr "" +msgstr "PgUp" #: text_nav_keyb.xhp msgctxt "" @@ -16865,7 +16865,7 @@ "54\n" "help.text" msgid "Scrolls up one page." -msgstr "" +msgstr "Прокручує документ на одну Ñторінку вгору." #: text_nav_keyb.xhp msgctxt "" @@ -16874,7 +16874,7 @@ "52\n" "help.text" msgid "Moves the cursor to the header." -msgstr "" +msgstr "Переміщує курÑор до верхнього колонтитулу." #: text_nav_keyb.xhp msgctxt "" @@ -16892,7 +16892,7 @@ "51\n" "help.text" msgid "Scroll down one page." -msgstr "" +msgstr "Прокручує документ на одну Ñторінку вниз." #: text_nav_keyb.xhp msgctxt "" @@ -16901,7 +16901,7 @@ "55\n" "help.text" msgid "Moves the cursor to the footer." -msgstr "" +msgstr "Переміщує курÑор до нижнього колонтитулу." #: text_rotate.xhp msgctxt "" @@ -16909,7 +16909,7 @@ "tit\n" "help.text" msgid "Rotating Text" -msgstr "" +msgstr "ÐžÐ±ÐµÑ€Ñ‚Ð°Ð½Ð½Ñ Ñ‚ÐµÐºÑту" #: text_rotate.xhp msgctxt "" @@ -16998,7 +16998,7 @@ "74\n" "help.text" msgid "<link href=\"text/shared/02/01140000.xhp\" name=\"Show Draw Functions\">Show Draw Functions</link>" -msgstr "" +msgstr "<link href=\"text/shared/02/01140000.xhp\" name=\"Функції креÑленнÑ\">Функції креÑленнÑ</link>" #: textdoc_inframe.xhp msgctxt "" @@ -17006,7 +17006,7 @@ "tit\n" "help.text" msgid "Inserting an Entire Text Document" -msgstr "" +msgstr "Ð’ÑтавлÑÐ½Ð½Ñ Ñ†Ñ–Ð»Ð¾Ð³Ð¾ текÑтового документа" #: textdoc_inframe.xhp msgctxt "" @@ -17014,7 +17014,7 @@ "bm_id3155185\n" "help.text" msgid "<bookmark_value>sections;inserting external content</bookmark_value> <bookmark_value>text documents;merging</bookmark_value> <bookmark_value>links;inserting text documents as</bookmark_value> <bookmark_value>inserting;text documents</bookmark_value>" -msgstr "" +msgstr "<bookmark_value>розділи;вÑтавлÑÐ½Ð½Ñ Ð·Ð¾Ð²Ð½Ñ–ÑˆÐ½ÑŒÐ¾Ð³Ð¾ вміÑту</bookmark_value> <bookmark_value>текÑтові документи;об'єднаннÑ</bookmark_value> <bookmark_value>поÑиланнÑ;вÑтавлÑÐ½Ð½Ñ Ñ‚ÐµÐºÑтових документів Ñк</bookmark_value> <bookmark_value>вÑтавлÑннÑ;текÑтові документи</bookmark_value>" #: textdoc_inframe.xhp msgctxt "" @@ -17023,7 +17023,7 @@ "23\n" "help.text" msgid "<variable id=\"textdoc_inframe\"><link href=\"text/swriter/guide/textdoc_inframe.xhp\" name=\"Inserting an Entire Text Document\">Inserting an Entire Text Document</link></variable>" -msgstr "" +msgstr "<variable id=\"textdoc_inframe\"><link href=\"text/swriter/guide/textdoc_inframe.xhp\" name=\"Ð’ÑтавлÑÐ½Ð½Ñ Ñ†Ñ–Ð»Ð¾Ð³Ð¾ текÑтового документа\">Ð’ÑтавлÑÐ½Ð½Ñ Ñ†Ñ–Ð»Ð¾Ð³Ð¾ текÑтового документа</link></variable>" #: textdoc_inframe.xhp msgctxt "" @@ -17031,7 +17031,7 @@ "hd_id1812799\n" "help.text" msgid "To Insert a Text File" -msgstr "" +msgstr "Ð’ÑтавлÑÐ½Ð½Ñ Ñ‚ÐµÐºÑтового файлу" #: textdoc_inframe.xhp msgctxt "" @@ -17067,7 +17067,7 @@ "32\n" "help.text" msgid "The contents of the text document are embedded into the current document and are not updated if the source file is changed. If you want the contents to automatically update when you change the source document, insert the file as a link." -msgstr "" +msgstr "ВміÑÑ‚ текÑтового документа вбудовуєтьÑÑ Ð² поточний документ Ñ– не оновлюєтьÑÑ Ð¿Ñ€Ð¸ зміні вихідного файлу. Якщо потрібно, щоб вміÑÑ‚ автоматично оновлювавÑÑ Ð¿Ñ€Ð¸ зміні вихідного документа, вÑтавте файл Ñк поÑиланнÑ." #: textdoc_inframe.xhp msgctxt "" @@ -17076,7 +17076,7 @@ "33\n" "help.text" msgid "To Insert an Entire Text Document as a Link" -msgstr "" +msgstr "Ð’Ñтавка цілого текÑтового документа у виглÑді поÑиланнÑ" #: textdoc_inframe.xhp msgctxt "" @@ -17103,7 +17103,7 @@ "36\n" "help.text" msgid "Type a name in the <emph>New Section</emph> box, and then select the <emph>Link</emph> check box." -msgstr "" +msgstr "Введіть назву у поле <emph>Ðовий розділ</emph> Ñ– вÑтановіть прапорець <emph>ПоÑиланнÑ</emph>." #: textdoc_inframe.xhp msgctxt "" @@ -17112,7 +17112,7 @@ "37\n" "help.text" msgid "In the <item type=\"menuitem\">File Name</item> box, type the name of the file that you want to insert, or click the browse button (<item type=\"menuitem\">...</item>) and locate the file." -msgstr "" +msgstr "У поле <item type=\"menuitem\">Ðазва файлу</item> введіть ім'Ñ Ñ„Ð°Ð¹Ð»Ñƒ, Ñкий потрібно вÑтавити, або натиÑніть кнопку оглÑду (<item type=\"menuitem\">...</item>) Ñ– виконайте пошук файлу." #: textdoc_inframe.xhp msgctxt "" @@ -17121,7 +17121,7 @@ "38\n" "help.text" msgid "If the target text document contains sections, you can select the section that you want to insert in the <item type=\"menuitem\">Sections</item> box." -msgstr "" +msgstr "За наÑвноÑÑ‚Ñ– розділів у цільовому текÑтовому документі можна вибрати розділ Ð´Ð»Ñ Ð²ÑтавлÑÐ½Ð½Ñ Ñƒ полі <item type=\"menuitem\">Розділ</item>." #: textdoc_inframe.xhp msgctxt "" @@ -17130,7 +17130,7 @@ "39\n" "help.text" msgid "If you want, set the formatting options for the section." -msgstr "" +msgstr "При необхідноÑÑ‚Ñ– задайте Ð´Ð»Ñ Ñ€Ð¾Ð·Ð´Ñ–Ð»Ñƒ параметри форматуваннÑ." #: textdoc_inframe.xhp msgctxt "" @@ -17148,7 +17148,7 @@ "41\n" "help.text" msgid "$[officename] automatically updates the contents of the inserted section whenever the source document is changed. To manually update the contents of the section, choose <emph>Tools - Update - Update All</emph>." -msgstr "" +msgstr "$[officename] буде автоматично оновлювати вміÑÑ‚ вÑтавленого розділу при кожній зміні вихідного документа. Щоб оновити вміÑÑ‚ розділу вручну, виберіть команду <emph>ЗаÑоби - Оновити - Оновити вÑе</emph>." #: using_hyphen.xhp msgctxt "" @@ -17164,7 +17164,7 @@ "bm_id3149695\n" "help.text" msgid "<bookmark_value>hyphenation;manual/automatic</bookmark_value> <bookmark_value>separation, see hyphenation</bookmark_value> <bookmark_value>automatic hyphenation in text</bookmark_value> <bookmark_value>manual hyphenation in text</bookmark_value>" -msgstr "" +msgstr "<bookmark_value>розÑтавлÑÐ½Ð½Ñ Ð¿ÐµÑ€ÐµÐ½Ð¾Ñів;вручну/автоматично</bookmark_value> <bookmark_value>розділеннÑ, див. розÑтавлÑÐ½Ð½Ñ Ð¿ÐµÑ€ÐµÐ½Ð¾Ñів</bookmark_value> <bookmark_value>автоматичне розÑтавлÑÐ½Ð½Ñ Ð¿ÐµÑ€ÐµÐ½Ð¾Ñів у текÑÑ‚Ñ–</bookmark_value> <bookmark_value>розÑтавлÑÐ½Ð½Ñ Ð¿ÐµÑ€ÐµÐ½Ð¾Ñів у текÑÑ‚Ñ– вручну</bookmark_value>" #: using_hyphen.xhp msgctxt "" @@ -17173,7 +17173,7 @@ "20\n" "help.text" msgid "<variable id=\"using_hyphen\"><link href=\"text/swriter/guide/using_hyphen.xhp\" name=\"Hyphenation\">Hyphenation</link></variable>" -msgstr "" +msgstr "<variable id=\"using_hyphen\"><link href=\"text/swriter/guide/using_hyphen.xhp\" name=\"РозÑтавлÑÐ½Ð½Ñ Ð¿ÐµÑ€ÐµÐ½Ð¾Ñів\">РозÑтавлÑÐ½Ð½Ñ Ð¿ÐµÑ€ÐµÐ½Ð¾Ñів</link></variable>" #: using_hyphen.xhp msgctxt "" @@ -17182,7 +17182,7 @@ "31\n" "help.text" msgid "By default, $[officename] moves words that do not fit on a line to the next line. If you want, you can use automatic or manual hyphenation to avoid this behavior:" -msgstr "" +msgstr "Типово $[officename] переміщує Ñлова, Ñкі не поміщаютьÑÑ Ñƒ поточному Ñ€Ñдку, у наÑтупний. При необхідноÑÑ‚Ñ– можна замінити цю дію на автоматичне або ручне розÑтавлÑÐ½Ð½Ñ Ð¿ÐµÑ€ÐµÐ½Ð¾Ñів:" #: using_hyphen.xhp msgctxt "" @@ -17191,7 +17191,7 @@ "30\n" "help.text" msgid "Automatic Hyphenation" -msgstr "" +msgstr "Ðвтоматичне розÑтавлÑÐ½Ð½Ñ Ð¿ÐµÑ€ÐµÐ½Ð¾Ñів" #: using_hyphen.xhp msgctxt "" @@ -17200,7 +17200,7 @@ "22\n" "help.text" msgid "Automatic hyphenation inserts hyphens where they are needed in a paragraph. This option is only available for paragraph styles and individual paragraphs." -msgstr "" +msgstr "При автоматичному розÑтавлÑнні переноÑи вÑтавлÑÑŽÑ‚ÑŒÑÑ Ñƒ потрібних міÑцÑÑ… абзацу. Ð¦Ñ Ð¼Ð¾Ð¶Ð»Ð¸Ð²Ñ–ÑÑ‚ÑŒ доÑтупна тільки Ð´Ð»Ñ Ñтилів абзацу та окремих абзаців." #: using_hyphen.xhp msgctxt "" @@ -17209,7 +17209,7 @@ "51\n" "help.text" msgid "To Automatically Hyphenate Text in a Paragraph" -msgstr "" +msgstr "Ðвтоматичне розÑтавлÑÐ½Ð½Ñ Ð¿ÐµÑ€ÐµÐ½Ð¾Ñів в абзаці" #: using_hyphen.xhp msgctxt "" @@ -17218,7 +17218,7 @@ "32\n" "help.text" msgid "Right-click in a paragraph, and choose <emph>Paragraph</emph>." -msgstr "" +msgstr "Клацніть абзац правою кнопкою Ñ– виберіть команду <emph>Ðбзац</emph>." #: using_hyphen.xhp msgctxt "" @@ -17236,7 +17236,7 @@ "35\n" "help.text" msgid "In the Hyphenation area, select the Automatically check box." -msgstr "" +msgstr "Ð’ облаÑÑ‚Ñ– \"РозÑтавлÑÐ½Ð½Ñ Ð¿ÐµÑ€ÐµÐ½Ð¾Ñів\" вÑтановіть прапорець \"Ðвтоматичний переноÑ\"." #: using_hyphen.xhp msgctxt "" @@ -17254,7 +17254,7 @@ "53\n" "help.text" msgid "To Automatically Hyphenate Text in Multiple Paragraphs" -msgstr "" +msgstr "Ðвтоматичне розÑтавлÑÐ½Ð½Ñ Ð¿ÐµÑ€ÐµÐ½Ð¾Ñів у декількох абзацах" #: using_hyphen.xhp msgctxt "" @@ -17263,7 +17263,7 @@ "33\n" "help.text" msgid "If you want to automatically hyphenate more than one paragraph, use a paragraph style." -msgstr "" +msgstr "Щоб автоматично розÑтавити переноÑи у двох Ñ– більше абзацах, викориÑтовуйте Ñтиль абзацу." #: using_hyphen.xhp msgctxt "" @@ -17272,7 +17272,7 @@ "48\n" "help.text" msgid "For example, enable the automatic hyphenation option for the \"Default\" paragraph style, and then apply the style to the paragraphs that you want to hyphenate." -msgstr "" +msgstr "Ðаприклад, автоматичне розÑтавлÑÐ½Ð½Ñ Ð¿ÐµÑ€ÐµÐ½Ð¾Ñів Ð´Ð»Ñ Ñтилю абзацу \"Типовий Ñтиль\", а потім заÑтоÑуйте цей Ñтиль до абзаців, де потрібно розÑтавити переноÑи." #: using_hyphen.xhp msgctxt "" @@ -17299,7 +17299,7 @@ "56\n" "help.text" msgid "Click the Text Flow tab." -msgstr "Відкрийте вкладку \"ÐŸÐ¾Ð»Ð¾Ð¶ÐµÐ½Ð½Ñ Ð½Ð° Ñторінці\"." +msgstr "Відкрийте вкладку \"Ð Ð¾Ð·Ñ‚Ð°ÑˆÑƒÐ²Ð°Ð½Ð½Ñ Ñ‚ÐµÐºÑту\"." #: using_hyphen.xhp msgctxt "" @@ -17352,7 +17352,7 @@ "hd_id6587651\n" "help.text" msgid "To Manually Hyphenate Single Words" -msgstr "" +msgstr "РозÑтавлÑÐ½Ð½Ñ Ð¿ÐµÑ€ÐµÐ½Ð¾Ñів окремих Ñлів вручну" #: using_hyphen.xhp msgctxt "" @@ -17361,7 +17361,7 @@ "24\n" "help.text" msgid "To quickly insert a hyphen, click in the word where you want to add the hyphen, and then press <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Hyphen(-)." -msgstr "" +msgstr "Щоб швидко поÑтавити переноÑ, клацніть по Ñлову, в Ñкому ви хочете вÑтавити переноÑ, а потім натиÑніть <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+дефіÑ(-)." #: using_hyphen.xhp msgctxt "" @@ -17370,7 +17370,7 @@ "37\n" "help.text" msgid "If you insert a manual hyphen in a word, the word is only hyphenated at the manual hyphen. No additional automatic hyphenation is applied for this word. A word with a manual hyphen will be hyphenated without regard to the settings on the <emph>Text Flow</emph> tab page." -msgstr "" +msgstr "Якщо Ð¿ÐµÑ€ÐµÐ½Ð¾Ñ Ñƒ Ñлово вÑтавлено вручну, Ñлово переноÑитьÑÑ Ñ‚Ñ–Ð»ÑŒÐºÐ¸ в цьому міÑці. Ðвтоматичне розÑтавлÑÐ½Ð½Ñ Ð¿ÐµÑ€ÐµÐ½Ð¾Ñів до цього Ñлова не заÑтоÑовуєтьÑÑ. Слово з ручним переноÑом переноÑитьÑÑ Ð½ÐµÐ·Ð°Ð»ÐµÐ¶Ð½Ð¾ від параметрів, заданих на вкладці <emph>Ð Ð¾Ð·Ñ‚Ð°ÑˆÑƒÐ²Ð°Ð½Ð½Ñ Ñ‚ÐµÐºÑту</emph>." #: using_hyphen.xhp msgctxt "" @@ -17379,7 +17379,7 @@ "60\n" "help.text" msgid "To Manually Hyphenate Text in a Selection" -msgstr "" +msgstr "РозÑтавлÑÐ½Ð½Ñ Ð¿ÐµÑ€ÐµÐ½Ð¾Ñів у виділеному фрагменті вручну" #: using_hyphen.xhp msgctxt "" @@ -17397,7 +17397,7 @@ "26\n" "help.text" msgid "Choose <emph>Tools - Language - Hyphenation</emph>." -msgstr "" +msgstr "Виберіть команди <emph>ЗаÑоби - Мова - РозÑтавлÑÐ½Ð½Ñ Ð¿ÐµÑ€ÐµÐ½Ð¾Ñів</emph>." #: using_hyphen.xhp msgctxt "" @@ -17414,7 +17414,7 @@ "tit\n" "help.text" msgid "Adding Bullets" -msgstr "" +msgstr "Ð”Ð¾Ð´Ð°Ð²Ð°Ð½Ð½Ñ Ð¼Ð°Ñ€ÐºÐµÑ€Ñ–Ð²" #: using_numbered_lists.xhp msgctxt "" @@ -17422,7 +17422,7 @@ "bm_id3155186\n" "help.text" msgid "<bookmark_value>bullet lists;turning on and off</bookmark_value> <bookmark_value>paragraphs; bulleted</bookmark_value> <bookmark_value>bullets;adding and editing</bookmark_value> <bookmark_value>formatting;bullets</bookmark_value> <bookmark_value>removing;bullets in text documents</bookmark_value> <bookmark_value>changing;bulleting symbols</bookmark_value>" -msgstr "" +msgstr "<bookmark_value>марковані ÑпиÑки;Ð²Ð¼Ð¸ÐºÐ°Ð½Ð½Ñ Ñ– вимиканнÑ</bookmark_value> <bookmark_value>абзаци; марковані</bookmark_value> <bookmark_value>маркери;Ð´Ð¾Ð´Ð°Ð²Ð°Ð½Ð½Ñ Ñ– змінюваннÑ</bookmark_value> <bookmark_value>форматуваннÑ;маркери</bookmark_value> <bookmark_value>видаленнÑ;маркери у текÑтових документах</bookmark_value> <bookmark_value>змінюваннÑ;Ñимволи маркуваннÑ</bookmark_value>" #: using_numbered_lists.xhp msgctxt "" @@ -17439,7 +17439,7 @@ "hd_id3291116\n" "help.text" msgid "To Add Bullets" -msgstr "" +msgstr "Ð”Ð¾Ð´Ð°Ð²Ð°Ð½Ð½Ñ Ð¼Ð°Ñ€ÐºÐµÑ€Ñ–Ð²" #: using_numbered_lists.xhp msgctxt "" @@ -17457,7 +17457,7 @@ "16\n" "help.text" msgid "On the <item type=\"menuitem\">Formatting</item> Bar, click the <item type=\"menuitem\">Bullets On/Off</item> icon <image id=\"img_id3156108\" src=\"cmd/sc_defaultbullet.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3156108\">Icon</alt></image>." -msgstr "" +msgstr "Ðа панелі <item type=\"menuitem\">ФорматуваннÑ</item> клацніть піктограму <item type=\"menuitem\">Маркери</item> <image id=\"img_id3156108\" src=\"cmd/sc_defaultbullet.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3156108\">Піктограма</alt></image>." #: using_numbered_lists.xhp msgctxt "" @@ -17466,7 +17466,7 @@ "17\n" "help.text" msgid "To remove bullets, select the bulleted paragraphs, and then click the <emph>Bullets On/Off</emph> icon on the <emph>Formatting</emph> Bar." -msgstr "" +msgstr "Щоб прибрати маркери, виберіть марковані абзаци Ñ– на панелі <emph>ФорматуваннÑ</emph> клацніть піктограму <emph>Маркери</emph>." #: using_numbered_lists.xhp msgctxt "" @@ -17475,7 +17475,7 @@ "26\n" "help.text" msgid "To Format Bullets" -msgstr "" +msgstr "Ð¤Ð¾Ñ€Ð¼Ð°Ñ‚ÑƒÐ²Ð°Ð½Ð½Ñ Ð¼Ð°Ñ€ÐºÐµÑ€Ñ–Ð²" #: using_numbered_lists.xhp msgctxt "" @@ -17484,7 +17484,7 @@ "9\n" "help.text" msgid "To change the formatting of a bulleted list, choose <item type=\"menuitem\">Format - Bullets and Numbering</item>." -msgstr "" +msgstr "Ð”Ð»Ñ Ð·Ð¼Ñ–Ð½Ð¸ Ñ„Ð¾Ñ€Ð¼Ð°Ñ‚ÑƒÐ²Ð°Ð½Ð½Ñ Ð¼Ð°Ñ€ÐºÐ¾Ð²Ð°Ð½Ð¾Ð³Ð¾ ÑпиÑку виберіть <item type=\"menuitem\">Формат – Маркери та нумераціÑ</item>." #: using_numbered_lists.xhp msgctxt "" @@ -17493,7 +17493,7 @@ "14\n" "help.text" msgid "For example, to change the bulleting symbol, click the <item type=\"menuitem\">Options</item> tab, click the browse button (<item type=\"menuitem\">...</item>) next to <item type=\"menuitem\">Character</item>, and then select a special character. You can also click the <item type=\"menuitem\">Image</item> tab, and then click a symbol style in the <item type=\"menuitem\">Selection</item> area." -msgstr "" +msgstr "Ðаприклад, щоб змінити маркер, клацніть вкладку <item type=\"menuitem\">Параметри</item>, кнопку навігації (<item type=\"menuitem\">...</item>) Ð±Ñ–Ð»Ñ <item type=\"menuitem\">Символ</item>, а потім виберіть потрібний Ñимвол. Можна також клацнути вкладку <item type=\"menuitem\">ЗображеннÑ</item>, а потім клацнути Ñтиль Ñимволів в ділÑнці <item type=\"menuitem\">Виділене</item>." #: using_numbered_lists2.xhp msgctxt "" @@ -17501,7 +17501,7 @@ "tit\n" "help.text" msgid "Adding Numbering" -msgstr "" +msgstr "Ð”Ð¾Ð´Ð°Ð²Ð°Ð½Ð½Ñ Ð½ÑƒÐ¼ÐµÑ€Ð°Ñ†Ñ–Ñ—" #: using_numbered_lists2.xhp msgctxt "" @@ -17509,7 +17509,7 @@ "bm_id3147418\n" "help.text" msgid "<bookmark_value>numbering;paragraphs, on and off</bookmark_value> <bookmark_value>paragraphs; numbering on/off</bookmark_value> <bookmark_value>formatting;numbered lists</bookmark_value> <bookmark_value>inserting;numbering</bookmark_value>" -msgstr "" +msgstr "<bookmark_value>нумераціÑ;абзаци, Ð²Ð¼Ð¸ÐºÐ°Ð½Ð½Ñ Ñ– вимиканнÑ</bookmark_value> <bookmark_value>абзаци; Ð²Ð¼Ð¸ÐºÐ°Ð½Ð½Ñ Ñ– Ð²Ð¸Ð¼Ð¸ÐºÐ°Ð½Ð½Ñ Ð½ÑƒÐ¼ÐµÑ€Ð°Ñ†Ñ–Ñ—</bookmark_value> <bookmark_value>форматуваннÑ;нумеровані ÑпиÑки</bookmark_value> <bookmark_value>вÑтавлÑннÑ;нумераціÑ</bookmark_value>" #: using_numbered_lists2.xhp msgctxt "" @@ -17526,7 +17526,7 @@ "hd_id4188970\n" "help.text" msgid "To Add Numbering to a List" -msgstr "" +msgstr "Ð”Ð¾Ð´Ð°Ð²Ð°Ð½Ð½Ñ Ð½ÑƒÐ¼ÐµÑ€Ð°Ñ†Ñ–Ñ— ÑпиÑку" #: using_numbered_lists2.xhp msgctxt "" @@ -17544,7 +17544,7 @@ "24\n" "help.text" msgid "On the <item type=\"menuitem\">Formatting</item> Bar, click the <item type=\"menuitem\">Numbering On/Off</item> icon <image id=\"img_id3153125\" src=\"cmd/sc_defaultnumbering.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3153125\">Icon</alt></image>." -msgstr "" +msgstr "Ðа панелі <item type=\"menuitem\">ФорматуваннÑ</item> клацніть піктограму <item type=\"menuitem\">ÐумераціÑ</item> <image id=\"img_id3153125\" src=\"cmd/sc_defaultnumbering.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3153125\">Піктограма</alt></image>." #: using_numbered_lists2.xhp msgctxt "" @@ -17553,7 +17553,7 @@ "29\n" "help.text" msgid "To change the formatting and the hierarchy of a numbered list, click in the list, and then open the <emph>Bullets and Numbering</emph> toolbar." -msgstr "" +msgstr "Щоб змінити Ñ„Ð¾Ñ€Ð¼Ð°Ñ‚ÑƒÐ²Ð°Ð½Ð½Ñ Ñ– ієрархію нумерованого ÑпиÑку, вÑтановіть курÑор вÑередині ÑпиÑку, а потім відкрийте панель інÑтрументів <emph>Маркери та нумераціÑ</emph>." #: using_numbered_lists2.xhp msgctxt "" @@ -17562,7 +17562,7 @@ "25\n" "help.text" msgid "To remove numbering, select the numbered paragraphs, and then click the <emph>Numbering On/Off</emph> icon on the <emph>Formatting</emph> Bar." -msgstr "" +msgstr "Щоб видалити нумерацію, виділіть нумерований абзац Ñ– на панелі <emph>ФорматуваннÑ</emph> клацніть значок <emph>ÐумераціÑ</emph>." #: using_numbered_lists2.xhp msgctxt "" @@ -17571,7 +17571,7 @@ "30\n" "help.text" msgid "To Format a Numbered List" -msgstr "" +msgstr "Ð¤Ð¾Ñ€Ð¼Ð°Ñ‚ÑƒÐ²Ð°Ð½Ð½Ñ Ð½ÑƒÐ¼ÐµÑ€Ð¾Ð²Ð°Ð½Ð¾Ð³Ð¾ ÑпиÑку" #: using_numbered_lists2.xhp msgctxt "" @@ -17580,7 +17580,7 @@ "16\n" "help.text" msgid "To change the formatting of a numbered list, click in the list, then choose <emph>Format - Bullets and Numbering</emph>." -msgstr "" +msgstr "Щоб змінити Ñ„Ð¾Ñ€Ð¼Ð°Ñ‚ÑƒÐ²Ð°Ð½Ð½Ñ Ð½ÑƒÐ¼ÐµÑ€Ð¾Ð²Ð°Ð½Ð¾Ð³Ð¾ ÑпиÑку, вÑтановіть курÑор вÑередині ÑпиÑку, а потім виберіть команду <emph>Формат - Маркери та нумераціÑ</emph>." #: using_numbering.xhp msgctxt "" @@ -17588,7 +17588,7 @@ "tit\n" "help.text" msgid "Numbering and Numbering Styles" -msgstr "" +msgstr "ÐÑƒÐ¼ÐµÑ€Ð°Ñ†Ñ–Ñ Ñ– Ñтилі нумерації" #: using_numbering.xhp msgctxt "" @@ -17596,7 +17596,7 @@ "bm_id3155174\n" "help.text" msgid "<bookmark_value>numbering; manually/by styles</bookmark_value> <bookmark_value>manual numbering in text</bookmark_value> <bookmark_value>paragraph styles;numbering</bookmark_value>" -msgstr "" +msgstr "<bookmark_value>нумераціÑ; вручну/за ÑтилÑми</bookmark_value> <bookmark_value>Ð½ÑƒÐ¼ÐµÑ€Ð°Ñ†Ñ–Ñ Ñƒ текÑÑ‚Ñ– вручну</bookmark_value> <bookmark_value>Ñтилі абзаців;нумераціÑ</bookmark_value>" #: using_numbering.xhp msgctxt "" @@ -17605,7 +17605,7 @@ "30\n" "help.text" msgid "<variable id=\"using_numbering\"><link href=\"text/swriter/guide/using_numbering.xhp\" name=\"Numbering and Numbering Styles\">Numbering and Numbering Styles</link> </variable>" -msgstr "" +msgstr "<variable id=\"using_numbering\"><link href=\"text/swriter/guide/using_numbering.xhp\" name=\"ÐÑƒÐ¼ÐµÑ€Ð°Ñ†Ñ–Ñ Ñ– Ñтилі нумерації\">ÐÑƒÐ¼ÐµÑ€Ð°Ñ†Ñ–Ñ Ñ– Ñтилі нумерації</link> </variable>" #: using_numbering.xhp msgctxt "" @@ -17614,7 +17614,7 @@ "26\n" "help.text" msgid "You can apply numbering to a paragraph manually or with a paragraph style." -msgstr "" +msgstr "Ðумерацію до абзацу можна заÑтоÑувати вручну або за допомогою Ñтилю абзацу." #: using_numbering.xhp msgctxt "" @@ -17622,7 +17622,7 @@ "hd_id6140629\n" "help.text" msgid "To Apply Numbering Manually" -msgstr "" +msgstr "ЗаÑтоÑÑƒÐ²Ð°Ð½Ð½Ñ Ð½ÑƒÐ¼ÐµÑ€Ð°Ñ†Ñ–Ñ— вручну" #: using_numbering.xhp msgctxt "" @@ -17631,7 +17631,7 @@ "33\n" "help.text" msgid "To apply numbering manually, click in the paragraph, and then click the <item type=\"menuitem\">Numbering On/Off</item> icon on the <item type=\"menuitem\">Formatting</item> Bar." -msgstr "" +msgstr "Щоб заÑтоÑувати нумерацію вручну, клацніть в абзаці, а потім виберіть кнопку <item type=\"menuitem\">ВмиканнÑ/Ð²Ð¸Ð¼Ð¸ÐºÐ°Ð½Ð½Ñ Ð½ÑƒÐ¼ÐµÑ€Ð°Ñ†Ñ–Ñ—</item> на панелі <item type=\"menuitem\">ФорматуваннÑ</item>." #: using_numbering.xhp msgctxt "" @@ -17640,7 +17640,7 @@ "27\n" "help.text" msgid "You cannot apply manual numbering to paragraphs that are listed under \"Special Styles\" in the Styles and Formatting window." -msgstr "" +msgstr "ЗаÑтоÑувати нумерацію вручну до абзаців, внеÑених до ÑпиÑку \"Спеціальні Ñтилі\" у вікні \"Стилі Ñ– форматуваннÑ\", неможливо." #: using_numbering.xhp msgctxt "" @@ -17648,7 +17648,7 @@ "par_idN10711\n" "help.text" msgid "When you press Enter in a numbered or bulleted list, <item type=\"productname\">%PRODUCTNAME</item> automatically numbers the next paragraph. To remove the numbering or bullet from the new paragraph, press Enter again." -msgstr "" +msgstr "При натиÑканні клавіші Enter у нумерованому або маркованому ÑпиÑках <item type=\"productname\">%PRODUCTNAME</item> автоматично нумеруєтьÑÑ Ð½Ð°Ñтупний абзац. Щоб видалити нумерацію або Ð¼Ð°Ñ€ÐºÑƒÐ²Ð°Ð½Ð½Ñ Ð· нового абзацу, натиÑніть клавішу Enter ще раз." #: using_numbering.xhp msgctxt "" @@ -17656,7 +17656,7 @@ "par_idN1072B\n" "help.text" msgid "To change the hierarchical level of a bullet in a list, click in front of the paragraph, then press the Tab key." -msgstr "" +msgstr "Щоб змінити рівень ієрархії маркера в ÑпиÑку, вÑтановіть курÑор перед абзацом Ñ– натиÑніть клавішу Tab." #: using_numbering.xhp msgctxt "" @@ -17664,7 +17664,7 @@ "par_idN1072F\n" "help.text" msgid "To change the bullets or numbering format for the current paragraph only, select a character or word in the paragraph, choose <item type=\"menuitem\">Format - Bullets and Numbering</item>, and then click a new format." -msgstr "" +msgstr "Щоб змінити формат маркерів чи нумерації тільки Ð´Ð»Ñ Ð¿Ð¾Ñ‚Ð¾Ñ‡Ð½Ð¾Ð³Ð¾ абзацу, виберіть Ñимвол або Ñлово в цьому абзаці, виберіть <item type=\"menuitem\">Формат - Маркери та нумераціÑ</item>, а потім клацніть новий формат." #: using_numbering.xhp msgctxt "" @@ -17672,7 +17672,7 @@ "par_idN10733\n" "help.text" msgid "To change the bullet or numbering format for all paragraphs in the list, ensure that the cursor is in the list, choose <item type=\"menuitem\">Format - Bullets and Numbering</item>, and then click a new format." -msgstr "" +msgstr "Щоб змінити формат маркерів або нумерації Ð´Ð»Ñ Ð²ÑÑ–Ñ… абзаців у ÑпиÑку, вÑтановіть курÑор вÑередині ÑпиÑку, виберіть <item type=\"menuitem\">Формат - Маркери та нумераціÑ</item>, а потім клацніть новий формат." #: using_numbering.xhp msgctxt "" @@ -17680,7 +17680,7 @@ "par_idN10737\n" "help.text" msgid "To apply the same bullet or numbering format to all paragraphs in the list, select all paragraphs, choose <item type=\"menuitem\">Format - Bullets and Numbering</item>, and then click a format." -msgstr "" +msgstr "Щоб заÑтоÑувати один формат маркерів або нумерації до вÑÑ–Ñ… абзаців у ÑпиÑку, виберіть вÑÑ– абзаци, виберіть <item type=\"menuitem\">Формат - Маркери та нумераціÑ</item>, а потім клацніть новий формат." #: using_numbering.xhp msgctxt "" @@ -17688,7 +17688,7 @@ "par_idN1073A\n" "help.text" msgid "You can also use the commands on the <link href=\"text/swriter/main0206.xhp\" name=\"Numbering Object Bar\">Bullets and Numbering</link> toolbar to edit a numbered or bulleted list. To change the numbering or bullet format, click the <emph>Bullets and Numbering</emph> icon." -msgstr "" +msgstr "Ð”Ð»Ñ Ð·Ð¼Ñ–Ð½Ð¸ нумерованого або маркованого ÑпиÑку можна також ÑкориÑтатиÑÑ ÐºÐ¾Ð¼Ð°Ð½Ð´Ð°Ð¼Ð¸ панелі інÑтрументів <link href=\"text/swriter/main0206.xhp\" name=\"Панель об'єктів нумерації\">Маркери та нумераціÑ</link>. Щоб змінити формат нумерації або маркуваннÑ, клацніть значок <emph>Маркери та нумераціÑ</emph>." #: using_numbering.xhp msgctxt "" @@ -17697,7 +17697,7 @@ "34\n" "help.text" msgid "To Apply Numbering With a Paragraph Style" -msgstr "" +msgstr "ЗаÑтоÑÑƒÐ²Ð°Ð½Ð½Ñ Ð½ÑƒÐ¼ÐµÑ€Ð°Ñ†Ñ–Ñ— зі Ñтилем абзацу" #: using_numbering.xhp msgctxt "" @@ -17706,7 +17706,7 @@ "31\n" "help.text" msgid "Paragraph Styles give you greater control over numbering that you apply in a document. When you change the numbering format of the style, all paragraphs using the style are automatically updated." -msgstr "" +msgstr "Стилі абзацу дають більше можливоÑтей щодо ÑƒÐ¿Ñ€Ð°Ð²Ð»Ñ–Ð½Ð½Ñ Ð½ÑƒÐ¼ÐµÑ€Ð°Ñ†Ñ–Ñ”ÑŽ, Ñка заÑтоÑовуєтьÑÑ Ð² документі. При зміні формату нумерації Ñтилю, вÑÑ– абзаци, що викориÑтовують цей Ñтиль, автоматично оновлюютьÑÑ." #: using_numbering.xhp msgctxt "" @@ -17742,7 +17742,7 @@ "38\n" "help.text" msgid "In the <item type=\"menuitem\">Numbering Style</item> box, select the type of numbering that you want to use." -msgstr "" +msgstr "У полі <item type=\"menuitem\">Стиль нумерації</item> виберіть тип нумерації, Ñкий потрібно викориÑтати." #: using_numbering.xhp msgctxt "" @@ -17776,7 +17776,7 @@ "bm_id3145576\n" "help.text" msgid "<bookmark_value>thesaurus; related words</bookmark_value> <bookmark_value>related words in thesaurus</bookmark_value> <bookmark_value>spelling in thesaurus</bookmark_value> <bookmark_value>dictionaries; thesaurus</bookmark_value> <bookmark_value>lexicon, see thesaurus</bookmark_value> <bookmark_value>synonyms in thesaurus</bookmark_value> <bookmark_value>searching;synonyms</bookmark_value>" -msgstr "" +msgstr "<bookmark_value>тезауруÑ; пов'Ñзані Ñлова</bookmark_value> <bookmark_value>пов'Ñзані Ñлова у тезауруÑÑ–</bookmark_value> <bookmark_value>Ð¿Ñ€Ð°Ð²Ð¾Ð¿Ð¸Ñ Ñƒ тезауруÑÑ–</bookmark_value> <bookmark_value>Ñловники; тезауруÑ</bookmark_value> <bookmark_value>лекÑикон, див. тезауруÑ</bookmark_value> <bookmark_value>Ñиноніми в тезауруÑÑ–</bookmark_value> <bookmark_value>пошук;Ñиноніми</bookmark_value>" #: using_thesaurus.xhp msgctxt "" @@ -17785,7 +17785,7 @@ "15\n" "help.text" msgid "<variable id=\"using_thesaurus\"><link href=\"text/swriter/guide/using_thesaurus.xhp\" name=\"Thesaurus\">Thesaurus</link></variable>" -msgstr "" +msgstr "<variable id=\"using_thesaurus\"><link href=\"text/swriter/guide/using_thesaurus.xhp\" name=\"ТезауруÑ\">ТезауруÑ</link></variable>" #: using_thesaurus.xhp msgctxt "" @@ -17794,7 +17794,7 @@ "16\n" "help.text" msgid "You can use the thesaurus to look up synonyms or related terms." -msgstr "" +msgstr "Ð¢ÐµÐ·Ð°ÑƒÑ€ÑƒÑ Ð²Ð¸ÐºÐ¾Ñ€Ð¸Ñтовують Ð´Ð»Ñ Ð´Ð¾Ð±Ð¾Ñ€Ñƒ Ñинонімів або пов'Ñзаних термінів." #: using_thesaurus.xhp msgctxt "" @@ -17803,7 +17803,7 @@ "17\n" "help.text" msgid "Click in the word that you want to look up or replace." -msgstr "" +msgstr "Клацніть Ñлово, Ñке потрібно звірити зі Ñловником або замінити." #: using_thesaurus.xhp msgctxt "" @@ -17821,7 +17821,7 @@ "40\n" "help.text" msgid "In the Alternatives list, click an entry to copy that related term to the \"Replace with\" text box." -msgstr "" +msgstr "Клацніть Ð·Ð°Ð¿Ð¸Ñ Ñƒ ÑпиÑку \"Варіанти\", щоб Ñкопіювати пов'Ñзаний термін в поле \"Замінити на\"." #: using_thesaurus.xhp msgctxt "" @@ -17830,7 +17830,7 @@ "45\n" "help.text" msgid "Optionally double-click an entry to look up related terms for that entry. On your keyboard, you can also press the arrow up or down keys to select an entry. Then press Return to replace, or press the spacebar to look up." -msgstr "" +msgstr "Ð’ ÑкоÑÑ‚Ñ– альтернативи можна двічі клацнути Ð·Ð°Ð¿Ð¸Ñ Ð´Ð»Ñ Ð¿Ð¾ÑˆÑƒÐºÑƒ пов'Ñзаних з ним термінів. Ще можна Ð´Ð»Ñ Ð²Ð¸Ð±Ð¾Ñ€Ñƒ запиÑу ÑкориÑтатиÑÑ ÐºÐ»Ð°Ð²Ñ–ÑˆÐ°Ð¼Ð¸ \"Ñтрілка вгору\" Ñ– \"Ñтрілка вниз\" на клавіатурі. Потім натиÑніть клавішу Enter Ð´Ð»Ñ Ð·Ð°Ð¼Ñ–Ð½Ð¸ або пробіл Ð´Ð»Ñ Ð¿Ð¾ÑˆÑƒÐºÑƒ в Ñловнику." #: using_thesaurus.xhp msgctxt "" @@ -17848,7 +17848,7 @@ "19\n" "help.text" msgid "Initially, the thesaurus uses the language of the selected word in the document, if a thesaurus library for that language is installed. The title bar of the Thesaurus dialog displays the language in use." -msgstr "" +msgstr "Спочатку Ñ‚ÐµÐ·Ð°ÑƒÑ€ÑƒÑ Ð²Ð¸ÐºÐ¾Ñ€Ð¸Ñтовує мову вибраного Ñлова в документі, Ñкщо Ð´Ð»Ñ Ñ†Ñ–Ñ”Ñ— мови вÑтановлено бібліотеку тезауруÑа. У заголовку діалогового вікна виводитьÑÑ Ð²Ð¸ÐºÐ¾Ñ€Ð¸Ñтовувана мова." #: using_thesaurus.xhp msgctxt "" @@ -17857,7 +17857,7 @@ "18\n" "help.text" msgid "To look up the word in a different language, click the Language button, and select one of the installed thesaurus languages. A thesaurus library may not be available for all installed languages. You can install languages with a thesaurus library from the <link href=\"http://extensions.libreoffice.org/\">Extensions</link> web page." -msgstr "" +msgstr "Ð”Ð»Ñ Ð¿Ð¾ÑˆÑƒÐºÑƒ Ñлова іншою мовою натиÑніть кнопку \"Мова\" Ñ– виберіть одну зі вÑтановлених мов тезауруÑа. Можливо, Ð´Ð»Ñ Ð´ÐµÑких вÑтановлених мов бібліотека тезауруÑа буде недоÑтупна. Мови з бібліотекою тезауруÑа можна вÑтановити на веб-Ñторінці <link href=\"http://extensions.libreoffice.org/\">РозширеннÑ</link>." #: using_thesaurus.xhp msgctxt "" @@ -17866,7 +17866,7 @@ "19\n" "help.text" msgid "If a thesaurus library is installed for the language of a word, the context menu of the word shows a Synonyms submenu. Select any of the terms from the submenu to replace the word." -msgstr "" +msgstr "Якщо Ð´Ð»Ñ Ð¼Ð¾Ð²Ð¸ Ñлова вÑтановлено бібліотеку тезауруÑа, в контекÑтному меню Ð´Ð»Ñ Ñ†ÑŒÐ¾Ð³Ð¾ Ñлова Ñ” підменю \"Синоніми\". Виберіть будь-Ñкий з термінів в підменю Ð´Ð»Ñ Ð·Ð°Ð¼Ñ–Ð½Ð¸ Ñлова." #: using_thesaurus.xhp msgctxt "" @@ -17883,7 +17883,7 @@ "tit\n" "help.text" msgid "Word Completion for Text Documents" -msgstr "" +msgstr "Ð—Ð°Ð²ÐµÑ€ÑˆÐµÐ½Ð½Ñ Ñлів Ð´Ð»Ñ Ñ‚ÐµÐºÑтових документів" #: word_completion.xhp msgctxt "" @@ -17891,7 +17891,7 @@ "bm_id3148882\n" "help.text" msgid "<bookmark_value>automatic word completion</bookmark_value> <bookmark_value>completion of words</bookmark_value> <bookmark_value>AutoCorrect function; word completion</bookmark_value> <bookmark_value>word completion;using/disabling</bookmark_value> <bookmark_value>disabling;word completion</bookmark_value> <bookmark_value>switching off;word completion</bookmark_value> <bookmark_value>deactivating;word completion</bookmark_value> <bookmark_value>refusing word completions</bookmark_value> <bookmark_value>rejecting word completions</bookmark_value>" -msgstr "" +msgstr "<bookmark_value>автоматичне Ð·Ð°Ð²ÐµÑ€ÑˆÐµÐ½Ð½Ñ Ñлів</bookmark_value> <bookmark_value>Ð·Ð°Ð²ÐµÑ€ÑˆÐµÐ½Ð½Ñ Ñлів</bookmark_value> <bookmark_value>Ñ„ÑƒÐ½ÐºÑ†Ñ–Ñ Ð°Ð²Ñ‚Ð¾Ð·Ð°Ð¼Ñ–Ð½Ð¸; Ð·Ð°Ð²ÐµÑ€ÑˆÐµÐ½Ð½Ñ Ñлів</bookmark_value> <bookmark_value> Ð·Ð°Ð²ÐµÑ€ÑˆÐµÐ½Ð½Ñ Ñлів;викориÑтаннÑ/деактиваціÑ</bookmark_value> <bookmark_value>вимиканнÑ; Ð·Ð°Ð²ÐµÑ€ÑˆÐµÐ½Ð½Ñ Ñлів</bookmark_value> <bookmark_value>вимкненнÑ; Ð·Ð°Ð²ÐµÑ€ÑˆÐµÐ½Ð½Ñ Ñлів</bookmark_value> <bookmark_value>деактиваціÑ; Ð·Ð°Ð²ÐµÑ€ÑˆÐµÐ½Ð½Ñ Ñлів</bookmark_value> <bookmark_value>відмова від Ð·Ð°Ð²ÐµÑ€ÑˆÐµÐ½Ð½Ñ Ñлів</bookmark_value> <bookmark_value>заборона Ð·Ð°Ð²ÐµÑ€ÑˆÐµÐ½Ð½Ñ Ñлів</bookmark_value>" #: word_completion.xhp msgctxt "" @@ -17899,7 +17899,7 @@ "par_idN10751\n" "help.text" msgid "<variable id=\"word_completion\"><link href=\"text/swriter/guide/word_completion.xhp\">Word Completion for Text Documents</link></variable>" -msgstr "" +msgstr "<variable id=\"word_completion\"><link href=\"text/swriter/guide/word_completion.xhp\">Ð—Ð°Ð²ÐµÑ€ÑˆÐµÐ½Ð½Ñ Ñлів Ð´Ð»Ñ Ñ‚ÐµÐºÑтових документів</link></variable>" #: word_completion.xhp msgctxt "" @@ -17907,7 +17907,7 @@ "par_idN1076F\n" "help.text" msgid "$[officename] collects words that you frequently use in the current session. When you later type the first three letters of a collected word, $[officename] automatically completes the word." -msgstr "" +msgstr "$[officename] зберігає Ñлова, чаÑто викориÑтовувані в поточному ÑеанÑÑ–. При введенні перших трьох букв такого Ñлова $[officename] автоматично підÑтавлÑÑ” решту Ñлова." #: word_completion.xhp msgctxt "" @@ -17916,7 +17916,7 @@ "91\n" "help.text" msgid "If there is more than one word in the AutoCorrect memory that matches the three letters that you type, press <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Tab to cycle through the available words. To cycle in the opposite direction, press <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+Tab." -msgstr "" +msgstr "Якщо в пам'ÑÑ‚Ñ– автозаміни Ñ” кілька Ñлів, що відповідають трьом введеним буквам, натиÑніть <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Tab Ð´Ð»Ñ Ð¿Ñ€Ð¾ÐºÑ€ÑƒÑ‡ÑƒÐ²Ð°Ð½Ð½Ñ Ð´Ð¾Ñтупних Ñлів. Ð”Ð»Ñ Ð¿Ñ€Ð¾ÐºÑ€ÑƒÑ‡ÑƒÐ²Ð°Ð½Ð½Ñ Ñƒ зворотному напрÑмку натиÑніть клавіші <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+Tab." #: word_completion.xhp msgctxt "" @@ -17924,7 +17924,7 @@ "par_idN1078D\n" "help.text" msgid "To Accept/Reject a Word Completion" -msgstr "" +msgstr "ПідтвердженнÑ/заборона підÑтановки Ñлова" #: word_completion.xhp msgctxt "" @@ -17932,7 +17932,7 @@ "par_idN10794\n" "help.text" msgid "By default, you accept the word completion by pressing the Enter key." -msgstr "" +msgstr "Типово варіант Ð·Ð°Ð²ÐµÑ€ÑˆÐµÐ½Ð½Ñ Ñлова приймаєтьÑÑ Ð½Ð°Ñ‚Ð¸ÑканнÑм клавіші Enter." #: word_completion.xhp msgctxt "" @@ -17940,7 +17940,7 @@ "par_idN1079B\n" "help.text" msgid "To reject the word completion, continue typing with any other key." -msgstr "" +msgstr "Щоб відхилити варіант Ð·Ð°Ð²ÐµÑ€ÑˆÐµÐ½Ð½Ñ Ñлова, продовжуйте друкувати з будь-Ñкої іншої клавіші." #: word_completion.xhp msgctxt "" @@ -17948,7 +17948,7 @@ "par_idN1079E\n" "help.text" msgid "To Switch off the Word Completion" -msgstr "" +msgstr "Ð’Ð¸Ð¼Ð¸ÐºÐ°Ð½Ð½Ñ Ñ„ÑƒÐ½ÐºÑ†Ñ–Ñ— Ð·Ð°Ð²ÐµÑ€ÑˆÐµÐ½Ð½Ñ Ñлів" #: word_completion.xhp msgctxt "" @@ -17964,7 +17964,7 @@ "par_idN107AD\n" "help.text" msgid "Clear <emph>Enable word completion</emph> ." -msgstr "" +msgstr "Зніміть прапорець <emph>Увімкнути Ð·Ð°Ð²ÐµÑ€ÑˆÐµÐ½Ð½Ñ Ñлів</emph> ." #: word_completion.xhp msgctxt "" @@ -17972,7 +17972,7 @@ "par_id7504806\n" "help.text" msgid "<link href=\"text/swriter/guide/word_completion_adjust.xhp\">Fine-Tuning the Word Completion</link>" -msgstr "" +msgstr "<link href=\"text/swriter/guide/word_completion_adjust.xhp\">ÐÐ°Ð»Ð°ÑˆÑ‚ÑƒÐ²Ð°Ð½Ð½Ñ Ð·Ð°Ð²ÐµÑ€ÑˆÐµÐ½Ð½Ñ Ñлів</link>" #: word_completion_adjust.xhp msgctxt "" @@ -17980,7 +17980,7 @@ "tit\n" "help.text" msgid "Fine-Tuning the Word Completion for Text Documents" -msgstr "" +msgstr "ÐÐ°Ð»Ð°ÑˆÑ‚ÑƒÐ²Ð°Ð½Ð½Ñ Ð·Ð°Ð²ÐµÑ€ÑˆÐµÐ½Ð½Ñ Ñлів Ð´Ð»Ñ Ñ‚ÐµÐºÑтових документів" #: word_completion_adjust.xhp msgctxt "" @@ -17988,7 +17988,7 @@ "bm_id3148882\n" "help.text" msgid "<bookmark_value>settings;word completion</bookmark_value> <bookmark_value>word completion;settings</bookmark_value> <bookmark_value>text documents;word completion settings</bookmark_value> <bookmark_value>weekdays; automatically completing</bookmark_value> <bookmark_value>months; automatically completing</bookmark_value>" -msgstr "" +msgstr "<bookmark_value>параметри;Ð·Ð°Ð²ÐµÑ€ÑˆÐµÐ½Ð½Ñ Ñлов</bookmark_value> <bookmark_value>Ð·Ð°Ð²ÐµÑ€ÑˆÐµÐ½Ð½Ñ Ñлів;параметри</bookmark_value> <bookmark_value>текÑтові документи;параметри Ð·Ð°Ð²ÐµÑ€ÑˆÐµÐ½Ð½Ñ Ñлов</bookmark_value> <bookmark_value>дні тижнÑ; автоматичне завершеннÑ</bookmark_value> <bookmark_value>міÑÑці; автоматичне завершеннÑ</bookmark_value>" #: word_completion_adjust.xhp msgctxt "" @@ -17996,7 +17996,7 @@ "hd_id4745017\n" "help.text" msgid "<variable id=\"word_completion_adjust\"><link href=\"text/swriter/guide/word_completion_adjust.xhp\">Fine-Tuning the Word Completion for Text Documents</link></variable>" -msgstr "" +msgstr "<variable id=\"word_completion_adjust\"><link href=\"text/swriter/guide/word_completion_adjust.xhp\">ÐÐ°Ð»Ð°ÑˆÑ‚ÑƒÐ²Ð°Ð½Ð½Ñ Ð·Ð°Ð²ÐµÑ€ÑˆÐµÐ½Ð½Ñ Ñлів Ð´Ð»Ñ Ñ‚ÐµÐºÑтових документів</link></variable>" #: word_completion_adjust.xhp msgctxt "" @@ -18004,7 +18004,7 @@ "par_id4814294\n" "help.text" msgid "If you like it that $[officename] automatically completes the words that you frequently use, you can make further adjustments to refine that behavior. If you want, you can also save the current list of collected words so that it can be used in the next session." -msgstr "" +msgstr "Ð”Ð»Ñ Ð°Ð²Ñ‚Ð¾Ð¼Ð°Ñ‚Ð¸Ñ‡Ð½Ð¾Ð³Ð¾ Ð·Ð°Ð²ÐµÑ€ÑˆÐµÐ½Ð½Ñ Ñ‡Ð°Ñто викориÑтовуваних Ñлів в $[officename] поведінку програми можна змінити відповідно до конкретних вимог. При необхідноÑÑ‚Ñ– можна зберегти поточний ÑпиÑок накопичених в Ñловнику Ñлів Ð´Ð»Ñ Ð²Ð¸ÐºÐ¾Ñ€Ð¸ÑÑ‚Ð°Ð½Ð½Ñ Ð¿Ñ–Ð´ Ñ‡Ð°Ñ Ð½Ð°Ñтупного ÑеанÑу." #: word_completion_adjust.xhp msgctxt "" @@ -18012,7 +18012,7 @@ "par_id2593462\n" "help.text" msgid "To fine-tune the word completion choose <item type=\"menuitem\">Tools – AutoCorrect Options - Word Completion</item> and select any of the following options:" -msgstr "" +msgstr "Ð”Ð»Ñ Ð½Ð°Ð»Ð°ÑˆÑ‚ÑƒÐ²Ð°Ð½Ð½Ñ Ð·Ð°Ð²ÐµÑ€ÑˆÐµÐ½Ð½Ñ Ñлів виберіть команду <item type=\"menuitem\"> ІнÑтрументи - Ðвтозаміна - ПідÑтановка Ñлів</item> Ñ– виберіть будь-Ñкий з таких варіантів:" #: word_completion_adjust.xhp msgctxt "" @@ -18020,7 +18020,7 @@ "par_idN107C6\n" "help.text" msgid "To Insert an Additional Space Character" -msgstr "" +msgstr "Ð’ÑтавлÑÐ½Ð½Ñ Ð´Ð¾Ð´Ð°Ñ‚ÐºÐ¾Ð²Ð¾Ð³Ð¾ пропуÑку" #: word_completion_adjust.xhp msgctxt "" @@ -18028,7 +18028,7 @@ "par_idN10B03\n" "help.text" msgid "Select <emph>Append space</emph>." -msgstr "" +msgstr "Виберіть <emph>Додавати пропуÑк</emph>." #: word_completion_adjust.xhp msgctxt "" @@ -18036,7 +18036,7 @@ "par_idN10B0E\n" "help.text" msgid "The space character is appended after you type the first character of the next word after the auto-completed word. The space character is suppressed if the next character is a delimiter, such as a full stop or a new line character." -msgstr "" +msgstr "При введенні першого Ñимволу, наÑтупного за автозавершеним Ñловом, між ними буде вÑтавлÑтиÑÑ Ð¿Ñ€Ð¾Ð±Ñ–Ð». Якщо наÑтупним Ñимволом буде роздільник, такий Ñк крапка або знак нового Ñ€Ñдка, пробіл не вÑтавлÑєтьÑÑ." #: word_completion_adjust.xhp msgctxt "" @@ -18044,7 +18044,7 @@ "par_idN107CC\n" "help.text" msgid "To Define the Accept Key" -msgstr "" +msgstr "Вибір клавіші підтвердженнÑ" #: word_completion_adjust.xhp msgctxt "" @@ -18052,7 +18052,7 @@ "par_idN10B20\n" "help.text" msgid "Choose the key to accept the suggested word using the <emph>Accept with</emph> list box." -msgstr "" +msgstr "Виберіть клавішу Ð´Ð»Ñ Ð¿Ñ€Ð¸Ð¹Ð½ÑÑ‚Ñ‚Ñ Ð·Ð°Ð²ÐµÑ€ÑˆÐµÐ½Ð½Ñ Ð·Ð° допомогою Ð¿Ð¾Ð»Ñ Ð·Ñ– ÑпиÑком <emph>ПрийнÑти із</emph>." #: word_completion_adjust.xhp msgctxt "" @@ -18060,7 +18060,7 @@ "par_idN107D2\n" "help.text" msgid "To Select the Minimum Number of Characters" -msgstr "" +msgstr "Вибір найменшого чиÑла Ñимволів" #: word_completion_adjust.xhp msgctxt "" @@ -18068,7 +18068,7 @@ "par_idN10B36\n" "help.text" msgid "Use the <emph>Min. word length</emph> box to set the minimum number of characters a word must have to be collected into the list." -msgstr "" +msgstr "За допомогою Ð¿Ð¾Ð»Ñ <emph>Мін. довжина Ñлова</emph> можна задати найменшу кількіÑÑ‚ÑŒ Ñимволів у Ñлові, необхідну Ð´Ð»Ñ Ð¹Ð¾Ð³Ð¾ Ð´Ð¾Ð´Ð°Ð²Ð°Ð½Ð½Ñ Ñƒ ÑпиÑок." #: word_completion_adjust.xhp msgctxt "" @@ -18076,7 +18076,7 @@ "par_idN107D8\n" "help.text" msgid "To Select the Scope of Collected Words" -msgstr "" +msgstr "Вибір облаÑÑ‚Ñ– заÑтоÑÑƒÐ²Ð°Ð½Ð½Ñ Ð½Ð°ÐºÐ¾Ð¿Ð¸Ñ‡ÐµÐ½Ð¸Ñ… Ñлів" #: word_completion_adjust.xhp msgctxt "" @@ -18084,7 +18084,7 @@ "par_idN10B4C\n" "help.text" msgid "Disable the option <emph>When closing a document, remove the words collected from it from the list</emph>." -msgstr "" +msgstr "Вимкніть параметр <emph>При закритті документа видалÑти його Ñлова зі ÑпиÑку</emph>." #: word_completion_adjust.xhp msgctxt "" @@ -18092,7 +18092,7 @@ "par_idN10B53\n" "help.text" msgid "Now the list is also valid for other documents that you open. When you close the last %PRODUCTNAME document, the word list is deleted." -msgstr "" +msgstr "Тепер ÑпиÑок буде дійÑний Ñ– Ð´Ð»Ñ Ñ–Ð½ÑˆÐ¸Ñ… відкритих документів. При закритті оÑтаннього документа %PRODUCTNAME ÑпиÑок Ñлів видалÑєтьÑÑ." #: word_completion_adjust.xhp msgctxt "" @@ -18100,7 +18100,7 @@ "par_idN10B56\n" "help.text" msgid "If you enable the checkbox, the list is only valid as long as the current document is open." -msgstr "" +msgstr "Якщо цей прапорець вÑтановлено, ÑпиÑок залишаєтьÑÑ Ð´Ñ–Ð¹Ñним, поки відкритий поточний документ." #: word_completion_adjust.xhp msgctxt "" @@ -18108,7 +18108,7 @@ "par_id2634968\n" "help.text" msgid "If you want the word list to exist longer than the current %PRODUCTNAME session, save it as a document, as described in the following section." -msgstr "" +msgstr "Якщо ÑпиÑок Ñлів потрібен вам не тільки під Ñ‡Ð°Ñ Ð¿Ð¾Ñ‚Ð¾Ñ‡Ð½Ð¾Ð³Ð¾ ÑеанÑу %PRODUCTNAME, збережіть його Ñк документ, Ñк опиÑано в наÑтупному розділі." #: word_completion_adjust.xhp msgctxt "" @@ -18116,7 +18116,7 @@ "par_idN107DE\n" "help.text" msgid "To Use the Word List for Further Sessions" -msgstr "" +msgstr "ВикориÑÑ‚Ð°Ð½Ð½Ñ ÑпиÑку Ñлів Ð´Ð»Ñ Ð½Ð°Ñтупних ÑеанÑів" #: word_completion_adjust.xhp msgctxt "" @@ -18124,7 +18124,7 @@ "par_idN10B94\n" "help.text" msgid "If the automatic spellcheck option is enabled, only the words that are recognized by the spellcheck are collected." -msgstr "" +msgstr "Якщо увімкнено автоматичну перевірку правопиÑу, збираютьÑÑ Ñ‚Ñ–Ð»ÑŒÐºÐ¸ Ñ‚Ñ– Ñлова, Ñкі розпізнаютьÑÑ Ð¿ÐµÑ€ÐµÐ²Ñ–Ñ€ÐºÐ¾ÑŽ правопиÑу." #: word_completion_adjust.xhp msgctxt "" @@ -18132,7 +18132,7 @@ "par_idN10BA1\n" "help.text" msgid "Use the word list to always start with a defined set of technical terms for the word completion feature." -msgstr "" +msgstr "ВикориÑтовуйте ÑпиÑок Ñлів, щоб завжди мати певний набір технічних термінів Ð´Ð»Ñ Ñ„ÑƒÐ½ÐºÑ†Ñ–Ñ— Ð·Ð°Ð²ÐµÑ€ÑˆÐµÐ½Ð½Ñ Ñлів." #: word_completion_adjust.xhp msgctxt "" @@ -18140,7 +18140,7 @@ "par_idN10BA7\n" "help.text" msgid "Open the text document that contains the terms that you want to use for word completion." -msgstr "" +msgstr "Відкрийте текÑтовий документ, що міÑтить терміни, потрібні Ð´Ð»Ñ Ð·Ð°Ð²ÐµÑ€ÑˆÐµÐ½Ð½Ñ Ñлів." #: word_completion_adjust.xhp msgctxt "" @@ -18148,7 +18148,7 @@ "par_idN10BAB\n" "help.text" msgid "The word completion feature collects the words." -msgstr "" +msgstr "Ð¤ÑƒÐ½ÐºÑ†Ñ–Ñ Ð·Ð°Ð²ÐµÑ€ÑˆÐµÐ½Ð½Ñ Ñлів збирає Ñлова." #: word_completion_adjust.xhp msgctxt "" @@ -18156,7 +18156,7 @@ "par_idN107ED\n" "help.text" msgid "Select all or some of the words in the list." -msgstr "" +msgstr "Виберіть вÑÑ– або деÑкі Ñлова зі ÑпиÑку." #: word_completion_adjust.xhp msgctxt "" @@ -18164,7 +18164,7 @@ "par_idN107F4\n" "help.text" msgid "Use <switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+C to copy all selected words into the clipboard. Paste the clipboard into a new document and save it to get a reference list of collected words." -msgstr "" +msgstr "СкориÑтайтеÑÑŒ комбінацією клавіш <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+C Ð´Ð»Ñ ÐºÐ¾Ð¿Ñ–ÑŽÐ²Ð°Ð½Ð½Ñ Ð²ÑÑ–Ñ… вибраних Ñлів до буфера обміну. Ð’Ñтавте вміÑÑ‚ буфера обміну у новий документ Ñ– збережіть його, щоб отримати ÑпиÑок зібраних Ñлів." #: word_completion_adjust.xhp msgctxt "" @@ -18172,7 +18172,7 @@ "par_idN10BC6\n" "help.text" msgid "Later you can open the reference list and automatically collect the words, so that the word completion feature starts with a defined set of words." -msgstr "" +msgstr "Пізніше можна відкрити цей ÑпиÑок Ñ– автоматично зібрати Ñлова, так що Ñ„ÑƒÐ½ÐºÑ†Ñ–Ñ Ð·Ð°Ð²ÐµÑ€ÑˆÐµÐ½Ð½Ñ Ñлів буде мати у Ñвоєму розпорÑдженні базовий набір Ñлів." #: word_completion_adjust.xhp msgctxt "" @@ -18180,7 +18180,7 @@ "par_idN10809\n" "help.text" msgid "<link href=\"text/shared/01/06040600.xhp\">Word Completion</link>" -msgstr "" +msgstr "<link href=\"text/shared/01/06040600.xhp\">Ð—Ð°Ð²ÐµÑ€ÑˆÐµÐ½Ð½Ñ Ñлів</link>" #: word_completion_adjust.xhp msgctxt "" @@ -18188,7 +18188,7 @@ "par_id5458845\n" "help.text" msgid "<link href=\"text/swriter/guide/word_completion.xhp\">Using Word Completion</link>" -msgstr "" +msgstr "<link href=\"text/swriter/guide/word_completion.xhp\">ВикориÑÑ‚Ð°Ð½Ð½Ñ Ð·Ð°Ð²ÐµÑ€ÑˆÐµÐ½Ð½Ñ Ñлів</link>" #: words_count.xhp msgctxt "" @@ -18303,7 +18303,7 @@ "tit\n" "help.text" msgid "Wrapping Text Around Objects" -msgstr "" +msgstr "ÐžÐ±Ñ‚Ñ–ÐºÐ°Ð½Ð½Ñ Ñ‚ÐµÐºÑту навколо об'єктів" #: wrap.xhp msgctxt "" @@ -18311,7 +18311,7 @@ "bm_id3154486\n" "help.text" msgid "<bookmark_value>text wrap around objects</bookmark_value> <bookmark_value>contour editor</bookmark_value> <bookmark_value>contour wrap</bookmark_value> <bookmark_value>text; formatting around objects</bookmark_value> <bookmark_value>formatting; contour wrap</bookmark_value> <bookmark_value>objects; contour wrap</bookmark_value> <bookmark_value>wrapping text;editing contours</bookmark_value> <bookmark_value>editors;contour editor</bookmark_value>" -msgstr "" +msgstr "<bookmark_value>Ð¾Ð±Ñ‚Ñ–ÐºÐ°Ð½Ð½Ñ Ð¾Ð±'єктів текÑтом</bookmark_value> <bookmark_value>редактор контурів</bookmark_value> <bookmark_value>Ð¾Ð±Ñ‚Ñ–ÐºÐ°Ð½Ð½Ñ Ð·Ð° контуром</bookmark_value> <bookmark_value>текÑÑ‚; Ñ„Ð¾Ñ€Ð¼Ð°Ñ‚ÑƒÐ²Ð°Ð½Ð½Ñ Ð½Ð°Ð²ÐºÐ¾Ð»Ð¾ об'єктів</bookmark_value> <bookmark_value>форматуваннÑ; Ð¾Ð±Ñ‚Ñ–ÐºÐ°Ð½Ð½Ñ Ð·Ð° контуром</bookmark_value> <bookmark_value>об'єкти; Ð¾Ð±Ñ‚Ñ–ÐºÐ°Ð½Ð½Ñ Ð·Ð° контуром</bookmark_value> <bookmark_value>Ð¾Ð±Ñ‚Ñ–ÐºÐ°Ð½Ð½Ñ Ñ‚ÐµÐºÑтом;зміна контурів</bookmark_value> <bookmark_value>редактори;редактор контурів</bookmark_value>" #: wrap.xhp msgctxt "" @@ -18320,7 +18320,7 @@ "8\n" "help.text" msgid "<variable id=\"wrap\"><link href=\"text/swriter/guide/wrap.xhp\" name=\"Wrapping Text Around Objects\">Wrapping Text Around Objects</link></variable>" -msgstr "" +msgstr "<variable id=\"wrap\"><link href=\"text/swriter/guide/wrap.xhp\" name=\"ÐžÐ±Ñ‚Ñ–ÐºÐ°Ð½Ð½Ñ Ñ‚ÐµÐºÑту навколо об'єктів\">ÐžÐ±Ñ‚Ñ–ÐºÐ°Ð½Ð½Ñ Ñ‚ÐµÐºÑту навколо об'єктів</link></variable>" #: wrap.xhp msgctxt "" @@ -18328,7 +18328,7 @@ "hd_id4792321\n" "help.text" msgid "To Wrap Text Around an Object" -msgstr "" +msgstr "ÐžÐ±Ñ‚Ñ–ÐºÐ°Ð½Ð½Ñ Ð¾Ð±'єктів текÑтом" #: wrap.xhp msgctxt "" @@ -18337,7 +18337,7 @@ "9\n" "help.text" msgid "Select the object." -msgstr "" +msgstr "Виберіть об'єкт." #: wrap.xhp msgctxt "" @@ -18346,7 +18346,7 @@ "10\n" "help.text" msgid "Choose <emph>Format - Wrap</emph>, and then choose the wrapping style that you want to apply." -msgstr "" +msgstr "Виберіть команду <emph>Формат - ОбтіканнÑ</emph>, а потім виберіть потрібний Ñтиль обтіканнÑ." #: wrap.xhp msgctxt "" @@ -18355,7 +18355,7 @@ "4\n" "help.text" msgid "The current wrapping style is indicated by a bullet." -msgstr "" +msgstr "Поточний Ñтиль Ð¾Ð±Ñ‚Ñ–ÐºÐ°Ð½Ð½Ñ Ð¿Ð¾Ð·Ð½Ð°Ñ‡Ð°Ñ”Ñ‚ÑŒÑÑ Ð¼Ð°Ñ€ÐºÐµÑ€Ð¾Ð¼." #: wrap.xhp msgctxt "" @@ -18364,7 +18364,7 @@ "14\n" "help.text" msgid "To Specify the Wrapping Properties" -msgstr "" +msgstr "Ð’Ð¸Ð·Ð½Ð°Ñ‡ÐµÐ½Ð½Ñ Ð²Ð»Ð°ÑтивоÑтей обтіканнÑ" #: wrap.xhp msgctxt "" @@ -18373,7 +18373,7 @@ "15\n" "help.text" msgid "Select the object." -msgstr "" +msgstr "Виберіть об'єкт" #: wrap.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/uk/instsetoo_native/inc_openoffice/windows/msi_languages.po libreoffice-5.1.2~rc2/translations/source/uk/instsetoo_native/inc_openoffice/windows/msi_languages.po --- libreoffice-5.1.1~rc2/translations/source/uk/instsetoo_native/inc_openoffice/windows/msi_languages.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/uk/instsetoo_native/inc_openoffice/windows/msi_languages.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,17 +4,17 @@ "Project-Id-Version: PACKAGE VERSION\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-04-26 07:24+0000\n" -"Last-Translator: Ðндрій <andriykopanytsia@gmail.com>\n" +"PO-Revision-Date: 2016-03-09 14:21+0000\n" +"Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: uk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -"X-Generator: LibreOffice\n" +"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1430033078.000000\n" +"X-POOTLE-MTIME: 1457533281.000000\n" #: ActionTe.ulf msgctxt "" @@ -2390,7 +2390,7 @@ "OOO_CONTROL_236\n" "LngText.text" msgid "Please wait while the Installation Wizard installs [ProductName]. This may take several minutes." -msgstr "Зачекайте, доки помічник вÑтановить [ProductName]. Це може зайнÑти декілька хвилин." +msgstr "Зачекайте, доки помічник вÑтановить [ProductName]. Це може зайнÑти декілька хвилин." #: Control.ulf msgctxt "" @@ -2398,7 +2398,7 @@ "OOO_CONTROL_237\n" "LngText.text" msgid "Please wait while the Installation Wizard uninstalls [ProductName]. This may take several minutes." -msgstr "Зачекайте, доки помічник видалить [ProductName]. Це може зайнÑти декілька хвилин." +msgstr "Зачекайте, доки помічник видалить [ProductName]. Це може зайнÑти декілька хвилин." #: Control.ulf msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/uk/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-5.1.2~rc2/translations/source/uk/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-5.1.1~rc2/translations/source/uk/officecfg/registry/data/org/openoffice/Office/UI.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/uk/officecfg/registry/data/org/openoffice/Office/UI.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-01 12:05+0000\n" +"PO-Revision-Date: 2016-02-25 13:32+0000\n" "Last-Translator: Olexandr Pylypchuk <pilipchukap@rambler.ru>\n" "Language-Team: translation@linux.org.ua\n" "Language: uk\n" @@ -14,7 +14,7 @@ "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: 1454328305.000000\n" +"X-POOTLE-MTIME: 1456407153.000000\n" #: BaseWindowState.xcu msgctxt "" @@ -22741,7 +22741,7 @@ "Label\n" "value.text" msgid "Insert single-column frame manually" -msgstr "Ð’Ñтавити кадр (одна колонка)" +msgstr "Ð’Ñтавити рамку з однією колонкою" #: WriterCommands.xcu msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/uk/sd/source/ui/app.po libreoffice-5.1.2~rc2/translations/source/uk/sd/source/ui/app.po --- libreoffice-5.1.1~rc2/translations/source/uk/sd/source/ui/app.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/uk/sd/source/ui/app.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-09 23:27+0000\n" +"PO-Revision-Date: 2016-02-25 13:36+0000\n" "Last-Translator: Olexandr Pylypchuk <pilipchukap@rambler.ru>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: uk\n" @@ -14,7 +14,7 @@ "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: 1452382026.000000\n" +"X-POOTLE-MTIME: 1456407381.000000\n" #: menuids3_tmpl.src msgctxt "" @@ -2422,7 +2422,7 @@ "STR_UNDO_INSERT_TEXTFRAME\n" "string.text" msgid "Insert text frame" -msgstr "Ð’Ñтавити кадр" +msgstr "Ð’Ñтавити текÑтову рамку" #: strings.src msgctxt "" @@ -3404,7 +3404,7 @@ "STR_HTMLEXP_NOFRAMES\n" "string.text" msgid "Unfortunately your browser does not support floating frames." -msgstr "Шкода, але ваш переглÑдач не підтримує рухливі кадри." +msgstr "Шкода, але ваш переглÑдач не підтримує рухомі фрейми." #: strings.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/uk/svx/source/dialog.po libreoffice-5.1.2~rc2/translations/source/uk/svx/source/dialog.po --- libreoffice-5.1.1~rc2/translations/source/uk/svx/source/dialog.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/uk/svx/source/dialog.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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 07:10+0000\n" -"Last-Translator: Olexandr Pylypchuk <pilipchukap@rambler.ru>\n" +"PO-Revision-Date: 2016-03-09 16:17+0000\n" +"Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: uk\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "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: 1448003456.000000\n" +"X-POOTLE-MTIME: 1457540269.000000\n" #: bmpmask.src msgctxt "" @@ -3373,7 +3373,7 @@ "STR_FLY_REL_PG_LEFT\n" "string.text" msgid "Left frame border" -msgstr "Лівий край кадру" +msgstr "Лівий край фрейма" #: swframeposstrings.src msgctxt "" @@ -3382,7 +3382,7 @@ "STR_FLY_MIR_REL_PG_LEFT\n" "string.text" msgid "Inner frame border" -msgstr "Внутрішній край кадру" +msgstr "Внутрішній край фрейма" #: swframeposstrings.src msgctxt "" @@ -3391,7 +3391,7 @@ "STR_FLY_REL_PG_RIGHT\n" "string.text" msgid "Right frame border" -msgstr "Правий край кадру" +msgstr "Правий край фрейма" #: swframeposstrings.src msgctxt "" @@ -3400,7 +3400,7 @@ "STR_FLY_MIR_REL_PG_RIGHT\n" "string.text" msgid "Outer frame border" -msgstr "Зовнішній край кадру" +msgstr "Зовнішній край фрейма" #: swframeposstrings.src msgctxt "" @@ -3409,7 +3409,7 @@ "STR_FLY_REL_PG_FRAME\n" "string.text" msgid "Entire frame" -msgstr "ВеÑÑŒ кадр" +msgstr "ВеÑÑŒ фрейм" #: swframeposstrings.src msgctxt "" @@ -4444,7 +4444,7 @@ "RID_SUBSETSTR_GENERAL_PUNCTUATION\n" "string.text" msgid "General punctuation" -msgstr "Загальний пунктуаціÑ" +msgstr "Загальна пунктуаціÑ" #: ucsubset.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/uk/svx/source/svdraw.po libreoffice-5.1.2~rc2/translations/source/uk/svx/source/svdraw.po --- libreoffice-5.1.1~rc2/translations/source/uk/svx/source/svdraw.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/uk/svx/source/svdraw.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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-22 19:24+0000\n" +"PO-Revision-Date: 2016-02-25 13:53+0000\n" "Last-Translator: Olexandr Pylypchuk <pilipchukap@rambler.ru>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: uk\n" @@ -14,7 +14,7 @@ "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: 1453490658.000000\n" +"X-POOTLE-MTIME: 1456408381.000000\n" #: svdstr.src msgctxt "" @@ -558,7 +558,7 @@ "STR_ObjNameSingulTEXTLNK\n" "string.text" msgid "Linked text frame" -msgstr "З'єднаний текÑтовий кадр" +msgstr "Зв'Ñзана текÑтова рамка" #: svdstr.src msgctxt "" @@ -566,7 +566,7 @@ "STR_ObjNamePluralTEXTLNK\n" "string.text" msgid "Linked text frames" -msgstr "З'єднані текÑтові кадри" +msgstr "Зв'Ñзані текÑтові рамки" #: svdstr.src msgctxt "" @@ -2718,7 +2718,7 @@ "STR_ItemNam_TEXT_AUTOGROWHEIGHT\n" "string.text" msgid "AutoFit frame height" -msgstr "ÐÐ²Ñ‚Ð¾Ð¿Ñ–Ð´Ð±Ð¸Ñ€Ð°Ð½Ð½Ñ Ñ€Ð¾Ð·Ð¼Ñ–Ñ€Ñƒ кадру" +msgstr "ÐÐ²Ñ‚Ð¾Ð¿Ñ–Ð´Ð±Ð¸Ñ€Ð°Ð½Ð½Ñ Ð²Ð¸Ñоти рамки" #: svdstr.src msgctxt "" @@ -2726,7 +2726,7 @@ "STR_ItemNam_TEXT_MINFRAMEHEIGHT\n" "string.text" msgid "Min. frame height" -msgstr "Мінімальна виÑота кадру" +msgstr "Ðайменша виÑота рамки" #: svdstr.src msgctxt "" @@ -2734,7 +2734,7 @@ "STR_ItemNam_TEXT_MAXFRAMEHEIGHT\n" "string.text" msgid "Max. frame height" -msgstr "МакÑимальна виÑота кадру" +msgstr "Ðайбільша виÑота рамки" #: svdstr.src msgctxt "" @@ -2742,7 +2742,7 @@ "STR_ItemNam_TEXT_AUTOGROWWIDTH\n" "string.text" msgid "AutoFit frame width" -msgstr "ÐÐ²Ñ‚Ð¾Ð¿Ñ–Ð´Ð±Ð¸Ñ€Ð°Ð½Ð½Ñ ÑˆÐ¸Ñ€Ð¸Ð½Ð¸ кадру" +msgstr "ÐÐ²Ñ‚Ð¾Ð¿Ñ–Ð´Ð±Ð¸Ñ€Ð°Ð½Ð½Ñ ÑˆÐ¸Ñ€Ð¸Ð½Ð¸ рамки" #: svdstr.src msgctxt "" @@ -2750,7 +2750,7 @@ "STR_ItemNam_TEXT_MINFRAMEWIDTH\n" "string.text" msgid "Min. frame width" -msgstr "Мінімальна ширина кадру" +msgstr "Ðайменша ширина рамки" #: svdstr.src msgctxt "" @@ -2758,7 +2758,7 @@ "STR_ItemNam_TEXT_MAXFRAMEWIDTH\n" "string.text" msgid "Max. frame width" -msgstr "МакÑимальна ширина кадру" +msgstr "Ðайбільша ширина рамки" #: svdstr.src msgctxt "" @@ -2782,7 +2782,7 @@ "STR_ItemNam_TEXT_FITTOSIZE\n" "string.text" msgid "Fit text to frame" -msgstr "Підігнати текÑÑ‚ до кадру" +msgstr "Підігнати текÑÑ‚ до рамки" #: svdstr.src msgctxt "" @@ -3654,7 +3654,7 @@ "SIP_SA_TEXT_MINFRAMEHEIGHT\n" "string.text" msgid "Minimal frame height" -msgstr "Мінімальна виÑота рамки" +msgstr "Ðайменша виÑота рамки" #: svdstr.src msgctxt "" @@ -3670,7 +3670,7 @@ "SIP_SA_TEXT_FITTOSIZE\n" "string.text" msgid "Fit text to frame" -msgstr "Підігнати текÑÑ‚ до кадру" +msgstr "Підігнати текÑÑ‚ до рамки" #: svdstr.src msgctxt "" @@ -3678,7 +3678,7 @@ "SIP_SA_TEXT_LEFTDIST\n" "string.text" msgid "Left text frame spacing" -msgstr "Інтервал кадру текÑту ліворуч" +msgstr "Інтервал між рамкою Ñ– текÑтом ліворуч" #: svdstr.src msgctxt "" @@ -3686,7 +3686,7 @@ "SIP_SA_TEXT_RIGHTDIST\n" "string.text" msgid "Right text frame spacing" -msgstr "Інтервал кадру текÑту праворуч" +msgstr "Інтервал між рамкою Ñ– текÑтом праворуч" #: svdstr.src msgctxt "" @@ -3694,7 +3694,7 @@ "SIP_SA_TEXT_UPPERDIST\n" "string.text" msgid "Upper text frame spacing" -msgstr "Інтервал кадру текÑту згори" +msgstr "Інтервал між рамкою Ñ– текÑтом текÑту вгорі" #: svdstr.src msgctxt "" @@ -3702,7 +3702,7 @@ "SIP_SA_TEXT_LOWERDIST\n" "string.text" msgid "Lower text frame spacing" -msgstr "Інтервал кадру текÑту знизу" +msgstr "Інтервал між рамкою Ñ– текÑтом внизу" #: svdstr.src msgctxt "" @@ -3718,7 +3718,7 @@ "SIP_SA_TEXT_MAXFRAMEHEIGHT\n" "string.text" msgid "Maximal frame height" -msgstr "МакÑимальна виÑота кадру" +msgstr "Ðайбільша виÑота рамки" #: svdstr.src msgctxt "" @@ -3726,7 +3726,7 @@ "SIP_SA_TEXT_MINFRAMEWIDTH\n" "string.text" msgid "Minimal frame width" -msgstr "Мінімальна ширина кадру" +msgstr "Ðайменша ширина рамки" #: svdstr.src msgctxt "" @@ -3734,7 +3734,7 @@ "SIP_SA_TEXT_MAXFRAMEWIDTH\n" "string.text" msgid "Maximal frame width" -msgstr "МакÑимальна ширина кадру" +msgstr "Ðайбільша ширина рамки" #: svdstr.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/uk/svx/uiconfig/ui.po libreoffice-5.1.2~rc2/translations/source/uk/svx/uiconfig/ui.po --- libreoffice-5.1.1~rc2/translations/source/uk/svx/uiconfig/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/uk/svx/uiconfig/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\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-11-20 07:11+0000\n" -"Last-Translator: Ðндрій Бандура <andriykopanytsia@gmail.com>\n" +"PO-Revision-Date: 2016-02-25 13:53+0000\n" +"Last-Translator: Olexandr Pylypchuk <pilipchukap@rambler.ru>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: uk\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "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: 1448003471.000000\n" +"X-POOTLE-MTIME: 1456408401.000000\n" #: acceptrejectchangesdialog.ui msgctxt "" @@ -3600,7 +3600,7 @@ "label\n" "string.text" msgid "To object _frame" -msgstr "До рамки об'єкту" +msgstr "До _рамки об'єкта" #: optgridpage.ui msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/uk/sw/source/ui/utlui.po libreoffice-5.1.2~rc2/translations/source/uk/sw/source/ui/utlui.po --- libreoffice-5.1.1~rc2/translations/source/uk/sw/source/ui/utlui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/uk/sw/source/ui/utlui.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\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-24 17:09+0100\n" +"POT-Creation-Date: 2016-03-29 16:07+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -1778,7 +1778,7 @@ "STR_CONTENT_TYPE_FRAME\n" "string.text" msgid "Text frames" -msgstr "ТекÑтові рамки " +msgstr "ТекÑтові рамки" #: utlui.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/uk/sw/source/uibase/docvw.po libreoffice-5.1.2~rc2/translations/source/uk/sw/source/uibase/docvw.po --- libreoffice-5.1.1~rc2/translations/source/uk/sw/source/uibase/docvw.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/uk/sw/source/uibase/docvw.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-23 19:58+0000\n" +"PO-Revision-Date: 2016-02-25 13:59+0000\n" "Last-Translator: Olexandr Pylypchuk <pilipchukap@rambler.ru>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: uk\n" @@ -14,7 +14,7 @@ "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: 1456257500.000000\n" +"X-POOTLE-MTIME: 1456408759.000000\n" #: docvw.src msgctxt "" @@ -238,7 +238,7 @@ "STR_CHAIN_OK\n" "string.text" msgid "Click the left mouse button to link the frames." -msgstr "ÐатиÑніть ліву кнопку миші щоб зв'Ñзати фрейми." +msgstr "ÐатиÑніть ліву кнопку миші щоб зв'Ñзати рамки." #: docvw.src msgctxt "" @@ -246,7 +246,7 @@ "STR_CHAIN_NOT_EMPTY\n" "string.text" msgid "Target frame not empty." -msgstr "Цільовий фрейм не порожній." +msgstr "Цільова рамка не порожнÑ." #: docvw.src msgctxt "" @@ -254,7 +254,7 @@ "STR_CHAIN_IS_IN_CHAIN\n" "string.text" msgid "Target frame is already linked." -msgstr "Цільовий фрейм вже має зв'Ñзок." +msgstr "Цільова рамка вже має зв'Ñзок." #: docvw.src msgctxt "" @@ -262,7 +262,7 @@ "STR_CHAIN_WRONG_AREA\n" "string.text" msgid "The target frame for the link is in an invalid area." -msgstr "Цільовий фрейм знаходитьÑÑ Ð² облаÑÑ‚Ñ–, зв'Ñзок у Ñкому не може знаходитиÑÑŒ." +msgstr "Цільова рамка знаходитьÑÑ Ð² облаÑÑ‚Ñ–, у Ñкій не може знаходитиÑÑŒ зв'Ñзок." #: docvw.src msgctxt "" @@ -270,7 +270,7 @@ "STR_CHAIN_NOT_FOUND\n" "string.text" msgid "Target frame not found at current position." -msgstr "У поточній позиції фрейм не виÑвлено." +msgstr "У поточній позиції рамки не виÑвлено." #: docvw.src msgctxt "" @@ -278,7 +278,7 @@ "STR_CHAIN_SOURCE_CHAINED\n" "string.text" msgid "The source frame is already the source of a link." -msgstr "Первинний фрейм вже Ñ” джерелом зв'Ñзку." +msgstr "Первинна рамка вже Ñ” джерелом зв'Ñзку." #: docvw.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/uk/sw/uiconfig/swriter/ui.po libreoffice-5.1.2~rc2/translations/source/uk/sw/uiconfig/swriter/ui.po --- libreoffice-5.1.1~rc2/translations/source/uk/sw/uiconfig/swriter/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/uk/sw/uiconfig/swriter/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: LibO 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-23 19:59+0000\n" -"Last-Translator: Olexandr Pylypchuk <pilipchukap@rambler.ru>\n" +"PO-Revision-Date: 2016-03-09 16:57+0000\n" +"Last-Translator: system user <>\n" "Language-Team: none\n" "Language: uk\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "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: 1456257594.000000\n" +"X-POOTLE-MTIME: 1457542657.000000\n" #: abstractdialog.ui msgctxt "" @@ -1607,7 +1607,7 @@ "label\n" "string.text" msgid "Target frame:" -msgstr "Фрейм призначеннÑ:" +msgstr "Цільовий фрейм:" #: charurlpage.ui msgctxt "" @@ -5607,7 +5607,7 @@ "label\n" "string.text" msgid "To _frame" -msgstr "До рамки" +msgstr "До _рамки" #: frmtypepage.ui msgctxt "" @@ -11021,7 +11021,7 @@ "label\n" "string.text" msgid "Text Flow" -msgstr "ÐŸÐ¾Ð»Ð¾Ð¶ÐµÐ½Ð½Ñ Ð½Ð° Ñторінці" +msgstr "Ð Ð¾Ð·Ñ‚Ð°ÑˆÑƒÐ²Ð°Ð½Ð½Ñ Ñ‚ÐµÐºÑту" #: paradialog.ui msgctxt "" @@ -13397,7 +13397,7 @@ "label\n" "string.text" msgid "Text Flow" -msgstr "ÐŸÐ¾Ð»Ð¾Ð¶ÐµÐ½Ð½Ñ Ð½Ð° Ñторінці" +msgstr "Ð Ð¾Ð·Ñ‚Ð°ÑˆÑƒÐ²Ð°Ð½Ð½Ñ Ñ‚ÐµÐºÑту" #: tableproperties.ui msgctxt "" @@ -13559,7 +13559,7 @@ "label\n" "string.text" msgid "Text Flow" -msgstr "ÐŸÐ¾Ð»Ð¾Ð¶ÐµÐ½Ð½Ñ Ð½Ð° Ñторінці" +msgstr "Ð Ð¾Ð·Ñ‚Ð°ÑˆÑƒÐ²Ð°Ð½Ð½Ñ Ñ‚ÐµÐºÑту" #: tabletextflowpage.ui msgctxt "" @@ -13838,7 +13838,7 @@ "label\n" "string.text" msgid "Text Flow" -msgstr "ÐŸÐ¾Ð»Ð¾Ð¶ÐµÐ½Ð½Ñ Ð½Ð° Ñторінці" +msgstr "Ð Ð¾Ð·Ñ‚Ð°ÑˆÑƒÐ²Ð°Ð½Ð½Ñ Ñ‚ÐµÐºÑту" #: templatedialog2.ui msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/uk/uui/source.po libreoffice-5.1.2~rc2/translations/source/uk/uui/source.po --- libreoffice-5.1.1~rc2/translations/source/uk/uui/source.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/uk/uui/source.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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-13 20:35+0000\n" +"PO-Revision-Date: 2016-02-25 16:53+0000\n" "Last-Translator: Olexandr Pylypchuk <pilipchukap@rambler.ru>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: uk\n" @@ -14,7 +14,7 @@ "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: 1439498116.000000\n" +"X-POOTLE-MTIME: 1456419231.000000\n" #: alreadyopen.src msgctxt "" @@ -168,7 +168,7 @@ "(ERRCODE_UUI_IO_ACCESSDENIED & ERRCODE_RES_MASK)\n" "string.text" msgid "Access to $(ARG1) was denied." -msgstr "ДоÑтупі до $(ARG1) заборонено." +msgstr "ДоÑтуп до $(ARG1) заборонено." #: ids.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/uk/wizards/source/formwizard.po libreoffice-5.1.2~rc2/translations/source/uk/wizards/source/formwizard.po --- libreoffice-5.1.1~rc2/translations/source/uk/wizards/source/formwizard.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/uk/wizards/source/formwizard.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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-01-09 23:27+0000\n" -"Last-Translator: Olexandr Pylypchuk <pilipchukap@rambler.ru>\n" +"PO-Revision-Date: 2016-03-09 17:08+0000\n" +"Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: uk\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "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: 1452382059.000000\n" +"X-POOTLE-MTIME: 1457543335.000000\n" #: dbwizres.src msgctxt "" @@ -2597,7 +2597,7 @@ "RID_DB_TABLE_WIZARD_START + 30\n" "string.text" msgid "Define p~rimary key as a combination of several fields " -msgstr "Визначити ~первинний ключ Ñк комбінацію кількох полів" +msgstr "Визначити ~первинний ключ Ñк комбінацію кількох полів " #: dbwizres.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/uz/cui/uiconfig/ui.po libreoffice-5.1.2~rc2/translations/source/uz/cui/uiconfig/ui.po --- libreoffice-5.1.1~rc2/translations/source/uz/cui/uiconfig/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/uz/cui/uiconfig/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 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 15:04+0000\n" +"PO-Revision-Date: 2016-03-09 13:46+0000\n" "Last-Translator: system user <>\n" "Language-Team: none\n" "Language: uz\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1452265470.000000\n" +"X-POOTLE-MTIME: 1457531200.000000\n" #: aboutconfigdialog.ui msgctxt "" @@ -14066,31 +14066,34 @@ 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 @@ -17366,40 +17369,44 @@ msgstr "(YoÊ»q)" #: 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 @@ -17422,40 +17429,44 @@ msgstr "(YoÊ»q)" #: 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 -Nru libreoffice-5.1.1~rc2/translations/source/uz/dbaccess/uiconfig/ui.po libreoffice-5.1.2~rc2/translations/source/uz/dbaccess/uiconfig/ui.po --- libreoffice-5.1.1~rc2/translations/source/uz/dbaccess/uiconfig/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/uz/dbaccess/uiconfig/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: LibO 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:30+0000\n" -"Last-Translator: Andras <timar74@gmail.com>\n" +"PO-Revision-Date: 2016-03-09 13:51+0000\n" +"Last-Translator: system user <>\n" "Language-Team: none\n" "Language: uz\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: 1361136619.0\n" +"X-POOTLE-MTIME: 1457531485.000000\n" #: admindialog.ui msgctxt "" @@ -1927,22 +1927,24 @@ 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 @@ msgstr "" #: queryfilterdialog.ui +#, fuzzy msgctxt "" "queryfilterdialog.ui\n" "cond1\n" "4\n" "stringlist.text" msgid ">" -msgstr "" +msgstr ">" #: queryfilterdialog.ui msgctxt "" @@ -3016,58 +3019,64 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/uz/extensions/uiconfig/sabpilot/ui.po libreoffice-5.1.2~rc2/translations/source/uz/extensions/uiconfig/sabpilot/ui.po --- libreoffice-5.1.1~rc2/translations/source/uz/extensions/uiconfig/sabpilot/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/uz/extensions/uiconfig/sabpilot/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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 03:45+0000\n" -"Last-Translator: uzadmin <akmalxster@gmail.com>\n" +"PO-Revision-Date: 2016-03-09 13:58+0000\n" +"Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: uz\n" "MIME-Version: 1.0\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1435290358.000000\n" +"X-POOTLE-MTIME: 1457531915.000000\n" #: contentfieldpage.ui msgctxt "" @@ -280,13 +280,14 @@ msgstr "" #: gridfieldsselectionpage.ui +#, fuzzy msgctxt "" "gridfieldsselectionpage.ui\n" "fieldright\n" "label\n" "string.text" msgid "->" -msgstr "" +msgstr "->" #: gridfieldsselectionpage.ui msgctxt "" @@ -298,13 +299,14 @@ msgstr "" #: gridfieldsselectionpage.ui +#, fuzzy msgctxt "" "gridfieldsselectionpage.ui\n" "fieldleft\n" "label\n" "string.text" msgid "<-" -msgstr "" +msgstr "<-" #: gridfieldsselectionpage.ui msgctxt "" @@ -379,22 +381,24 @@ 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 @@ msgstr "" #: tableselectionpage.ui +#, fuzzy msgctxt "" "tableselectionpage.ui\n" "search\n" "label\n" "string.text" msgid "_..." -msgstr "" +msgstr "_..." #: tableselectionpage.ui msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/uz/librelogo/source/pythonpath.po libreoffice-5.1.2~rc2/translations/source/uz/librelogo/source/pythonpath.po --- libreoffice-5.1.1~rc2/translations/source/uz/librelogo/source/pythonpath.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/uz/librelogo/source/pythonpath.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,17 +3,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: 2014-05-02 00:06+0200\n" -"PO-Revision-Date: 2013-02-17 21:30+0000\n" -"Last-Translator: Andras <timar74@gmail.com>\n" +"POT-Creation-Date: 2015-04-22 23:40+0200\n" +"PO-Revision-Date: 2016-03-09 14:13+0000\n" +"Last-Translator: system user <>\n" "Language-Team: none\n" "Language: uz\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: 1361136619.0\n" +"X-POOTLE-MTIME: 1457532796.000000\n" #: LibreLogo_en_US.properties msgctxt "" @@ -799,20 +799,22 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/uz/officecfg/registry/data/org/openoffice/Office.po libreoffice-5.1.2~rc2/translations/source/uz/officecfg/registry/data/org/openoffice/Office.po --- libreoffice-5.1.1~rc2/translations/source/uz/officecfg/registry/data/org/openoffice/Office.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/uz/officecfg/registry/data/org/openoffice/Office.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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:18+0000\n" -"Last-Translator: uzadmin <akmalxster@gmail.com>\n" +"PO-Revision-Date: 2016-03-09 14:21+0000\n" +"Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: uz\n" "MIME-Version: 1.0\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1438903128.000000\n" +"X-POOTLE-MTIME: 1457533289.000000\n" #: Addons.xcu msgctxt "" @@ -1429,13 +1429,14 @@ msgstr "" #: PresentationMinimizer.xcu +#, fuzzy msgctxt "" "PresentationMinimizer.xcu\n" "..PresentationMinimizer.Strings\n" "STR_FILESIZESEPARATOR\n" "value.text" msgid "." -msgstr "" +msgstr "." #: PresentationMinimizer.xcu msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/uz/reportdesign/uiconfig/dbreport/ui.po libreoffice-5.1.2~rc2/translations/source/uz/reportdesign/uiconfig/dbreport/ui.po --- libreoffice-5.1.1~rc2/translations/source/uz/reportdesign/uiconfig/dbreport/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/uz/reportdesign/uiconfig/dbreport/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 20:06+0000\n" +"PO-Revision-Date: 2016-03-09 14:45+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: uz\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1416427611.000000\n" +"X-POOTLE-MTIME: 1457534715.000000\n" #: backgrounddialog.ui msgctxt "" @@ -196,13 +196,14 @@ msgstr "" #: conditionwin.ui +#, fuzzy msgctxt "" "conditionwin.ui\n" "lhsButton\n" "label\n" "string.text" msgid "..." -msgstr "" +msgstr "..." #: conditionwin.ui msgctxt "" @@ -214,13 +215,14 @@ msgstr "" #: conditionwin.ui +#, fuzzy msgctxt "" "conditionwin.ui\n" "rhsButton\n" "label\n" "string.text" msgid "..." -msgstr "" +msgstr "..." #: conditionwin.ui msgctxt "" @@ -277,13 +279,14 @@ msgstr "" #: conditionwin.ui +#, fuzzy msgctxt "" "conditionwin.ui\n" "removeButton\n" "label\n" "string.text" msgid "-" -msgstr "" +msgstr "-" #: conditionwin.ui msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/uz/sc/source/ui/src.po libreoffice-5.1.2~rc2/translations/source/uz/sc/source/ui/src.po --- libreoffice-5.1.1~rc2/translations/source/uz/sc/source/ui/src.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/uz/sc/source/ui/src.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-14 05:38+0000\n" +"PO-Revision-Date: 2016-03-09 15:04+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: uz\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1431581929.000000\n" +"X-POOTLE-MTIME: 1457535864.000000\n" #: condformatdlg.src #, fuzzy @@ -2653,13 +2653,14 @@ msgstr "Matn atributlari" #: globstr.src +#, fuzzy msgctxt "" "globstr.src\n" "RID_GLOBSTR\n" "STR_HFCMD_DELIMITER\n" "string.text" msgid "\\" -msgstr "" +msgstr "\\" #: globstr.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/uz/sc/uiconfig/scalc/ui.po libreoffice-5.1.2~rc2/translations/source/uz/sc/uiconfig/scalc/ui.po --- libreoffice-5.1.1~rc2/translations/source/uz/sc/uiconfig/scalc/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/uz/sc/uiconfig/scalc/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: LibO 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 03:54+0000\n" -"Last-Translator: uzadmin <akmalxster@gmail.com>\n" +"PO-Revision-Date: 2016-03-09 15:09+0000\n" +"Last-Translator: system user <>\n" "Language-Team: none\n" "Language: uz\n" "MIME-Version: 1.0\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1435290887.000000\n" +"X-POOTLE-MTIME: 1457536147.000000\n" #: advancedfilterdialog.ui msgctxt "" @@ -6389,22 +6389,24 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/uz/sd/source/ui/app.po libreoffice-5.1.2~rc2/translations/source/uz/sd/source/ui/app.po --- libreoffice-5.1.1~rc2/translations/source/uz/sd/source/ui/app.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/uz/sd/source/ui/app.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-14 05:39+0000\n" +"PO-Revision-Date: 2016-03-09 15:25+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: uz\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1431581964.000000\n" +"X-POOTLE-MTIME: 1457537113.000000\n" #: menuids3_tmpl.src msgctxt "" @@ -3736,12 +3736,13 @@ msgstr "<raqam>" #: strings.src +#, fuzzy msgctxt "" "strings.src\n" "STR_FIELD_PLACEHOLDER_COUNT\n" "string.text" msgid "<count>" -msgstr "" +msgstr "<count>" #: strings.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/uz/sd/uiconfig/simpress/ui.po libreoffice-5.1.2~rc2/translations/source/uz/sd/uiconfig/simpress/ui.po --- libreoffice-5.1.1~rc2/translations/source/uz/sd/uiconfig/simpress/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/uz/sd/uiconfig/simpress/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: LibO 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 03:57+0000\n" -"Last-Translator: uzadmin <akmalxster@gmail.com>\n" +"PO-Revision-Date: 2016-03-09 15:27+0000\n" +"Last-Translator: system user <>\n" "Language-Team: none\n" "Language: uz\n" "MIME-Version: 1.0\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1435291036.000000\n" +"X-POOTLE-MTIME: 1457537262.000000\n" #: assistentdialog.ui msgctxt "" @@ -997,22 +997,24 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/uz/starmath/source.po libreoffice-5.1.2~rc2/translations/source/uz/starmath/source.po --- libreoffice-5.1.1~rc2/translations/source/uz/starmath/source.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/uz/starmath/source.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\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-12 13:27+0200\n" +"POT-Creation-Date: 2016-03-29 16:07+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff -Nru libreoffice-5.1.1~rc2/translations/source/uz/sw/source/ui/dbui.po libreoffice-5.1.2~rc2/translations/source/uz/sw/source/ui/dbui.po --- libreoffice-5.1.1~rc2/translations/source/uz/sw/source/ui/dbui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/uz/sw/source/ui/dbui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 05:46+0000\n" +"PO-Revision-Date: 2016-03-09 15:56+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: uz\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1431582387.000000\n" +"X-POOTLE-MTIME: 1457538974.000000\n" #: dbui.src msgctxt "" @@ -487,31 +487,34 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/uz/sw/source/ui/index.po libreoffice-5.1.2~rc2/translations/source/uz/sw/source/ui/index.po --- libreoffice-5.1.1~rc2/translations/source/uz/sw/source/ui/index.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/uz/sw/source/ui/index.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,16 +3,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-01-05 15:10+0200\n" -"Last-Translator: Anonymous Pootle User\n" +"POT-Creation-Date: 2015-04-22 23:40+0200\n" +"PO-Revision-Date: 2016-03-09 15:57+0000\n" +"Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: uz\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: LibreOffice\n" +"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" +"X-POOTLE-MTIME: 1457539061.000000\n" #: cnttab.src #, fuzzy @@ -56,20 +57,22 @@ 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 @@ msgstr "" #: cnttab.src +#, fuzzy msgctxt "" "cnttab.src\n" "STR_TOKEN_PAGE_NUMS\n" "string.text" msgid "#" -msgstr "" +msgstr "#" #: cnttab.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/uz/sw/uiconfig/swriter/ui.po libreoffice-5.1.2~rc2/translations/source/uz/sw/uiconfig/swriter/ui.po --- libreoffice-5.1.1~rc2/translations/source/uz/sw/uiconfig/swriter/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/uz/sw/uiconfig/swriter/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: LibO 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:19+0000\n" -"Last-Translator: uzadmin <akmalxster@gmail.com>\n" +"PO-Revision-Date: 2016-03-09 16:10+0000\n" +"Last-Translator: system user <>\n" "Language-Team: none\n" "Language: uz\n" "MIME-Version: 1.0\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1438903166.000000\n" +"X-POOTLE-MTIME: 1457539838.000000\n" #: abstractdialog.ui msgctxt "" @@ -2310,13 +2310,14 @@ msgstr "Jadvalni matnga aylantirish" #: converttexttable.ui +#, fuzzy msgctxt "" "converttexttable.ui\n" "othered\n" "text\n" "string.text" msgid "," -msgstr "" +msgstr "," #: converttexttable.ui msgctxt "" @@ -2502,13 +2503,14 @@ msgstr "" #: createaddresslist.ui +#, fuzzy msgctxt "" "createaddresslist.ui\n" "PREV\n" "label\n" "string.text" msgid "<" -msgstr "" +msgstr "<" #: createaddresslist.ui msgctxt "" @@ -2520,13 +2522,14 @@ msgstr "" #: createaddresslist.ui +#, fuzzy msgctxt "" "createaddresslist.ui\n" "NEXT\n" "label\n" "string.text" msgid ">" -msgstr "" +msgstr ">" #: createaddresslist.ui msgctxt "" @@ -4433,13 +4436,14 @@ msgstr "" #: fldvarpage.ui +#, fuzzy msgctxt "" "fldvarpage.ui\n" "separator\n" "text\n" "string.text" msgid "." -msgstr "" +msgstr "." #: fldvarpage.ui msgctxt "" @@ -5420,22 +5424,24 @@ 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 @@ msgstr "OÊ»rni" #: insertcaption.ui +#, fuzzy msgctxt "" "insertcaption.ui\n" "separator_edit\n" "text\n" "string.text" msgid ": " -msgstr "" +msgstr ": " #: insertcaption.ui msgctxt "" @@ -6363,13 +6370,14 @@ 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 @@ msgstr "" #: mmpreparepage.ui +#, fuzzy msgctxt "" "mmpreparepage.ui\n" "prev\n" "label\n" "string.text" msgid "<" -msgstr "" +msgstr "<" #: mmpreparepage.ui msgctxt "" @@ -8724,13 +8733,14 @@ msgstr "" #: mmpreparepage.ui +#, fuzzy msgctxt "" "mmpreparepage.ui\n" "next\n" "label\n" "string.text" msgid ">" -msgstr "" +msgstr ">" #: mmpreparepage.ui #, fuzzy @@ -9578,13 +9588,14 @@ msgstr "OÊ»rni" #: optcaptionpage.ui +#, fuzzy msgctxt "" "optcaptionpage.ui\n" "numseparator\n" "text\n" "string.text" msgid ". " -msgstr "" +msgstr ". " #: optcaptionpage.ui #, fuzzy @@ -15699,40 +15710,44 @@ msgstr "[YoÊ»q]" #: 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 -Nru libreoffice-5.1.1~rc2/translations/source/uz/vcl/source/src.po libreoffice-5.1.2~rc2/translations/source/uz/vcl/source/src.po --- libreoffice-5.1.1~rc2/translations/source/uz/vcl/source/src.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/uz/vcl/source/src.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 21:04+0000\n" +"PO-Revision-Date: 2016-03-09 16:14+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: uz\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1449867862.000000\n" +"X-POOTLE-MTIME: 1457540040.000000\n" #: app.src msgctxt "" @@ -1234,12 +1234,13 @@ msgstr "" #: print.src +#, fuzzy msgctxt "" "print.src\n" "SV_PRINT_INVALID_TXT\n" "string.text" msgid "<ignore>" -msgstr "" +msgstr "<ignore>" #: print.src msgctxt "" @@ -1518,13 +1519,14 @@ msgstr "" #: units.src +#, fuzzy msgctxt "" "units.src\n" "SV_FUNIT_STRINGS\n" "°\n" "itemlist.text" msgid "°" -msgstr "" +msgstr "°" #: units.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/uz/wizards/source/formwizard.po libreoffice-5.1.2~rc2/translations/source/uz/wizards/source/formwizard.po --- libreoffice-5.1.1~rc2/translations/source/uz/wizards/source/formwizard.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/uz/wizards/source/formwizard.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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-14 05:47+0000\n" -"Last-Translator: uzadmin <akmalxster@gmail.com>\n" +"PO-Revision-Date: 2016-03-09 16:18+0000\n" +"Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: uz\n" "MIME-Version: 1.0\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1431582473.000000\n" +"X-POOTLE-MTIME: 1457540320.000000\n" #: dbwizres.src msgctxt "" @@ -1532,12 +1532,13 @@ msgstr "<FIELDNAME> (<SORTMODE>)" #: dbwizres.src +#, fuzzy msgctxt "" "dbwizres.src\n" "RID_DB_QUERY_WIZARD_START + 94\n" "string.text" msgid "<FIELDNAME> <LOGICOPERATOR> <VALUE>" -msgstr "" +msgstr "<FIELDNAME> <LOGICOPERATOR> <VALUE>" #: dbwizres.src msgctxt "" @@ -1548,12 +1549,13 @@ msgstr "<CALCULATEDFUNCTION> <FIELDNAME>" #: dbwizres.src +#, fuzzy msgctxt "" "dbwizres.src\n" "RID_DB_QUERY_WIZARD_START + 96\n" "string.text" msgid "<FIELDNAME> <LOGICOPERATOR> <VALUE>" -msgstr "" +msgstr "<FIELDNAME> <LOGICOPERATOR> <VALUE>" #: dbwizres.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/ve/cui/uiconfig/ui.po libreoffice-5.1.2~rc2/translations/source/ve/cui/uiconfig/ui.po --- libreoffice-5.1.1~rc2/translations/source/ve/cui/uiconfig/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ve/cui/uiconfig/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 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 15:06+0000\n" +"PO-Revision-Date: 2016-03-09 14:30+0000\n" "Last-Translator: system user <>\n" "Language-Team: none\n" "Language: ve\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1452265567.000000\n" +"X-POOTLE-MTIME: 1457533845.000000\n" #: aboutconfigdialog.ui msgctxt "" @@ -14066,31 +14066,34 @@ 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 @@ -17372,40 +17375,44 @@ 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 "" @@ -17426,40 +17433,44 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/ve/dbaccess/uiconfig/ui.po libreoffice-5.1.2~rc2/translations/source/ve/dbaccess/uiconfig/ui.po --- libreoffice-5.1.1~rc2/translations/source/ve/dbaccess/uiconfig/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ve/dbaccess/uiconfig/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,17 +4,17 @@ "Project-Id-Version: LibO 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 12:41+0000\n" -"Last-Translator: Anonymous Pootle User\n" +"PO-Revision-Date: 2016-03-09 14:36+0000\n" +"Last-Translator: system user <>\n" "Language-Team: none\n" "Language: ve\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: LibreOffice\n" +"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1366029672.0\n" +"X-POOTLE-MTIME: 1457534176.000000\n" #: admindialog.ui msgctxt "" @@ -1928,22 +1928,24 @@ 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 @@ msgstr "" #: queryfilterdialog.ui +#, fuzzy msgctxt "" "queryfilterdialog.ui\n" "cond1\n" "4\n" "stringlist.text" msgid ">" -msgstr "" +msgstr ">" #: queryfilterdialog.ui msgctxt "" @@ -3017,58 +3020,64 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/ve/extensions/uiconfig/sabpilot/ui.po libreoffice-5.1.2~rc2/translations/source/ve/extensions/uiconfig/sabpilot/ui.po --- libreoffice-5.1.1~rc2/translations/source/ve/extensions/uiconfig/sabpilot/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ve/extensions/uiconfig/sabpilot/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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 03:48+0000\n" +"PO-Revision-Date: 2016-03-09 14:43+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: ve\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1435290514.000000\n" +"X-POOTLE-MTIME: 1457534614.000000\n" #: contentfieldpage.ui msgctxt "" @@ -281,13 +281,14 @@ msgstr "" #: gridfieldsselectionpage.ui +#, fuzzy msgctxt "" "gridfieldsselectionpage.ui\n" "fieldright\n" "label\n" "string.text" msgid "->" -msgstr "" +msgstr "->" #: gridfieldsselectionpage.ui msgctxt "" @@ -299,13 +300,14 @@ msgstr "" #: gridfieldsselectionpage.ui +#, fuzzy msgctxt "" "gridfieldsselectionpage.ui\n" "fieldleft\n" "label\n" "string.text" msgid "<-" -msgstr "" +msgstr "<-" #: gridfieldsselectionpage.ui msgctxt "" @@ -380,22 +382,24 @@ 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 @@ msgstr "" #: tableselectionpage.ui +#, fuzzy msgctxt "" "tableselectionpage.ui\n" "search\n" "label\n" "string.text" msgid "_..." -msgstr "" +msgstr "_..." #: tableselectionpage.ui msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/ve/librelogo/source/pythonpath.po libreoffice-5.1.2~rc2/translations/source/ve/librelogo/source/pythonpath.po --- libreoffice-5.1.1~rc2/translations/source/ve/librelogo/source/pythonpath.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ve/librelogo/source/pythonpath.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,18 +3,18 @@ msgstr "" "Project-Id-Version: LibO 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 12:41+0000\n" -"Last-Translator: Anonymous Pootle User\n" +"POT-Creation-Date: 2015-04-22 23:40+0200\n" +"PO-Revision-Date: 2016-03-09 15:00+0000\n" +"Last-Translator: system user <>\n" "Language-Team: none\n" "Language: ve\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: LibreOffice\n" +"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1366029679.0\n" +"X-POOTLE-MTIME: 1457535646.000000\n" #: LibreLogo_en_US.properties msgctxt "" @@ -791,20 +791,22 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/ve/officecfg/registry/data/org/openoffice/Office.po libreoffice-5.1.2~rc2/translations/source/ve/officecfg/registry/data/org/openoffice/Office.po --- libreoffice-5.1.1~rc2/translations/source/ve/officecfg/registry/data/org/openoffice/Office.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ve/officecfg/registry/data/org/openoffice/Office.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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:20+0000\n" +"PO-Revision-Date: 2016-03-09 15:08+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: ve\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1438903210.000000\n" +"X-POOTLE-MTIME: 1457536113.000000\n" #: Addons.xcu msgctxt "" @@ -1437,13 +1437,14 @@ msgstr "" #: PresentationMinimizer.xcu +#, fuzzy msgctxt "" "PresentationMinimizer.xcu\n" "..PresentationMinimizer.Strings\n" "STR_FILESIZESEPARATOR\n" "value.text" msgid "." -msgstr "" +msgstr "." #: PresentationMinimizer.xcu msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/ve/reportdesign/uiconfig/dbreport/ui.po libreoffice-5.1.2~rc2/translations/source/ve/reportdesign/uiconfig/dbreport/ui.po --- libreoffice-5.1.1~rc2/translations/source/ve/reportdesign/uiconfig/dbreport/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ve/reportdesign/uiconfig/dbreport/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 20:24+0000\n" +"PO-Revision-Date: 2016-03-09 15:27+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: ve\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1416428649.000000\n" +"X-POOTLE-MTIME: 1457537265.000000\n" #: backgrounddialog.ui msgctxt "" @@ -197,13 +197,14 @@ msgstr "" #: conditionwin.ui +#, fuzzy msgctxt "" "conditionwin.ui\n" "lhsButton\n" "label\n" "string.text" msgid "..." -msgstr "" +msgstr "..." #: conditionwin.ui msgctxt "" @@ -215,13 +216,14 @@ msgstr "" #: conditionwin.ui +#, fuzzy msgctxt "" "conditionwin.ui\n" "rhsButton\n" "label\n" "string.text" msgid "..." -msgstr "" +msgstr "..." #: conditionwin.ui msgctxt "" @@ -278,13 +280,14 @@ msgstr "" #: conditionwin.ui +#, fuzzy msgctxt "" "conditionwin.ui\n" "removeButton\n" "label\n" "string.text" msgid "-" -msgstr "" +msgstr "-" #: conditionwin.ui msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/ve/sc/uiconfig/scalc/ui.po libreoffice-5.1.2~rc2/translations/source/ve/sc/uiconfig/scalc/ui.po --- libreoffice-5.1.1~rc2/translations/source/ve/sc/uiconfig/scalc/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ve/sc/uiconfig/scalc/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 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 03:57+0000\n" +"PO-Revision-Date: 2016-03-09 15:48+0000\n" "Last-Translator: system user <>\n" "Language-Team: none\n" "Language: ve\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1435291043.000000\n" +"X-POOTLE-MTIME: 1457538506.000000\n" #: advancedfilterdialog.ui msgctxt "" @@ -6391,22 +6391,24 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/ve/sd/source/ui/app.po libreoffice-5.1.2~rc2/translations/source/ve/sd/source/ui/app.po --- libreoffice-5.1.1~rc2/translations/source/ve/sd/source/ui/app.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ve/sd/source/ui/app.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-14 05:57+0000\n" +"PO-Revision-Date: 2016-03-09 16:02+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: ve\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1431583058.000000\n" +"X-POOTLE-MTIME: 1457539361.000000\n" #: menuids3_tmpl.src msgctxt "" @@ -3776,12 +3776,13 @@ msgstr "<nomboro>" #: strings.src +#, fuzzy msgctxt "" "strings.src\n" "STR_FIELD_PLACEHOLDER_COUNT\n" "string.text" msgid "<count>" -msgstr "" +msgstr "<count>" #: strings.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/ve/sd/uiconfig/simpress/ui.po libreoffice-5.1.2~rc2/translations/source/ve/sd/uiconfig/simpress/ui.po --- libreoffice-5.1.1~rc2/translations/source/ve/sd/uiconfig/simpress/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ve/sd/uiconfig/simpress/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 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 03:58+0000\n" +"PO-Revision-Date: 2016-03-09 16:05+0000\n" "Last-Translator: system user <>\n" "Language-Team: none\n" "Language: ve\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1435291096.000000\n" +"X-POOTLE-MTIME: 1457539531.000000\n" #: assistentdialog.ui msgctxt "" @@ -998,22 +998,24 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/ve/sw/source/core/undo.po libreoffice-5.1.2~rc2/translations/source/ve/sw/source/core/undo.po --- libreoffice-5.1.1~rc2/translations/source/ve/sw/source/core/undo.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ve/sw/source/core/undo.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 06:03+0000\n" +"PO-Revision-Date: 2016-03-09 16:33+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: ve\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1431583428.000000\n" +"X-POOTLE-MTIME: 1457541239.000000\n" #: undo.src msgctxt "" @@ -808,20 +808,22 @@ msgstr "Thebuḽu/indekisi yo shanduka" #: 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 -Nru libreoffice-5.1.1~rc2/translations/source/ve/sw/source/ui/dbui.po libreoffice-5.1.2~rc2/translations/source/ve/sw/source/ui/dbui.po --- libreoffice-5.1.1~rc2/translations/source/ve/sw/source/ui/dbui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ve/sw/source/ui/dbui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 06:04+0000\n" +"PO-Revision-Date: 2016-03-09 16:36+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: ve\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1431583494.000000\n" +"X-POOTLE-MTIME: 1457541382.000000\n" #: dbui.src msgctxt "" @@ -488,31 +488,34 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/ve/sw/source/ui/index.po libreoffice-5.1.2~rc2/translations/source/ve/sw/source/ui/index.po --- libreoffice-5.1.1~rc2/translations/source/ve/sw/source/ui/index.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ve/sw/source/ui/index.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,17 +3,18 @@ msgstr "" "Project-Id-Version: PACKAGE 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 15:12+0200\n" -"Last-Translator: Anonymous Pootle User\n" +"POT-Creation-Date: 2015-04-22 23:40+0200\n" +"PO-Revision-Date: 2016-03-09 16:37+0000\n" +"Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: ve\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: LibreOffice\n" +"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" +"X-POOTLE-MTIME: 1457541471.000000\n" #: cnttab.src #, fuzzy @@ -57,20 +58,22 @@ 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 @@ msgstr "" #: cnttab.src +#, fuzzy msgctxt "" "cnttab.src\n" "STR_TOKEN_PAGE_NUMS\n" "string.text" msgid "#" -msgstr "" +msgstr "#" #: cnttab.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/ve/sw/uiconfig/swriter/ui.po libreoffice-5.1.2~rc2/translations/source/ve/sw/uiconfig/swriter/ui.po --- libreoffice-5.1.1~rc2/translations/source/ve/sw/uiconfig/swriter/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ve/sw/uiconfig/swriter/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 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:21+0000\n" +"PO-Revision-Date: 2016-03-09 16:49+0000\n" "Last-Translator: system user <>\n" "Language-Team: none\n" "Language: ve\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1438903260.000000\n" +"X-POOTLE-MTIME: 1457542167.000000\n" #: abstractdialog.ui msgctxt "" @@ -2321,13 +2321,14 @@ msgstr "Shandukiselani Thebuḽu kha Ḽiá¹…walwa" #: converttexttable.ui +#, fuzzy msgctxt "" "converttexttable.ui\n" "othered\n" "text\n" "string.text" msgid "," -msgstr "" +msgstr "," #: converttexttable.ui msgctxt "" @@ -2512,13 +2513,14 @@ msgstr "" #: createaddresslist.ui +#, fuzzy msgctxt "" "createaddresslist.ui\n" "PREV\n" "label\n" "string.text" msgid "<" -msgstr "" +msgstr "<" #: createaddresslist.ui msgctxt "" @@ -2530,13 +2532,14 @@ msgstr "" #: createaddresslist.ui +#, fuzzy msgctxt "" "createaddresslist.ui\n" "NEXT\n" "label\n" "string.text" msgid ">" -msgstr "" +msgstr ">" #: createaddresslist.ui msgctxt "" @@ -4445,13 +4448,14 @@ msgstr "" #: fldvarpage.ui +#, fuzzy msgctxt "" "fldvarpage.ui\n" "separator\n" "text\n" "string.text" msgid "." -msgstr "" +msgstr "." #: fldvarpage.ui msgctxt "" @@ -5433,22 +5437,24 @@ 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 @@ msgstr "Vhuimo" #: insertcaption.ui +#, fuzzy msgctxt "" "insertcaption.ui\n" "separator_edit\n" "text\n" "string.text" msgid ": " -msgstr "" +msgstr ": " #: insertcaption.ui msgctxt "" @@ -6376,13 +6383,14 @@ 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 @@ msgstr "" #: mmpreparepage.ui +#, fuzzy msgctxt "" "mmpreparepage.ui\n" "prev\n" "label\n" "string.text" msgid "<" -msgstr "" +msgstr "<" #: mmpreparepage.ui msgctxt "" @@ -8738,13 +8747,14 @@ msgstr "" #: mmpreparepage.ui +#, fuzzy msgctxt "" "mmpreparepage.ui\n" "next\n" "label\n" "string.text" msgid ">" -msgstr "" +msgstr ">" #: mmpreparepage.ui #, fuzzy @@ -9593,13 +9603,14 @@ msgstr "Vhuimo" #: optcaptionpage.ui +#, fuzzy msgctxt "" "optcaptionpage.ui\n" "numseparator\n" "text\n" "string.text" msgid ". " -msgstr "" +msgstr ". " #: optcaptionpage.ui #, fuzzy @@ -15737,40 +15748,44 @@ msgstr "[A huna]" #: 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 -Nru libreoffice-5.1.1~rc2/translations/source/ve/vcl/source/src.po libreoffice-5.1.2~rc2/translations/source/ve/vcl/source/src.po --- libreoffice-5.1.1~rc2/translations/source/ve/vcl/source/src.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ve/vcl/source/src.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 21:02+0000\n" +"PO-Revision-Date: 2016-03-09 16:52+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: ve\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1449867742.000000\n" +"X-POOTLE-MTIME: 1457542325.000000\n" #: app.src msgctxt "" @@ -1264,12 +1264,13 @@ msgstr "" #: print.src +#, fuzzy msgctxt "" "print.src\n" "SV_PRINT_INVALID_TXT\n" "string.text" msgid "<ignore>" -msgstr "" +msgstr "<ignore>" #: print.src msgctxt "" @@ -1544,13 +1545,14 @@ msgstr "" #: units.src +#, fuzzy msgctxt "" "units.src\n" "SV_FUNIT_STRINGS\n" "°\n" "itemlist.text" msgid "°" -msgstr "" +msgstr "°" #: units.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/ve/wizards/source/formwizard.po libreoffice-5.1.2~rc2/translations/source/ve/wizards/source/formwizard.po --- libreoffice-5.1.1~rc2/translations/source/ve/wizards/source/formwizard.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/ve/wizards/source/formwizard.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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-04-25 19:05+0000\n" +"PO-Revision-Date: 2016-03-09 16:57+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: ve\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1429988750.000000\n" +"X-POOTLE-MTIME: 1457542676.000000\n" #: dbwizres.src msgctxt "" @@ -1536,12 +1536,13 @@ msgstr "<FIELDNAME> (<SORTMODE>)" #: dbwizres.src +#, fuzzy msgctxt "" "dbwizres.src\n" "RID_DB_QUERY_WIZARD_START + 94\n" "string.text" msgid "<FIELDNAME> <LOGICOPERATOR> <VALUE>" -msgstr "" +msgstr "<FIELDNAME> <LOGICOPERATOR> <VALUE>" #: dbwizres.src msgctxt "" @@ -1552,12 +1553,13 @@ msgstr "<CALCULATEDFUNCTION> <FIELDNAME>" #: dbwizres.src +#, fuzzy msgctxt "" "dbwizres.src\n" "RID_DB_QUERY_WIZARD_START + 96\n" "string.text" msgid "<FIELDNAME> <LOGICOPERATOR> <VALUE>" -msgstr "" +msgstr "<FIELDNAME> <LOGICOPERATOR> <VALUE>" #: dbwizres.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/vi/cui/uiconfig/ui.po libreoffice-5.1.2~rc2/translations/source/vi/cui/uiconfig/ui.po --- libreoffice-5.1.1~rc2/translations/source/vi/cui/uiconfig/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/vi/cui/uiconfig/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 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 15:08+0000\n" +"PO-Revision-Date: 2016-03-09 15:50+0000\n" "Last-Translator: system user <>\n" "Language-Team: none\n" "Language: vi\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1452265713.000000\n" +"X-POOTLE-MTIME: 1457538643.000000\n" #: aboutconfigdialog.ui msgctxt "" @@ -14133,31 +14133,34 @@ msgstr "Không" #: 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 @@ -17447,40 +17450,44 @@ msgstr "(không làm gì)" #: 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 "" @@ -17501,40 +17508,44 @@ msgstr "(không làm gì)" #: 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 -Nru libreoffice-5.1.1~rc2/translations/source/vi/dbaccess/uiconfig/ui.po libreoffice-5.1.2~rc2/translations/source/vi/dbaccess/uiconfig/ui.po --- libreoffice-5.1.1~rc2/translations/source/vi/dbaccess/uiconfig/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/vi/dbaccess/uiconfig/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,15 +4,17 @@ "Project-Id-Version: PACKAGE VERSION\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-09 15:55+0000\n" +"Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: vi\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: LibreOffice\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" +"X-POOTLE-MTIME: 1457538911.000000\n" #: admindialog.ui msgctxt "" @@ -1926,22 +1928,24 @@ 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 @@ msgstr "" #: queryfilterdialog.ui +#, fuzzy msgctxt "" "queryfilterdialog.ui\n" "cond1\n" "4\n" "stringlist.text" msgid ">" -msgstr "" +msgstr ">" #: queryfilterdialog.ui msgctxt "" @@ -3015,58 +3020,64 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/vi/extensions/uiconfig/sabpilot/ui.po libreoffice-5.1.2~rc2/translations/source/vi/extensions/uiconfig/sabpilot/ui.po --- libreoffice-5.1.1~rc2/translations/source/vi/extensions/uiconfig/sabpilot/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/vi/extensions/uiconfig/sabpilot/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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 03:55+0000\n" +"PO-Revision-Date: 2016-03-09 16:03+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: vi\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1435290951.000000\n" +"X-POOTLE-MTIME: 1457539412.000000\n" #: contentfieldpage.ui msgctxt "" @@ -281,13 +281,14 @@ msgstr "" #: gridfieldsselectionpage.ui +#, fuzzy msgctxt "" "gridfieldsselectionpage.ui\n" "fieldright\n" "label\n" "string.text" msgid "->" -msgstr "" +msgstr "->" #: gridfieldsselectionpage.ui msgctxt "" @@ -299,13 +300,14 @@ msgstr "" #: gridfieldsselectionpage.ui +#, fuzzy msgctxt "" "gridfieldsselectionpage.ui\n" "fieldleft\n" "label\n" "string.text" msgid "<-" -msgstr "" +msgstr "<-" #: gridfieldsselectionpage.ui msgctxt "" @@ -380,22 +382,24 @@ 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 @@ msgstr "" #: tableselectionpage.ui +#, fuzzy msgctxt "" "tableselectionpage.ui\n" "search\n" "label\n" "string.text" msgid "_..." -msgstr "" +msgstr "_..." #: tableselectionpage.ui msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/vi/formula/source/core/resource.po libreoffice-5.1.2~rc2/translations/source/vi/formula/source/core/resource.po --- libreoffice-5.1.1~rc2/translations/source/vi/formula/source/core/resource.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/vi/formula/source/core/resource.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\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-29 16:07+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff -Nru libreoffice-5.1.1~rc2/translations/source/vi/helpcontent2/source/text/scalc/01.po libreoffice-5.1.2~rc2/translations/source/vi/helpcontent2/source/text/scalc/01.po --- libreoffice-5.1.1~rc2/translations/source/vi/helpcontent2/source/text/scalc/01.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/vi/helpcontent2/source/text/scalc/01.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 22:46+0000\n" +"PO-Revision-Date: 2016-03-04 07:36+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: vi\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1431384410.000000\n" +"X-POOTLE-MTIME: 1457076972.000000\n" #: 01120000.xhp msgctxt "" @@ -60130,13 +60130,14 @@ msgstr "bằng" #: 12090103.xhp +#, fuzzy msgctxt "" "12090103.xhp\n" "par_id3154254\n" "15\n" "help.text" msgid "<" -msgstr "" +msgstr "<" #: 12090103.xhp msgctxt "" @@ -60148,13 +60149,14 @@ msgstr "nhá» hÆ¡n" #: 12090103.xhp +#, fuzzy msgctxt "" "12090103.xhp\n" "par_id3155335\n" "17\n" "help.text" msgid ">" -msgstr "" +msgstr ">" #: 12090103.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/vi/helpcontent2/source/text/shared/00.po libreoffice-5.1.2~rc2/translations/source/vi/helpcontent2/source/text/shared/00.po --- libreoffice-5.1.1~rc2/translations/source/vi/helpcontent2/source/text/shared/00.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/vi/helpcontent2/source/text/shared/00.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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:05+0000\n" -"Last-Translator: Christian Lohmaier <lohmaier+pootle@googlemail.com>\n" +"PO-Revision-Date: 2016-03-04 08:38+0000\n" +"Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: vi\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1441130750.000000\n" +"X-POOTLE-MTIME: 1457080721.000000\n" #: 00000001.xhp msgctxt "" @@ -3972,12 +3972,13 @@ msgstr "" #: 00000021.xhp +#, fuzzy msgctxt "" "00000021.xhp\n" "par_id100120091238112\n" "help.text" msgid "-" -msgstr "" +msgstr "-" #: 00000021.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/vi/helpcontent2/source/text/shared/01.po libreoffice-5.1.2~rc2/translations/source/vi/helpcontent2/source/text/shared/01.po --- libreoffice-5.1.1~rc2/translations/source/vi/helpcontent2/source/text/shared/01.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/vi/helpcontent2/source/text/shared/01.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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:19+0000\n" +"PO-Revision-Date: 2016-03-04 09:24+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: vi\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1452604755.000000\n" +"X-POOTLE-MTIME: 1457083461.000000\n" #: 01010000.xhp msgctxt "" @@ -7488,13 +7488,14 @@ msgstr "Äại diện ký tá»± Ä‘Æ°a ra nếu không được ghi rõ khác." #: 02100001.xhp +#, fuzzy msgctxt "" "02100001.xhp\n" "par_id3152427\n" "19\n" "help.text" msgid "." -msgstr "" +msgstr "." #: 02100001.xhp msgctxt "" @@ -7506,13 +7507,14 @@ msgstr "Äại diện bất cứ ký tá»± Ä‘Æ¡n nào, trừ ký tá»± ngắt dòng hay ký tá»± ngắt Ä‘oạn văn. Thí dụ, chuá»—i tìm kiếm « T.ng » sẽ trả lại cả « Tổng », « Tăng », « TÆ°ng » v.v." #: 02100001.xhp +#, fuzzy msgctxt "" "02100001.xhp\n" "par_id3154682\n" "21\n" "help.text" msgid "^" -msgstr "" +msgstr "^" #: 02100001.xhp msgctxt "" @@ -7524,13 +7526,14 @@ msgstr "Chỉ tìm kết quả ở đầu của Ä‘oạn văn. Ở vị trí đó cÅ©ng bá» qua các đối tượng đặc biệt, nhÆ° trÆ°á»ng rá»—ng hay ký tá»± thả neo vào ký tá»±. Thí dụ « ^HÆ°á»›ng » sẽ tìm các Ä‘oạn văn bắt đầu vá»›i « HÆ°á»›ng »." #: 02100001.xhp +#, fuzzy msgctxt "" "02100001.xhp\n" "par_id3159194\n" "23\n" "help.text" msgid "$" -msgstr "" +msgstr "$" #: 02100001.xhp msgctxt "" @@ -7550,13 +7553,14 @@ 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 @@ msgstr "Trong Ä‘oạn văn, lúc nào cÅ©ng tìm chuá»—i dài nhất có thể mà tÆ°Æ¡ng ứng vá»›i mẫu tìm kiếm này. Nếu Ä‘oạn văn chứa « AX 4 AX4 », toàn chuá»—i được tô sáng." #: 02100001.xhp +#, fuzzy msgctxt "" "02100001.xhp\n" "par_id3143267\n" "199\n" "help.text" msgid "?" -msgstr "" +msgstr "?" #: 02100001.xhp msgctxt "" @@ -7613,13 +7618,14 @@ msgstr "Tìm 0 hay 1 ký tá»± phía trÆ°á»›c dấu há»i. Thí dụ « Texts? » tìm cả hai « Text » và « Texts », và « x(ab|c)?y » tìm « xy », « xaby » hay « xcy »." #: 02100001.xhp +#, fuzzy msgctxt "" "02100001.xhp\n" "par_id3166410\n" "158\n" "help.text" msgid "\\" -msgstr "" +msgstr "\\" #: 02100001.xhp msgctxt "" @@ -15825,13 +15831,14 @@ msgstr "Giải thích" #: 05020301.xhp +#, fuzzy msgctxt "" "05020301.xhp\n" "par_id3152801\n" "5\n" "help.text" msgid "#" -msgstr "" +msgstr "#" #: 05020301.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/vi/helpcontent2/source/text/shared/02.po libreoffice-5.1.2~rc2/translations/source/vi/helpcontent2/source/text/shared/02.po --- libreoffice-5.1.1~rc2/translations/source/vi/helpcontent2/source/text/shared/02.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/vi/helpcontent2/source/text/shared/02.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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 22:49+0000\n" +"PO-Revision-Date: 2016-03-04 09:39+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: vi\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1431384555.000000\n" +"X-POOTLE-MTIME: 1457084349.000000\n" #: 01110000.xhp msgctxt "" @@ -13865,13 +13865,14 @@ msgstr "<ahelp hid=\"modules/swriter/ui/insertdbcolumnsdialog/allright\">Di chuyển má»i trÆ°á»ng cÆ¡ sở dữ liệu đã liệt kê sang há»™p liệt kê <emph>Cá»™t bảng</emph>.</ahelp> Má»i trÆ°á»ng được liệt kê trong há»™p liệt kê <emph>Cá»™t bảng</emph> thì được chèn vào tài liệu." #: 12070100.xhp +#, fuzzy msgctxt "" "12070100.xhp\n" "hd_id3163802\n" "6\n" "help.text" msgid ">" -msgstr "" +msgstr ">" #: 12070100.xhp msgctxt "" @@ -13883,13 +13884,14 @@ msgstr "<ahelp hid=\"modules/swriter/ui/insertdbcolumnsdialog/oneright\">Di chuyển trÆ°á»ng cÆ¡ sở dữ liệu đã chá»n sang há»™p liêt kê <emph>Cá»™t bảng</emph>. </ahelp> Bạn cÅ©ng có thể nhấn đôi vào mục để di chuyển nó sang há»™p liệt kê <emph>Cá»™t bảng</emph>. Má»i trÆ°á»ng được liệt kê trong há»™p liệt kê <emph>Cá»™t bảng</emph> thì được chèn vào tài liệu." #: 12070100.xhp +#, fuzzy msgctxt "" "12070100.xhp\n" "hd_id3149732\n" "7\n" "help.text" msgid "<" -msgstr "" +msgstr "<" #: 12070100.xhp msgctxt "" @@ -14178,13 +14180,14 @@ msgstr "Liệt kê má»i cá»™t của bảng cÆ¡ sở dữ liệu, mà có thể được chấp nhận trong há»™p liệt kê các mục chá»n để chèn vào tài liệu.<ahelp hid=\"modules/swriter/ui/insertdbcolumnsdialog/tabletxtcols\" visibility=\"visible\">Chá»n những cá»™t cÆ¡ sở dữ liệu bạn muốn chèn vào tài liệu.</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 @@ msgstr "Thí dụ" #: 12100200.xhp +#, fuzzy msgctxt "" "12100200.xhp\n" "par_id3158411\n" "42\n" "help.text" msgid "?" -msgstr "" +msgstr "?" #: 12100200.xhp msgctxt "" @@ -15719,13 +15723,14 @@ msgstr "« ?iệt » trả lại « Việt » và « biệt »" #: 12100200.xhp +#, fuzzy msgctxt "" "12100200.xhp\n" "par_id3148803\n" "45\n" "help.text" msgid "*" -msgstr "" +msgstr "*" #: 12100200.xhp msgctxt "" @@ -15809,31 +15814,34 @@ msgstr "Tìm bằng biểu thức chính quy" #: 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 -Nru libreoffice-5.1.1~rc2/translations/source/vi/helpcontent2/source/text/shared/autopi.po libreoffice-5.1.2~rc2/translations/source/vi/helpcontent2/source/text/shared/autopi.po --- libreoffice-5.1.1~rc2/translations/source/vi/helpcontent2/source/text/shared/autopi.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/vi/helpcontent2/source/text/shared/autopi.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 22:50+0000\n" +"PO-Revision-Date: 2016-03-04 09:49+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: vi\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1431384603.000000\n" +"X-POOTLE-MTIME: 1457084974.000000\n" #: 01000000.xhp msgctxt "" @@ -3422,13 +3422,14 @@ msgstr "<ahelp hid=\"HID_DLGFORM_FIELDSAVAILABLE\">Liệt kê tên của các trÆ°á»ng cÆ¡ sở dữ liệu nằm trong bảng hay truy vấn đã chá»n.</ahelp> Nhấn chuá»™t để chá»n má»™t trÆ°á»ng nào đó, hoặc ấn giữ phím Shift hay <switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline> trong khi nhấn chuá»™t để chá»n nhiá»u trÆ°á»ng cùng lúc." #: 01090100.xhp +#, fuzzy msgctxt "" "01090100.xhp\n" "hd_id3150443\n" "10\n" "help.text" msgid ">" -msgstr "" +msgstr ">" #: 01090100.xhp msgctxt "" @@ -3458,13 +3459,14 @@ msgstr "<ahelp hid=\"HID_DLGFORM_CMDMOVEALL\">Nhấn vào để di chuyển má»i trÆ°á»ng sang há»™p tá»›i đó mÅ©i tên chỉ.</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 @@ msgstr "<ahelp hid=\"HID_DLGFORM_CMDREMOVEALL\">Nhấn vào để di chuyển má»i trÆ°á»ng sang há»™p tá»›i đó mÅ©i tên chỉ.</ahelp>" #: 01090100.xhp +#, fuzzy msgctxt "" "01090100.xhp\n" "par_idN1074A\n" "help.text" msgid "^" -msgstr "" +msgstr "^" #: 01090100.xhp msgctxt "" @@ -4524,13 +4527,14 @@ msgstr "<ahelp hid=\"HID_DLGREPORT_1_FIELDSSELECTED\">Hiển thị tất cả các trÆ°á»ng sẽ nằm trong báo cáo má»›i.</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 @@ msgstr "<ahelp hid=\"HID_DLGREPORT_1_CMDMOVEALL\">Nhấn vào để di chuyển má»i trÆ°á»ng sang há»™p tá»›i đó mÅ©i tên chỉ.</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 @@ msgstr "<ahelp hid=\"HID_DLGREPORT_2_PREGROUPINGDEST\">Liệt kê những trÆ°á»ng theo chúng cần nhóm lại báo cáo này. Äể gỡ bá» má»™t cấp nhóm lại, chá»n tên trÆ°á»ng, sau đó nhấn vào nút <emph><</emph>. Bạn có thể chá»n đến bốn cấp nhóm lại.</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 @@ msgstr "<ahelp hid=\"HID_DLGREPORT_2_CMDGROUP\">Nhấn vào để di chuyển trÆ°á»ng đã chá»n sang há»™p tá»›i đó mÅ©i tên chỉ.</ahelp>" #: 01100200.xhp +#, fuzzy msgctxt "" "01100200.xhp\n" "hd_id3154823\n" "5\n" "help.text" msgid "<" -msgstr "" +msgstr "<" #: 01100200.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/vi/helpcontent2/source/text/shared/explorer/database.po libreoffice-5.1.2~rc2/translations/source/vi/helpcontent2/source/text/shared/explorer/database.po --- libreoffice-5.1.1~rc2/translations/source/vi/helpcontent2/source/text/shared/explorer/database.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/vi/helpcontent2/source/text/shared/explorer/database.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 22:50+0000\n" +"PO-Revision-Date: 2016-03-04 09:59+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: vi\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1431384637.000000\n" +"X-POOTLE-MTIME: 1457085567.000000\n" #: 02000000.xhp msgctxt "" @@ -1760,13 +1760,14 @@ msgstr "... ná»™i dung của trÆ°á»ng không tÆ°Æ¡ng ứng vá»›i biểu thức đã ghi rõ." #: 02010100.xhp +#, fuzzy msgctxt "" "02010100.xhp\n" "par_id3153015\n" "48\n" "help.text" msgid ">" -msgstr "" +msgstr ">" #: 02010100.xhp msgctxt "" @@ -1787,13 +1788,14 @@ msgstr "... trÆ°á»ng có ná»™i dung lá»›n hÆ¡n biểu tượng đã ghi rõ." #: 02010100.xhp +#, fuzzy msgctxt "" "02010100.xhp\n" "par_id3147270\n" "51\n" "help.text" msgid "<" -msgstr "" +msgstr "<" #: 02010100.xhp msgctxt "" @@ -2793,13 +2795,14 @@ msgstr "Không" #: 02010100.xhp +#, fuzzy msgctxt "" "02010100.xhp\n" "par_id3150997\n" "239\n" "help.text" msgid "." -msgstr "" +msgstr "." #: 02010100.xhp msgctxt "" @@ -6235,13 +6238,14 @@ msgstr "<ahelp hid=\"dbaccess/ui/dbaseindexdialog/freeindex\">Liệt kê các chỉ mục sẵn sàng để gán cho má»™t bảng.</ahelp> Äể gán má»™t chỉ mục cho bảng đã chá»n, nhấn vào biểu tượng mÅ©i tên bên trái. MÅ©i tên đôi bên trái thì gán tất cả các chỉ mục sẵn sàng." #: 11030100.xhp +#, fuzzy msgctxt "" "11030100.xhp\n" "hd_id3156152\n" "6\n" "help.text" msgid "<" -msgstr "" +msgstr "<" #: 11030100.xhp msgctxt "" @@ -6271,13 +6275,14 @@ msgstr "<ahelp hid=\"dbaccess/ui/dbaseindexdialog/addall\">Dá»i tất cả các chỉ mục còn rảnh sang danh sách các <emph>Chỉ mục Bảng</emph>.</ahelp>" #: 11030100.xhp +#, fuzzy msgctxt "" "11030100.xhp\n" "hd_id3149579\n" "8\n" "help.text" msgid ">" -msgstr "" +msgstr ">" #: 11030100.xhp msgctxt "" @@ -12425,12 +12430,13 @@ msgstr "<ahelp hid=\".\">Phụ thêm má»™t hàng các Ä‘iá»u khiển.</ahelp>" #: querywizard04.xhp +#, fuzzy msgctxt "" "querywizard04.xhp\n" "par_idN105F1\n" "help.text" msgid "-" -msgstr "" +msgstr "-" #: querywizard04.xhp msgctxt "" @@ -14449,12 +14455,13 @@ msgstr "<ahelp hid=\".\">Chá»n má»™t trÆ°á»ng để chỉnh sá»­a thông tin vá» nó.</ahelp>" #: tablewizard02.xhp +#, fuzzy msgctxt "" "tablewizard02.xhp\n" "par_idN10574\n" "help.text" msgid "-" -msgstr "" +msgstr "-" #: tablewizard02.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/vi/helpcontent2/source/text/swriter/01.po libreoffice-5.1.2~rc2/translations/source/vi/helpcontent2/source/text/swriter/01.po --- libreoffice-5.1.1~rc2/translations/source/vi/helpcontent2/source/text/swriter/01.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/vi/helpcontent2/source/text/swriter/01.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 22:52+0000\n" +"PO-Revision-Date: 2016-03-04 10:45+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: vi\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1431384760.000000\n" +"X-POOTLE-MTIME: 1457088337.000000\n" #: 01120000.xhp msgctxt "" @@ -11036,13 +11036,14 @@ msgstr "<ahelp hid=\"modules/swriter/ui/tocstylespage/styles\">Chá»n kiểu dáng Ä‘oạn văn bạn muốn áp dụng cho chỉ mục đã chá»n, sau đó nhấn vào nút (<emph>Gán</emph>).</ahelp>" #: 04120201.xhp +#, fuzzy msgctxt "" "04120201.xhp\n" "hd_id3145418\n" "32\n" "help.text" msgid "<" -msgstr "" +msgstr "<" #: 04120201.xhp msgctxt "" @@ -27777,12 +27778,13 @@ msgstr "<ahelp hid=\".\">Chá»n má»™t trÆ°á»ng nào đó, sau đó kéo nó sang danh sách khác.</ahelp>" #: mm_cusaddfie.xhp +#, fuzzy msgctxt "" "mm_cusaddfie.xhp\n" "par_idN10570\n" "help.text" msgid ">" -msgstr "" +msgstr ">" #: mm_cusaddfie.xhp msgctxt "" @@ -27793,12 +27795,13 @@ msgstr "<ahelp hid=\".\">Nút này thêm trÆ°á»ng đã chá»n từ danh sách <emph>Phần tá»­ Äịa chỉ</emph> sang danh sách khác. Bạn cÅ©ng có thể thêm cùng má»™t trÆ°á»ng nhiá»u lần.</ahelp>" #: mm_cusaddfie.xhp +#, fuzzy msgctxt "" "mm_cusaddfie.xhp\n" "par_idN10577\n" "help.text" msgid "<" -msgstr "" +msgstr "<" #: mm_cusaddfie.xhp msgctxt "" @@ -27985,12 +27988,13 @@ msgstr "<ahelp hid=\".\">Chá»n má»™t trÆ°á»ng nào đó, sau đó kéo nó sang danh sách khác.</ahelp>" #: mm_cusgrelin.xhp +#, fuzzy msgctxt "" "mm_cusgrelin.xhp\n" "par_idN10558\n" "help.text" msgid ">" -msgstr "" +msgstr ">" #: mm_cusgrelin.xhp msgctxt "" @@ -28001,12 +28005,13 @@ msgstr "<ahelp hid=\".\">Thêm trÆ°á»ng đã chá»n từ danh sách các phần tá»­ lá»i chào sang danh sách khác. Bạn cÅ©ng có thể thêm má»™t trÆ°á»ng nào đó nhiá»u lần.</ahelp>" #: mm_cusgrelin.xhp +#, fuzzy msgctxt "" "mm_cusgrelin.xhp\n" "par_idN1055F\n" "help.text" msgid "<" -msgstr "" +msgstr "<" #: mm_cusgrelin.xhp msgctxt "" @@ -28441,12 +28446,13 @@ msgstr "<ahelp hid=\".\">Chá»n má»™t trÆ°á»ng địa chỉ nào đó, sau đó kéo nó sang danh sách khác.</ahelp>" #: mm_newaddblo.xhp +#, fuzzy msgctxt "" "mm_newaddblo.xhp\n" "par_idN10570\n" "help.text" msgid ">" -msgstr "" +msgstr ">" #: mm_newaddblo.xhp msgctxt "" @@ -28457,12 +28463,13 @@ msgstr "<ahelp hid=\".\">Thêm trÆ°á»ng đã chá»n từ danh sách phần tá»­ địa chỉ vào danh sách khác.</ahelp> Bạn cÅ©ng có thể thêm cùng má»™t trÆ°á»ng nhiá»u lần." #: mm_newaddblo.xhp +#, fuzzy msgctxt "" "mm_newaddblo.xhp\n" "par_idN10577\n" "help.text" msgid "<" -msgstr "" +msgstr "<" #: mm_newaddblo.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/vi/helpcontent2/source/text/swriter/02.po libreoffice-5.1.2~rc2/translations/source/vi/helpcontent2/source/text/swriter/02.po --- libreoffice-5.1.1~rc2/translations/source/vi/helpcontent2/source/text/swriter/02.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/vi/helpcontent2/source/text/swriter/02.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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 18:13+0000\n" +"PO-Revision-Date: 2016-03-04 10:47+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: vi\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1429812839.000000\n" +"X-POOTLE-MTIME: 1457088420.000000\n" #: 02110000.xhp msgctxt "" @@ -1673,13 +1673,14 @@ msgstr "Phép trừ" #: 14020000.xhp +#, fuzzy msgctxt "" "14020000.xhp\n" "par_id3150087\n" "12\n" "help.text" msgid "-" -msgstr "" +msgstr "-" #: 14020000.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/vi/librelogo/source/pythonpath.po libreoffice-5.1.2~rc2/translations/source/vi/librelogo/source/pythonpath.po --- libreoffice-5.1.1~rc2/translations/source/vi/librelogo/source/pythonpath.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/vi/librelogo/source/pythonpath.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,17 +3,18 @@ msgstr "" "Project-Id-Version: LibO 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-09 16:19+0000\n" +"Last-Translator: system user <>\n" "Language-Team: none\n" "Language: vi\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: LibreOffice\n" +"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" +"X-POOTLE-MTIME: 1457540346.000000\n" #: LibreLogo_en_US.properties msgctxt "" @@ -768,20 +769,22 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/vi/officecfg/registry/data/org/openoffice/Office.po libreoffice-5.1.2~rc2/translations/source/vi/officecfg/registry/data/org/openoffice/Office.po --- libreoffice-5.1.1~rc2/translations/source/vi/officecfg/registry/data/org/openoffice/Office.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/vi/officecfg/registry/data/org/openoffice/Office.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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:25+0000\n" +"PO-Revision-Date: 2016-03-09 16:28+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: vi\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1438903515.000000\n" +"X-POOTLE-MTIME: 1457540882.000000\n" #: Addons.xcu msgctxt "" @@ -1430,13 +1430,14 @@ msgstr "" #: PresentationMinimizer.xcu +#, fuzzy msgctxt "" "PresentationMinimizer.xcu\n" "..PresentationMinimizer.Strings\n" "STR_FILESIZESEPARATOR\n" "value.text" msgid "." -msgstr "" +msgstr "." #: PresentationMinimizer.xcu msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/vi/reportdesign/uiconfig/dbreport/ui.po libreoffice-5.1.2~rc2/translations/source/vi/reportdesign/uiconfig/dbreport/ui.po --- libreoffice-5.1.1~rc2/translations/source/vi/reportdesign/uiconfig/dbreport/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/vi/reportdesign/uiconfig/dbreport/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 20:40+0000\n" +"PO-Revision-Date: 2016-03-09 16:50+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: vi\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1416429623.000000\n" +"X-POOTLE-MTIME: 1457542231.000000\n" #: backgrounddialog.ui msgctxt "" @@ -197,13 +197,14 @@ msgstr "" #: conditionwin.ui +#, fuzzy msgctxt "" "conditionwin.ui\n" "lhsButton\n" "label\n" "string.text" msgid "..." -msgstr "" +msgstr "..." #: conditionwin.ui msgctxt "" @@ -215,13 +216,14 @@ msgstr "" #: conditionwin.ui +#, fuzzy msgctxt "" "conditionwin.ui\n" "rhsButton\n" "label\n" "string.text" msgid "..." -msgstr "" +msgstr "..." #: conditionwin.ui msgctxt "" @@ -278,13 +280,14 @@ msgstr "" #: conditionwin.ui +#, fuzzy msgctxt "" "conditionwin.ui\n" "removeButton\n" "label\n" "string.text" msgid "-" -msgstr "" +msgstr "-" #: conditionwin.ui msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/vi/sc/source/ui/src.po libreoffice-5.1.2~rc2/translations/source/vi/sc/source/ui/src.po --- libreoffice-5.1.1~rc2/translations/source/vi/sc/source/ui/src.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/vi/sc/source/ui/src.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-14 06:21+0000\n" +"PO-Revision-Date: 2016-03-09 17:11+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: vi\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1431584484.000000\n" +"X-POOTLE-MTIME: 1457543489.000000\n" #: condformatdlg.src msgctxt "" @@ -2613,13 +2613,14 @@ msgstr "Thuá»™c tính Văn bản" #: globstr.src +#, fuzzy msgctxt "" "globstr.src\n" "RID_GLOBSTR\n" "STR_HFCMD_DELIMITER\n" "string.text" msgid "\\" -msgstr "" +msgstr "\\" #: globstr.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/vi/scaddins/source/analysis.po libreoffice-5.1.2~rc2/translations/source/vi/scaddins/source/analysis.po --- libreoffice-5.1.1~rc2/translations/source/vi/scaddins/source/analysis.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/vi/scaddins/source/analysis.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-11-24 04:39-0500\n" +"POT-Creation-Date: 2016-03-29 16:07+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff -Nru libreoffice-5.1.1~rc2/translations/source/vi/sd/uiconfig/simpress/ui.po libreoffice-5.1.2~rc2/translations/source/vi/sd/uiconfig/simpress/ui.po --- libreoffice-5.1.1~rc2/translations/source/vi/sd/uiconfig/simpress/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/vi/sd/uiconfig/simpress/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 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 04:09+0000\n" +"PO-Revision-Date: 2016-03-09 17:38+0000\n" "Last-Translator: system user <>\n" "Language-Team: none\n" "Language: vi\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1435291741.000000\n" +"X-POOTLE-MTIME: 1457545083.000000\n" #: assistentdialog.ui msgctxt "" @@ -1005,22 +1005,24 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/vi/starmath/source.po libreoffice-5.1.2~rc2/translations/source/vi/starmath/source.po --- libreoffice-5.1.1~rc2/translations/source/vi/starmath/source.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/vi/starmath/source.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\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-12 13:27+0200\n" +"POT-Creation-Date: 2016-03-29 16:07+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff -Nru libreoffice-5.1.1~rc2/translations/source/vi/sw/source/core/undo.po libreoffice-5.1.2~rc2/translations/source/vi/sw/source/core/undo.po --- libreoffice-5.1.1~rc2/translations/source/vi/sw/source/core/undo.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/vi/sw/source/core/undo.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 06:31+0000\n" +"PO-Revision-Date: 2016-03-09 18:01+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: vi\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1431585070.000000\n" +"X-POOTLE-MTIME: 1457546508.000000\n" #: undo.src msgctxt "" @@ -794,20 +794,22 @@ msgstr "Bảng/chỉ mục đã thay đổi" #: 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 -Nru libreoffice-5.1.1~rc2/translations/source/vi/sw/source/ui/dbui.po libreoffice-5.1.2~rc2/translations/source/vi/sw/source/ui/dbui.po --- libreoffice-5.1.1~rc2/translations/source/vi/sw/source/ui/dbui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/vi/sw/source/ui/dbui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 06:32+0000\n" +"PO-Revision-Date: 2016-03-09 18:03+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: vi\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1431585147.000000\n" +"X-POOTLE-MTIME: 1457546634.000000\n" #: dbui.src msgctxt "" @@ -488,31 +488,34 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/vi/sw/source/ui/index.po libreoffice-5.1.2~rc2/translations/source/vi/sw/source/ui/index.po --- libreoffice-5.1.1~rc2/translations/source/vi/sw/source/ui/index.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/vi/sw/source/ui/index.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,17 +3,18 @@ msgstr "" "Project-Id-Version: PACKAGE 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-14 06:58+0200\n" -"Last-Translator: vuhung <vuhung16plus@gmail.com>\n" +"POT-Creation-Date: 2015-04-22 23:40+0200\n" +"PO-Revision-Date: 2016-03-09 18:04+0000\n" +"Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: vi\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: LibreOffice\n" +"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" +"X-POOTLE-MTIME: 1457546699.000000\n" #: cnttab.src msgctxt "" @@ -56,20 +57,22 @@ 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 @@ msgstr "" #: cnttab.src +#, fuzzy msgctxt "" "cnttab.src\n" "STR_TOKEN_PAGE_NUMS\n" "string.text" msgid "#" -msgstr "" +msgstr "#" #: cnttab.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/vi/sw/source/ui/misc.po libreoffice-5.1.2~rc2/translations/source/vi/sw/source/ui/misc.po --- libreoffice-5.1.1~rc2/translations/source/vi/sw/source/ui/misc.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/vi/sw/source/ui/misc.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-14 06:32+0000\n" +"PO-Revision-Date: 2016-03-09 18:05+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: vi\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1431585174.000000\n" +"X-POOTLE-MTIME: 1457546707.000000\n" #: glossary.src msgctxt "" @@ -41,12 +41,13 @@ msgstr "Xóa loại " #: glossary.src +#, fuzzy msgctxt "" "glossary.src\n" "STR_QUERY_DELETE_GROUP2\n" "string.text" msgid "?" -msgstr "" +msgstr "?" #: glossary.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/vi/sw/uiconfig/swriter/ui.po libreoffice-5.1.2~rc2/translations/source/vi/sw/uiconfig/swriter/ui.po --- libreoffice-5.1.1~rc2/translations/source/vi/sw/uiconfig/swriter/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/vi/sw/uiconfig/swriter/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 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:25+0000\n" +"PO-Revision-Date: 2016-03-09 18:13+0000\n" "Last-Translator: system user <>\n" "Language-Team: none\n" "Language: vi\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1438903545.000000\n" +"X-POOTLE-MTIME: 1457547226.000000\n" #: abstractdialog.ui msgctxt "" @@ -2295,13 +2295,14 @@ msgstr "Chuyển đổi bảng thành văn bản" #: converttexttable.ui +#, fuzzy msgctxt "" "converttexttable.ui\n" "othered\n" "text\n" "string.text" msgid "," -msgstr "" +msgstr "," #: converttexttable.ui msgctxt "" @@ -2476,13 +2477,14 @@ msgstr "" #: createaddresslist.ui +#, fuzzy msgctxt "" "createaddresslist.ui\n" "PREV\n" "label\n" "string.text" msgid "<" -msgstr "" +msgstr "<" #: createaddresslist.ui msgctxt "" @@ -2494,13 +2496,14 @@ msgstr "" #: createaddresslist.ui +#, fuzzy msgctxt "" "createaddresslist.ui\n" "NEXT\n" "label\n" "string.text" msgid ">" -msgstr "" +msgstr ">" #: createaddresslist.ui msgctxt "" @@ -4393,13 +4396,14 @@ msgstr "Không" #: fldvarpage.ui +#, fuzzy msgctxt "" "fldvarpage.ui\n" "separator\n" "text\n" "string.text" msgid "." -msgstr "" +msgstr "." #: fldvarpage.ui msgctxt "" @@ -5353,22 +5357,24 @@ 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 @@ msgstr "Dấu tách đánh số" #: 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 @@ msgstr "" #: mmpreparepage.ui +#, fuzzy msgctxt "" "mmpreparepage.ui\n" "prev\n" "label\n" "string.text" msgid "<" -msgstr "" +msgstr "<" #: mmpreparepage.ui msgctxt "" @@ -8637,13 +8645,14 @@ msgstr "" #: mmpreparepage.ui +#, fuzzy msgctxt "" "mmpreparepage.ui\n" "next\n" "label\n" "string.text" msgid ">" -msgstr "" +msgstr ">" #: mmpreparepage.ui #, fuzzy @@ -9489,13 +9498,14 @@ msgstr "Vị trí" #: optcaptionpage.ui +#, fuzzy msgctxt "" "optcaptionpage.ui\n" "numseparator\n" "text\n" "string.text" msgid ". " -msgstr "" +msgstr ". " #: optcaptionpage.ui msgctxt "" @@ -15549,40 +15559,44 @@ msgstr "[Không có]" #: 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 -Nru libreoffice-5.1.1~rc2/translations/source/vi/vcl/source/src.po libreoffice-5.1.2~rc2/translations/source/vi/vcl/source/src.po --- libreoffice-5.1.1~rc2/translations/source/vi/vcl/source/src.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/vi/vcl/source/src.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO\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 21:25+0000\n" +"PO-Revision-Date: 2016-03-09 18:15+0000\n" "Last-Translator: system user <>\n" "Language-Team: du-an-most@lists.hanoilug.org\n" "Language: vi\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1449869100.000000\n" +"X-POOTLE-MTIME: 1457547359.000000\n" #: app.src msgctxt "" @@ -1176,12 +1176,13 @@ 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 @@ 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 @@ msgstr "inch" #: units.src +#, fuzzy msgctxt "" "units.src\n" "SV_FUNIT_STRINGS\n" "'\n" "itemlist.text" msgid "'" -msgstr "" +msgstr "'" #: units.src msgctxt "" @@ -1458,13 +1461,14 @@ msgstr "" #: units.src +#, fuzzy msgctxt "" "units.src\n" "SV_FUNIT_STRINGS\n" "°\n" "itemlist.text" msgid "°" -msgstr "" +msgstr "°" #: units.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/vi/wizards/source/formwizard.po libreoffice-5.1.2~rc2/translations/source/vi/wizards/source/formwizard.po --- libreoffice-5.1.1~rc2/translations/source/vi/wizards/source/formwizard.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/vi/wizards/source/formwizard.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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-04-25 19:30+0000\n" +"PO-Revision-Date: 2016-03-09 18:18+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: vi\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1429990228.000000\n" +"X-POOTLE-MTIME: 1457547527.000000\n" #: dbwizres.src msgctxt "" @@ -2529,12 +2529,13 @@ msgstr "" #: dbwizres.src +#, fuzzy msgctxt "" "dbwizres.src\n" "RID_DB_TABLE_WIZARD_START + 22\n" "string.text" msgid "-" -msgstr "" +msgstr "-" #: dbwizres.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/xh/cui/uiconfig/ui.po libreoffice-5.1.2~rc2/translations/source/xh/cui/uiconfig/ui.po --- libreoffice-5.1.1~rc2/translations/source/xh/cui/uiconfig/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/xh/cui/uiconfig/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 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 15:08+0000\n" +"PO-Revision-Date: 2016-03-09 16:30+0000\n" "Last-Translator: system user <>\n" "Language-Team: none\n" "Language: xh\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1452265721.000000\n" +"X-POOTLE-MTIME: 1457541056.000000\n" #: aboutconfigdialog.ui msgctxt "" @@ -14063,31 +14063,34 @@ 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 @@ -17369,40 +17372,44 @@ msgstr "(akukho)" #: 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 "" @@ -17424,40 +17431,44 @@ msgstr "(akukho)" #: 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 -Nru libreoffice-5.1.1~rc2/translations/source/xh/dbaccess/uiconfig/ui.po libreoffice-5.1.2~rc2/translations/source/xh/dbaccess/uiconfig/ui.po --- libreoffice-5.1.1~rc2/translations/source/xh/dbaccess/uiconfig/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/xh/dbaccess/uiconfig/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: LibO 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 12:43+0000\n" -"Last-Translator: Anonymous Pootle User\n" +"PO-Revision-Date: 2016-03-09 16:35+0000\n" +"Last-Translator: system user <>\n" "Language-Team: none\n" "Language: xh\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: LibreOffice\n" +"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1366029802.0\n" +"X-POOTLE-MTIME: 1457541335.000000\n" #: admindialog.ui msgctxt "" @@ -1927,22 +1927,24 @@ 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 @@ msgstr "" #: queryfilterdialog.ui +#, fuzzy msgctxt "" "queryfilterdialog.ui\n" "cond1\n" "4\n" "stringlist.text" msgid ">" -msgstr "" +msgstr ">" #: queryfilterdialog.ui msgctxt "" @@ -3016,58 +3019,64 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/xh/extensions/uiconfig/sabpilot/ui.po libreoffice-5.1.2~rc2/translations/source/xh/extensions/uiconfig/sabpilot/ui.po --- libreoffice-5.1.1~rc2/translations/source/xh/extensions/uiconfig/sabpilot/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/xh/extensions/uiconfig/sabpilot/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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 03:54+0000\n" +"PO-Revision-Date: 2016-03-09 16:42+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: xh\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1435290874.000000\n" +"X-POOTLE-MTIME: 1457541761.000000\n" #: contentfieldpage.ui msgctxt "" @@ -280,13 +280,14 @@ msgstr "" #: gridfieldsselectionpage.ui +#, fuzzy msgctxt "" "gridfieldsselectionpage.ui\n" "fieldright\n" "label\n" "string.text" msgid "->" -msgstr "" +msgstr "->" #: gridfieldsselectionpage.ui msgctxt "" @@ -298,13 +299,14 @@ msgstr "" #: gridfieldsselectionpage.ui +#, fuzzy msgctxt "" "gridfieldsselectionpage.ui\n" "fieldleft\n" "label\n" "string.text" msgid "<-" -msgstr "" +msgstr "<-" #: gridfieldsselectionpage.ui msgctxt "" @@ -379,22 +381,24 @@ 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 @@ msgstr "" #: tableselectionpage.ui +#, fuzzy msgctxt "" "tableselectionpage.ui\n" "search\n" "label\n" "string.text" msgid "_..." -msgstr "" +msgstr "_..." #: tableselectionpage.ui msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/xh/librelogo/source/pythonpath.po libreoffice-5.1.2~rc2/translations/source/xh/librelogo/source/pythonpath.po --- libreoffice-5.1.1~rc2/translations/source/xh/librelogo/source/pythonpath.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/xh/librelogo/source/pythonpath.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,17 +3,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: 2014-05-02 00:06+0200\n" -"PO-Revision-Date: 2013-04-15 12:43+0000\n" -"Last-Translator: Anonymous Pootle User\n" +"POT-Creation-Date: 2015-04-22 23:40+0200\n" +"PO-Revision-Date: 2016-03-09 16:57+0000\n" +"Last-Translator: system user <>\n" "Language-Team: none\n" "Language: xh\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: LibreOffice\n" +"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1366029808.0\n" +"X-POOTLE-MTIME: 1457542627.000000\n" #: LibreLogo_en_US.properties msgctxt "" @@ -792,20 +792,22 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/xh/officecfg/registry/data/org/openoffice/Office.po libreoffice-5.1.2~rc2/translations/source/xh/officecfg/registry/data/org/openoffice/Office.po --- libreoffice-5.1.1~rc2/translations/source/xh/officecfg/registry/data/org/openoffice/Office.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/xh/officecfg/registry/data/org/openoffice/Office.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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:21+0000\n" +"PO-Revision-Date: 2016-03-09 17:04+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: xh\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1438903270.000000\n" +"X-POOTLE-MTIME: 1457543098.000000\n" #: Addons.xcu msgctxt "" @@ -1437,13 +1437,14 @@ msgstr "" #: PresentationMinimizer.xcu +#, fuzzy msgctxt "" "PresentationMinimizer.xcu\n" "..PresentationMinimizer.Strings\n" "STR_FILESIZESEPARATOR\n" "value.text" msgid "." -msgstr "" +msgstr "." #: PresentationMinimizer.xcu msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/xh/reportdesign/uiconfig/dbreport/ui.po libreoffice-5.1.2~rc2/translations/source/xh/reportdesign/uiconfig/dbreport/ui.po --- libreoffice-5.1.1~rc2/translations/source/xh/reportdesign/uiconfig/dbreport/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/xh/reportdesign/uiconfig/dbreport/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 21:13+0000\n" +"PO-Revision-Date: 2016-03-09 17:25+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: xh\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1416431580.000000\n" +"X-POOTLE-MTIME: 1457544309.000000\n" #: backgrounddialog.ui msgctxt "" @@ -196,13 +196,14 @@ msgstr "" #: conditionwin.ui +#, fuzzy msgctxt "" "conditionwin.ui\n" "lhsButton\n" "label\n" "string.text" msgid "..." -msgstr "" +msgstr "..." #: conditionwin.ui msgctxt "" @@ -214,13 +215,14 @@ msgstr "" #: conditionwin.ui +#, fuzzy msgctxt "" "conditionwin.ui\n" "rhsButton\n" "label\n" "string.text" msgid "..." -msgstr "" +msgstr "..." #: conditionwin.ui msgctxt "" @@ -277,13 +279,14 @@ msgstr "" #: conditionwin.ui +#, fuzzy msgctxt "" "conditionwin.ui\n" "removeButton\n" "label\n" "string.text" msgid "-" -msgstr "" +msgstr "-" #: conditionwin.ui msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/xh/sc/uiconfig/scalc/ui.po libreoffice-5.1.2~rc2/translations/source/xh/sc/uiconfig/scalc/ui.po --- libreoffice-5.1.1~rc2/translations/source/xh/sc/uiconfig/scalc/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/xh/sc/uiconfig/scalc/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 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 04:07+0000\n" +"PO-Revision-Date: 2016-03-09 17:44+0000\n" "Last-Translator: system user <>\n" "Language-Team: none\n" "Language: xh\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1435291641.000000\n" +"X-POOTLE-MTIME: 1457545452.000000\n" #: advancedfilterdialog.ui msgctxt "" @@ -6389,22 +6389,24 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/xh/sd/source/ui/app.po libreoffice-5.1.2~rc2/translations/source/xh/sd/source/ui/app.po --- libreoffice-5.1.1~rc2/translations/source/xh/sd/source/ui/app.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/xh/sd/source/ui/app.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-14 06:46+0000\n" +"PO-Revision-Date: 2016-03-09 17:56+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: xh\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1431586003.000000\n" +"X-POOTLE-MTIME: 1457546182.000000\n" #: menuids3_tmpl.src msgctxt "" @@ -3778,12 +3778,13 @@ msgstr "<inombolo>" #: strings.src +#, fuzzy msgctxt "" "strings.src\n" "STR_FIELD_PLACEHOLDER_COUNT\n" "string.text" msgid "<count>" -msgstr "" +msgstr "<count>" #: strings.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/xh/sd/uiconfig/simpress/ui.po libreoffice-5.1.2~rc2/translations/source/xh/sd/uiconfig/simpress/ui.po --- libreoffice-5.1.1~rc2/translations/source/xh/sd/uiconfig/simpress/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/xh/sd/uiconfig/simpress/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 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 04:10+0000\n" +"PO-Revision-Date: 2016-03-09 17:58+0000\n" "Last-Translator: system user <>\n" "Language-Team: none\n" "Language: xh\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1435291820.000000\n" +"X-POOTLE-MTIME: 1457546286.000000\n" #: assistentdialog.ui msgctxt "" @@ -997,22 +997,24 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/xh/starmath/source.po libreoffice-5.1.2~rc2/translations/source/xh/starmath/source.po --- libreoffice-5.1.1~rc2/translations/source/xh/starmath/source.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/xh/starmath/source.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\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-12 13:27+0200\n" +"POT-Creation-Date: 2016-03-29 16:07+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff -Nru libreoffice-5.1.1~rc2/translations/source/xh/sw/source/core/undo.po libreoffice-5.1.2~rc2/translations/source/xh/sw/source/core/undo.po --- libreoffice-5.1.1~rc2/translations/source/xh/sw/source/core/undo.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/xh/sw/source/core/undo.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 06:52+0000\n" +"PO-Revision-Date: 2016-03-09 18:17+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: xh\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1431586371.000000\n" +"X-POOTLE-MTIME: 1457547427.000000\n" #: undo.src msgctxt "" @@ -800,20 +800,22 @@ msgstr "Iguqulwe itheyibhile/isalathi" #: 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 -Nru libreoffice-5.1.1~rc2/translations/source/xh/sw/source/ui/dbui.po libreoffice-5.1.2~rc2/translations/source/xh/sw/source/ui/dbui.po --- libreoffice-5.1.1~rc2/translations/source/xh/sw/source/ui/dbui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/xh/sw/source/ui/dbui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 06:53+0000\n" +"PO-Revision-Date: 2016-03-09 18:18+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: xh\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1431586438.000000\n" +"X-POOTLE-MTIME: 1457547504.000000\n" #: dbui.src msgctxt "" @@ -487,31 +487,34 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/xh/sw/source/ui/index.po libreoffice-5.1.2~rc2/translations/source/xh/sw/source/ui/index.po --- libreoffice-5.1.1~rc2/translations/source/xh/sw/source/ui/index.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/xh/sw/source/ui/index.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,16 +3,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-01-05 15:16+0200\n" -"Last-Translator: Anonymous Pootle User\n" +"POT-Creation-Date: 2015-04-22 23:40+0200\n" +"PO-Revision-Date: 2016-03-09 18:19+0000\n" +"Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: xh\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: LibreOffice\n" +"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" +"X-POOTLE-MTIME: 1457547545.000000\n" #: cnttab.src #, fuzzy @@ -56,20 +57,22 @@ 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 @@ msgstr "" #: cnttab.src +#, fuzzy msgctxt "" "cnttab.src\n" "STR_TOKEN_PAGE_NUMS\n" "string.text" msgid "#" -msgstr "" +msgstr "#" #: cnttab.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/xh/sw/uiconfig/swriter/ui.po libreoffice-5.1.2~rc2/translations/source/xh/sw/uiconfig/swriter/ui.po --- libreoffice-5.1.1~rc2/translations/source/xh/sw/uiconfig/swriter/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/xh/sw/uiconfig/swriter/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 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:21+0000\n" +"PO-Revision-Date: 2016-03-09 18:23+0000\n" "Last-Translator: system user <>\n" "Language-Team: none\n" "Language: xh\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1438903285.000000\n" +"X-POOTLE-MTIME: 1457547801.000000\n" #: abstractdialog.ui msgctxt "" @@ -2317,13 +2317,14 @@ msgstr "Guqula Itheyibhile ibe Sisiqendu" #: converttexttable.ui +#, fuzzy msgctxt "" "converttexttable.ui\n" "othered\n" "text\n" "string.text" msgid "," -msgstr "" +msgstr "," #: converttexttable.ui msgctxt "" @@ -2508,13 +2509,14 @@ msgstr "" #: createaddresslist.ui +#, fuzzy msgctxt "" "createaddresslist.ui\n" "PREV\n" "label\n" "string.text" msgid "<" -msgstr "" +msgstr "<" #: createaddresslist.ui msgctxt "" @@ -2526,13 +2528,14 @@ msgstr "" #: createaddresslist.ui +#, fuzzy msgctxt "" "createaddresslist.ui\n" "NEXT\n" "label\n" "string.text" msgid ">" -msgstr "" +msgstr ">" #: createaddresslist.ui msgctxt "" @@ -4438,13 +4441,14 @@ msgstr "" #: fldvarpage.ui +#, fuzzy msgctxt "" "fldvarpage.ui\n" "separator\n" "text\n" "string.text" msgid "." -msgstr "" +msgstr "." #: fldvarpage.ui msgctxt "" @@ -5425,22 +5429,24 @@ 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 @@ msgstr "IndawoX" #: insertcaption.ui +#, fuzzy msgctxt "" "insertcaption.ui\n" "separator_edit\n" "text\n" "string.text" msgid ": " -msgstr "" +msgstr ": " #: insertcaption.ui msgctxt "" @@ -6368,13 +6375,14 @@ msgstr "" #: insertcaption.ui +#, fuzzy msgctxt "" "insertcaption.ui\n" "num_separator_edit\n" "text\n" "string.text" msgid ". " -msgstr "" +msgstr ". " #: insertcaption.ui msgctxt "" @@ -8710,13 +8718,14 @@ msgstr "" #: mmpreparepage.ui +#, fuzzy msgctxt "" "mmpreparepage.ui\n" "prev\n" "label\n" "string.text" msgid "<" -msgstr "" +msgstr "<" #: mmpreparepage.ui msgctxt "" @@ -8728,13 +8737,14 @@ msgstr "" #: mmpreparepage.ui +#, fuzzy msgctxt "" "mmpreparepage.ui\n" "next\n" "label\n" "string.text" msgid ">" -msgstr "" +msgstr ">" #: mmpreparepage.ui #, fuzzy @@ -9583,13 +9593,14 @@ msgstr "IndawoX" #: optcaptionpage.ui +#, fuzzy msgctxt "" "optcaptionpage.ui\n" "numseparator\n" "text\n" "string.text" msgid ". " -msgstr "" +msgstr ". " #: optcaptionpage.ui #, fuzzy @@ -15716,40 +15727,44 @@ msgstr "[Akukho]" #: 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 -Nru libreoffice-5.1.1~rc2/translations/source/xh/vcl/source/src.po libreoffice-5.1.2~rc2/translations/source/xh/vcl/source/src.po --- libreoffice-5.1.1~rc2/translations/source/xh/vcl/source/src.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/xh/vcl/source/src.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 21:21+0000\n" +"PO-Revision-Date: 2016-03-09 18:24+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: xh\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1449868880.000000\n" +"X-POOTLE-MTIME: 1457547863.000000\n" #: app.src msgctxt "" @@ -1205,12 +1205,13 @@ msgstr "" #: print.src +#, fuzzy msgctxt "" "print.src\n" "SV_PRINT_INVALID_TXT\n" "string.text" msgid "<ignore>" -msgstr "" +msgstr "<ignore>" #: print.src msgctxt "" @@ -1485,13 +1486,14 @@ msgstr "" #: units.src +#, fuzzy msgctxt "" "units.src\n" "SV_FUNIT_STRINGS\n" "°\n" "itemlist.text" msgid "°" -msgstr "" +msgstr "°" #: units.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/xh/wizards/source/formwizard.po libreoffice-5.1.2~rc2/translations/source/xh/wizards/source/formwizard.po --- libreoffice-5.1.1~rc2/translations/source/xh/wizards/source/formwizard.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/xh/wizards/source/formwizard.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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-14 06:55+0000\n" +"PO-Revision-Date: 2016-03-09 18:26+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: xh\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1431586521.000000\n" +"X-POOTLE-MTIME: 1457547967.000000\n" #: dbwizres.src msgctxt "" @@ -1537,12 +1537,13 @@ msgstr "<FIELDNAME> (<SORTMODE>)" #: dbwizres.src +#, fuzzy msgctxt "" "dbwizres.src\n" "RID_DB_QUERY_WIZARD_START + 94\n" "string.text" msgid "<FIELDNAME> <LOGICOPERATOR> <VALUE>" -msgstr "" +msgstr "<FIELDNAME> <LOGICOPERATOR> <VALUE>" #: dbwizres.src msgctxt "" @@ -1553,12 +1554,13 @@ msgstr "<CALCULATEDFUNCTION> <FIELDNAME>" #: dbwizres.src +#, fuzzy msgctxt "" "dbwizres.src\n" "RID_DB_QUERY_WIZARD_START + 96\n" "string.text" msgid "<FIELDNAME> <LOGICOPERATOR> <VALUE>" -msgstr "" +msgstr "<FIELDNAME> <LOGICOPERATOR> <VALUE>" #: dbwizres.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/zh-CN/cui/uiconfig/ui.po libreoffice-5.1.2~rc2/translations/source/zh-CN/cui/uiconfig/ui.po --- libreoffice-5.1.1~rc2/translations/source/zh-CN/cui/uiconfig/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/zh-CN/cui/uiconfig/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 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-18 02:11+0000\n" +"PO-Revision-Date: 2016-03-09 16:48+0000\n" "Last-Translator: system user <>\n" "Language-Team: none\n" "Language: zh_CN\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1453083063.000000\n" +"X-POOTLE-MTIME: 1457542107.000000\n" #: aboutconfigdialog.ui msgctxt "" @@ -16674,7 +16674,7 @@ "0\n" "stringlist.text" msgid "Page" -msgstr "æ¢é¡µ" +msgstr "æ¢é¡µç¬¦" #: textflowpage.ui msgctxt "" @@ -16683,7 +16683,7 @@ "1\n" "stringlist.text" msgid "Column" -msgstr "分æ " +msgstr "分æ ç¬¦" #: textflowpage.ui msgctxt "" @@ -16692,7 +16692,7 @@ "0\n" "stringlist.text" msgid "Before" -msgstr "之å‰" +msgstr "段è½å‰" #: textflowpage.ui msgctxt "" @@ -16701,7 +16701,7 @@ "1\n" "stringlist.text" msgid "After" -msgstr "之åŽ" +msgstr "段è½åŽ" #: textflowpage.ui msgctxt "" @@ -16710,7 +16710,7 @@ "label\n" "string.text" msgid "Breaks" -msgstr "æ¢é¡µå’Œåˆ†æ ç¬¦" +msgstr "æ¢é¡µç¬¦å’Œåˆ†æ ç¬¦" #: textflowpage.ui msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/zh-CN/framework/source/classes.po libreoffice-5.1.2~rc2/translations/source/zh-CN/framework/source/classes.po --- libreoffice-5.1.1~rc2/translations/source/zh-CN/framework/source/classes.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/zh-CN/framework/source/classes.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\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-28 08:37+0000\n" -"Last-Translator: ACTom <tom@awaysoft.com>\n" +"PO-Revision-Date: 2016-03-09 17:21+0000\n" +"Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: zh_CN\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1451291857.000000\n" +"X-POOTLE-MTIME: 1457544102.000000\n" #: resource.src msgctxt "" @@ -246,7 +246,7 @@ "STR_UNTITLED_DOCUMENT\n" "string.text" msgid "Untitled" -msgstr "未命å" +msgstr "Untitled" #: resource.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/zh-CN/helpcontent2/source/auxiliary.po libreoffice-5.1.2~rc2/translations/source/zh-CN/helpcontent2/source/auxiliary.po --- libreoffice-5.1.1~rc2/translations/source/zh-CN/helpcontent2/source/auxiliary.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/zh-CN/helpcontent2/source/auxiliary.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,18 +3,18 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2013-11-20 13:02+0100\n" -"PO-Revision-Date: 2012-12-04 09:28+0000\n" -"Last-Translator: Dean <xslidian@gmail.com>\n" +"POT-Creation-Date: 2015-04-22 23:40+0200\n" +"PO-Revision-Date: 2016-02-29 03:49+0000\n" +"Last-Translator: ç¨ç‘ é” <suokunlong@126.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: zh_CN\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: 1354613339.0\n" +"X-POOTLE-MTIME: 1456717746.000000\n" #: sbasic.tree msgctxt "" @@ -30,7 +30,7 @@ "0701\n" "node.text" msgid "General Information and User Interface Usage" -msgstr "常规信æ¯åŠç”¨æˆ·ç•Œé¢ä½¿ç”¨" +msgstr "一般信æ¯åŠç”¨æˆ·ç•Œé¢ä½¿ç”¨" #: sbasic.tree msgctxt "" @@ -78,7 +78,7 @@ "0801\n" "node.text" msgid "General Information and User Interface Usage" -msgstr "常规信æ¯åŠç”¨æˆ·ç•Œé¢ä½¿ç”¨" +msgstr "一般信æ¯åŠç”¨æˆ·ç•Œé¢ä½¿ç”¨" #: scalc.tree msgctxt "" @@ -86,7 +86,7 @@ "0802\n" "node.text" msgid "Command and Menu Reference" -msgstr "命令行åŠèœå•å‚考" +msgstr "命令和èœå•é¡¹æŒ‡å—" #: scalc.tree msgctxt "" @@ -110,7 +110,7 @@ "0803\n" "node.text" msgid "Functions Types and Operators" -msgstr "函数类型与è¿ç®—符" +msgstr "函数(公å¼ï¼‰ç±»åˆ«åŠè¿ç®—符" #: scalc.tree msgctxt "" @@ -166,7 +166,7 @@ "0810\n" "node.text" msgid "Scenarios" -msgstr "剧本" +msgstr "方案" #: scalc.tree msgctxt "" @@ -182,7 +182,7 @@ "0812\n" "node.text" msgid "Viewing, Selecting, Copying" -msgstr "查看ã€é€‰æ‹©ã€å¤åˆ¶" +msgstr "查看,选择,å¤åˆ¶" #: scalc.tree msgctxt "" @@ -206,7 +206,7 @@ "0815\n" "node.text" msgid "Miscellaneous" -msgstr "æ‚项" +msgstr "其它选项" #: schart.tree msgctxt "" @@ -222,7 +222,7 @@ "0501\n" "node.text" msgid "General Information" -msgstr "常规信æ¯" +msgstr "一般信æ¯" #: shared.tree msgctxt "" @@ -238,7 +238,7 @@ "10\n" "help_section.text" msgid "Common Help Topics" -msgstr "常用帮助主题" +msgstr "一般性帮助" #: shared.tree msgctxt "" @@ -246,7 +246,7 @@ "1001\n" "node.text" msgid "General Information" -msgstr "常规信æ¯" +msgstr "一般信æ¯" #: shared.tree msgctxt "" @@ -278,7 +278,7 @@ "100501\n" "node.text" msgid "Letter Wizard" -msgstr "书信å‘导" +msgstr "信函å‘导" #: shared.tree msgctxt "" @@ -294,7 +294,7 @@ "100504\n" "node.text" msgid "Agenda Wizard" -msgstr "日程å‘导" +msgstr "会议议程å‘导" #: shared.tree msgctxt "" @@ -326,7 +326,7 @@ "1006\n" "node.text" msgid "Configuring %PRODUCTNAME" -msgstr "正在é…ç½® %PRODUCTNAME" +msgstr "é…ç½® %PRODUCTNAME" #: shared.tree msgctxt "" @@ -334,7 +334,7 @@ "1007\n" "node.text" msgid "Working with the User Interface" -msgstr "使用用户界é¢" +msgstr "用户界é¢ä½¿ç”¨" #: shared.tree msgctxt "" @@ -342,7 +342,7 @@ "1008\n" "node.text" msgid "Printing, Faxing, Sending" -msgstr "打å°ã€ä¼ çœŸã€å‘é€" +msgstr "打å°ï¼Œä¼ çœŸï¼Œå‘é€" #: shared.tree msgctxt "" @@ -382,7 +382,7 @@ "1014\n" "node.text" msgid "Links and References" -msgstr "链接与资æº" +msgstr "链接与引用" #: shared.tree msgctxt "" @@ -446,7 +446,7 @@ "0901\n" "node.text" msgid "General Information" -msgstr "常规信æ¯" +msgstr "一般信æ¯" #: simpress.tree msgctxt "" @@ -462,7 +462,7 @@ "0401\n" "node.text" msgid "General Information and User Interface Usage" -msgstr "常规信æ¯åŠç”¨æˆ·ç•Œé¢ä½¿ç”¨" +msgstr "一般信æ¯åŠç”¨æˆ·ç•Œé¢ä½¿ç”¨" #: simpress.tree msgctxt "" @@ -470,7 +470,7 @@ "0402\n" "node.text" msgid "Command and Menu Reference" -msgstr "命令行åŠèœå•å‚考" +msgstr "命令和èœå•é¡¹æŒ‡å—" #: simpress.tree msgctxt "" @@ -550,7 +550,7 @@ "0406\n" "node.text" msgid "Effects" -msgstr "效果" +msgstr "特效" #: simpress.tree msgctxt "" @@ -558,7 +558,7 @@ "0407\n" "node.text" msgid "Objects, Graphics, and Bitmaps" -msgstr "对象ã€å›¾å½¢åŠä½å›¾" +msgstr "对象ã€å›¾å½¢å’Œä½å›¾" #: simpress.tree msgctxt "" @@ -566,7 +566,7 @@ "0408\n" "node.text" msgid "Groups and Layers" -msgstr "组åˆä¸Žå›¾å±‚" +msgstr "组åˆä¸Žåˆ†å±‚" #: simpress.tree msgctxt "" @@ -598,7 +598,7 @@ "0301\n" "node.text" msgid "General Information and User Interface Usage" -msgstr "常规信æ¯åŠç”¨æˆ·ç•Œé¢ä½¿ç”¨" +msgstr "一般信æ¯åŠç”¨æˆ·ç•Œé¢ä½¿ç”¨" #: smath.tree msgctxt "" @@ -606,7 +606,7 @@ "0302\n" "node.text" msgid "Command and Menu Reference" -msgstr "命令行åŠèœå•å‚考" +msgstr "命令和èœå•é¡¹æŒ‡å—" #: smath.tree msgctxt "" @@ -614,7 +614,7 @@ "0303\n" "node.text" msgid "Working with Formulas" -msgstr "处ç†å…¬å¼" +msgstr "使用公å¼" #: swriter.tree msgctxt "" @@ -630,7 +630,7 @@ "0201\n" "node.text" msgid "General Information and User Interface Usage" -msgstr "常规信æ¯åŠç”¨æˆ·ç•Œé¢ä½¿ç”¨" +msgstr "一般信æ¯åŠç”¨æˆ·ç•Œé¢ä½¿ç”¨" #: swriter.tree msgctxt "" @@ -638,7 +638,7 @@ "0202\n" "node.text" msgid "Command and Menu Reference" -msgstr "命令行åŠèœå•å‚考" +msgstr "命令和èœå•é¡¹æŒ‡å—" #: swriter.tree msgctxt "" @@ -702,7 +702,7 @@ "0208\n" "node.text" msgid "Tables of Contents and Indexes" -msgstr "目录åŠç´¢å¼•" +msgstr "内容目录和索引" #: swriter.tree msgctxt "" @@ -718,7 +718,7 @@ "0210\n" "node.text" msgid "Navigating Text Documents" -msgstr "æµè§ˆæ–‡æœ¬æ–‡æ¡£" +msgstr "在文本文档中导航" #: swriter.tree msgctxt "" @@ -734,7 +734,7 @@ "0212\n" "node.text" msgid "Formatting Text Documents" -msgstr "文本文档中的格å¼" +msgstr "æ ¼å¼åŒ–文本文档" #: swriter.tree msgctxt "" @@ -766,7 +766,7 @@ "0215\n" "node.text" msgid "Numbering and Lists" -msgstr "ç¼–å·ä¸Žåˆ—表" +msgstr "项目符å·ä¸Žç¼–å·" #: swriter.tree msgctxt "" @@ -774,7 +774,7 @@ "0216\n" "node.text" msgid "Spellchecking, Thesaurus, and Languages" -msgstr "拼写检查ã€åŒä¹‰è¯åº“åŠè¯­è¨€" +msgstr "拼写检查ã€åŒä¹‰è¯åº“åŠè¯­è¨€é€‰é¡¹" #: swriter.tree msgctxt "" @@ -782,7 +782,7 @@ "0218\n" "node.text" msgid "Troubleshooting Tips" -msgstr "疑难解答æ示" +msgstr "疑难问题技巧" #: swriter.tree msgctxt "" @@ -798,7 +798,7 @@ "0220\n" "node.text" msgid "Master Documents" -msgstr "主文档" +msgstr "主控文档" #: swriter.tree msgctxt "" @@ -806,7 +806,7 @@ "0221\n" "node.text" msgid "Links and References" -msgstr "链接与资æº" +msgstr "链接与引用" #: swriter.tree msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/zh-CN/helpcontent2/source/text/scalc/01.po libreoffice-5.1.2~rc2/translations/source/zh-CN/helpcontent2/source/text/scalc/01.po --- libreoffice-5.1.1~rc2/translations/source/zh-CN/helpcontent2/source/text/scalc/01.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/zh-CN/helpcontent2/source/text/scalc/01.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: libreoffice help\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-01-12 13:40+0100\n" -"PO-Revision-Date: 2016-02-05 08:19+0000\n" +"PO-Revision-Date: 2016-02-26 09:37+0000\n" "Last-Translator: ç¨ç‘ é” <suokunlong@126.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: zh_CN\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1454660351.000000\n" +"X-POOTLE-MTIME: 1456479425.000000\n" #: 01120000.xhp msgctxt "" @@ -25,13 +25,12 @@ msgstr "打å°é¢„览" #: 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\">页é¢é¢„览</link>" +msgstr "<link href=\"text/scalc/01/01120000.xhp\">打å°é¢„览</link>" #: 01120000.xhp msgctxt "" @@ -39,7 +38,7 @@ "par_id3831598\n" "help.text" msgid "<ahelp hid=\".uno:PrintPreview\">Displays a preview of the printed page or closes the preview.</ahelp>" -msgstr "<ahelp hid=\".uno:PrintPreview\">显示打å°é¡µé¢çš„预览或关闭预览。</ahelp>" +msgstr "<ahelp hid=\".uno:PrintPreview\">显示è¦æ‰“å°é¡µé¢çš„预览,或关闭预览。</ahelp>" #: 01120000.xhp msgctxt "" @@ -47,7 +46,7 @@ "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 "使用<emph>打å°é¢„览工具æ </emph>上的图标æ¥æ»šåŠ¨æŸ¥çœ‹æ–‡æ¡£çš„页é¢æˆ–者打å°æ–‡æ¡£ã€‚" +msgstr "使用<emph>打å°é¢„览工具æ </emph>上的图标æ¥æ»šåŠ¨æŸ¥çœ‹æ–‡æ¡£ä¸­çš„页é¢ï¼Œæˆ–者打å°æ–‡æ¡£ã€‚" #: 01120000.xhp msgctxt "" @@ -55,16 +54,15 @@ "par_id9838862\n" "help.text" msgid "You can also press <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Page Up and <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Page Down keys to scroll through the pages." -msgstr "您也å¯ä»¥æŒ‰ <switchinline select=\"sys\"><caseinline select=\"MAC\">命令</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+å‘上翻页 与 <switchinline select=\"sys\"><caseinline select=\"MAC\">命令</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+å‘下翻页键在页é¢ä¹‹é—´æ»šåŠ¨ã€‚" +msgstr "您也å¯ä»¥æŒ‰ä¸‹ <switchinline select=\"sys\"><caseinline select=\"MAC\">命令</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Page Up 与 <switchinline select=\"sys\"><caseinline select=\"MAC\">命令</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Page Down 键在ä¸åŒé¡µé¢ä¹‹é—´æ»šåŠ¨ã€‚" #: 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 "当您预览页é¢çš„时候ä¸èƒ½ç¼–辑文档。" +msgstr "在打å°é¢„览模å¼ä¸‹æ‚¨æ— æ³•ç¼–辑文档。" #: 01120000.xhp msgctxt "" @@ -80,7 +78,7 @@ "par_id3155829\n" "help.text" msgid "<link href=\"text/scalc/main0210.xhp\" name=\"Page View Object Bar\">Page View Object Bar</link>" -msgstr "<link href=\"text/scalc/main0210.xhp\" name=\"页é¢è§†å›¾å¯¹è±¡æ \">页é¢è§†å›¾å¯¹è±¡æ </link>" +msgstr "<link href=\"text/scalc/main0210.xhp\" name=\"Page View Object Bar\">页é¢è§†å›¾å¯¹è±¡å·¥å…·æ </link>" #: 02110000.xhp msgctxt "" @@ -105,7 +103,7 @@ "1\n" "help.text" msgid "<link href=\"text/scalc/01/02110000.xhp\" name=\"Navigator\">Navigator</link>" -msgstr "<link href=\"text/scalc/01/02110000.xhp\" name=\"导航\">导航</link>" +msgstr "<link href=\"text/scalc/01/02110000.xhp\" name=\"Navigator\">导航</link>" #: 02110000.xhp msgctxt "" @@ -114,7 +112,7 @@ "2\n" "help.text" msgid "<ahelp hid=\".uno:Navigator\">Activates and deactivates the Navigator.</ahelp> The Navigator is a <link href=\"text/shared/00/00000005.xhp#andocken\" name=\"dockable window\">dockable window</link>." -msgstr "<ahelp hid=\".uno:Navigator\">激活和åœç”¨â€œå¯¼èˆªâ€ã€‚</ahelp>“导航â€æ˜¯ä¸€ä¸ª<link href=\"text/shared/00/00000005.xhp#andocken\" name=\"å¯åœé çª—å£\">å¯åœé çª—å£</link>。" +msgstr "<ahelp hid=\".uno:Navigator\">激活或éšè—导航窗å£ã€‚</ahelp>导航窗å£æ˜¯<link href=\"text/shared/00/00000005.xhp#andocken\" name=\"dockable window\">å¯åœé çš„窗å£</link>." #: 02110000.xhp msgctxt "" @@ -123,7 +121,7 @@ "40\n" "help.text" msgid "Choose <emph>View - Navigator</emph> to display the Navigator." -msgstr "选择<emph>视图 - 导航</emph>以显示“导航â€ã€‚" +msgstr "选择<emph>视图 - 导航</emph>以显示“导航â€çª—å£ã€‚" #: 02110000.xhp msgctxt "" @@ -141,7 +139,7 @@ "5\n" "help.text" msgid "<ahelp hid=\"HID_SC_NAVIPI_COL\">Enter the column letter. Press Enter to reposition the cell cursor to the specified column in the same row.</ahelp>" -msgstr "<ahelp hid=\"HID_SC_NAVIPI_COL\">输入列标题。按 Enter é”®é‡æ–°å®šä½å…‰æ ‡åˆ°åŒä¸€è¡Œçš„指定列。</ahelp>" +msgstr "<ahelp hid=\"HID_SC_NAVIPI_COL\">输入列标题的字æ¯ã€‚输完按 Enter é”®å¯å°†å…‰æ ‡å®šä½åˆ°ä½äºŽç›¸åŒè¡Œçš„指定列对应的å•å…ƒæ ¼ä¸­ã€‚</ahelp>" #: 02110000.xhp msgctxt "" @@ -159,7 +157,7 @@ "7\n" "help.text" msgid "<ahelp hid=\"HID_SC_NAVIPI_ROW\">Enter a row number. Press Enter to reposition the cell cursor to the specified row in the same column.</ahelp>" -msgstr "<ahelp hid=\"HID_SC_NAVIPI_ROW\">输入行å·ã€‚按 Enter é”®é‡æ–°å®šä½å…‰æ ‡åˆ°åŒä¸€åˆ—的指定行。</ahelp>" +msgstr "<ahelp hid=\"HID_SC_NAVIPI_ROW\">输入行å·æ•°å­—。输完按 Enter é”®å¯å°†å…‰æ ‡å®šä½åˆ°ä½äºŽç›¸åŒåˆ—的指定行对应的å•å…ƒæ ¼ä¸­ã€‚</ahelp>" #: 02110000.xhp msgctxt "" @@ -177,7 +175,7 @@ "10\n" "help.text" msgid "<ahelp hid=\"HID_SC_NAVIPI_DATA\">Specifies the current data range denoted by the position of the cell cursor.</ahelp>" -msgstr "<ahelp hid=\"HID_SC_NAVIPI_DATA\">æ ¹æ®å•å…ƒæ ¼å…‰æ ‡æ‰€åœ¨çš„ä½ç½®æ¥æŒ‡å®šå½“å‰æ•°æ®åŒºåŸŸã€‚</ahelp>" +msgstr "<ahelp hid=\"HID_SC_NAVIPI_DATA\">å•å‡»â€œæ•°æ®åŒºåŸŸâ€å¯åœ¨å·¥ä½œè¡¨ä¸­å®šä½å½“å‰å…‰æ ‡ä½ç½®æ‰€å¯¹åº”çš„å«æœ‰æ•°æ®çš„å•å…ƒæ ¼åŒºåŸŸã€‚</ahelp>" #: 02110000.xhp msgctxt "" @@ -212,7 +210,7 @@ "16\n" "help.text" msgid "<ahelp hid=\"HID_SC_NAVIPI_UP\">Moves to the cell at the beginning of the current data range, which you can highlight using the <emph>Data Range</emph> button.</ahelp>" -msgstr "<ahelp hid=\"HID_SC_NAVIPI_UP\">移到当å‰æ•°æ®åŒºåŸŸå¼€å§‹ä½ç½®çš„å•å…ƒæ ¼ï¼Œå•å‡»<emph>æ•°æ®åŒºåŸŸ</emph>按钮å¯ä»¥çªå‡ºæ˜¾ç¤ºå½“å‰çš„æ•°æ®åŒºåŸŸã€‚</ahelp>" +msgstr "<ahelp hid=\"HID_SC_NAVIPI_UP\">将光标移动到当å‰æ•°æ®åŒºåŸŸçš„起始å•å…ƒæ ¼ï¼Œæ‚¨å¯ä»¥ä½¿ç”¨<emph>æ•°æ®åŒºåŸŸ</emph>按钮定ä½å½“å‰çš„æ•°æ®åŒºåŸŸã€‚</ahelp>" #: 02110000.xhp msgctxt "" @@ -247,7 +245,7 @@ "19\n" "help.text" msgid "<ahelp hid=\"HID_SC_NAVIPI_DOWN\">Moves to the cell at the end of the current data range, which you can highlight using the <emph>Data Range</emph> button.</ahelp>" -msgstr "<ahelp hid=\"HID_SC_NAVIPI_DOWN\">移到当å‰æ•°æ®åŒºåŸŸç»“æŸä½ç½®çš„å•å…ƒæ ¼ï¼Œå•å‡»<emph>æ•°æ®åŒºåŸŸ</emph>按钮å¯ä»¥çªå‡ºæ˜¾ç¤ºå½“å‰çš„æ•°æ®åŒºåŸŸã€‚</ahelp>" +msgstr "<ahelp hid=\"HID_SC_NAVIPI_DOWN\">将光标移动到当å‰æ•°æ®åŒºåŸŸçš„起结æŸå•å…ƒæ ¼ï¼Œæ‚¨å¯ä»¥ä½¿ç”¨<emph>æ•°æ®åŒºåŸŸ</emph>按钮定ä½å½“å‰çš„æ•°æ®åŒºåŸŸã€‚</ahelp>" #: 02110000.xhp msgctxt "" @@ -273,7 +271,7 @@ "20\n" "help.text" msgid "Toggle" -msgstr "转æ¢" +msgstr "切æ¢" #: 02110000.xhp msgctxt "" @@ -282,7 +280,7 @@ "22\n" "help.text" msgid "<ahelp hid=\"HID_SC_NAVIPI_ROOT\">Toggles the content view. Only the selected Navigator element and its subelements are displayed.</ahelp> Click the icon again to restore all elements for viewing." -msgstr "<ahelp hid=\"HID_SC_NAVIPI_ROOT\">切æ¢å†…容视图。仅显示选定的“导航â€å…ƒç´ åŠå…¶å­å…ƒç´ ã€‚</ahelp>å†æ¬¡å•å‡»æ­¤å›¾æ ‡åˆ™è¿”回显示全部元素的视图。" +msgstr "<ahelp hid=\"HID_SC_NAVIPI_ROOT\">内容视图切æ¢ã€‚å•å‡»åˆ™åªæ˜¾ç¤ºå½“å‰æ‰€é€‰çš„导航元素。</ahelp>å†æ¬¡å•å‡»è¯¥å›¾æ ‡å¯è¿˜åŽŸæ˜¾ç¤ºæ‰€æœ‰çš„导航视图元素。" #: 02110000.xhp msgctxt "" @@ -299,7 +297,7 @@ "21\n" "help.text" msgid "Toggle" -msgstr "转æ¢" +msgstr "切æ¢" #: 02110000.xhp msgctxt "" @@ -352,7 +350,7 @@ "25\n" "help.text" msgid "<ahelp hid=\"HID_SC_NAVIPI_SCEN\">Displays all available scenarios. Double-click a name to apply that scenario.</ahelp> The result is shown in the sheet. For more information, choose <link href=\"text/scalc/01/06050000.xhp\" name=\"Tools - Scenarios\"><emph>Tools - Scenarios</emph></link>." -msgstr "<ahelp hid=\"HID_SC_NAVIPI_SCEN\">显示所有的å¯ç”¨æ–¹æ¡ˆã€‚åŒå‡»å称就å¯ä»¥é‡‡ç”¨ç›¸åº”的方案。</ahelp>结果显示在工作表中。有关详细信æ¯ï¼Œè¯·é€‰æ‹©<link href=\"text/scalc/01/06050000.xhp\" name=\"工具 - 方案\"><emph>工具 - 方案</emph></link>。" +msgstr "<ahelp hid=\"HID_SC_NAVIPI_SCEN\">显示所有å¯ç”¨çš„方案。åŒå‡»æŸä¸ªæ–¹æ¡ˆçš„å称å³å¯åº”用该方案。</ahelp>结果显示在工作表中。有关详细信æ¯ï¼Œè¯·é€‰æ‹©<link href=\"text/scalc/01/06050000.xhp\"name=\"Tools - Scenarios\"><emph>工具 - 方案</emph></link>。" #: 02110000.xhp msgctxt "" @@ -377,7 +375,7 @@ "par_idN10A6C\n" "help.text" msgid "If the Navigator displays scenarios, you can access the following commands when you right-click a scenario entry:" -msgstr "如果“导航â€æ˜¾ç¤ºæ–¹æ¡ˆï¼Œæ‚¨å¯ä»¥å³é”®å•å‡»æ–¹æ¡ˆæ¡ç›®æ¥ä½¿ç”¨ä»¥ä¸‹å‘½ä»¤ï¼š" +msgstr "若导航窗å£ä¸­æ˜¾ç¤ºäº†æ–¹æ¡ˆï¼Œæ‚¨å¯ä»¥é€šè¿‡å³é”®å•å‡»æŸä¸ªæ–¹æ¡ˆæ¥è®¿é—®ä»¥ä¸‹å‘½ä»¤ï¼š" #: 02110000.xhp msgctxt "" @@ -553,31 +551,28 @@ msgstr "页眉和页脚" #: 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=\"页眉/页脚\">页眉/页脚</link>" +msgstr "<link href=\"text/scalc/01/02120000.xhp\" name=\"Headers & Footers\">页眉和页脚</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\">用于定义页眉和页脚以åŠä¸ºå…¶è®¾ç½®æ ¼å¼ã€‚</ahelp></variable>" +msgstr "<variable id=\"kopfundfusszeilentext\"><ahelp hid=\".\">在这里您å¯ä»¥å®šä¹‰å’Œç¼–辑页眉页脚</ahelp> </variable>" #: 02120000.xhp -#, fuzzy msgctxt "" "02120000.xhp\n" "par_id3153415\n" "help.text" msgid "The<emph> Headers/Footers </emph>dialog contains the tabs for defining headers and footers. There will be separate tabs for the left and right page headers and footers if the <emph>Same content left/right</emph> option was not marked in the <link href=\"text/scalc/01/05070000.xhp\" name=\"Page Style\">Page Style</link> dialog." -msgstr "<emph>页眉/页脚</emph>对è¯æ¡†åŒ…å«äº†ç”¨äºŽå®šä¹‰é¡µçœ‰å’Œé¡µè„šçš„选项å¡ã€‚如果没有在<link href=\"text/scalc/01/05070000.xhp\" name=\"Page Style\">页é¢æ ·å¼</link>对è¯æ¡†ä¸­è®¾ç½® <emph>å·¦å³é¡µç›¸åŒ</emph> 选项,则会出现一个å•ç‹¬çš„用于设置左å³é¡µé¢é¡µçœ‰å’Œé¡µè„šçš„选项å¡ã€‚" +msgstr "<emph>页眉和页脚</emph>对è¯æ¡†ä¸­åŒ…å«ç”¨äºŽå®šä¹‰é¡µçœ‰å’Œé¡µè„šçš„选项å¡ã€‚è‹¥<link href=\"text/scalc/01/05070000.xhp\" name=\"Page Style\">页é¢æ ·å¼</link>对è¯æ¡†ä¸­çš„<emph>å·¦å³é¡µç›¸åŒ</emph>选项没有å¯ç”¨ï¼Œåˆ™è¿™é‡Œå°†ä¼šå‡ºçŽ°åˆ†åˆ«é’ˆå¯¹å·¦ä¾§å’Œå³ä¾§é¡µé¢çš„页眉页脚选项å¡ã€‚" #: 02120100.xhp msgctxt "" @@ -602,7 +597,7 @@ "1\n" "help.text" msgid "<link href=\"text/scalc/01/02120100.xhp\" name=\"Header/Footer\">Header/Footer</link>" -msgstr "<link href=\"text/scalc/01/02120100.xhp\" name=\"页眉/页脚\">页眉/页脚</link>" +msgstr "<link href=\"text/scalc/01/02120100.xhp\" name=\"Header/Footer\">页眉/页脚</link>" #: 02120100.xhp msgctxt "" @@ -611,7 +606,7 @@ "2\n" "help.text" msgid "<ahelp hid=\"modules/scalc/ui/headerfootercontent/HeaderFooterContent\">Defines or formats a header or footer for a Page Style.</ahelp>" -msgstr "<ahelp hid=\"modules/scalc/ui/headerfootercontent/HeaderFooterContent\">定义或格å¼åŒ–页é¢æ ·å¼çš„页眉或页脚。</ahelp>" +msgstr "<ahelp hid=\"modules/scalc/ui/headerfootercontent/HeaderFooterContent\">定义或格å¼åŒ–æŸä¸ªé¡µé¢æ ·å¼çš„页眉和页脚。</ahelp>" #: 02120100.xhp msgctxt "" @@ -1712,13 +1707,12 @@ msgstr "分布" #: 02140700.xhp -#, fuzzy msgctxt "" "02140700.xhp\n" "par_id2308201415431874867\n" "help.text" msgid "<ahelp hid=\".\">The distribution function for the random number generator.</ahelp>" -msgstr "<ahelp hid=\"\">éšæœºæ•°ç”Ÿæˆæ—¶æ‰€ä½¿ç”¨çš„分布函数。</ahelp>" +msgstr "<ahelp hid=\".\">éšæœºæ•°ç”Ÿæˆå™¨æ‰€ä½¿ç”¨çš„分布函数。</ahelp>" #: 02140700.xhp msgctxt "" @@ -2571,22 +2565,20 @@ msgstr "删除手动分隔符" #: 02190000.xhp -#, fuzzy msgctxt "" "02190000.xhp\n" "hd_id3150541\n" "help.text" msgid "<link href=\"text/scalc/01/02190000.xhp\" name=\"Delete Manual Breaks\">Delete Page Break</link>" -msgstr "<link href=\"text/scalc/01/02190000.xhp\" name=\"删除手动分隔符\">删除手动分隔符</link>" +msgstr "<link href=\"text/scalc/01/02190000.xhp\" name=\"Delete Manual Breaks\">删除分页符</link>" #: 02190000.xhp -#, fuzzy msgctxt "" "02190000.xhp\n" "par_id3154365\n" "help.text" msgid "<ahelp hid=\".\">Choose the type of page break that you want to delete.</ahelp>" -msgstr "<ahelp hid=\".\">选择è¦åˆ é™¤çš„手动分隔符类型。</ahelp>" +msgstr "<ahelp hid=\".\">选择您è¦åˆ é™¤çš„分页符类型。</ahelp>" #: 02190100.xhp msgctxt "" @@ -2683,22 +2675,20 @@ msgstr "工作表" #: 02200000.xhp -#, fuzzy msgctxt "" "02200000.xhp\n" "hd_id3146794\n" "help.text" msgid "<link href=\"text/scalc/01/02200000.xhp\" name=\"Sheet\">Sheet</link>" -msgstr "<link href=\"text/scalc/01/02200000.xhp\" name=\"工作表\">工作表</link>" +msgstr "<link href=\"text/scalc/01/02200000.xhp\" name=\"Sheet\">工作表</link>" #: 02200000.xhp -#, fuzzy msgctxt "" "02200000.xhp\n" "par_id3149456\n" "help.text" msgid "<ahelp hid=\".\">Edit commands for entire sheets.</ahelp>" -msgstr "<ahelp hid=\".\">对整张工作表进行编辑的命令。</ahelp>" +msgstr "<ahelp hid=\".\">整个工作表的编辑命令。</ahelp>" #: 02210000.xhp msgctxt "" @@ -2754,22 +2744,20 @@ msgstr "列标题和行标题" #: 03070000.xhp -#, fuzzy msgctxt "" "03070000.xhp\n" "bm_id3156024\n" "help.text" msgid "<bookmark_value>spreadsheets; displaying headers of columns/rows</bookmark_value> <bookmark_value>displaying; headers of columns/rows</bookmark_value>" -msgstr "<bookmark_value>电å­è¡¨æ ¼; 显示列/行的标题</bookmark_value><bookmark_value>显示; 列/行的标题</bookmark_value>" +msgstr "<bookmark_value>工作表; 显示工作表行标头/列标头</bookmark_value> <bookmark_value>显示; 行标头/列标头</bookmark_value>" #: 03070000.xhp -#, fuzzy msgctxt "" "03070000.xhp\n" "hd_id3156024\n" "help.text" msgid "<link href=\"text/scalc/01/03070000.xhp\" name=\"Column & Row Headers\">Column & Row Headers</link>" -msgstr "<link href=\"text/scalc/01/03070000.xhp\" name=\"列标题和行标题\">列标题和行标题</link>" +msgstr "<link href=\"text/scalc/01/03070000.xhp\" name=\"Column & Row Headers\">行标头和列标头</link>" #: 03070000.xhp msgctxt "" @@ -2780,13 +2768,12 @@ msgstr "<ahelp hid=\".\">显示列标题和行标题。</ahelp>" #: 03070000.xhp -#, fuzzy msgctxt "" "03070000.xhp\n" "par_id3156280\n" "help.text" msgid "To hide the column and row headers, unmark this menu entry." -msgstr "è¦éšè—列标题和行标题,请å–消这个èœå•æ¡ç›®æ ‡è®°ã€‚" +msgstr "è¦éšè—行标头和列标头,请å选该èœå•é¡¹ã€‚" #: 03070000.xhp #, fuzzy @@ -2873,58 +2860,52 @@ msgstr "<bookmark_value>å…¬å¼ç¼–辑æ ; 电å­è¡¨æ ¼</bookmark_value><bookmark_value>电å­è¡¨æ ¼; å…¬å¼ç¼–辑æ </bookmark_value>" #: 03090000.xhp -#, fuzzy msgctxt "" "03090000.xhp\n" "hd_id3147264\n" "help.text" msgid "<link href=\"text/scalc/01/03090000.xhp\" name=\"Formula Bar\">Formula Bar</link>" -msgstr "<link href=\"text/scalc/01/03090000.xhp\" name=\"编辑æ \">编辑æ </link>" +msgstr "<link href=\"text/scalc/01/03090000.xhp\" name=\"Formula Bar\">å…¬å¼æ </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\">显示或éšè—用于输入和编辑公å¼çš„“公å¼æ â€ã€‚</ahelp>“公å¼æ â€æ˜¯å¯¹ç”µå­è¡¨æ ¼è¿›è¡Œæ“作的é‡è¦å·¥å…·ã€‚" +msgstr "<ahelp hid=\".\">显示或éšè—å…¬å¼æ ã€‚公示æ ç”¨äºŽè¾“入和编辑å•å…ƒæ ¼ä¸­çš„å…¬å¼ï¼Œæ˜¯ç”µå­è¡¨æ ¼ä¸­æœ€é‡è¦çš„工具。</ahelp>" #: 03090000.xhp -#, fuzzy msgctxt "" "03090000.xhp\n" "par_id3154686\n" "help.text" msgid "To hide the Formula Bar, unmark the menu item." -msgstr "è¦éšè—“公å¼æ â€ï¼Œè¯·å–消这个èœå•é¡¹æ ‡è®°ã€‚" +msgstr "è¦éšè—å…¬å¼æ ï¼Œè¯·å选该èœå•é¡¹ã€‚" #: 03090000.xhp -#, fuzzy msgctxt "" "03090000.xhp\n" "par_id3145787\n" "help.text" msgid "If the Formula Bar is hidden, you can still edit cells by activating the edit mode with F2. After editing cells, accept the changes by pressing Enter, or discard entries by pressing Esc. Esc is also used to exit the edit mode." -msgstr "如果“公å¼æ â€è¢«éšè—,使用 F2 键激活编辑模å¼ï¼Œæ‚¨ä»ç„¶å¯ä»¥å¯¹å•å…ƒæ ¼è¿›è¡Œç¼–辑。编辑å•å…ƒæ ¼ä¹‹åŽï¼ŒæŒ‰ Enter 键接å—修改,或者按 Esc 键放弃修改。Esc 键也用于退出编辑模å¼ã€‚" +msgstr "若公示æ è¢«éšè—了,则您ä»ç„¶å¯ä»¥æŒ‰ä¸‹F2键通过激活编辑模å¼æ¥ç¼–辑å•å…ƒæ ¼ï¼Œç¼–辑完æˆä¹‹åŽæŒ‰ä¸‹Enteré”®æ¥åº”用更改,或者按下Esc键放弃更改。Esc键也用于退出编辑模å¼ã€‚" #: 03100000.xhp -#, fuzzy msgctxt "" "03100000.xhp\n" "tit\n" "help.text" msgid "Page Break View" -msgstr "分页预览" +msgstr "“分页符â€è§†å›¾" #: 03100000.xhp -#, fuzzy msgctxt "" "03100000.xhp\n" "hd_id3151384\n" "help.text" msgid "<link href=\"text/scalc/01/03100000.xhp\" name=\"Page Break View\">Page Break View</link>" -msgstr "<link href=\"text/scalc/01/03100000.xhp\" name=\"分页预览\">分页预览</link>" +msgstr "<link href=\"text/scalc/01/03100000.xhp\" name=\"Page Break View\">“分页符â€è§†å›¾</link>" #: 03100000.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/zh-CN/helpcontent2/source/text/scalc/guide.po libreoffice-5.1.2~rc2/translations/source/zh-CN/helpcontent2/source/text/scalc/guide.po --- libreoffice-5.1.1~rc2/translations/source/zh-CN/helpcontent2/source/text/scalc/guide.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/zh-CN/helpcontent2/source/text/scalc/guide.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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 22:55+0000\n" -"Last-Translator: ç¨ç‘ é” <suokunlong@126.com>\n" +"PO-Revision-Date: 2016-03-04 08:19+0000\n" +"Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: zh_CN\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1431384918.000000\n" +"X-POOTLE-MTIME: 1457079560.000000\n" #: address_auto.xhp msgctxt "" @@ -22,7 +22,7 @@ "tit\n" "help.text" msgid "Recognizing Names as Addressing" -msgstr "寻å€æ—¶è¯†åˆ«å称" +msgstr "å°†å称识别为地å€" #: address_auto.xhp msgctxt "" @@ -48,7 +48,7 @@ "21\n" "help.text" msgid "You can use cells with text to refer to the rows or to the columns that contain the cells." -msgstr "您å¯ä»¥ä½¿ç”¨å«æœ‰æ–‡æœ¬çš„å•å…ƒæ ¼æ¥è¡¨ç¤ºåŒ…å«å•å…ƒæ ¼çš„行或列。" +msgstr "您å¯ä»¥ä½¿ç”¨åŒ…å«æ–‡æœ¬çš„å•å…ƒæ ¼æ¥è¡¨ç¤ºè¯¥å•å…ƒæ ¼æ‰€åœ¨çš„行或列。" #: address_auto.xhp msgctxt "" @@ -56,7 +56,7 @@ "par_id3156283\n" "help.text" msgid "<image id=\"img_id3154942\" src=\"res/helpimg/names_as_addressing.png\" width=\"2.1291in\" height=\"0.8709in\" localize=\"true\"><alt id=\"alt_id3154942\">Example spreadsheet</alt></image>" -msgstr "<image id=\"img_id3154942\" src=\"res/helpimg/names_as_addressing.png\" width=\"2.1291in\" height=\"0.8709in\" localize=\"true\"><alt id=\"alt_id3154942\">电å­è¡¨æ ¼ç¤ºä¾‹</alt></image>" +msgstr "<image id=\"img_id3154942\" src=\"res/helpimg/names_as_addressing.png\" width=\"2.1291in\" height=\"0.8709in\" localize=\"true\"><alt id=\"alt_id3154942\">示例电å­è¡¨æ ¼</alt></image>" #: address_auto.xhp msgctxt "" @@ -65,7 +65,7 @@ "22\n" "help.text" msgid "In the example spreadsheet, you can use the string <item type=\"literal\">'Column One'</item> in a formula to refer to the cell range <item type=\"literal\">B3</item> to <item type=\"literal\">B5</item>, or <item type=\"literal\">'Column Two'</item> for the cell range <item type=\"literal\">C2</item> to <item type=\"literal\">C5</item>. You can also use <item type=\"literal\">'Row One'</item> for the cell range <item type=\"literal\">B3</item> to <item type=\"literal\">D3</item>, or <item type=\"literal\">'Row Two'</item> for the cell range <item type=\"literal\">B4</item> to <item type=\"literal\">D4</item>. The result of a formula that uses a cell name, for example, <item type=\"literal\">SUM('Column One')</item>, is 600." -msgstr "在示例电å­è¡¨æ ¼ä¸­ï¼Œå¯ä»¥åœ¨å…¬å¼ä¸­ä½¿ç”¨å­—符串 <item type=\"literal\">'Column One'</item> æ¥è¡¨ç¤ºå•å…ƒæ ¼èŒƒå›´ <item type=\"literal\">B3</item> 到 <item type=\"literal\">B5</item>,或使用 <item type=\"literal\">'Column Two'</item> 表示å•å…ƒæ ¼èŒƒå›´ <item type=\"literal\">C2</item> 到 <item type=\"literal\">C5</item>。也å¯ä»¥ä½¿ç”¨ <item type=\"literal\">'Row One'</item> 表示å•å…ƒæ ¼èŒƒå›´ <item type=\"literal\">B3</item> 到 <item type=\"literal\">D3</item>,或使用 <item type=\"literal\">'Row Two'</item> 表示å•å…ƒæ ¼èŒƒå›´ <item type=\"literal\">B4</item> 到 <item type=\"literal\">D4</item>。使用å•å…ƒæ ¼å称的公å¼ï¼ˆä¾‹å¦‚ <item type=\"literal\">SUM('Column One')</item>)的结果为 600。" +msgstr "在该例å­ä¸­ï¼Œæ‚¨å¯ä»¥åœ¨å…¬å¼ä¸­ä½¿ç”¨å­—符串<item type=\"literal\">'Column One'</item>作为对å•å…ƒæ ¼åŒºåŸŸ<item type=\"literal\">B3</item>到<item type=\"literal\">B5</item>的引用,或者使用字符串<item type=\"literal\">'Column Two'</item>作为对å•å…ƒæ ¼åŒºåŸŸ<item type=\"literal\">C2</item>到<item type=\"literal\">C5</item>的引用。您也å¯ä»¥ä½¿ç”¨<item type=\"literal\">'Row One'</item>表示å•å…ƒæ ¼åŒºåŸŸ<item type=\"literal\">B3</item>到<item type=\"literal\">D3</item>,或者使用<item type=\"literal\">'Row Two'</item>表示å•å…ƒæ ¼åŒºåŸŸ<item type=\"literal\">B4</item>到<item type=\"literal\">D4</item>。公å¼<item type=\"literal\">SUM('Column One')</item>中使用了å•å…ƒæ ¼å称,其计算结果为600." #: address_auto.xhp msgctxt "" @@ -74,7 +74,7 @@ "24\n" "help.text" msgid "This function is active by default. To turn this function off, choose <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME Calc - Calculate</emph> and clear the <emph>Automatically find column and row labels</emph> check box." -msgstr "此函数默认情况下为激活状æ€ã€‚è¦å…³é—­æ­¤å‡½æ•°ï¼Œè¯·é€‰æ‹©<emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - 首选项</caseinline><defaultinline>工具 - 选项</defaultinline></switchinline> - %PRODUCTNAME Calc - 计算</emph>并清除<emph>自动查找列和行标签</emph>å¤é€‰æ¡†ã€‚" +msgstr "此功能默认情况下没有激活。è¦æ‰“开此功能,请选择<emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - 首选项</caseinline><defaultinline>工具 - 选项</defaultinline></switchinline> - %PRODUCTNAME Calc - 计算</emph>,然åŽé€‰å®š<emph>自动æœç´¢è¡Œæ ‡ç­¾å’Œåˆ—标签</emph>å¤é€‰æ¡†ã€‚" #: address_auto.xhp msgctxt "" @@ -83,7 +83,7 @@ "37\n" "help.text" msgid "If you want a name to be automatically recognized by Calc, the name must start with a letter and be composed of alphanumeric characters. If you enter the name in the formula yourself, enclose the name in single quotation marks ('). If a single quotation mark appears in a name, you must enter a backslash in front of the quotation mark, for example, <item type=\"literal\">'Harry\\'s Bar'.</item>" -msgstr "如果希望å称被 Calc 自动识别,该å称必须以字æ¯å¼€å¤´å¹¶ä¸”由字æ¯æ•°å­—组æˆã€‚如果自行在公å¼ä¸­è¾“å…¥å称,请用å•å¼•å· (') 括ä½å称。如果å•å¼•å·å‡ºçŽ°åœ¨å称中,则必须在引å·å‰é¢è¾“å…¥åæ–œæ ï¼Œä¾‹å¦‚ <item type=\"literal\">'Harry\\'s Bar'</item>。" +msgstr "如果希望å称被 Calc 自动识别,该å称必须以字æ¯å¼€å¤´å¹¶ä¸”由字æ¯æ•°å­—组æˆã€‚如果手动在公å¼ä¸­è¾“å…¥å称,请用å•å¼•å· (') 括ä½å称。如果å•å¼•å·å‡ºçŽ°åœ¨å称中,则必须在引å·å‰é¢è¾“å…¥åæ–œæ ï¼Œä¾‹å¦‚ <item type=\"literal\">'Harry\\'s Bar'</item>。" #: auto_off.xhp msgctxt "" @@ -91,7 +91,7 @@ "tit\n" "help.text" msgid "Deactivating Automatic Changes" -msgstr "åœç”¨è‡ªåŠ¨ä¿®æ”¹" +msgstr "关闭自动更正功能" #: auto_off.xhp msgctxt "" @@ -99,7 +99,7 @@ "bm_id3149456\n" "help.text" msgid "<bookmark_value>deactivating; automatic changes</bookmark_value> <bookmark_value>tables; deactivating automatic changes in</bookmark_value> <bookmark_value>AutoInput function on/off</bookmark_value> <bookmark_value>text in cells;AutoInput function</bookmark_value> <bookmark_value>cells; AutoInput function of text</bookmark_value> <bookmark_value>input support in spreadsheets</bookmark_value> <bookmark_value>changing; input in cells</bookmark_value> <bookmark_value>AutoCorrect function;cell contents</bookmark_value> <bookmark_value>cell input;AutoInput function</bookmark_value> <bookmark_value>lowercase letters;AutoInput function (in cells)</bookmark_value> <bookmark_value>capital letters;AutoInput function (in cells)</bookmark_value> <bookmark_value>date formats;avoiding conversion to</bookmark_value> <bookmark_value>number completion on/off</bookmark_value> <bookmark_value>text completion on/off</bookmark_value> <bookmark_value>word completion on/off</bookmark_value>" -msgstr "<bookmark_value>åœç”¨; 自动更改</bookmark_value><bookmark_value>表格; åœç”¨è‡ªåŠ¨æ›´æ”¹</bookmark_value><bookmark_value>打开/关闭自动输入功能</bookmark_value><bookmark_value>å•å…ƒæ ¼ä¸­çš„文本; 自动输入功能</bookmark_value><bookmark_value>å•å…ƒæ ¼; 文本的自动输入功能</bookmark_value><bookmark_value>电å­è¡¨æ ¼ä¸­çš„输入支æŒ</bookmark_value><bookmark_value>更改; å•å…ƒæ ¼å†…容</bookmark_value><bookmark_value>自动更正功能; å•å…ƒæ ¼å†…容</bookmark_value><bookmark_value>å•å…ƒæ ¼è¾“å…¥; 自动输入功能</bookmark_value><bookmark_value>å°å†™å­—æ¯; 自动输入功能(å•å…ƒæ ¼ä¸­ï¼‰</bookmark_value><bookmark_value>大写字æ¯; 自动输入功能(å•å…ƒæ ¼ä¸­ï¼‰</bookmark_value><bookmark_value>日期格å¼; é¿å…转æ¢ä¸º</bookmark_value><bookmark_value>打开/关闭数字补充完整功能</bookmark_value><bookmark_value>打开/关闭文本补充完整功能</bookmark_value><bookmark_value>打开/关闭字è¯è¡¥å……完整功能</bookmark_value>" +msgstr "<bookmark_value>ç¦ç”¨; 自动更正</bookmark_value><bookmark_value>表格; ç¦ç”¨è‡ªåŠ¨æ›´æ­£</bookmark_value><bookmark_value>自动输入功能打开/关闭</bookmark_value><bookmark_value>å•å…ƒæ ¼ä¸­çš„文本; 自动输入功能</bookmark_value><bookmark_value>å•å…ƒæ ¼; 文本的自动输入功能</bookmark_value><bookmark_value>电å­è¡¨æ ¼ä¸­çš„输入支æŒ</bookmark_value><bookmark_value>更改; å•å…ƒæ ¼å†…容</bookmark_value><bookmark_value>自动更正功能; å•å…ƒæ ¼å†…容</bookmark_value><bookmark_value>å•å…ƒæ ¼è¾“å…¥; 自动输入功能</bookmark_value><bookmark_value>å°å†™å­—æ¯; 自动输入功能(å•å…ƒæ ¼ä¸­ï¼‰</bookmark_value><bookmark_value>大写字æ¯; 自动输入功能(å•å…ƒæ ¼ä¸­ï¼‰</bookmark_value><bookmark_value>日期格å¼; é¿å…转æ¢ä¸º</bookmark_value><bookmark_value>打开/关闭数字补充完整功能</bookmark_value><bookmark_value>打开/关闭文本补充完整功能</bookmark_value><bookmark_value>打开/关闭字è¯è¡¥å……完整功能</bookmark_value>" #: auto_off.xhp msgctxt "" @@ -108,7 +108,7 @@ "1\n" "help.text" msgid "<variable id=\"auto_off\"><link href=\"text/scalc/guide/auto_off.xhp\" name=\"Deactivating Automatic Changes\">Deactivating Automatic Changes</link></variable>" -msgstr "<variable id=\"auto_off\"><link href=\"text/scalc/guide/auto_off.xhp\" name=\"åœç”¨è‡ªåŠ¨ä¿®æ”¹\">åœç”¨è‡ªåŠ¨ä¿®æ”¹</link></variable>" +msgstr "<variable id=\"auto_off\"><link href=\"text/scalc/guide/auto_off.xhp\" name=\"Deactivating Automatic Changes\">ç¦ç”¨è‡ªåŠ¨æ›´æ­£åŠŸèƒ½</link></variable>" #: auto_off.xhp msgctxt "" @@ -117,7 +117,7 @@ "2\n" "help.text" msgid "By default, $[officename] automatically corrects many common typing errors and applies formatting while you type. You can immediately undo any automatic changes with <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Z." -msgstr "默认情况下,$[officename] 会在您输入时自动更正常è§çš„拼写错误,并应用相应的格å¼ã€‚通过 <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Z 组åˆé”®ï¼Œæ‚¨å¯ä»¥ç«‹åˆ»æ’¤æ¶ˆæŸä¸€è‡ªåŠ¨æ›´æ­£ã€‚" +msgstr "默认情况下,$[officename] 会在您输入时自动更正常è§çš„输入错误并应用格å¼ã€‚您å¯ä»¥å³æ—¶æŒ‰ä¸‹<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Z键撤销任何的å•æ¬¡è‡ªåŠ¨æ›´æ­£ã€‚" #: auto_off.xhp msgctxt "" @@ -126,7 +126,7 @@ "3\n" "help.text" msgid "The following shows you how to deactivate and reactivate the automatic changes in $[officename] Calc:" -msgstr "下é¢ä»‹ç»å¦‚何关闭和é‡æ–°å¯åŠ¨ $[officename] Calc 的自动更改功能:" +msgstr "下é¢ä»‹ç»å¦‚何在$[officename] Calc中å¯ç”¨å’Œç¦ç”¨è‡ªåŠ¨æ›´æ­£åŠŸèƒ½ï¼š" #: auto_off.xhp msgctxt "" @@ -135,7 +135,7 @@ "4\n" "help.text" msgid "Automatic Text or Number Completion" -msgstr "自动补充文字或数字" +msgstr "文本或数字自动补全" #: auto_off.xhp msgctxt "" @@ -144,7 +144,7 @@ "5\n" "help.text" msgid "When making an entry in a cell, $[officename] Calc automatically suggests matching input found in the same column. This function is known as <emph>AutoInput</emph>." -msgstr "在往å•å…ƒæ ¼ä¸­è¾“入数æ®æ—¶ï¼Œ$[officename] Calc 会自动é‡å¤æ˜¾ç¤ºè¯¥å•å…ƒæ ¼æ‰€åœ¨åˆ—中现有的输入数æ®ã€‚我们称这个功能为<emph>自动输入</emph>。" +msgstr "在å•å…ƒæ ¼ä¸­è¾“入数æ®æ—¶ï¼Œ$[officename] Calc会自动为您建议当å‰åˆ—中已有的项目。该功能被称作<emph>自动输入</emph>。" #: auto_off.xhp msgctxt "" @@ -153,7 +153,7 @@ "6\n" "help.text" msgid "To turn the AutoInput on and off, set or remove the check mark in front of <link href=\"text/scalc/01/06130000.xhp\" name=\"Tools - Cell Contents - AutoInput\"><emph>Tools - Cell Contents - AutoInput</emph></link>." -msgstr "添加或删除èœå•å‘½ä»¤<link href=\"text/scalc/01/06130000.xhp\" name=\"工具 - å•å…ƒæ ¼å†…容 - 自动输入\"><emph>工具 - å•å…ƒæ ¼å†…容 - 自动输入</emph></link>å‰çš„é’©å·ï¼Œä¾¿å¯å¯åŠ¨æˆ–者关闭自动输入功能。" +msgstr "è¦æ‰“开或关闭自动输入功能,请选定或ä¸é€‰<link href=\"text/scalc/01/06130000.xhp\" name=\"Tools - Cell Contents - AutoInput\"><emph>工具 - 自动输入</emph></link>。" #: auto_off.xhp msgctxt "" @@ -162,7 +162,7 @@ "21\n" "help.text" msgid "Automatic Conversion to Date Format" -msgstr "自动转æ¢æˆæ—¥æœŸæ ¼å¼" +msgstr "自动转æ¢ä¸ºæ—¥æœŸæ ¼å¼" #: auto_off.xhp msgctxt "" @@ -171,7 +171,7 @@ "22\n" "help.text" msgid "$[officename] Calc automatically converts certain entries to dates. For example, the entry <emph>1.1</emph> may be interpreted as January 1 of the current year, according to the locale settings of your operating system, and then displayed according to the date format applied to the cell." -msgstr "$[officename] Calc 自动将æŸäº›æ¡ç›®è½¬æ¢æˆæ—¥æœŸã€‚例如,æ¡ç›® <emph>1.1</emph> 将根æ®æ“作系统的语言环境设置被解释为当å‰å¹´ä»½çš„ 1 月 1 日,然åŽæŒ‰ç…§å•å…ƒæ ¼åº”用的日期格å¼æ˜¾ç¤ºè¯¥æ—¥æœŸã€‚" +msgstr "$[officename] Calc 会自动将æŸäº›è¾“入项目转æ¢ä¸ºæ—¥æœŸæ ¼å¼ã€‚比如,å–决于当å‰locale的设置,输入<emph>1-1</emph>å¯èƒ½ä¼šè¢«è½¬æ¢ä¸ºå½“å‰å¹´ä»½çš„1月1日,并以日期格å¼æ˜¾ç¤ºåœ¨å•å…ƒæ ¼ä¸­ã€‚" #: auto_off.xhp msgctxt "" @@ -180,7 +180,7 @@ "23\n" "help.text" msgid "To ensure that an entry is interpreted as text, add an apostrophe at the beginning of the entry. The apostrophe is not displayed in the cell." -msgstr "è¦ç¡®ä¿ä¸€ä¸ªæ¡ç›®è¢«è§£é‡Šä¸ºæ–‡å­—,请在该æ¡ç›®çš„开头加上å•å¼•å·ã€‚å•å¼•å·ä¸ä¼šæ˜¾ç¤ºåœ¨å•å…ƒæ ¼ä¸­ã€‚" +msgstr "如果想让输入的项目被当åšæ–‡æœ¬è€Œä¸æ˜¯æ—¥æœŸï¼Œå¯åœ¨è¾“入时在å‰é¢åŠ ä¸€ä¸ªæ’‡å·ï¼ˆ')。该撇å·åœ¨å•å…ƒæ ¼ä¸­ä¸ä¼šæ˜¾ç¤ºã€‚" #: auto_off.xhp msgctxt "" @@ -189,7 +189,7 @@ "7\n" "help.text" msgid "Quotation Marks Replaced by Custom Quotes" -msgstr "引å·ç”±è‡ªå®šä¹‰å¼•å·æ¥ä»£æ›¿" +msgstr "将引å·æ›¿æ¢ä¸ºè‡ªå®šä¹‰å¼•å·" #: auto_off.xhp msgctxt "" @@ -198,7 +198,7 @@ "9\n" "help.text" msgid "Choose <emph>Tools - AutoCorrect Options</emph>. Go to the <emph>Localized Options</emph> tab and unmark <emph>Replace</emph>." -msgstr "选择<emph>工具 - 自动更正选项</emph>。转到<emph>本地化选项</emph>选项å¡å¹¶å–消选中<emph>替æ¢</emph>." +msgstr "选择<emph>工具 - 自动更正选项</emph>,在<emph>本地化选项</emph> 选项å¡ä¸­ï¼Œæ ¹æ®éœ€è¦é€‰æ‹©æˆ–ä¸é€‰â€œå•å¼•å·â€å’Œâ€œåŒå¼•å·â€ä¸­çš„<emph>替æ¢</emph>。" #: auto_off.xhp msgctxt "" @@ -207,7 +207,7 @@ "11\n" "help.text" msgid "Cell Content Always Begins With Uppercase" -msgstr "å•å…ƒæ ¼å†…容总是由大写字æ¯èµ·å¤´" +msgstr "å•å…ƒæ ¼ä¸­çš„首字æ¯æ€»æ˜¯è¢«è‡ªåŠ¨è½¬æ¢ä¸ºå¤§å†™" #: auto_off.xhp msgctxt "" @@ -216,7 +216,7 @@ "13\n" "help.text" msgid "Choose <item type=\"menuitem\">Tools - AutoCorrect Options</item>. Go to the <item type=\"menuitem\">Options</item> tab. Unmark <item type=\"menuitem\">Capitalize first letter of every sentence</item>." -msgstr "选择<item type=\"menuitem\">工具 - 自动更正选项</item>。转到<item type=\"menuitem\">选项</item>选项å¡ã€‚å–消标记<item type=\"menuitem\">æ¯å¥å¥é¦–å­—æ¯å¤§å†™</item>。" +msgstr "选择<item type=\"menuitem\">工具 - 自动更正选项</item>,在<item type=\"menuitem\">选项</item>选项å¡ä¸­ï¼Œå–消选择<item type=\"menuitem\">设定æ¯ä¸ªå¥å­ç”±å¤§å†™å­—æ¯å¼€å¤´</item>。" #: auto_off.xhp msgctxt "" @@ -225,7 +225,7 @@ "15\n" "help.text" msgid "Replace Word With Another Word" -msgstr "由其它è¯æ¥æ›¿æ¢ä¸€ä¸ªè¯" +msgstr "输入的å•è¯æ€»æ˜¯ä¼šè¢«æ›¿æ¢æˆå¦å¤–çš„è¯" #: auto_off.xhp msgctxt "" @@ -234,7 +234,7 @@ "17\n" "help.text" msgid "Choose <item type=\"menuitem\">Tools - AutoCorrect Options</item>. Go to the <item type=\"menuitem\">Replace</item> tab. Select the word pair and click <item type=\"menuitem\">Delete</item>." -msgstr "选择<item type=\"menuitem\">工具 - 自动更正选项</item>。转到<item type=\"menuitem\">替æ¢</item>选项å¡ã€‚选择è¯å¯¹å¹¶å•å‡»<item type=\"menuitem\">删除</item>。" +msgstr "选择<item type=\"menuitem\">工具 - 自动更正选项</item>,在<item type=\"menuitem\">替æ¢</item>选项å¡ä¸­ï¼ŒåŒå‡»é€‰æ‹©ä¸€ä¸ªå•è¯å¯¹ï¼Œç„¶åŽç‚¹å‡»<item type=\"menuitem\">删除</item>。" #: auto_off.xhp msgctxt "" @@ -243,7 +243,7 @@ "19\n" "help.text" msgid "<link href=\"text/scalc/01/06130000.xhp\" name=\"Tools - Cell Contents - AutoInput\">Tools - Cell Contents - AutoInput</link>" -msgstr "<link href=\"text/scalc/01/06130000.xhp\" name=\"工具 - å•å…ƒæ ¼å†…容 - 自动输入\">工具 - å•å…ƒæ ¼å†…容 - 自动输入</link>" +msgstr "<link href=\"text/scalc/01/06130000.xhp\" name=\"Tools - Cell Contents - AutoInput\">工具 - 自动输入</link>" #: auto_off.xhp msgctxt "" @@ -260,7 +260,7 @@ "tit\n" "help.text" msgid "Applying AutoFilter" -msgstr "应用自动筛选" +msgstr "添加自动筛选" #: autofilter.xhp msgctxt "" @@ -268,7 +268,7 @@ "bm_id3156423\n" "help.text" msgid "<bookmark_value>filters, see also AutoFilter function</bookmark_value> <bookmark_value>AutoFilter function;applying</bookmark_value> <bookmark_value>sheets; filter values</bookmark_value> <bookmark_value>numbers; filter sheets</bookmark_value> <bookmark_value>columns; AutoFilter function</bookmark_value> <bookmark_value>drop-down menus in sheet columns</bookmark_value> <bookmark_value>database ranges; AutoFilter function</bookmark_value>" -msgstr "<bookmark_value>筛选; å¦è¯·å‚è§è‡ªåŠ¨ç­›é€‰åŠŸèƒ½</bookmark_value><bookmark_value>自动筛选功能;应用</bookmark_value><bookmark_value>工作表; 筛选值</bookmark_value><bookmark_value>æ•°å­—; 筛选工作表</bookmark_value><bookmark_value>列; 自动筛选功能</bookmark_value><bookmark_value>工作表列中的下拉èœå•</bookmark_value><bookmark_value>æ•°æ®åº“区域; 自动筛选功能</bookmark_value>" +msgstr "<bookmark_value>筛选; å¦è¯·å‚è§è‡ªåŠ¨ç­›é€‰åŠŸèƒ½</bookmark_value><bookmark_value>自动筛选功能;添加</bookmark_value><bookmark_value>工作表; 筛选值</bookmark_value><bookmark_value>æ•°å­—; 筛选工作表</bookmark_value><bookmark_value>列; 自动筛选功能</bookmark_value><bookmark_value>工作表列中的下拉èœå•</bookmark_value><bookmark_value>æ•°æ®åº“区域; 自动筛选功能</bookmark_value>" #: autofilter.xhp msgctxt "" @@ -277,7 +277,7 @@ "6\n" "help.text" msgid "<variable id=\"autofilter\"><link href=\"text/scalc/guide/autofilter.xhp\" name=\"Applying AutoFilter\">Applying AutoFilter</link></variable>" -msgstr "<variable id=\"autofilter\"><link href=\"text/scalc/guide/autofilter.xhp\" name=\"应用自动筛选\">应用自动筛选</link></variable>" +msgstr "<variable id=\"autofilter\"><link href=\"text/scalc/guide/autofilter.xhp\" name=\"Applying AutoFilter\">添加自动筛选</link></variable>" #: autofilter.xhp msgctxt "" @@ -286,7 +286,7 @@ "7\n" "help.text" msgid "The <emph>AutoFilter</emph> function inserts a combo box on one or more data columns that lets you select the records (rows) to be displayed." -msgstr "<emph>自动筛选</emph>功能在一个或多个数æ®åˆ—中æ’入一个组åˆæ¡†ï¼Œä»¥é€‰æ‹©è¦æ˜¾ç¤ºçš„记录(行)。" +msgstr "<emph>自动筛选</emph>功能å¯åœ¨ä¸€ä¸ªæˆ–多个数æ®åˆ—上添加一个下拉框,您å¯åœ¨è¯¥ä¸‹æ‹‰æ¡†ä¸­é€‰æ‹©è¦æ˜¾ç¤ºçš„记录(数æ®è¡Œï¼‰ã€‚" #: autofilter.xhp msgctxt "" @@ -295,7 +295,7 @@ "9\n" "help.text" msgid "Select the columns you want to use AutoFilter on." -msgstr "选择è¦åº”用自动筛选的列。" +msgstr "选择è¦æ·»åŠ è‡ªåŠ¨ç­›é€‰çš„列。" #: autofilter.xhp msgctxt "" @@ -304,7 +304,7 @@ "10\n" "help.text" msgid "Choose <emph>Data - Filter - AutoFilter</emph>. The combo box arrows are visible in the first row of the range selected." -msgstr "选择<emph>æ•°æ® - 筛选器 - 自动筛选</emph>。在选定区域的第一行中å¯ä»¥çœ‹åˆ°ç»„åˆæ¡†ç®­å¤´ã€‚" +msgstr "选择<emph>æ•°æ® - 筛选 - 自动筛选</emph>。在选定区域的第一行中å¯ä»¥çœ‹åˆ°æœ‰ç®­å¤´çš„下拉框。" #: autofilter.xhp msgctxt "" @@ -313,7 +313,7 @@ "11\n" "help.text" msgid "Run the filter by clicking the drop-down arrow in the column heading and choosing an item." -msgstr "å•å‡»åˆ—标题中的下拉箭头并选择一项æ¥æ‰§è¡Œç­›é€‰ã€‚" +msgstr "å•å‡»åˆ—头的下拉框,挑选您想è¦æ˜¾ç¤ºçš„项目,这些选定的项目将会被筛选出æ¥æ˜¾ç¤ºåœ¨è¡¨æ ¼ä¸­ã€‚" #: autofilter.xhp msgctxt "" @@ -322,7 +322,7 @@ "13\n" "help.text" msgid "Only those rows whose contents meet the filter criteria are displayed. The other rows are filtered. You can see if rows have been filtered from the discontinuous row numbers. The column that has been used for the filter is identified by a different color for the arrow button." -msgstr "仅显示内容符åˆç­›é€‰æ¡ä»¶çš„行。其他行会被筛选掉。从ä¸è¿žç»­çš„è¡Œå·å¯ä»¥çœ‹å‡ºè¡Œæ˜¯å¦å·²è¢«ç­›é€‰æŽ‰ã€‚已用于筛选的列由ä¸åŒé¢œè‰²çš„箭头按钮æ¥æ ‡è¯†ã€‚" +msgstr "通过筛选,用户界é¢ä¸Šå°†ä»…显示符åˆç­›é€‰æ¡ä»¶çš„项目,其它的ä¸ç¬¦åˆæ¡ä»¶çš„行会被筛除掉。从行å·æ˜¯å¦è¿žç»­æ‚¨å¯ä»¥åˆ¤æ–­æ˜¯å¦æœ‰è¢«ç­›é™¤çš„行。若æŸä¸€åˆ—å·²ç»åº”用了筛选,则下拉箭头会显示为ä¸åŒçš„颜色。" #: autofilter.xhp msgctxt "" @@ -330,7 +330,7 @@ "par_id9216589\n" "help.text" msgid "When you apply an additional AutoFilter on another column of a filtered data range, then the other combo boxes list only the filtered data." -msgstr "当您在已筛选的数æ®åŒºåŸŸçš„å¦ä¸€åˆ—应用附加的“自动筛选â€æ—¶ï¼Œå…¶ä»–组åˆæ¡†åˆ—表åªå­˜åœ¨å·²ç­›é€‰çš„æ•°æ®ã€‚" +msgstr "当您在已ç»è¢«ç­›é€‰è¿‡çš„区域的其它列中å†æ¬¡æ·»åŠ ç­›é€‰æ—¶ï¼Œåˆ™å…¶å®ƒçš„下拉框中仅显示被筛选过的数æ®ã€‚" #: autofilter.xhp msgctxt "" @@ -339,7 +339,7 @@ "12\n" "help.text" msgid "To display all records again, select the \"all<emph>\"</emph> entry in the AutoFilter combo box. If you choose \"Standard<emph>\"</emph>, the <item type=\"menuitem\">Standard Filter</item> dialog appears, allowing you to set up a standard filter. Choose \"Top 10\" to display the highest 10 values only." -msgstr "è¦å†æ¬¡æ˜¾ç¤ºæ‰€æœ‰çš„记录,请在自动筛选å¤é€‰æ¡†ä¸­é€‰æ‹©<emph>-全部-</emph>æ¡ç›®ã€‚如果选择<emph>-标准-</emph>,将显示<emph>标准筛选</emph>对è¯æ¡†ï¼Œä»¥ä¾¿è®¾å®šæ ‡å‡†ç­›é€‰ã€‚如果选择<emph>-å‰ 10 个-</emph>,则仅显示最å‰é¢çš„ 10 个值。" +msgstr "è¦è¿˜åŽŸæ˜¾ç¤ºæ‰€æœ‰çš„æ•°æ®ï¼Œè¯·åœ¨ä¸‹æ‹‰æ¡†ä¸­é€‰æ‹©<emph>全部</emph>。若您在下拉框中选择了<emph>标准筛选</emph>,则会弹出<item type=\"menuitem\">标准筛选</item>对è¯æ¡†ï¼Œæ‚¨å¯åœ¨è¯¥å¯¹è¯æ¡†ä¸­è®¾ç½®æ ‡å‡†ç­›é€‰æ¡ä»¶ã€‚在下拉框中选择“å‰10个â€å¯ç­›é€‰å‡ºå‰10个最大的值。" #: autofilter.xhp msgctxt "" @@ -348,7 +348,7 @@ "19\n" "help.text" msgid "To stop using AutoFilter, reselect all cells selected in step 1 and once again choose <emph>Data - Filter - AutoFilter</emph>." -msgstr "è¦åœæ­¢ä½¿ç”¨è‡ªåŠ¨ç­›é€‰åŠŸèƒ½ï¼Œè¯·é‡æ–°é€‰æ‹©åœ¨æ­¥éª¤ 1 中选择的所有å•å…ƒæ ¼ï¼Œç„¶åŽå†é€‰æ‹©<emph>æ•°æ® - 筛选器 - 自动筛选</emph>。" +msgstr "è¦å–消自动筛选,请å†æ¬¡é€‰æ‹©ç¬¬ä¸€æ­¥é€‰å–çš„å•å…ƒæ ¼ï¼Œç„¶åŽå†é€‰æ‹©<emph>æ•°æ® - 筛选 - 自动筛选</emph>。" #: autofilter.xhp msgctxt "" @@ -356,7 +356,7 @@ "par_id4303415\n" "help.text" msgid "To assign different AutoFilters to different sheets, you must first define a database range on each sheet." -msgstr "对ä¸åŒçš„工作表指定ä¸åŒçš„“自动筛选â€ï¼Œæ‚¨å¿…须首先定义æ¯ä¸ªå·¥ä½œè¡¨çš„æ•°æ®åº“区域。" +msgstr "è¦ç»™ä¸åŒçš„工作表应用ä¸åŒçš„自动筛选,您必须首先给你æ¯ä¸ªå·¥ä½œè¡¨å®šä¹‰ä¸€ä¸ªæ•°æ®åº“区域。" #: autofilter.xhp msgctxt "" @@ -365,7 +365,7 @@ "14\n" "help.text" msgid "The arithmetic functions also take account of the cells that are not visible due to an applied filter. For example, a sum of an entire column will also total the values in the filtered cells. Apply the <link href=\"text/scalc/01/04060106.xhp\" name=\"SUBTOTAL\">SUBTOTAL</link> function if only the cells visible after the application of a filter are to be taken into account." -msgstr "算术函数还会计算因应用了筛选器而ä¸å¯è§çš„å•å…ƒæ ¼ã€‚例如,计算æŸä¸€åˆ—的总和时,筛选掉的å•å…ƒæ ¼ä¸­çš„值也被计算在内。如果åªè®¡ç®—筛选åŽå¯è§çš„å•å…ƒæ ¼ï¼Œè¯·ä½¿ç”¨<link href=\"text/scalc/01/04060106.xhp\" name=\"SUBTOTAL\">SUBTOTAL</link> 函数。" +msgstr "请注æ„,算数è¿ç®—函数(公å¼ï¼‰åœ¨è®¡ç®—时也会把已ç»ç­›é™¤æŽ‰çš„行考虑在内。例如,若对æŸä¸€æ•´åˆ—应用sum函数,则函数的计算结果中既包å«ç¬¦åˆç­›é€‰æ¡ä»¶çš„行,也包å«å› ä¸ºä¸ç¬¦åˆç­›é€‰æ¡ä»¶è€Œè¢«ç­›é™¤çš„行。è¦æƒ³åœ¨è®¡ç®—结果中åªè€ƒè™‘符åˆç­›é€‰æ¡ä»¶çš„æ•°æ®ï¼Œè¯·ä½¿ç”¨<link href=\"text/scalc/01/04060106.xhp\" name=\"SUBTOTAL\">SUBTOTAL</link>函数。" #: autofilter.xhp msgctxt "" @@ -374,7 +374,7 @@ "16\n" "help.text" msgid "<link href=\"text/scalc/01/12040100.xhp\" name=\"Data - Filter - AutoFilter\">Data - Filter - AutoFilter</link>" -msgstr "<link href=\"text/scalc/01/12040100.xhp\" name=\"æ•°æ® - 筛选 - 自动筛选\">æ•°æ® - 筛选 - 自动筛选</link>" +msgstr "<link href=\"text/scalc/01/12040100.xhp\" name=\"Data - Filter - AutoFilter\">æ•°æ® - 筛选 - 自动筛选</link>" #: autofilter.xhp msgctxt "" @@ -391,7 +391,7 @@ "tit\n" "help.text" msgid "Using AutoFormat for Tables" -msgstr "对表格使用自动套用格å¼" +msgstr "表格的自动格å¼" #: autoformat.xhp msgctxt "" @@ -433,7 +433,7 @@ "par_idN106CE\n" "help.text" msgid "Select the cells, including the column and row headers, that you want to format." -msgstr "选择è¦æ ¼å¼åŒ–çš„å•å…ƒæ ¼ï¼ŒåŒ…括列和行标题。" +msgstr "选择è¦æ ¼å¼åŒ–çš„å•å…ƒæ ¼ï¼ŒåŒ…括表头行和表头列对应的å•å…ƒæ ¼ã€‚" #: autoformat.xhp msgctxt "" @@ -5357,22 +5357,20 @@ msgstr "在<emph>查找内容</emph>文本框中输入è¦æŸ¥æ‰¾çš„文本。" #: finding.xhp -#, fuzzy msgctxt "" "finding.xhp\n" "par_id9121982\n" "help.text" msgid "Either click <emph>Find Next</emph> or <emph>Find All</emph>." -msgstr "å•å‡»<emph>查找</emph>或<emph>查找全部</emph>。" +msgstr "å•å‡»<emph>查找下一个</emph>或<emph>查找全部</emph>。" #: finding.xhp -#, fuzzy msgctxt "" "finding.xhp\n" "par_id3808404\n" "help.text" msgid "When you click <emph>Find Next</emph>, Calc will select the next cell that contains your text. You can watch and edit the text, then click <emph>Find Next</emph> again to advance to the next found cell." -msgstr "å•å‡»<emph>查找</emph>时,Calc 将选择下一个包å«æ–‡æœ¬çš„å•å…ƒæ ¼ã€‚您å¯ä»¥æŸ¥çœ‹å’Œç¼–辑文本,然åŽå†æ¬¡å•å‡»<emph>查找</emph>以å‰è¿›åˆ°ä¸‹ä¸€ä¸ªæ‰¾åˆ°çš„å•å…ƒæ ¼ã€‚" +msgstr "å•å‡»<emph>查找下一个</emph>时,Calc 将选择下一个包å«æ‚¨è¦æŸ¥æ‰¾çš„文本的å•å…ƒæ ¼ã€‚您å¯ä»¥æŸ¥çœ‹å’Œç¼–辑文本,然åŽå†æ¬¡å•å‡»<emph>查找下一个</emph>转到下一个找到的å•å…ƒæ ¼ã€‚" #: finding.xhp msgctxt "" @@ -5537,14 +5535,13 @@ msgstr "è¦åœ¨æ•´ä¸ªå·¥ä½œè¡¨ä¸­åº”用格å¼å±žæ€§ï¼Œé€‰æ‹©<emph>æ ¼å¼ - 页</emph>。您å¯ä»¥å®šä¹‰é¡µçœ‰å’Œé¡µè„šï¼Œä¾‹å¦‚,显示在æ¯ä¸ªè¢«æ‰“å°çš„页é¢ä¸Šã€‚" #: 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\">æ ¼å¼ - é¡µé¢ - 背景</item>加载的图åƒåªåœ¨æ‰“å°æˆ–页é¢é¢„览中å¯è§ã€‚è¦æƒ³åœ¨å±å¹•ä¸Šä¹Ÿæ˜¾ç¤ºèƒŒæ™¯å›¾åƒï¼Œè¯·é€‰æ‹© <item type=\"menuitem\">æ’å…¥ - 图片 - æ¥è‡ªæ–‡ä»¶</item>æ’入图åƒï¼Œå¹¶é€‰æ‹©<item type=\"menuitem\">æ ¼å¼ - 排列 - 置于背景</item>将该图åƒä½œä¸ºå•å…ƒæ ¼çš„背景。使用<link href=\"text/scalc/01/02110000.xhp\" name=\"导航\">导航</link>选择背景图åƒã€‚" +msgstr "通过<item type=\"menuitem\">æ ¼å¼ - é¡µé¢ - 背景</item>加载的图åƒåªåœ¨æ‰“å°æˆ–打å°é¢„览中å¯è§ã€‚è¦æƒ³åœ¨å±å¹•ä¸Šä¹Ÿæ˜¾ç¤ºèƒŒæ™¯å›¾åƒï¼Œè¯·é€šè¿‡<item type=\"menuitem\">æ’å…¥ - 图片 - æ¥è‡ªæ–‡ä»¶</item>æ¥æ’入图åƒï¼Œå¹¶é€‰æ‹©<item type=\"menuitem\">æ ¼å¼ - 排列 - 作为背景</item>将该图åƒä½œä¸ºå•å…ƒæ ¼çš„背景显示。è¦é€‰æ‹©å·²ç»è¢«è®¾ç½®ä¸ºäº†èƒŒæ™¯çš„图象,请在<link href=\"text/scalc/01/02110000.xhp\" name=\"Navigator\">导航</link>窗å£ä¸­é€‰æ‹©è¯¥èƒŒæ™¯å›¾åƒã€‚" #: format_table.xhp msgctxt "" @@ -7099,49 +7096,44 @@ msgstr "行或列作为标题固定" #: line_fix.xhp -#, fuzzy msgctxt "" "line_fix.xhp\n" "bm_id3154684\n" "help.text" msgid "<bookmark_value>tables; freezing</bookmark_value> <bookmark_value>title rows; freezing during table split</bookmark_value> <bookmark_value>rows; freezing</bookmark_value> <bookmark_value>columns; freezing</bookmark_value> <bookmark_value>freezing rows or columns</bookmark_value> <bookmark_value>headers; freezing during table split</bookmark_value> <bookmark_value>scrolling prevention in tables</bookmark_value> <bookmark_value>windows; splitting</bookmark_value> <bookmark_value>tables; splitting windows</bookmark_value>" -msgstr "<bookmark_value>表格;固定</bookmark_value><bookmark_value>标题行;拆分表格时固定</bookmark_value><bookmark_value>è¡Œ;固定</bookmark_value><bookmark_value>列;固定</bookmark_value><bookmark_value>固定行或列</bookmark_value><bookmark_value>标题;拆分表格时固定</bookmark_value><bookmark_value>ç¦æ­¢åœ¨è¡¨æ ¼ä¸­æ»šåŠ¨</bookmark_value><bookmark_value>窗å£;拆分</bookmark_value><bookmark_value>表格;拆分窗å£</bookmark_value>" +msgstr "<bookmark_value>表格; 冻结</bookmark_value> <bookmark_value>标题行; 拆分表格时固定</bookmark_value> <bookmark_value>è¡Œ; 冻结</bookmark_value> <bookmark_value>列; 冻结</bookmark_value> <bookmark_value>冻结行或列</bookmark_value> <bookmark_value>表头; 拆分表格时固定</bookmark_value> <bookmark_value>ç¦æ­¢è¡¨æ ¼æ»šåŠ¨</bookmark_value> <bookmark_value>窗å£; 拆分</bookmark_value> <bookmark_value>表格; 拆分窗å£</bookmark_value>" #: line_fix.xhp -#, fuzzy msgctxt "" "line_fix.xhp\n" "hd_id3154684\n" "help.text" msgid "<variable id=\"line_fix\"><link href=\"text/scalc/guide/line_fix.xhp\" name=\"Freezing Rows or Columns as Headers\">Freezing Rows or Columns as Headers</link> </variable>" -msgstr "<variable id=\"line_fix\"><link href=\"text/scalc/guide/line_fix.xhp\" name=\"行或列作为标题固定\">行或列作为标题固定</link></variable>" +msgstr "<variable id=\"line_fix\"><link href=\"text/scalc/guide/line_fix.xhp\" name=\"Freezing Rows or Columns as Headers\">冻结行或列,作为表头</link> </variable>" #: line_fix.xhp -#, fuzzy msgctxt "" "line_fix.xhp\n" "par_id3148576\n" "help.text" msgid "If you have long rows or columns of data that extend beyond the viewable area of the sheet, you can freeze some rows or columns, which allows you to see the frozen columns or rows as you scroll through the rest of the data." -msgstr "如果工作表中包å«æ•°æ®çš„行或列的长度超出了å¯è§åŒºåŸŸï¼Œå¯ä»¥å°†è¿™äº›è¡Œæˆ–列固定。这样,在滚动工作表时,就å¯ä»¥å§‹ç»ˆçœ‹åˆ°å›ºå®šçš„区域。" +msgstr "如果工作表行或列中的数æ®å¾ˆé•¿ï¼Œè¶…出了å¯è§èŒƒå›´ï¼Œé‚£ä¹ˆæ‚¨å¯ä»¥å°†ä¸€äº›è¡Œæˆ–列冻结,这样您在滚动工作表时就始终能看到被冻结的行或列。" #: line_fix.xhp -#, fuzzy msgctxt "" "line_fix.xhp\n" "par_id3156441\n" "help.text" msgid "Select the row below, or the column to the right of the row or column that you want to be in the frozen region. All rows above, or all columns to the left of the selection are frozen." -msgstr "选择一行或一列,以将该行上方的区域或该列左边的区域固定。选定行上方的所有行或选定列左边的所有列都将被固定。" +msgstr "选择您è¦å†»ç»“的行的下é¢ä¸€è¡Œï¼Œæˆ–者您è¦å†»ç»“的列的å³ä¾§ä¸€åˆ—。这ç§æƒ…况下,上é¢çš„行或者左侧的列将会被冻结。" #: line_fix.xhp -#, fuzzy msgctxt "" "line_fix.xhp\n" "par_id3153158\n" "help.text" msgid "To freeze both horizontally and vertically, select the <emph>cell</emph> that is below the row and to the right of the column that you want to freeze." -msgstr "è¦åŒæ—¶æ°´å¹³å’Œåž‚直固定区域,请选择一个<emph>å•å…ƒæ ¼</emph>,该å•å…ƒæ ¼å·¦ä¸Šæ–¹çš„区域将被固定。" +msgstr "è¦åŒæ—¶å†»ç»“行和列,请选择您è¦å†»ç»“的行的下部与列的å³ä¾§äº¤å‰å¤„çš„<emph>å•å…ƒæ ¼</emph>。" #: line_fix.xhp msgctxt "" @@ -7149,7 +7141,7 @@ "par_id3156286\n" "help.text" msgid "Choose <item type=\"menuitem\">View - Freeze Rows and Columns</item>." -msgstr "" +msgstr "选择<item type=\"menuitem\">视图 - 冻结行列</item>。" #: line_fix.xhp msgctxt "" @@ -7157,7 +7149,7 @@ "par_id3151073\n" "help.text" msgid "To deactivate, choose <item type=\"menuitem\">View - Freeze Rows and Columns</item> again." -msgstr "" +msgstr "è¦ç§»é™¤å†»ç»“状æ€ï¼Œè¯·å†é€‰æ‹©ä¸€æ¬¡<item type=\"menuitem\">视图 - 冻结行列</item>。" #: line_fix.xhp msgctxt "" @@ -7165,16 +7157,15 @@ "par_id3155335\n" "help.text" msgid "If the area defined is to be scrollable, apply the <item type=\"menuitem\">View - Split Window</item> command." -msgstr "" +msgstr "如果想让已冻结的区域å¯æ»šåŠ¨ï¼Œè¯·ä½¿ç”¨<item type=\"menuitem\">视图 - 拆分窗å£</item>。" #: line_fix.xhp -#, fuzzy msgctxt "" "line_fix.xhp\n" "par_id3147345\n" "help.text" msgid "If you want to print a certain row on all pages of a document, choose <item type=\"menuitem\">Format - Print ranges - Edit</item>." -msgstr "如果您希望æŸä¸€è¡Œèƒ½å¤Ÿå‡ºçŽ°åœ¨æ–‡æ¡£çš„所有打å°é¡µé¢ä¸Šï¼Œè¯·é€‰æ‹©<emph>æ ¼å¼ - 打å°åŒºåŸŸ - 编辑。</emph>" +msgstr "如果您想让æŸäº›è¡Œæˆ–列在打å°æ—¶å‡ºçŽ°åœ¨æ‰€æœ‰çš„页é¢ä¸Šï¼Œè¯·é€‰æ‹©<item type=\"menuitem\">æ ¼å¼ - 打å°åŒºåŸŸ - 编辑。</item>" #: line_fix.xhp msgctxt "" @@ -7182,25 +7173,23 @@ "par_id3147004\n" "help.text" msgid "<link href=\"text/scalc/01/07090000.xhp\" name=\"View - Freeze Rows and Columns\">View - Freeze Rows and Columns</link>" -msgstr "" +msgstr "<link href=\"text/scalc/01/07090000.xhp\" name=\"View - Freeze Rows and Columns\">视图 - 冻结行列</link>" #: line_fix.xhp -#, fuzzy msgctxt "" "line_fix.xhp\n" "par_id3150088\n" "help.text" msgid "<link href=\"text/scalc/01/07080000.xhp\" name=\"View - Split\">View - Split Window</link>" -msgstr "<link href=\"text/scalc/01/07080000.xhp\" name=\"çª—å£ - 拆分\">çª—å£ - 拆分</link>" +msgstr "<link href=\"text/scalc/01/07080000.xhp\" name=\"View - Split\">视图 - 拆分窗å£</link>" #: line_fix.xhp -#, fuzzy msgctxt "" "line_fix.xhp\n" "par_id3150304\n" "help.text" msgid "<link href=\"text/scalc/01/05080300.xhp\" name=\"Format - Print ranges - Edit\">Format - Print ranges - Edit</link>" -msgstr "<link href=\"text/scalc/01/05080300.xhp\" name=\"æ ¼å¼ - 打å°åŒºåŸŸ - 编辑\">æ ¼å¼ - 打å°åŒºåŸŸ - 编辑</link>" +msgstr "<link href=\"text/scalc/01/05080300.xhp\" name=\"Format - Print ranges - Edit\">æ ¼å¼ - 打å°åŒºåŸŸ - 编辑</link>" #: main.xhp msgctxt "" @@ -7273,7 +7262,6 @@ msgstr "高级计算" #: main.xhp -#, fuzzy msgctxt "" "main.xhp\n" "hd_id3153070\n" @@ -9263,13 +9251,12 @@ msgstr "<bookmark_value>导出; å•å…ƒæ ¼</bookmark_value><bookmark_value>打å°; å•å…ƒæ ¼</bookmark_value><bookmark_value>区域; 打å°åŒºåŸŸ</bookmark_value><bookmark_value>打å°åŒºåŸŸçš„ PDF 导出</bookmark_value><bookmark_value>å•å…ƒæ ¼åŒºåŸŸ; 打å°</bookmark_value><bookmark_value>å•å…ƒæ ¼; 打å°åŒºåŸŸ</bookmark_value><bookmark_value>打å°åŒºåŸŸ</bookmark_value><bookmark_value>清除,å¦è¯·å‚è§åˆ é™¤/删除</bookmark_value><bookmark_value>定义; 打å°åŒºåŸŸ</bookmark_value><bookmark_value>扩展打å°åŒºåŸŸ</bookmark_value><bookmark_value>删除; 打å°åŒºåŸŸ</bookmark_value>" #: printranges.xhp -#, fuzzy msgctxt "" "printranges.xhp\n" "par_idN108D7\n" "help.text" msgid "<variable id=\"printranges\"><link href=\"text/scalc/guide/printranges.xhp\">Defining Print Ranges on a Sheet</link></variable>" -msgstr "<variable id=\"printranges\"><link href=\"text/scalc/guide/printranges.xhp\">在工作表中定义“打å°åŒºåŸŸâ€</link></variable>" +msgstr "<variable id=\"printranges\"><link href=\"text/scalc/guide/printranges.xhp\">定义工作表中的打å°åŒºåŸŸ</link></variable>" #: printranges.xhp msgctxt "" @@ -9352,13 +9339,12 @@ msgstr "清除打å°èŒƒå›´" #: printranges.xhp -#, fuzzy msgctxt "" "printranges.xhp\n" "par_idN10929\n" "help.text" msgid "Choose <emph>Format - Print Ranges - Clear</emph>." -msgstr "选择<emph>æ ¼å¼ - 打å°èŒƒå›´ - 添加</emph>。" +msgstr "选择<emph>æ ¼å¼ - 打å°åŒºåŸŸ - 清除</emph>。" #: printranges.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/zh-CN/helpcontent2/source/text/scalc.po libreoffice-5.1.2~rc2/translations/source/zh-CN/helpcontent2/source/text/scalc.po --- libreoffice-5.1.1~rc2/translations/source/zh-CN/helpcontent2/source/text/scalc.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/zh-CN/helpcontent2/source/text/scalc.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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-05 08:16+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2016-02-29 09:56+0000\n" +"Last-Translator: ç¨ç‘ é” <suokunlong@126.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: zh_CN\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1454660199.000000\n" +"X-POOTLE-MTIME: 1456739808.000000\n" #: main0000.xhp msgctxt "" @@ -184,13 +184,12 @@ msgstr "<link href=\"text/scalc/main0103.xhp\" name=\"View\">视图</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=\".\">该èœå•åŒ…å«ç”¨äºŽæŽ§åˆ¶æ–‡æ¡£åœ¨å±å¹•ä¸Šçš„显示方å¼çš„命令。</ahelp>" +msgstr "<ahelp hid=\".\">该èœå•åŒ…å«äº†ç”¨äºŽæŽ§åˆ¶æ–‡æ¡£åœ¨å±å¹•ä¸Šçš„显示的命令。</ahelp>" #: main0103.xhp msgctxt "" @@ -201,13 +200,12 @@ msgstr "普通" #: 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=\".\">显示工作表的普通视图。</ahelp>" +msgstr "<ahelp hid=\".\">以普通视图模å¼æ˜¾ç¤ºå·¥ä½œè¡¨ã€‚</ahelp>" #: main0103.xhp msgctxt "" @@ -242,13 +240,12 @@ msgstr "<link href=\"text/shared/01/gallery.xhp\">剪贴画库</link>" #: main0103.xhp -#, fuzzy msgctxt "" "main0103.xhp\n" "hd_id3125863\n" "help.text" msgid "<link href=\"text/shared/01/03010000.xhp\" name=\"Zoom\">Zoom</link>" -msgstr "<link href=\"text/shared/01/03010000.xhp\" name=\"显示比例\">显示比例</link>" +msgstr "<link href=\"text/shared/01/03010000.xhp\" name=\"Zoom\">缩放</link>" #: main0104.xhp msgctxt "" @@ -259,79 +256,70 @@ msgstr "æ’å…¥" #: main0104.xhp -#, fuzzy msgctxt "" "main0104.xhp\n" "hd_id3157909\n" "help.text" msgid "<link href=\"text/scalc/main0104.xhp\" name=\"Insert\">Insert</link>" -msgstr "<link href=\"text/scalc/main0104.xhp\" name=\"æ’å…¥\">æ’å…¥</link>" +msgstr "<link href=\"text/scalc/main0104.xhp\" name=\"Insert\">æ’å…¥</link>" #: main0104.xhp -#, fuzzy msgctxt "" "main0104.xhp\n" "par_id3153896\n" "help.text" msgid "<ahelp hid=\".\">The Insert menu contains commands for inserting new elements, such as cells, rows, sheets and cell names into the current sheet.</ahelp>" -msgstr "<ahelp hid=\".\">该“æ’å…¥â€èœå•åŒ…å«ç”¨äºŽæ’入新元素的命令,例如在当å‰å·¥ä½œè¡¨ä¸­æ’å…¥å•å…ƒæ ¼ã€è¡Œã€å·¥ä½œè¡¨å’Œå•å…ƒæ ¼å称。</ahelp>" +msgstr "<ahelp hid=\".\">“æ’å…¥â€èœå•åŒ…å«äº†ç”¨äºŽæ’入新元素的命令,例如:æ’å…¥å•å…ƒæ ¼ï¼Œè¡Œï¼Œå·¥ä½œè¡¨ï¼Œä»¥åŠåœ¨å½“å‰å·¥ä½œè¡¨ä¸­æ’入命å区域。</ahelp>" #: main0104.xhp -#, fuzzy msgctxt "" "main0104.xhp\n" "hd_id3150769\n" "help.text" msgid "<link href=\"text/scalc/01/04020000.xhp\" name=\"Cells\">Cells</link>" -msgstr "<link href=\"text/scalc/01/04020000.xhp\" name=\"å•å…ƒæ ¼\">å•å…ƒæ ¼</link>" +msgstr "<link href=\"text/scalc/01/04020000.xhp\" name=\"Cells\">å•å…ƒæ ¼</link>" #: main0104.xhp -#, fuzzy msgctxt "" "main0104.xhp\n" "hd_id3149260\n" "help.text" msgid "<link href=\"text/scalc/01/04050000.xhp\" name=\"Sheet\">Sheet</link>" -msgstr "<link href=\"text/scalc/01/04050000.xhp\" name=\"工作表\">工作表</link>" +msgstr "<link href=\"text/scalc/01/04050000.xhp\" name=\"Sheet\">工作表</link>" #: main0104.xhp -#, fuzzy msgctxt "" "main0104.xhp\n" "hd_id3153726\n" "help.text" msgid "<link href=\"text/shared/01/04100000.xhp\" name=\"Special Character\">Special Character</link>" -msgstr "<link href=\"text/shared/01/04100000.xhp\" name=\"特殊字符\">特殊字符</link>" +msgstr "<link href=\"text/shared/01/04100000.xhp\" name=\"Special Character\">特殊字符</link>" #: main0104.xhp -#, fuzzy msgctxt "" "main0104.xhp\n" "hd_id3156285\n" "help.text" msgid "<link href=\"text/shared/02/09070000.xhp\" name=\"Hyperlink\">Hyperlink</link>" -msgstr "<link href=\"text/shared/02/09070000.xhp\" name=\"超链接\">超链接</link>" +msgstr "<link href=\"text/shared/02/09070000.xhp\" name=\"Hyperlink\">超链接</link>" #: main0104.xhp -#, fuzzy msgctxt "" "main0104.xhp\n" "hd_id3154492\n" "help.text" msgid "<link href=\"text/scalc/01/04060000.xhp\" name=\"Function\">Function</link>" -msgstr "<link href=\"text/scalc/01/04060000.xhp\" name=\"函数\">函数</link>" +msgstr "<link href=\"text/scalc/01/04060000.xhp\" name=\"Function\">函数</link>" #: main0104.xhp -#, fuzzy msgctxt "" "main0104.xhp\n" "hd_id3145640\n" "help.text" msgid "<link href=\"text/shared/01/04050000.xhp\" name=\"Comment\">Comment</link>" -msgstr "<link href=\"text/shared/01/04050000.xhp\" name=\"注释\">注释</link>" +msgstr "<link href=\"text/shared/01/04050000.xhp\" name=\"Comment\">批注</link>" #: main0104.xhp -#, fuzzy msgctxt "" "main0104.xhp\n" "hd_id3146918\n" @@ -348,13 +336,12 @@ msgstr "æ’入图表。" #: main0104.xhp -#, fuzzy msgctxt "" "main0104.xhp\n" "hd_id3147003\n" "help.text" msgid "<link href=\"text/shared/01/04160500.xhp\" name=\"Floating Frame\">Floating Frame</link>" -msgstr "<link href=\"text/shared/01/04160500.xhp\" name=\"浮动框\">浮动框</link>" +msgstr "<link href=\"text/shared/01/04160500.xhp\" name=\"Floating Frame\">浮动框架</link>" #: main0105.xhp msgctxt "" @@ -365,94 +352,84 @@ msgstr "æ ¼å¼" #: main0105.xhp -#, fuzzy msgctxt "" "main0105.xhp\n" "hd_id3149669\n" "help.text" msgid "<link href=\"text/scalc/main0105.xhp\" name=\"Format\">Format</link>" -msgstr "<link href=\"text/scalc/main0105.xhp\" name=\"æ ¼å¼\">æ ¼å¼</link>" +msgstr "<link href=\"text/scalc/main0105.xhp\" name=\"Format\">æ ¼å¼</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>æ ¼å¼</emph>èœå•åŒ…å«ç”¨äºŽæ ¼å¼åŒ–文档中选定å•å…ƒæ ¼ã€<link href=\"text/shared/00/00000005.xhp#objekt\" name=\"对象\">对象</link>å’Œå•å…ƒæ ¼å†…容的命令。</ahelp>" +msgstr "<ahelp hid=\".\"><emph>æ ¼å¼</emph>èœå•æœ‰å„ç§æ ¼å¼åŒ–命令,用于格å¼åŒ–文档中已选定的å•å…ƒæ ¼ã€<link href=\"text/shared/00/00000005.xhp#objekt\" name=\"objects\">对象</link>å’Œå•å…ƒæ ¼å†…容。</ahelp>" #: main0105.xhp -#, fuzzy msgctxt "" "main0105.xhp\n" "hd_id3154732\n" "help.text" msgid "<link href=\"text/scalc/01/05020000.xhp\" name=\"Cells\">Cells</link>" -msgstr "<link href=\"text/scalc/01/05020000.xhp\" name=\"å•å…ƒæ ¼\">å•å…ƒæ ¼</link>" +msgstr "<link href=\"text/scalc/01/05020000.xhp\" name=\"Cells\">å•å…ƒæ ¼</link>" #: main0105.xhp -#, fuzzy msgctxt "" "main0105.xhp\n" "hd_id3155087\n" "help.text" msgid "<link href=\"text/scalc/01/05070000.xhp\" name=\"Page\">Page</link>" -msgstr "<link href=\"text/scalc/01/05070000.xhp\" name=\"页é¢\">页é¢</link>" +msgstr "<link href=\"text/scalc/01/05070000.xhp\" name=\"Page\">页é¢</link>" #: main0105.xhp -#, fuzzy msgctxt "" "main0105.xhp\n" "hd_id3145748\n" "help.text" msgid "<link href=\"text/shared/01/05020000.xhp\" name=\"Character\">Character</link>" -msgstr "<link href=\"text/shared/01/05020000.xhp\" name=\"字符\">字符</link>" +msgstr "<link href=\"text/shared/01/05020000.xhp\" name=\"Character\">字符</link>" #: main0105.xhp -#, fuzzy msgctxt "" "main0105.xhp\n" "hd_id3154485\n" "help.text" msgid "<link href=\"text/shared/01/05030000.xhp\" name=\"Paragraph\">Paragraph</link>" -msgstr "<link href=\"text/shared/01/05030000.xhp\" name=\"段è½\">段è½</link>" +msgstr "<link href=\"text/shared/01/05030000.xhp\" name=\"Paragraph\">段è½</link>" #: main0105.xhp -#, fuzzy msgctxt "" "main0105.xhp\n" "hd_id3157980\n" "help.text" msgid "<link href=\"text/scalc/01/05110000.xhp\" name=\"AutoFormat\">AutoFormat</link>" -msgstr "<link href=\"text/scalc/01/05110000.xhp\" name=\"自动格å¼\">自动格å¼</link>" +msgstr "<link href=\"text/scalc/01/05110000.xhp\" name=\"AutoFormat\">自动格å¼</link>" #: main0105.xhp -#, fuzzy msgctxt "" "main0105.xhp\n" "hd_id3159206\n" "help.text" msgid "<link href=\"text/scalc/01/05120000.xhp\" name=\"Conditional Formatting\">Conditional Formatting</link>" -msgstr "<link href=\"text/scalc/01/05120000.xhp\" name=\"有æ¡ä»¶çš„æ ¼å¼\">有æ¡ä»¶çš„æ ¼å¼</link>" +msgstr "<link href=\"text/scalc/01/05120000.xhp\" name=\"Conditional Formatting\">æ¡ä»¶æ ¼å¼</link>" #: main0105.xhp -#, fuzzy msgctxt "" "main0105.xhp\n" "hd_id3154703\n" "help.text" msgid "<link href=\"text/shared/02/01170100.xhp\" name=\"Control\">Control</link>" -msgstr "<link href=\"text/shared/02/01170100.xhp\" name=\"控件\">控件</link>" +msgstr "<link href=\"text/shared/02/01170100.xhp\" name=\"Control\">控件</link>" #: main0105.xhp -#, fuzzy msgctxt "" "main0105.xhp\n" "hd_id3147005\n" "help.text" msgid "<link href=\"text/shared/02/01170200.xhp\" name=\"Form\">Form</link>" -msgstr "<link href=\"text/shared/02/01170200.xhp\" name=\"表å•\">表å•</link>" +msgstr "<link href=\"text/shared/02/01170200.xhp\" name=\"Form\">表å•</link>" #: main0106.xhp msgctxt "" @@ -534,22 +511,20 @@ msgstr "窗å£" #: main0107.xhp -#, fuzzy msgctxt "" "main0107.xhp\n" "hd_id3154758\n" "help.text" msgid "<link href=\"text/scalc/main0107.xhp\" name=\"Window\">Window</link>" -msgstr "<link href=\"text/scalc/main0107.xhp\" name=\"窗å£\">窗å£</link>" +msgstr "<link href=\"text/scalc/main0107.xhp\" name=\"Window\">窗å£</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\">包å«ç”¨äºŽæ“作和显示文档窗å£çš„命令。</ahelp>" +msgstr "<ahelp hid=\".\">有用于æ“控和显示文档窗å£çš„命令。</ahelp>" #: main0112.xhp msgctxt "" @@ -666,13 +641,12 @@ 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\">开始</link>" +msgstr "<link href=\"text/scalc/main0116.xhp\">工作表</link>" #: main0116.xhp msgctxt "" @@ -691,31 +665,28 @@ msgstr "<link href=\"text/scalc/01/02180000.xhp\" name=\"Move/Copy\">移动/å¤åˆ¶å·¥ä½œè¡¨</link>" #: 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=\"工作表\">工作表</link>" +msgstr "<link href=\"text/scalc/01/02210000.xhp\" name=\"Select\">显示工作表</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=\"删除å•å…ƒæ ¼\">删除å•å…ƒæ ¼</link>" +msgstr "<link href=\"text/scalc/01/02170000.xhp\" name=\"Delete\">删除工作表</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=\"å¦å­˜ä¸º\">å¦å­˜ä¸º</link>" +msgstr "<link href=\"text/shared/01/06140500.xhp\" name=\"Events\">工作表事件</link>" #: main0200.xhp msgctxt "" @@ -1234,33 +1205,30 @@ msgstr "请å‚è§<link href=\"text/shared/guide/digital_signatures.xhp\">æ•°å­—ç­¾å</link>。" #: main0210.xhp -#, fuzzy msgctxt "" "main0210.xhp\n" "tit\n" "help.text" msgid "Print Preview Bar" -msgstr "“页é¢é¢„览â€å·¥å…·æ " +msgstr "“打å°é¢„览â€å·¥å…·æ " #: 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\">“页é¢é¢„览â€å·¥å…·æ </link>" +msgstr "<link href=\"text/scalc/main0210.xhp\" name=\"Print Preview Bar\">“打å°é¢„览â€å·¥å…·æ </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>文件 - 页é¢é¢„览</emph>时,将会显示<emph>页é¢é¢„览</emph>工具æ ã€‚</ahelp>" +msgstr "<ahelp hid=\"HID_SC_WIN_PREVIEW\">当您点击<emph>文件 - æ‰“å° - 打å°é¢„览</emph>èœå•åŽï¼Œ<emph>打å°é¢„览</emph> 工具æ </ahelp>将会显示。" #: main0210.xhp msgctxt "" @@ -1332,13 +1300,12 @@ msgstr "关闭预览" #: 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 "è¦é€€å‡ºé¡µé¢é¢„览,请点击“<emph>关闭预览</emph>â€æŒ‰é’®ã€‚" +msgstr "è¦é€€å‡ºæ‰“å°é¢„览,请点击<emph>关闭预览</emph>按钮。" #: main0214.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/zh-CN/helpcontent2/source/text/schart/00.po libreoffice-5.1.2~rc2/translations/source/zh-CN/helpcontent2/source/text/schart/00.po --- libreoffice-5.1.1~rc2/translations/source/zh-CN/helpcontent2/source/text/schart/00.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/zh-CN/helpcontent2/source/text/schart/00.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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-07-06 08:10+0000\n" -"Last-Translator: ç¨ç‘ é” <suokunlong@126.com>\n" +"PO-Revision-Date: 2016-03-04 08:20+0000\n" +"Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: zh_CN\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1404634207.000000\n" +"X-POOTLE-MTIME: 1457079640.000000\n" #: 00000004.xhp msgctxt "" @@ -155,7 +155,7 @@ "19\n" "help.text" msgid "Horizontal Grids" -msgstr "" +msgstr "水平网格" #: 00000004.xhp msgctxt "" @@ -172,7 +172,7 @@ "20\n" "help.text" msgid "Vertical Grids" -msgstr "" +msgstr "垂直网格" #: 00000004.xhp msgctxt "" @@ -490,7 +490,7 @@ "50\n" "help.text" msgid "Horizontal Grids" -msgstr "" +msgstr "水平网格" #: 00000004.xhp msgctxt "" @@ -524,7 +524,7 @@ "52\n" "help.text" msgid "Vertical Grids" -msgstr "" +msgstr "垂直网格" #: 00000004.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/zh-CN/helpcontent2/source/text/schart/01.po libreoffice-5.1.2~rc2/translations/source/zh-CN/helpcontent2/source/text/schart/01.po --- libreoffice-5.1.1~rc2/translations/source/zh-CN/helpcontent2/source/text/schart/01.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/zh-CN/helpcontent2/source/text/schart/01.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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-10-18 14:22+0000\n" -"Last-Translator: ç¨ç‘ é” <suokunlong@126.com>\n" +"PO-Revision-Date: 2016-03-04 08:28+0000\n" +"Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: zh_CN\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1413642135.000000\n" +"X-POOTLE-MTIME: 1457080121.000000\n" #: 03010000.xhp msgctxt "" @@ -1915,7 +1915,7 @@ "14\n" "help.text" msgid "<ahelp hid=\"modules/schart/ui/tp_SeriesToAxis/MT_OVERLAP\">Defines the necessary settings for overlapping data series.</ahelp> You can choose between -100 and +100%." -msgstr "<ahelp hid=\"modules/schart/ui/tp_SeriesToAxis/MT_OVERLAP\">为é‡å æ•°æ®åºåˆ—定义必è¦çš„设置。</ahelp>å¯ä»¥åœ¨ -100% å’Œ +100% 之间选择。" +msgstr "<ahelp hid=\"modules/schart/ui/tp_SeriesToAxis/MT_OVERLAP\">对é‡å æ•°æ®åºåˆ—进行必è¦çš„设置。</ahelp>å¯åœ¨ -100% å’Œ +100% 之间选择。" #: 04060000.xhp msgctxt "" @@ -2112,16 +2112,14 @@ msgstr "网格" #: 04070000.xhp -#, fuzzy msgctxt "" "04070000.xhp\n" "bm_id3147434\n" "help.text" msgid "<bookmark_value>axes; inserting grids</bookmark_value> <bookmark_value>grids; inserting in charts</bookmark_value>" -msgstr "<bookmark_value>è½´;æ’入网格</bookmark_value><bookmark_value>网格;æ’入到图表中</bookmark_value>" +msgstr "<bookmark_value>è½´;æ’入网格</bookmark_value> <bookmark_value>网格;æ’入到图表中</bookmark_value>" #: 04070000.xhp -#, fuzzy msgctxt "" "04070000.xhp\n" "hd_id3147434\n" @@ -2130,7 +2128,6 @@ msgstr "网格" #: 04070000.xhp -#, fuzzy msgctxt "" "04070000.xhp\n" "par_id3146974\n" @@ -2139,7 +2136,6 @@ msgstr "<variable id=\"gitter\"><ahelp hid=\".\">通过为轴指定网格线å¯ä»¥å°†è½´åˆ†æˆè‹¥å¹²æ®µï¼Œè¿™ä½¿å¾—您更方便地纵览图表,特别是当您使用较大的图表时。</ahelp></variable>默认情况下,Y 轴主网格处于å¯ç”¨çŠ¶æ€ã€‚" #: 04070000.xhp -#, fuzzy msgctxt "" "04070000.xhp\n" "hd_id3156286\n" @@ -2148,16 +2144,14 @@ msgstr "主网格" #: 04070000.xhp -#, fuzzy msgctxt "" "04070000.xhp\n" "par_id3154511\n" "help.text" msgid "Defines the axis to be set as the major grid." -msgstr "定义è¦è®¾ç½®ä¸ºä¸»ç½‘格的轴。" +msgstr "定义è¦è®¾ç½®ä¸ºä¸»ç½‘格的å标轴。" #: 04070000.xhp -#, fuzzy msgctxt "" "04070000.xhp\n" "hd_id3149400\n" @@ -2166,7 +2160,6 @@ msgstr "X è½´" #: 04070000.xhp -#, fuzzy msgctxt "" "04070000.xhp\n" "par_id3150749\n" @@ -2180,10 +2173,9 @@ "par_id3154754\n" "help.text" msgid "<variable id=\"sytextxgitter\"><ahelp hid=\".uno:ToggleGridVertical\">The <emph>Vertical Grids</emph> icon on the <emph>Formatting</emph> bar toggles the visibility of the grid display for the X axis.</ahelp></variable> It switches between the three states: no grid, major grid and both major and minor grids displayed. The change will affect check boxes in <emph>Insert - Grids</emph>." -msgstr "" +msgstr "<variable id=\"sytextxgitter\"><ahelp hid=\".uno:ToggleGridVertical\"><emph>æ ¼å¼</emph>工具æ ä¸Šçš„<emph>垂直网格</emph>图标用æ¥æŽ§åˆ¶Xå标轴上网格线的å¯è§æ€§ã€‚</ahelp></variable>点击该图标,å¯åœ¨ä¸‰ä¸ªçŠ¶æ€ä¹‹é—´åˆ‡æ¢ï¼š<emph>ä¸æ˜¾ç¤ºç½‘æ ¼</emph>,<emph>显示主网格</emph>å’Œ<emph>显示主网格åŠæ¬¡ç½‘æ ¼</emph>。状æ€çš„更改会影å“到<emph>æ’å…¥-网格线</emph>èœå•ä¸­çš„选择框。" #: 04070000.xhp -#, fuzzy msgctxt "" "04070000.xhp\n" "hd_id3145228\n" @@ -2192,7 +2184,6 @@ msgstr "Y è½´" #: 04070000.xhp -#, fuzzy msgctxt "" "04070000.xhp\n" "par_id3147004\n" @@ -2206,10 +2197,9 @@ "par_id3150344\n" "help.text" msgid "<variable id=\"sytextygitter\"><ahelp hid=\".uno:ToggleGridHorizontal\">The <emph>Horizontal Grids</emph> icon on the <emph>Formatting</emph> bar toggles the visibility of the grid display for the Y axis.</ahelp></variable> It switches between the three states: no grid, major grid and both major and minor grids displayed. The change will affect check boxes in <emph>Insert - Grids</emph>." -msgstr "" +msgstr "<variable id=\"sytextxgitter\"><ahelp hid=\".uno:ToggleGridHorizontal\"><emph>æ ¼å¼</emph>工具æ ä¸Šçš„<emph>水平网格</emph>图标用æ¥æŽ§åˆ¶Yå标轴上网格线的å¯è§æ€§ã€‚</ahelp></variable>点击该图标,å¯åœ¨ä¸‰ä¸ªçŠ¶æ€ä¹‹é—´åˆ‡æ¢ï¼š<emph>ä¸æ˜¾ç¤ºç½‘æ ¼</emph>,<emph>显示主网格</emph>å’Œ<emph>显示主网格åŠæ¬¡ç½‘æ ¼</emph>。状æ€çš„更改会影å“到<emph>æ’å…¥-网格线</emph>èœå•ä¸­çš„选择框。" #: 04070000.xhp -#, fuzzy msgctxt "" "04070000.xhp\n" "hd_id3166430\n" @@ -2218,7 +2208,6 @@ msgstr "Z è½´" #: 04070000.xhp -#, fuzzy msgctxt "" "04070000.xhp\n" "par_id3155378\n" @@ -2227,7 +2216,6 @@ msgstr "<ahelp hid=\"modules/schart/ui/insertgriddlg/primaryZ\">将网格线添加到图表的 Z 轴。</ahelp>此选项仅在使用三维图表时æ‰å¯ç”¨ã€‚" #: 04070000.xhp -#, fuzzy msgctxt "" "04070000.xhp\n" "hd_id3146978\n" @@ -2236,16 +2224,14 @@ msgstr "次网格" #: 04070000.xhp -#, fuzzy msgctxt "" "04070000.xhp\n" "par_id3156449\n" "help.text" msgid "Use this area to assign a minor grid for each axis. Assigning minor grids to the axis reduces the distance between the major grids." -msgstr "使用此区域为æ¯æ ¹è½´æŒ‡å®šä¸€ä¸ªæ¬¡ç½‘格。为轴指定次网格å¯ä»¥ç¼©å°ä¸»ç½‘格之间的间隔。" +msgstr "使用此区域为æ¯ä¸ªå标轴指定一个次网格。为轴指定次网格å¯ä»¥ç¼©å°ä¸»ç½‘格之间的间隔。" #: 04070000.xhp -#, fuzzy msgctxt "" "04070000.xhp\n" "hd_id3153308\n" @@ -2254,7 +2240,6 @@ msgstr "X è½´" #: 04070000.xhp -#, fuzzy msgctxt "" "04070000.xhp\n" "par_id3148704\n" @@ -2263,7 +2248,6 @@ msgstr "<ahelp hid=\"modules/schart/ui/insertgriddlg/secondaryX\">将用于细分 X 轴的网格线添加到较å°åŒºæ®µã€‚</ahelp>" #: 04070000.xhp -#, fuzzy msgctxt "" "04070000.xhp\n" "hd_id3153917\n" @@ -2272,7 +2256,6 @@ msgstr "Y è½´" #: 04070000.xhp -#, fuzzy msgctxt "" "04070000.xhp\n" "par_id3154536\n" @@ -2281,7 +2264,6 @@ msgstr "<ahelp hid=\"modules/schart/ui/insertgriddlg/secondaryY\">将用于细分 Y 轴的网格线添加到较å°åŒºæ®µã€‚</ahelp>" #: 04070000.xhp -#, fuzzy msgctxt "" "04070000.xhp\n" "hd_id3148607\n" @@ -2290,7 +2272,6 @@ msgstr "Z è½´" #: 04070000.xhp -#, fuzzy msgctxt "" "04070000.xhp\n" "par_id3153247\n" diff -Nru libreoffice-5.1.1~rc2/translations/source/zh-CN/helpcontent2/source/text/schart.po libreoffice-5.1.2~rc2/translations/source/zh-CN/helpcontent2/source/text/schart.po --- libreoffice-5.1.1~rc2/translations/source/zh-CN/helpcontent2/source/text/schart.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/zh-CN/helpcontent2/source/text/schart.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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 13:40+0000\n" +"PO-Revision-Date: 2016-02-29 09:47+0000\n" "Last-Translator: ç¨ç‘ é” <suokunlong@126.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: zh_CN\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1369402810.000000\n" +"X-POOTLE-MTIME: 1456739274.000000\n" #: main0000.xhp msgctxt "" @@ -665,16 +665,15 @@ "hd_id0810200902300672\n" "help.text" msgid "Horizontal Grids" -msgstr "" +msgstr "水平网格线" #: main0202.xhp -#, fuzzy msgctxt "" "main0202.xhp\n" "par_id0810200902300630\n" "help.text" msgid "<ahelp hid=\".\">The Horizontal Grids icon on the Formatting bar toggles the visibility of the grid display for the Y axis.</ahelp>" -msgstr "<ahelp hid=\".\">“格å¼â€æ ä¸Šçš„“显示/éšè—横å‘网格â€å›¾æ ‡ç”¨äºŽåˆ‡æ¢ Y 轴网格的显示</ahelp>" +msgstr "<ahelp hid=\".\">æ ¼å¼å·¥å…·æ ä¸Šçš„“水平网格线â€å›¾æ ‡ç”¨äºŽæ˜¾ç¤ºå’Œéšè—Y轴的网格。</ahelp>" #: main0202.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/zh-CN/helpcontent2/source/text/sdraw.po libreoffice-5.1.2~rc2/translations/source/zh-CN/helpcontent2/source/text/sdraw.po --- libreoffice-5.1.1~rc2/translations/source/zh-CN/helpcontent2/source/text/sdraw.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/zh-CN/helpcontent2/source/text/sdraw.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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 13:40+0000\n" +"PO-Revision-Date: 2016-02-29 09:45+0000\n" "Last-Translator: ç¨ç‘ é” <suokunlong@126.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: zh_CN\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1369402821.000000\n" +"X-POOTLE-MTIME: 1456739104.000000\n" #: main0000.xhp msgctxt "" @@ -318,16 +318,14 @@ msgstr "视图" #: main0103.xhp -#, fuzzy msgctxt "" "main0103.xhp\n" "hd_id3152576\n" "help.text" msgid "<link href=\"text/sdraw/main0103.xhp\" name=\"View\">View</link>" -msgstr "<link href=\"text/sdraw/main0103.xhp\" name=\"视图\">视图</link>" +msgstr "<link href=\"text/sdraw/main0103.xhp\" name=\"View\">视图</link>" #: main0103.xhp -#, fuzzy msgctxt "" "main0103.xhp\n" "par_id3159155\n" @@ -368,13 +366,12 @@ msgstr "切æ¢åˆ°æ¯ç‰ˆé¡µé¢è§†å›¾ã€‚" #: main0103.xhp -#, fuzzy msgctxt "" "main0103.xhp\n" "hd_id3149666\n" "help.text" msgid "<link href=\"text/shared/01/03010000.xhp\" name=\"Zoom\">Zoom</link>" -msgstr "<link href=\"text/shared/01/03010000.xhp\" name=\"显示比例\">显示比例</link>" +msgstr "<link href=\"text/shared/01/03010000.xhp\" name=\"Zoom\">缩放</link>" #: main0104.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/zh-CN/helpcontent2/source/text/shared/01.po libreoffice-5.1.2~rc2/translations/source/zh-CN/helpcontent2/source/text/shared/01.po --- libreoffice-5.1.1~rc2/translations/source/zh-CN/helpcontent2/source/text/shared/01.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/zh-CN/helpcontent2/source/text/shared/01.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\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:19+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2016-02-29 03:13+0000\n" +"Last-Translator: ç¨ç‘ é” <suokunlong@126.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: zh_CN\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1452604761.000000\n" +"X-POOTLE-MTIME: 1456715583.000000\n" #: 01010000.xhp msgctxt "" @@ -7442,7 +7442,7 @@ "bm_id3146765\n" "help.text" msgid "<bookmark_value>regular expressions; list of</bookmark_value> <bookmark_value>lists;regular expressions</bookmark_value> <bookmark_value>replacing;tab stops (regular expressions)</bookmark_value> <bookmark_value>tab stops;regular expressions</bookmark_value> <bookmark_value>concatenation, see ampersand symbol</bookmark_value> <bookmark_value>ampersand symbol, see also operators</bookmark_value>" -msgstr "<bookmark_value>正则表达å¼; 列表</bookmark_value> <bookmark_value>列表;正则表达å¼</bookmark_value> <bookmark_value>替æ¢;制表符(正则表达å¼ï¼‰</bookmark_value> <bookmark_value>制表符;正则表达å¼</bookmark_value> <bookmark_value>连接, 请å‚è§ & 符å·</bookmark_value> <bookmark_value>& 符å·, å¦è¯·å‚è§è¿ç®—符</bookmark_value>" +msgstr "<bookmark_value>正则表达å¼</bookmark_value>" #: 02100001.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/zh-CN/helpcontent2/source/text/shared/guide.po libreoffice-5.1.2~rc2/translations/source/zh-CN/helpcontent2/source/text/shared/guide.po --- libreoffice-5.1.1~rc2/translations/source/zh-CN/helpcontent2/source/text/shared/guide.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/zh-CN/helpcontent2/source/text/shared/guide.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\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 22:59+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2016-02-29 04:40+0000\n" +"Last-Translator: ç¨ç‘ é” <suokunlong@126.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: zh_CN\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1431385179.000000\n" +"X-POOTLE-MTIME: 1456720856.000000\n" #: aaa_start.xhp msgctxt "" @@ -17158,7 +17158,7 @@ "tit\n" "help.text" msgid "Inserting Non-breaking Spaces, Hyphens and Soft Hyphens" -msgstr "" +msgstr "æ’å…¥ä¸é—´æ–­ç©ºæ ¼ã€ä¸é—´æ–­è¿žå­—符和软连字符" #: space_hyphen.xhp #, fuzzy @@ -17170,14 +17170,13 @@ msgstr "<bookmark_value>å—ä¿æŠ¤çš„空格; æ’å…¥</bookmark_value><bookmark_value>空格; æ’å…¥å—ä¿æŠ¤çš„空格</bookmark_value><bookmark_value>连字符; æ’入自定义</bookmark_value><bookmark_value>æ¡ä»¶åˆ†éš”符</bookmark_value><bookmark_value>分隔符; æ¡ä»¶</bookmark_value><bookmark_value>划线</bookmark_value><bookmark_value>ä¸é—´æ–­åˆ’线</bookmark_value><bookmark_value>替æ¢; 划线</bookmark_value><bookmark_value>å—ä¿æŠ¤çš„划线</bookmark_value><bookmark_value>交æ¢ï¼Œå¦è¯·å‚阅替æ¢</bookmark_value>" #: space_hyphen.xhp -#, fuzzy msgctxt "" "space_hyphen.xhp\n" "hd_id3155364\n" "30\n" "help.text" msgid "<variable id=\"space_hyphen\"><link href=\"text/shared/guide/space_hyphen.xhp\" name=\"Inserting Non-breaking Spaces, Hyphens and Soft Hyphens\">Inserting Non-breaking Spaces, Hyphens and Soft Hyphens</link></variable>" -msgstr "<variable id=\"space_hyphen\"><link href=\"text/shared/guide/space_hyphen.xhp\" name=\"æ’å…¥å—ä¿æŠ¤çš„空格ã€è¿žå­—符和有æ¡ä»¶çš„分隔符\">æ’å…¥å—ä¿æŠ¤çš„空格ã€è¿žå­—符和有æ¡ä»¶çš„分隔符</link></variable>" +msgstr "<variable id=\"space_hyphen\"><link href=\"text/shared/guide/space_hyphen.xhp\" name=\"Inserting Non-breaking Spaces, Hyphens and Soft Hyphens\">æ’å…¥ä¸é—´æ–­ç©ºæ ¼ã€ä¸é—´æ–­è¿žå­—符和软连字符 </link></variable>" #: space_hyphen.xhp msgctxt "" @@ -17186,7 +17185,7 @@ "61\n" "help.text" msgid "Non-breaking spaces" -msgstr "å—ä¿æŠ¤çš„空格" +msgstr "ä¸é—´æ–­ç©ºæ ¼" #: space_hyphen.xhp msgctxt "" @@ -17195,7 +17194,7 @@ "31\n" "help.text" msgid "To prevent two words from being separated at the end of a line, hold down the <switchinline select=\"sys\"><caseinline select=\"MAC\">Command key </caseinline><defaultinline>Ctrl key</defaultinline></switchinline> and the Shift key when you type a space between the words." -msgstr "è¦é˜²æ­¢åœ¨è¡Œæœ«å°†ä¸¤ä¸ªå•è¯åˆ†å¼€ï¼Œè¯·åœ¨é”®å…¥è¯é—´ç©ºæ ¼æ—¶æŒ‰ <switchinline select=\"sys\"><caseinline select=\"MAC\">Command é”®</caseinline><defaultinline>Ctrl é”®</defaultinline></switchinline>å’Œ Shift 键。" +msgstr "如果ä¸å¸Œæœ›å•è¯åœ¨è¡Œå°¾è¢«åˆ†å¼€ï¼Œæ‚¨å¯ä»¥åœ¨é”®å…¥å•è¯é—´çš„空格时按下<switchinline select=\"sys\"><caseinline select=\"MAC\">Commandé”®</caseinline><defaultinline>Ctrlé”®</defaultinline></switchinline>å’ŒShift键。" #: space_hyphen.xhp msgctxt "" @@ -17203,7 +17202,7 @@ "par_id5749687\n" "help.text" msgid "In Calc, you cannot insert non-breaking spaces." -msgstr "在 Calc 中,ä¸å…许æ’å…¥ä¸é—´æ–­ç©ºæ ¼ã€‚" +msgstr "在Calc中,您无法æ’å…¥ä¸é—´æ–­ç©ºæ ¼ã€‚" #: space_hyphen.xhp msgctxt "" @@ -17212,17 +17211,16 @@ "62\n" "help.text" msgid "Non-breaking hyphen" -msgstr "" +msgstr "ä¸é—´æ–­è¿žå­—符" #: space_hyphen.xhp -#, fuzzy msgctxt "" "space_hyphen.xhp\n" "par_id3148538\n" "32\n" "help.text" msgid "An example of a non-breaking hyphen is a company name such as A-Z. Obviously you would not want A- to appear at the end of a line and Z at the beginning of the next line. To solve this problem, press Shift+Ctrl+ minus sign. In other words, hold down the Shift and Ctrl keys and press the minus key." -msgstr "例如,公å¸å称 \"A-Z\" 中的ä¸é—´æ–­çŸ­åˆ’线就是å—ä¿æŠ¤çš„连字符。这里您肯定ä¸æƒ³è®© \"A-\" ä½äºŽä¸€è¡Œçš„末尾而让 \"Z\" ä½äºŽä¸‹ä¸€è¡Œçš„开头。请输入 (Shift) (Ctrl) -ï¼Œä¹Ÿå°±æ˜¯è¯´è¯·æŒ‰ä½ Shift 键和 Ctrl 键并击å‡å·é”®ã€‚" +msgstr "ä¸é—´æ–­è¿žå­—符的一个例å­ï¼šæ¯”如公å¸å称A-Z,很明显您ä¸å¸Œæœ›A-出现在一行的结尾,而Zå•ç‹¬å‡ºçŽ°åœ¨ä¸‹ä¸€è¡Œã€‚è¦è§£å†³è¿™ä¸ªé—®é¢˜ï¼Œæ‚¨å¯ä»¥åœ¨è¾“入时按下Shift+Ctrl+å‡å·é”®ã€‚æ¢å¥è¯è¯´ï¼ŒåŒæ—¶æŒ‰ä¸‹Shiftå’ŒCtrl键,然åŽé”®å…¥è¿žæŽ¥ç¬¦\"-\"。" #: space_hyphen.xhp msgctxt "" @@ -17231,17 +17229,16 @@ "65\n" "help.text" msgid "Replacing hyphens by dashes" -msgstr "" +msgstr "用长划线替æ¢è¿žå­—符" #: space_hyphen.xhp -#, fuzzy msgctxt "" "space_hyphen.xhp\n" "par_id3154749\n" "66\n" "help.text" msgid "In order to enter dashes, you can find under <emph>Tools - AutoCorrect Options - Options</emph> the <emph>Replace dashes</emph> option. This option replaces one or two hyphens under certain conditions with an en-dash or an em-dash (see <link href=\"text/shared/01/06040100.xhp\" name=\"AutoCorrect Options\">AutoCorrect Options</link>)." -msgstr "如果想è¦è¾“入长划线,您å¯ä»¥åœ¨<emph>工具 - 自动更正选项</emph><emph>- 选项</emph>中找到<emph>替æ¢ç ´æŠ˜å·</emph>选项。在æŸç§æ¡ä»¶ä¸‹ï¼Œè¯¥é€‰é¡¹å°†ä½¿ç”¨çŸ­ç ´æŠ˜å·æˆ–长破折å·æ›¿æ¢ä¸€ä¸ªæˆ–两个å‡å·ï¼ˆè¯·å‚è§ <link href=\"text/shared/01/06040100.xhp\" name=\"$[officename] Help\">$[officename] 帮助</link>)。" +msgstr "如果想è¦è¾“入长划线,您å¯ä»¥åœ¨<emph>工具 - 自动更正选项 - 选项</emph>中找到<emph>替æ¢ç ´æŠ˜å·</emph>选项。在特定æ¡ä»¶ä¸‹ï¼Œè¯¥é€‰é¡¹å°†ä½¿ç”¨çŸ­ç ´æŠ˜å·æˆ–长破折å·æ›¿æ¢ä¸€ä¸ªæˆ–两个å‡å·ï¼ˆè¯·å‚è§ <link href=\"text/shared/01/06040100.xhp\" name=\"AutoCorrect Options\">自动更正选项</link>)。" #: space_hyphen.xhp msgctxt "" @@ -17250,7 +17247,7 @@ "67\n" "help.text" msgid "For additional replacements see the replacements table under <emph>Tools - AutoCorrect Options</emph><emph>- </emph><link href=\"text/shared/01/06040200.xhp\" name=\"Replace\"><emph>Replace</emph></link>. Here you can, among other things, replace a shortcut automatically by a dash, even in another font." -msgstr "有关其他替æ¢é¡¹ï¼Œè¯·å‚阅<emph>工具 - 自动更正选项</emph><emph>- </emph><link href=\"text/shared/01/06040200.xhp\" name=\"Replace\"><emph>替æ¢</emph></link>中的替æ¢é¡¹è¡¨ã€‚除此之外,您å¯ä»¥åœ¨æ­¤ç”¨çŸ­åˆ’线(甚至å¯å…·æœ‰å¦ä¸€ç§å­—体)自动替æ¢æŸä¸€å¿«æ·æ–¹å¼ã€‚" +msgstr "有关其它替æ¢é€‰é¡¹ï¼Œè¯·å‚阅<emph>工具 - 自动更正选项 - <link href=\"text/shared/01/06040200.xhp\" name=\"Replace\">替æ¢</link></emph>中的替æ¢è¡¨ã€‚除此之外,您还å¯ä»¥åœ¨è¿™é‡Œç”¨çŸ­åˆ’线(甚至å¯ä½¿ç”¨å¦å¤–一ç§å­—体)自动替æ¢æŸå¿«æ·é”®ã€‚" #: space_hyphen.xhp msgctxt "" @@ -17259,17 +17256,16 @@ "63\n" "help.text" msgid "Soft hyphen" -msgstr "" +msgstr "软连字符" #: space_hyphen.xhp -#, fuzzy msgctxt "" "space_hyphen.xhp\n" "par_id3154306\n" "60\n" "help.text" msgid "To support automatic hyphenation by entering a soft hyphen inside a word yourself, use the keys <switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+minus sign. The word is separated at this position when it is at the end of the line, even if automatic hyphenation for this paragraph is switched off." -msgstr "è¦é€šè¿‡åœ¨å•è¯å†…手动输入分隔符æ¥æ”¯æŒè‡ªåŠ¨æ–­å­—,请使用组åˆé”® <switchinline select=\"sys\"><caseinline select=\"MAC\">命令</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+å‡å·ã€‚当å•è¯ä½äºŽè¡Œå°¾æ—¶ï¼Œå³ä½¿å…³é—­äº†æ­¤æ®µè½çš„自动断字功能,也会在此ä½ç½®å°†è¯¥è¯åˆ†å¼€ã€‚" +msgstr "è¦æƒ³é€šè¿‡åœ¨å•è¯ä¸­è¾“入一个软连字符æ¥è‡ªåŠ¨æ–­å­—,请使用<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+å‡å·é”®ã€‚在这ç§æƒ…况下,å³ä½¿è‡ªåŠ¨æ–­å­—功能被关闭,å•è¯ä¹Ÿä¼šåœ¨è¡Œå°¾è¢«åˆ†å¼€ã€‚" #: space_hyphen.xhp msgctxt "" @@ -17278,7 +17274,7 @@ "64\n" "help.text" msgid "<link href=\"text/shared/01/04100000.xhp\" name=\"Special characters\">Special characters</link>" -msgstr "<link href=\"text/shared/01/04100000.xhp\" name=\"特殊字符\">特殊字符</link>" +msgstr "<link href=\"text/shared/01/04100000.xhp\" name=\"Special characters\">特殊字符</link>" #: spadmin.xhp msgctxt "" @@ -17286,7 +17282,7 @@ "tit\n" "help.text" msgid "Configuring Printer and Fax Under UNIX Based Platforms" -msgstr "" +msgstr "在类UNIX的系统上é…置打å°æœºå’Œä¼ çœŸ" #: spadmin.xhp msgctxt "" @@ -17294,7 +17290,7 @@ "bm_id3154422\n" "help.text" msgid "<bookmark_value>spadmin</bookmark_value><bookmark_value>printers; adding, UNIX</bookmark_value><bookmark_value>default printer; UNIX</bookmark_value><bookmark_value>standard printer under UNIX</bookmark_value><bookmark_value>faxes; fax programs/fax printers under UNIX</bookmark_value><bookmark_value>printers; faxes under UNIX</bookmark_value>" -msgstr "" +msgstr "<bookmark_value>spadmin</bookmark_value><bookmark_value>打å°æœº; 添加, UNIX</bookmark_value><bookmark_value>默认打å°æœº; UNIX</bookmark_value><bookmark_value>UNIX下的标准打å°æœº</bookmark_value><bookmark_value>传真; UNIX下的传真打å°æœº</bookmark_value><bookmark_value>打å°æœº; UNIX下的传真</bookmark_value>" #: spadmin.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/zh-CN/helpcontent2/source/text/shared/optionen.po libreoffice-5.1.2~rc2/translations/source/zh-CN/helpcontent2/source/text/shared/optionen.po --- libreoffice-5.1.1~rc2/translations/source/zh-CN/helpcontent2/source/text/shared/optionen.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/zh-CN/helpcontent2/source/text/shared/optionen.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "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 23:00+0000\n" +"PO-Revision-Date: 2016-02-26 07:51+0000\n" "Last-Translator: ç¨ç‘ é” <suokunlong@126.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: zh_CN\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1431385208.000000\n" +"X-POOTLE-MTIME: 1456473119.000000\n" #: 01000000.xhp msgctxt "" @@ -6499,7 +6499,7 @@ "1\n" "help.text" msgid "<link href=\"text/shared/optionen/01040300.xhp\" name=\"Basic Fonts\">Basic Fonts</link>" -msgstr "<link href=\"text/shared/optionen/01040300.xhp\" name=\"基本字体\">基本字体</link>" +msgstr "<link href=\"text/shared/optionen/01040300.xhp\" name=\"Basic Fonts\">标准字体</link>" #: 01040300.xhp msgctxt "" @@ -6508,7 +6508,7 @@ "2\n" "help.text" msgid "<ahelp hid=\"modules/swriter/ui/optfonttabpage/OptFontTabPage\">Specifies the settings for the basic fonts in your documents.</ahelp>" -msgstr "<ahelp hid=\"modules/swriter/ui/optfonttabpage/OptFontTabPage\">指定文档中的基本字体设置。</ahelp>" +msgstr "<ahelp hid=\"modules/swriter/ui/optfonttabpage/OptFontTabPage\">设置文档中的标准字体。</ahelp>" #: 01040300.xhp msgctxt "" @@ -6517,7 +6517,7 @@ "19\n" "help.text" msgid "You can also change the basic fonts for Asian and complex text layout languages if their support is enabled in <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Language Settings - Languages</emph>." -msgstr "如果已在 <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - 首选项</caseinline><defaultinline>工具 - 选项</defaultinline></switchinline> - 语言设置 - 语言</emph>中å¯åŠ¨äº†äºšæ´²è¯­è¨€æ”¯æŒå’Œå¤æ‚文字版å¼æ”¯æŒï¼Œæ‚¨è¿˜å¯ä»¥ä¿®æ”¹ç”¨äºŽäºšæ´²è¯­è¨€å’Œå¤æ‚文字版å¼çš„基本字体。" +msgstr "若已在 <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - 首选项</caseinline><defaultinline>工具 - 选项</defaultinline></switchinline> - 语言设置 - 语言</emph> 中å¯ç”¨äº†äºšæ´²è¯­è¨€åŠå¤æ‚文本排版支æŒï¼Œåˆ™å¯ä»¥åœ¨è¯¥ç•Œé¢è®¾ç½®äºšæ´²è¯­è¨€åŠå¤æ‚文本语言的标准字体。" #: 01040300.xhp msgctxt "" @@ -6526,7 +6526,7 @@ "18\n" "help.text" msgid "These settings define the basic fonts for the predefined templates. You can also modify or customize the <link href=\"text/shared/optionen/01040301.xhp\" name=\"default text templates\">default text templates</link>." -msgstr "这些设置为预定义模æ¿å®šä¹‰äº†åŸºæœ¬å­—体。您也å¯ä»¥ä¿®æ”¹æˆ–自定义<link href=\"text/shared/optionen/01040301.xhp\" name=\"default text templates\">默认文本模æ¿</link>." +msgstr "这些设置用于指定预定义模æ¿ä¸­çš„标准字体。你也å¯ä»¥ä¿®æ”¹æˆ–个性化<link href=\"text/shared/optionen/01040301.xhp\" name=\"default text templates\">预定义模æ¿</link>。" #: 01040300.xhp msgctxt "" @@ -6535,7 +6535,7 @@ "3\n" "help.text" msgid "Basic fonts" -msgstr "标准样å¼" +msgstr "标准字体" #: 01040300.xhp msgctxt "" @@ -6553,7 +6553,7 @@ "5\n" "help.text" msgid "<ahelp hid=\"modules/swriter/ui/optfonttabpage/standardbox\">Specifies the font to be used for the <emph>Default</emph> Paragraph Style.</ahelp> The <emph>Default</emph> Paragraph Style font is used for nearly all Paragraph Styles, unless the Paragraph Style explicitly defines another font." -msgstr "" +msgstr "<ahelp hid=\"modules/swriter/ui/optfonttabpage/standardbox\">指定<emph>默认</emph>段è½æ ·å¼ä½¿ç”¨çš„字体。</ahelp><emph>默认</emph>段è½æ ·å¼çš„字体将用于几乎所有的段è½æ ·å¼ï¼Œé™¤éžè¯¥æ®µè½æ ·å¼ä¸­æ˜Žç¡®æŒ‡å®šäº†å…¶å®ƒå­—体。" #: 01040300.xhp msgctxt "" @@ -6569,7 +6569,7 @@ "par_id7700735\n" "help.text" msgid "<ahelp hid=\".\">Specifies the size of the font.</ahelp>" -msgstr "<ahelp hid=\".\">指定字体的大å°ã€‚</ahelp>" +msgstr "<ahelp hid=\".\">指定字体大å°ã€‚</ahelp>" #: 01040300.xhp msgctxt "" @@ -6587,7 +6587,7 @@ "7\n" "help.text" msgid "<ahelp hid=\"modules/swriter/ui/optfonttabpage/titlebox\">Specifies the font to be used for headings.</ahelp>" -msgstr "" +msgstr "<ahelp hid=\"modules/swriter/ui/optfonttabpage/titlebox\">指定标题样å¼ä½¿ç”¨çš„字体。</ahelp>" #: 01040300.xhp msgctxt "" @@ -6605,7 +6605,7 @@ "9\n" "help.text" msgid "<ahelp hid=\"modules/swriter/ui/optfonttabpage/listbox\">Specifies the fonts for lists and numbering and all derived styles.</ahelp>" -msgstr "" +msgstr "<ahelp hid=\"modules/swriter/ui/optfonttabpage/listbox\">指定列表(项目符å·å’Œç¼–å·ï¼‰æ ·å¼ä½¿ç”¨çš„字体。</ahelp>" #: 01040300.xhp msgctxt "" @@ -6614,7 +6614,7 @@ "10\n" "help.text" msgid "When you choose <switchinline select=\"appl\"><caseinline select=\"WRITER\"><link href=\"text/shared/01/06050000.xhp\" name=\"Format - Numbering/Bullets\"><emph>Format - Numbering/Bullets</emph></link></caseinline><defaultinline><emph>Format - Numbering/Bullets</emph></defaultinline></switchinline> to format a paragraph with numbers or bullets in a text document, the program assigns these Paragraph Styles automatically." -msgstr "当您在文本文档中选择 <switchinline select=\"appl\"> <caseinline select=\"WRITER\"><link href=\"text/shared/01/06050000.xhp\" name=\"æ ¼å¼ - ç¼–å·/项目符å·\"><emph>æ ¼å¼ - ç¼–å·/项目符å·</emph></link></caseinline> <defaultinline><emph>æ ¼å¼ - ç¼–å·/项目符å·</emph></defaultinline> </switchinline> 为段è½æ·»åŠ ç¼–å·æˆ–项目符å·æ—¶ï¼Œç¨‹åºä¼šè‡ªåŠ¨æŒ‡å®šè¿™äº›æ®µè½æ ·å¼ã€‚" +msgstr "当您使用 <switchinline select=\"appl\"><caseinline select=\"WRITER\"><link href=\"text/shared/01/06050000.xhp\" name=\"Format - Numbering/Bullets\"><emph>æ ¼å¼ - 项目符å·å’Œç¼–å·</emph></link></caseinline><defaultinline><emph>æ ¼å¼ - 项目符å·å’Œç¼–å·</emph></defaultinline></switchinline> æ¥æ ¼å¼åŒ–文本文档中包å«é¡¹ç›®ç¬¦å·å’Œç¼–å·çš„段è½æ—¶ï¼Œç¨‹åºå°†è‡ªåŠ¨åº”用这些段è½æ ·å¼ã€‚" #: 01040300.xhp msgctxt "" @@ -6623,7 +6623,7 @@ "11\n" "help.text" msgid "Caption" -msgstr "标签" +msgstr "题注" #: 01040300.xhp msgctxt "" @@ -6632,7 +6632,7 @@ "12\n" "help.text" msgid "<ahelp hid=\"modules/swriter/ui/optfonttabpage/labelbox\">Specifies the font used for the captions of images and tables.</ahelp>" -msgstr "" +msgstr "<ahelp hid=\"modules/swriter/ui/optfonttabpage/labelbox\">指定图åƒå’Œè¡¨æ ¼çš„题注使用的字体。</ahelp>" #: 01040300.xhp msgctxt "" @@ -6641,7 +6641,7 @@ "13\n" "help.text" msgid "Index" -msgstr "目录" +msgstr "索引" #: 01040300.xhp msgctxt "" @@ -6650,7 +6650,7 @@ "14\n" "help.text" msgid "<ahelp hid=\"modules/swriter/ui/optfonttabpage/idxbox\">Specifies the font used for indexes, alphabetical indexes, and tables of contents.</ahelp>" -msgstr "" +msgstr "<ahelp hid=\"modules/swriter/ui/optfonttabpage/idxbox\">指定索引和内容目录使用的字体。</ahelp>" #: 01040300.xhp msgctxt "" @@ -6659,7 +6659,7 @@ "15\n" "help.text" msgid "Current document only" -msgstr "åªé€‚用于当å‰çš„文档" +msgstr "仅用于当å‰æ–‡æ¡£" #: 01040300.xhp msgctxt "" @@ -6668,7 +6668,7 @@ "17\n" "help.text" msgid "<ahelp hid=\"modules/swriter/ui/optfonttabpage/doconly\">Specifies that the settings apply to the current document only.</ahelp>" -msgstr "" +msgstr "<ahelp hid=\"modules/swriter/ui/optfonttabpage/doconly\">指定该设置仅对当å‰æ–‡æ¡£æœ‰æ•ˆï¼Œä¸å½±å“全局设置。</ahelp>" #: 01040301.xhp msgctxt "" @@ -6676,7 +6676,7 @@ "tit\n" "help.text" msgid "Change default template" -msgstr "修改默认模æ¿" +msgstr "更改默认模æ¿" #: 01040301.xhp msgctxt "" @@ -6685,7 +6685,7 @@ "1\n" "help.text" msgid "Change default template" -msgstr "修改默认模æ¿" +msgstr "更改默认模æ¿" #: 01040400.xhp msgctxt "" @@ -6710,7 +6710,7 @@ "1\n" "help.text" msgid "<link href=\"text/shared/optionen/01040400.xhp\" name=\"Print\">Print</link>" -msgstr "<link href=\"text/shared/optionen/01040400.xhp\" name=\"打å°\">打å°</link>" +msgstr "<link href=\"text/shared/optionen/01040400.xhp\" name=\"Print\">打å°</link>" #: 01040400.xhp msgctxt "" @@ -6719,7 +6719,7 @@ "2\n" "help.text" msgid "<ahelp hid=\"modules/swriter/ui/printoptionspage/PrintOptionsPage\">Specifies print settings within a text or HTML document.</ahelp>" -msgstr "<ahelp hid=\"modules/swriter/ui/printoptionspage/PrintOptionsPage\">指定文本或 HTML 文档中的打å°è®¾ç½®ã€‚</ahelp>" +msgstr "<ahelp hid=\"modules/swriter/ui/printoptionspage/PrintOptionsPage\">指定文本文档或HTML文档中的打å°è®¾ç½®ã€‚</ahelp>" #: 01040400.xhp msgctxt "" @@ -6809,7 +6809,7 @@ "40\n" "help.text" msgid "Print black" -msgstr "打å°é»‘色" +msgstr "将文本打å°ä¸ºé»‘色" #: 01040400.xhp msgctxt "" @@ -6826,7 +6826,7 @@ "hd_id8004394\n" "help.text" msgid "Hidden text" -msgstr "éšè—文字" +msgstr "éšè—的文字" #: 01040400.xhp msgctxt "" @@ -6834,7 +6834,7 @@ "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=\".\">å¯ç”¨è¯¥é€‰é¡¹æ‰“å°æ ‡è®°ä¸ºéšè—的文本。</ahelp>以下éšè—文本被打å°ï¼šé€šè¿‡<link href=\"text/shared/01/05020200.xhp\">æ ¼å¼ - 字符 - 字体效果 - éšè—</link>设为éšè—的文本和文本域<link href=\"text/swriter/01/04090003.xhp\">éšè—文本和段è½</link>。" +msgstr "<ahelp hid=\".\">è‹¥å¯ç”¨è¯¥é€‰é¡¹ï¼Œåˆ™è¢«æ ‡è®°ä¸ºéšè—的文本也将被打å°ã€‚</ahelp> 以下这些被éšè—的文本将被打å°ï¼šé€šè¿‡ <link href=\"text/shared/01/05020200.xhp\">æ ¼å¼ - 字符 - 字体效果 - éšè—</link> èœå•æ ¼å¼åŒ–的文本,以åŠé€šè¿‡æ–‡æœ¬å­—段功能æ’入的 <link href=\"text/swriter/01/04090003.xhp\">éšè—的文字和éšè—的段è½</link>。" #: 01040400.xhp msgctxt "" @@ -6850,7 +6850,7 @@ "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=\".\">å¯ç”¨è¯¥é€‰é¡¹æ¥æ‰“å°æ–‡æœ¬å ä½ç¬¦ã€‚ç¦ç”¨è¯¥é€‰é¡¹æ–‡æœ¬å ä½ç¬¦å°†è¾“出为空白。</ahelp><link href=\"text/swriter/01/04090003.xhp\">文本å ä½ç¬¦</link>为域。" +msgstr "<ahelp hid=\".\">è‹¥å¯ç”¨è¯¥é€‰é¡¹ï¼Œåˆ™æ–‡å­—å ä½ç¬¦ä¹Ÿå°†è¢«æ‰“å°ï¼›è‹¥ç¦ç”¨è¯¥é€‰é¡¹ï¼Œåˆ™æ–‡å­—å ä½ç¬¦åœ¨æ‰“å°ä¸­å°†æ˜¾ç¤ºä¸ºç©ºç™½ã€‚</ahelp><link href=\"text/swriter/01/04090003.xhp\">文字å ä½ç¬¦</link>属于字段。" #: 01040400.xhp msgctxt "" @@ -6859,7 +6859,7 @@ "15\n" "help.text" msgid "Pages" -msgstr "页" +msgstr "页é¢" #: 01040400.xhp msgctxt "" @@ -6868,7 +6868,7 @@ "16\n" "help.text" msgid "Defines the print order for $[officename] Writer documents with multiple pages." -msgstr "定义具有多页的 $[officename] Writer 文档的打å°é¡ºåºã€‚" +msgstr "定义多页$[officename]文本文档的打å°é¡ºåºã€‚" #: 01040400.xhp msgctxt "" @@ -6877,7 +6877,7 @@ "17\n" "help.text" msgid "Left pages (not for HTML documents)" -msgstr "左页(HTML 文档除外)" +msgstr "å¶æ•°é¡µï¼ˆHTML文档ä¸é€‚用)" #: 01040400.xhp msgctxt "" @@ -6886,7 +6886,7 @@ "18\n" "help.text" msgid "<ahelp hid=\"modules/swriter/ui/printoptionspage/leftpages\">Specifies whether to print all left (even numbered) pages of the document.</ahelp>" -msgstr "<ahelp hid=\"modules/swriter/ui/printoptionspage/leftpages\">指定是å¦æ‰“å°æ–‡æ¡£çš„所有左(å¶æ•°ï¼‰é¡µã€‚</ahelp>" +msgstr "<ahelp hid=\"modules/swriter/ui/printoptionspage/leftpages\">指定是å¦æ‰“å°æ–‡æ¡£çš„所有左侧页é¢ï¼ˆå¶æ•°é¡µé¢ï¼‰ã€‚</ahelp>" #: 01040400.xhp msgctxt "" @@ -6895,7 +6895,7 @@ "19\n" "help.text" msgid "Right pages (not for HTML documents)" -msgstr "å³é¡µï¼ˆHTML 文档除外)" +msgstr "奇数页(HTML文档ä¸é€‚用)" #: 01040400.xhp msgctxt "" @@ -6904,7 +6904,7 @@ "20\n" "help.text" msgid "<ahelp hid=\"modules/swriter/ui/printoptionspage/rightpages\">Specifies whether to print all right (odd numbered) pages of the document.</ahelp>" -msgstr "<ahelp hid=\"modules/swriter/ui/printoptionspage/rightpages\">指定是å¦æ‰“å°æ–‡æ¡£çš„所有å³ï¼ˆå¥‡æ•°ï¼‰é¡µã€‚</ahelp>" +msgstr "<ahelp hid=\"modules/swriter/ui/printoptionspage/rightpages\">指定是å¦æ‰“å°æ–‡æ¡£çš„所有å³ä¾§é¡µé¢ï¼ˆå¥‡æ•°é¡µé¢ï¼‰ã€‚</ahelp>" #: 01040400.xhp msgctxt "" @@ -6913,7 +6913,7 @@ "23\n" "help.text" msgid "Brochure" -msgstr "手册" +msgstr "å°æ‰‹å†Œ" #: 01040400.xhp msgctxt "" @@ -6922,7 +6922,7 @@ "24\n" "help.text" msgid "<ahelp hid=\"modules/swriter/ui/printoptionspage/brochure\">Select the<emph> Brochure </emph>option to print your document in brochure format.</ahelp> The brochure format is as follows in $[officename] Writer:" -msgstr "<ahelp hid=\"modules/swriter/ui/printoptionspage/brochure\">选择<emph>å°å†Œå­</emph>选项,以å°å†Œå­æ ¼å¼æ‰“å°æ–‡æ¡£ã€‚</ahelp>$[officename] Writer 中å°å†Œå­çš„æ ¼å¼å¦‚下所示:" +msgstr "<ahelp hid=\"modules/swriter/ui/printoptionspage/brochure\">选择<emph> å°æ‰‹å†Œ</emph>选项å¯å°†æ–‡æ¡£æ‰“å°ä¸ºå°æ‰‹å†Œæ ¼å¼ã€‚</ahelp> $[officename] Writer 中的“å°æ‰‹å†Œâ€æ ¼å¼å…·æœ‰ä»¥ä¸‹å«ä¹‰ï¼š" #: 01040400.xhp msgctxt "" @@ -6931,7 +6931,7 @@ "25\n" "help.text" msgid "If you print a document in portrait on a landscape page, two opposing sides in a brochure will be printed next to each other. If you have a printer with double-sided printing capability, you can create an entire brochure from your document without having to collate the pages later. If you have a printer that only has single-sided printing capability, you can achieve this effect by first printing the front pages with the \"Front sides / right pages /odd pages\" option marked, then re-inserting the entire paper stack in your printer and printing all the back pages with the \"Back pages / left pages / even pages\" option marked." -msgstr "如果将纵å‘æ ¼å¼çš„文档打å°åœ¨æ¨ªå‘的纸张上,手册中相对的两页将会被并排打å°ã€‚如果您的打å°æœºå…·æœ‰åŒé¢æ‰“å°åŠŸèƒ½ï¼Œé‚£ä¹ˆæ‚¨å¯ä»¥ä»Žæ–‡æ¡£åˆ›å»ºä¸€ä¸ªå®Œæ•´æ‰‹å†Œï¼Œè€Œæ— éœ€äº‹åŽåˆå¹¶é¡µé¢ã€‚如果您的打å°æœºä»…具有å•é¢æ‰“å°åŠŸèƒ½ï¼Œæ‚¨å¯ä»¥é€šè¿‡ä»¥ä¸‹æ­¥éª¤è¾¾åˆ°è¿™ä¸€æ•ˆæžœï¼šå…ˆé€‰ä¸­â€œæ­£é¢/å³é¡µ/奇数页â€é€‰é¡¹æ‰“å°å‡ºæ­£é¢ï¼Œç„¶åŽå°†æ•´å çº¸å¼ é‡æ–°æ’入打å°æœºï¼Œå¹¶é€‰ä¸­â€œåé¢/左页/å¶æ•°é¡µâ€é€‰é¡¹æ‰“å°æ‰€æœ‰åé¢ã€‚" +msgstr "如果您将纵å‘排版的文档打å°åˆ°æ¨ªå‘的纸张上,那么å°æ‰‹å†Œä¸Šç›¸å¯¹çš„两页被并排打å°ã€‚若您有一å°åŒé¢æ‰“å°åŠŸèƒ½çš„打å°æœºï¼Œé‚£ä¹ˆæ‚¨å¯ä»¥ä¸ç”¨äº‹åŽæ‰‹åŠ¨æ•´ç†çº¸å¼ å³å¯æ‰“å°ä¸€ä»½å®Œæ•´çš„å°æ‰‹å†Œã€‚若您的打å°æœºä¸æ”¯æŒåŒé¢æ‰“å°ï¼Œé‚£ä¹ˆåœ¨å¯ç”¨â€œå°æ‰‹å†Œâ€é€‰é¡¹çš„情况下,打å°æ—¶æ‚¨å…ˆåœ¨â€œæ‰“å°-页é¢å¸ƒå±€â€ä¸­é€‰æ‹©â€œæ­£é¢/å³é¡µâ€è¿›è¡Œæ‰“å°ï¼Œå®Œæˆä¹‹åŽå†æ‰‹åŠ¨å°†çº¸å¼ è£…入打å°æœºï¼Œç„¶åŽé€‰æ‹©â€œèƒŒé¢/左页â€è¿›è¡Œæ‰“å°ï¼Œä¹Ÿèƒ½è¾¾åˆ°ç›¸åŒçš„效果。" #: 01040400.xhp msgctxt "" @@ -6939,7 +6939,7 @@ "hd_id9475386\n" "help.text" msgid "Right to left" -msgstr "å³è‡³å·¦" +msgstr "从å³å‘å·¦" #: 01040400.xhp msgctxt "" @@ -6947,7 +6947,7 @@ "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=\".\">对一个从å³è‡³å·¦çš„脚本,检查以按正确的顺åºæ‰“å°æ‰‹å†Œé¡µã€‚</ahelp>" +msgstr "<ahelp hid=\".\">å¯ç”¨è¯¥é€‰é¡¹ï¼Œå¯å°†æ–‡å­—是从å³å‘左布局的页é¢ä»¥çœŸç¡®çš„顺åºæ‰“å°ã€‚</ahelp>" #: 01040400.xhp msgctxt "" @@ -6965,7 +6965,7 @@ "29\n" "help.text" msgid "<ahelp hid=\".\">Specifies whether comments in your document are printed.</ahelp>" -msgstr "<ahelp hid=\".\">指定是å¦æ‰“å°æ–‡æ¡£ä¸­çš„注释。</ahelp>" +msgstr "<ahelp hid=\".\">指定是å¦æ‰“å°æ–‡æ¡£ä¸­çš„批注。</ahelp>" #: 01040400.xhp msgctxt "" @@ -6999,7 +6999,7 @@ "41\n" "help.text" msgid "Paper tray from printer settings" -msgstr "套用打å°æœºè®¾ç½®çš„纸张æ¥æº" +msgstr "使用打å°æœºçš„纸张托盘设置" #: 01040400.xhp msgctxt "" @@ -7008,7 +7008,7 @@ "37\n" "help.text" msgid "<ahelp hid=\"modules/swriter/ui/printoptionspage/papertray\">For printers with multiple trays, the \"Paper tray from printer settings\" option specifies whether the paper tray used is specified by the system settings of the printer.</ahelp>" -msgstr "<ahelp hid=\"modules/swriter/ui/printoptionspage/papertray\">对于有多个纸盒得打å°æœºï¼Œâ€œä½¿ç”¨æ‰“å°æœºè®¾ç½®çº¸å¼ æ¥æºâ€é€‰é¡¹æŒ‡å®šä½¿ç”¨çš„纸盒是å¦ç”±æ‰“å°æœºçš„系统设置æ¥æŒ‡å®šã€‚</ahelp>" +msgstr "<ahelp hid=\"modules/swriter/ui/printoptionspage/papertray\">对于有多个纸张托盘的打å°æœºï¼Œè¯¥é€‰é¡¹æŒ‡å®šæ˜¯å¦ç”±æ‰“å°æœºçš„设置æ¥å†³å®šä½¿ç”¨å“ªä¸ªæ‰˜ç›˜ã€‚</ahelp>" #: 01040400.xhp msgctxt "" @@ -7026,7 +7026,7 @@ "39\n" "help.text" msgid "<ahelp hid=\"modules/swriter/ui/printoptionspage/fax\">If you have installed fax software on your computer and wish to fax directly from the text document, select the desired fax machine.</ahelp>" -msgstr "<ahelp hid=\"modules/swriter/ui/printoptionspage/fax\">如果已ç»åœ¨è®¡ç®—机上安装了传真软件,并希望直接从文本文档å‘é€ä¼ çœŸï¼Œè¯·é€‰æ‹©è¦ä½¿ç”¨çš„传真机。</ahelp>" +msgstr "<ahelp hid=\"modules/swriter/ui/printoptionspage/fax\">如若您的计算机上已ç»å®‰è£…了传真软件,并希望从该文本文档中直接传真,则å¯åœ¨è¿™é‡Œé€‰æ‹©å¸Œæœ›ä½¿ç”¨çš„传真机。</ahelp>" #: 01040500.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/zh-CN/helpcontent2/source/text/shared.po libreoffice-5.1.2~rc2/translations/source/zh-CN/helpcontent2/source/text/shared.po --- libreoffice-5.1.1~rc2/translations/source/zh-CN/helpcontent2/source/text/shared.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/zh-CN/helpcontent2/source/text/shared.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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-12 02:17+0000\n" -"Last-Translator: ç¨ç‘ é” <suokunlong@126.com>\n" +"PO-Revision-Date: 2016-03-04 08:36+0000\n" +"Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: zh_CN\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1447294662.000000\n" +"X-POOTLE-MTIME: 1457080581.000000\n" #: 3dsettings_toolbar.xhp msgctxt "" @@ -22,7 +22,7 @@ "tit\n" "help.text" msgid "3D-Settings" -msgstr "三维设置" +msgstr "3D设置" #: 3dsettings_toolbar.xhp msgctxt "" @@ -30,7 +30,7 @@ "par_idN1055A\n" "help.text" msgid "<variable id=\"3dtoolbar\"><link href=\"text/shared/3dsettings_toolbar.xhp\">3D-Settings</link></variable>" -msgstr "<variable id=\"3dtoolbar\"><link href=\"text/shared/3dsettings_toolbar.xhp\">三维设置</link></variable>" +msgstr "<variable id=\"3dtoolbar\"><link href=\"text/shared/3dsettings_toolbar.xhp\">3D设置</link></variable>" #: 3dsettings_toolbar.xhp msgctxt "" @@ -38,7 +38,7 @@ "par_idN1056A\n" "help.text" msgid "<ahelp hid=\".\">The 3D-Settings toolbar controls properties of selected 3D objects.</ahelp>" -msgstr "<ahelp hid=\".\">三维设置工具æ æŽ§åˆ¶äº†é€‰å®šä¸‰ç»´å¯¹è±¡çš„属性。</ahelp>" +msgstr "<ahelp hid=\".\">3D设置工具æ ç”¨äºŽæŽ§åˆ¶æ‰€é€‰æ‹©çš„3D对象的属性。</ahelp>" #: 3dsettings_toolbar.xhp msgctxt "" @@ -54,7 +54,7 @@ "par_idN10579\n" "help.text" msgid "<ahelp hid=\".\">Switches the 3D effects on and off for the selected objects.</ahelp>" -msgstr "<ahelp hid=\".\">切æ¢é€‰å®šå¯¹è±¡ä¸‰ç»´æ•ˆæžœçš„开和关。</ahelp>" +msgstr "<ahelp hid=\".\">打开或关闭选定对象的3D特效。</ahelp>" #: 3dsettings_toolbar.xhp msgctxt "" @@ -576,7 +576,7 @@ "tit\n" "help.text" msgid "Standard Bar" -msgstr "标准æ " +msgstr "标准工具æ " #: main0201.xhp msgctxt "" @@ -585,7 +585,7 @@ "1\n" "help.text" msgid "<link href=\"text/shared/main0201.xhp\" name=\"Standard Bar\">Standard Bar</link>" -msgstr "<link href=\"text/shared/main0201.xhp\" name=\"标准æ \">标准æ </link>" +msgstr "<link href=\"text/shared/main0201.xhp\" name=\"Standard Bar\">标准工具æ </link>" #: main0201.xhp msgctxt "" @@ -594,7 +594,7 @@ "2\n" "help.text" msgid "<ahelp hid=\"RID_ENVTOOLBOX\">The <emph>Standard</emph> bar is available in every $[officename] application.</ahelp>" -msgstr "<ahelp hid=\"RID_ENVTOOLBOX\"><emph>标准</emph>工具æ åœ¨æ¯ä¸ª $[officename] 程åºä¸­éƒ½å­˜åœ¨ã€‚</ahelp>" +msgstr "<ahelp hid=\"RID_ENVTOOLBOX\">在æ¯ä¸ª$[officename]程åºä¸­éƒ½æœ‰<emph>标准</emph>工具æ ã€‚</ahelp>" #: main0201.xhp msgctxt "" @@ -603,7 +603,7 @@ "4\n" "help.text" msgid "<link href=\"text/shared/01/01020000.xhp\" name=\"Open File\">Open File</link>" -msgstr "<link href=\"text/shared/01/01020000.xhp\" name=\"打开文件\">打开文件</link>" +msgstr "<link href=\"text/shared/01/01020000.xhp\" name=\"Open File\">打开文件</link>" #: main0201.xhp msgctxt "" @@ -619,7 +619,7 @@ "par_idN106A5\n" "help.text" msgid "<link href=\"text/shared/01/06010000.xhp\">Spellcheck</link>" -msgstr "<link href=\"text/shared/01/06010000.xhp\">检查</link>" +msgstr "<link href=\"text/shared/01/06010000.xhp\">拼写检查</link>" #: main0201.xhp msgctxt "" @@ -627,7 +627,7 @@ "par_idN106B5\n" "help.text" msgid "<ahelp hid=\".\">Checks the document or the current selection for spelling errors.</ahelp>" -msgstr "<ahelp hid=\".\">检查当å‰æ–‡æ¡£æˆ–选定文本中的拼写错误。</ahelp>" +msgstr "<ahelp hid=\".\">检查当å‰æ–‡æ¡£æˆ–者选定区域中的拼写错误。</ahelp>" #: main0201.xhp msgctxt "" @@ -643,7 +643,7 @@ "par_id4964445\n" "help.text" msgid "Creates a chart in the current document." -msgstr "在当å‰æ–‡æ¡£ä¸­åˆ›å»ºä¸€ä¸ªå›¾è¡¨ã€‚" +msgstr "在当å‰æ–‡æ¡£ä¸­åˆ›å»ºå›¾è¡¨ã€‚" #: main0201.xhp msgctxt "" @@ -659,7 +659,7 @@ "par_idN108B1\n" "help.text" msgid "Sorts the selection from the highest to the lowest value, or from the lowest to the highest value using the column that contains the cursor." -msgstr "借助光标所在的列按照从高到低或从低到高的顺åºæŽ’列选定的内容。" +msgstr "将光标所在的列中选定的内容按从大到å°æˆ–者从å°åˆ°å¤§æŽ’åºã€‚" #: main0201.xhp msgctxt "" @@ -675,7 +675,7 @@ "par_idN108EA\n" "help.text" msgid "Creates a chart in the current document." -msgstr "在当å‰æ–‡æ¡£ä¸­åˆ›å»ºä¸€ä¸ªå›¾è¡¨ã€‚" +msgstr "在当å‰æ–‡æ¡£ä¸­åˆ›å»ºå›¾è¡¨ã€‚" #: main0201.xhp msgctxt "" @@ -691,7 +691,7 @@ "par_idN10901\n" "help.text" msgid "<ahelp hid=\".\">Inserts a spreadsheet as an OLE object. Enter or paste data into the cells, then click outside the object to return to Impress.</ahelp>" -msgstr "<ahelp hid=\".\">将电å­è¡¨æ ¼ä½œä¸º OLE 对象æ’入。将数æ®è¾“入或粘贴到å•å…ƒæ ¼ï¼Œç„¶åŽåœ¨å¯¹è±¡å¤–å•å‡»ä»¥è¿”回 Impress。</ahelp>" +msgstr "<ahelp hid=\".\">将电å­è¡¨æ ¼ä½œä¸º OLE 对象æ’入。将数æ®è¾“入或粘贴到å•å…ƒæ ¼ä¸­ï¼Œç„¶åŽåœ¨å¯¹è±¡å¤–å•å‡»ä»¥è¿”回 Impress。</ahelp>" #: main0201.xhp msgctxt "" @@ -715,7 +715,7 @@ "par_idN10976\n" "help.text" msgid "Creates a chart in the current document." -msgstr "在当å‰æ–‡æ¡£ä¸­åˆ›å»ºä¸€ä¸ªå›¾è¡¨ã€‚" +msgstr "在当å‰æ–‡æ¡£ä¸­åˆ›å»ºå›¾è¡¨ã€‚" #: main0201.xhp msgctxt "" @@ -731,7 +731,7 @@ "par_idN107F5\n" "help.text" msgid "Zoom" -msgstr "显示比例" +msgstr "缩放" #: main0201.xhp msgctxt "" @@ -747,7 +747,7 @@ "par_idN1081E\n" "help.text" msgid "<ahelp hid=\".\">Enables extended help tips under the mouse pointer till the next click.</ahelp>" -msgstr "<ahelp hid=\".\">在鼠标指针下å¯ç”¨æ‰©å±•å¸®åŠ©æ示,直到下一次的å•å‡»ã€‚</ahelp>" +msgstr "<ahelp hid=\".\">在鼠标指针下开å¯æ‰©å±•å¸®åŠ©æ示,æ示窗å£å°†åœ¨ä¸‹æ¬¡å•å‡»æ—¶æ¶ˆå¤±ã€‚</ahelp>" #: main0201.xhp msgctxt "" @@ -779,7 +779,7 @@ "hd_id3145587\n" "help.text" msgid "<link href=\"text/shared/main0204.xhp\" name=\"Table Bar\">Table Bar</link>" -msgstr "<link href=\"text/shared/main0204.xhp\" name=\"Table Bar\">表格æ </link>" +msgstr "<link href=\"text/shared/main0204.xhp\" name=\"Table Bar\">表格工具æ </link>" #: main0204.xhp msgctxt "" @@ -787,7 +787,7 @@ "par_id3154252\n" "help.text" msgid "<ahelp hid=\".\">The <emph>Table</emph> Bar contains functions you need when working with tables. It appears when you move the cursor into a table.</ahelp>" -msgstr "<ahelp hid=\".\"><emph>表格</emph>工具æ åŒ…å«å¤„ç†è¡¨æ ¼æ‰€éœ€çš„å„项功能。将光标移到表格中,å¯ä»¥æ˜¾ç¤ºè¡¨æ ¼æ ã€‚</ahelp>" +msgstr "<ahelp hid=\".\"><emph>表格</emph>工具æ åŒ…å«å¤„ç†è¡¨æ ¼æ‰€éœ€çš„å„项功能。当光标定ä½åˆ°è¡¨æ ¼ä¸­æ—¶ï¼Œè¡¨æ ¼å·¥å…·æ å°†ä¼šæ˜¾ç¤ºã€‚</ahelp>" #: main0204.xhp msgctxt "" @@ -795,7 +795,7 @@ "hd_id319945759\n" "help.text" msgid "<link href=\"text/shared/01/05210100.xhp\" name=\"Area Style / Filling\">Area Style / Filling</link>" -msgstr "<link href=\"text/shared/01/05210100.xhp\" name=\"Area Style / Filling\">å¹³é¢æ ·å¼/å¡«å……</link>" +msgstr "<link href=\"text/shared/01/05210100.xhp\" name=\"Area Style / Filling\">区域样å¼/å¡«å……</link>" #: main0204.xhp msgctxt "" @@ -813,7 +813,7 @@ "9\n" "help.text" msgid "<link href=\"text/swriter/01/05110500.xhp\" name=\"Delete Row\">Delete Row</link>" -msgstr "<link href=\"text/swriter/01/05110500.xhp\" name=\"删除行\">删除行</link>" +msgstr "<link href=\"text/swriter/01/05110500.xhp\" name=\"Delete Row\">删除行</link>" #: main0204.xhp msgctxt "" @@ -822,7 +822,7 @@ "10\n" "help.text" msgid "<link href=\"text/swriter/01/05120500.xhp\" name=\"Delete Column\">Delete Column</link>" -msgstr "<link href=\"text/swriter/01/05120500.xhp\" name=\"删除列\">删除列</link>" +msgstr "<link href=\"text/swriter/01/05120500.xhp\" name=\"Delete Column\">删除列</link>" #: main0204.xhp msgctxt "" @@ -830,7 +830,7 @@ "hd_id3134447820\n" "help.text" msgid "<link href=\"text/simpress/01/taskpanel.xhp\" name=\"Table Design\">Table Design</link>" -msgstr "<link href=\"text/simpress/01/taskpanel.xhp\" name=\"Table Design\">表格设计</link>" +msgstr "<link href=\"text/simpress/01/taskpanel.xhp\" name=\"Table Design\">表设计</link>" #: main0204.xhp msgctxt "" @@ -838,7 +838,7 @@ "par_id16200812240344\n" "help.text" msgid "Opens the Table Design. Double-click a preview to insert a new table." -msgstr "打开“表格设计â€ã€‚åŒå‡»é¢„览æ’入一个新的表格。" +msgstr "打开“表设计â€ã€‚åŒå‡»æŸä¸ªé¢„览以æ’入新的表。" #: main0204.xhp msgctxt "" @@ -854,7 +854,7 @@ "tit\n" "help.text" msgid "Status Bar in $[officename] Basic Documents" -msgstr "$[officename] BASIC 文档的状æ€æ " +msgstr "$[officename] Basic 文档中的状æ€æ " #: main0208.xhp msgctxt "" @@ -863,7 +863,7 @@ "1\n" "help.text" msgid "<link href=\"text/shared/main0208.xhp\" name=\"Status Bar in $[officename] Basic Documents\">Status Bar in $[officename] Basic Documents</link>" -msgstr "<link href=\"text/shared/main0208.xhp\" name=\"在$[officename] BASIC文档中的状æ€æ \">在 $[officename] BASIC文档中的状æ€æ </link>" +msgstr "<link href=\"text/shared/main0208.xhp\" name=\"Status Bar in $[officename] Basic Documents\">$[officename] Basic 文档中的工具æ </link>" #: main0208.xhp msgctxt "" @@ -872,7 +872,7 @@ "2\n" "help.text" msgid "The <emph>Status</emph> Bar displays information about the current $[officename] Basic document." -msgstr "<emph>状æ€æ </emph> æ˜¾ç¤ºäº†æœ‰å…³å½“å‰ $[officename] Basic 文档的信æ¯ã€‚" +msgstr "<emph>状æ€æ </emph> æ˜¾ç¤ºäº†å½“å‰ $[officename] Basic 文档的信æ¯ã€‚" #: main0212.xhp msgctxt "" @@ -880,7 +880,7 @@ "tit\n" "help.text" msgid "Table Data Bar" -msgstr "表格数æ®æ " +msgstr "表格数æ®å·¥å…·æ " #: main0212.xhp msgctxt "" @@ -889,7 +889,7 @@ "1\n" "help.text" msgid "<link href=\"text/shared/main0212.xhp\" name=\"Table Data Bar\">Table Data Bar</link>" -msgstr "<link href=\"text/shared/main0212.xhp\" name=\"表格数æ®æ \">表格数æ®æ </link>" +msgstr "<link href=\"text/shared/main0212.xhp\" name=\"Table Data Bar\">表格数æ®å·¥å…·æ </link>" #: main0212.xhp msgctxt "" @@ -898,7 +898,7 @@ "10\n" "help.text" msgid "<ahelp hid=\".\">Use the Table Data bar to control the data view. </ahelp>" -msgstr "<ahelp hid=\".\">使用“表格数æ®â€æ æŽ§åˆ¶æ•°æ®è§†å›¾ã€‚</ahelp>" +msgstr "<ahelp hid=\".\">“表格数æ®â€å·¥å…·æ ç”¨æ¥æŽ§åˆ¶æ•°æ®è§†å›¾ã€‚</ahelp>" #: main0212.xhp msgctxt "" @@ -907,7 +907,7 @@ "12\n" "help.text" msgid "The filtered data view is active until you change or cancel the sorting or filtering criteria. If a filter is active, the <emph>Apply Filter</emph> icon on the <emph>Table Data</emph> bar is activated." -msgstr "筛选的数æ®è§†å›¾ä¼šä¿æŒæ´»åŠ¨ï¼Œç›´åˆ°æ‚¨ä¿®æ”¹æˆ–å–消排åºæˆ–筛选æ¡ä»¶ã€‚如果筛选为活动的,则<emph>表格数æ®</emph>æ ä¸­çš„<emph>应用筛选</emph>图标将显示为激活状æ€ã€‚" +msgstr "筛选的数æ®è§†å›¾ä¼šä¿æŒæ´»åŠ¨ï¼Œç›´åˆ°æ‚¨ä¿®æ”¹æˆ–å–消排åºæˆ–筛选æ¡ä»¶ã€‚如果筛选为活动的,则<emph>表格数æ®</emph>工具æ ä¸­çš„<emph>应用筛选</emph>图标将显示为激活状æ€ã€‚" #: main0212.xhp msgctxt "" @@ -2154,7 +2154,7 @@ "tit\n" "help.text" msgid "We Need Your Help" -msgstr "" +msgstr "我们需è¦æ‚¨çš„帮助" #: need_help.xhp msgctxt "" @@ -2162,4 +2162,4 @@ "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 "该帮助页é¢éœ€è¦è¿›ä¸€æ­¥å®Œå–„,以确ä¿å…¶å‡†ç¡®æ€§å’Œå®Œæ•´æ€§ã€‚请加入LibreOffice项目,并帮助我们编写é—æ¼çš„ä¿¡æ¯ã€‚" diff -Nru libreoffice-5.1.1~rc2/translations/source/zh-CN/helpcontent2/source/text/smath.po libreoffice-5.1.2~rc2/translations/source/zh-CN/helpcontent2/source/text/smath.po --- libreoffice-5.1.1~rc2/translations/source/zh-CN/helpcontent2/source/text/smath.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/zh-CN/helpcontent2/source/text/smath.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-11-12 01:57+0000\n" +"PO-Revision-Date: 2016-02-29 10:00+0000\n" "Last-Translator: ç¨ç‘ é” <suokunlong@126.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: zh_CN\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1447293436.000000\n" +"X-POOTLE-MTIME: 1456740053.000000\n" #: main0000.xhp msgctxt "" @@ -333,22 +333,20 @@ msgstr "工具" #: main0106.xhp -#, fuzzy msgctxt "" "main0106.xhp\n" "hd_id3149019\n" "help.text" msgid "<link href=\"text/smath/main0106.xhp\" name=\"Tools\">Tools</link>" -msgstr "<link href=\"text/smath/main0106.xhp\" name=\"工具\">工具</link>" +msgstr "<link href=\"text/smath/main0106.xhp\" name=\"Tools\">工具</link>" #: main0106.xhp -#, fuzzy msgctxt "" "main0106.xhp\n" "par_id3155959\n" "help.text" msgid "Use this menu to open and edit the symbol catalog, or import an external formula as a data file or via clipboard. The program interface can be adjusted to meet your requirements. You can also change the program options." -msgstr "使用此èœå•å¯ä»¥æ‰“开和编辑符å·åˆ†ç±»ï¼Œæˆ–者将一个外部公å¼ä½œä¸ºæ•°æ®æ–‡ä»¶å¯¼å…¥ã€‚您既å¯æ ¹æ®è‡ªå·±çš„需求调整程åºçš„ç•Œé¢ï¼Œä¹Ÿå¯ä»¥ä¿®æ”¹ç¨‹åºçš„选项。" +msgstr "使用此èœå•ï¼Œæ‚¨å¯ä»¥æ‰“开和编辑符å·åˆ†ç±»ï¼Œæˆ–者从外部公å¼æ–‡ä»¶å’Œå‰ªè´´æ¿ä¸­å¯¼å…¥å…¬å¼ã€‚通过在这里对界é¢è¿›è¡Œè°ƒæ•´æ¥æ»¡è¶³æ‚¨çš„个性化需求。您也å¯ä»¥åœ¨è¿™é‡Œæ›´æ”¹ç¨‹åºé€‰é¡¹ã€‚" #: main0106.xhp msgctxt "" @@ -364,10 +362,9 @@ "hd_id3150207\n" "help.text" msgid "<link href=\"text/smath/01/06020000.xhp#importclipboard\" name=\"Import MathML\">Import MathML from Clipboard</link>" -msgstr "" +msgstr "<link href=\"text/smath/01/06020000.xhp#importclipboard\" name=\"Import MathML\">从剪贴æ¿å¯¼å…¥MathML</link>" #: main0106.xhp -#, fuzzy msgctxt "" "main0106.xhp\n" "hd_id3145385\n" diff -Nru libreoffice-5.1.1~rc2/translations/source/zh-CN/helpcontent2/source/text/swriter/01.po libreoffice-5.1.2~rc2/translations/source/zh-CN/helpcontent2/source/text/swriter/01.po --- libreoffice-5.1.1~rc2/translations/source/zh-CN/helpcontent2/source/text/swriter/01.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/zh-CN/helpcontent2/source/text/swriter/01.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-09-01 17:07+0000\n" +"PO-Revision-Date: 2016-03-04 10:53+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: zh_CN\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1441127224.000000\n" +"X-POOTLE-MTIME: 1457088804.000000\n" #: 01120000.xhp msgctxt "" @@ -15540,7 +15540,7 @@ "tit\n" "help.text" msgid "Columns" -msgstr "列" +msgstr "分æ " #: 05040500.xhp msgctxt "" @@ -15549,7 +15549,7 @@ "1\n" "help.text" msgid "<link href=\"text/swriter/01/05040500.xhp\" name=\"Columns\">Columns</link>" -msgstr "<link href=\"text/swriter/01/05040500.xhp\" name=\"列\">列</link>" +msgstr "<link href=\"text/swriter/01/05040500.xhp\" name=\"Columns\">分æ </link>" #: 05040500.xhp msgctxt "" @@ -15558,7 +15558,7 @@ "2\n" "help.text" msgid "<variable id=\"spaltentext\"><ahelp hid=\"modules/swriter/ui/columnpage/ColumnPage\">Specifies the number of columns and the column layout for a page style, frame, or section.</ahelp></variable>" -msgstr "<variable id=\"spaltentext\"><ahelp hid=\"modules/swriter/ui/columnpage/ColumnPage\">指定用于页é¢æ ·å¼ã€æ¡†æž¶æˆ–节的列数和分æ ç‰ˆå¼ã€‚</ahelp></variable>" +msgstr "<variable id=\"spaltentext\"><ahelp hid=\"modules/swriter/ui/columnpage/ColumnPage\">指定页é¢æ ·å¼ã€æ¡†æž¶å’ŒåŒºåŸŸçš„æ æ•°ä»¥åŠæ çš„布局。</ahelp></variable>" #: 05040500.xhp msgctxt "" @@ -15576,7 +15576,7 @@ "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 "" @@ -15585,7 +15585,7 @@ "5\n" "help.text" msgid "Columns" -msgstr "列" +msgstr "æ æ•°" #: 05040500.xhp msgctxt "" @@ -15594,7 +15594,7 @@ "6\n" "help.text" msgid "<ahelp hid=\"modules/swriter/ui/columnpage/colsnf\">Enter the number of columns that you want in the page, frame, or section.</ahelp>" -msgstr "<ahelp hid=\"modules/swriter/ui/columnpage/colsnf\">输入è¦åœ¨é¡µé¢ã€æ¡†æž¶æˆ–区域中设置的列数。</ahelp>" +msgstr "<ahelp hid=\"modules/swriter/ui/columnpage/colsnf\">输入è¦åœ¨é¡µé¢ã€æ¡†æž¶æˆ–区域中设置分æ çš„æ æ•°ã€‚</ahelp>" #: 05040500.xhp msgctxt "" @@ -15621,7 +15621,7 @@ "52\n" "help.text" msgid "Evenly distribute contents to all columns" -msgstr "将内容å‡åŒ€åˆ†é…到所有列" +msgstr "将内容平å‡åˆ†é…到所有æ " #: 05040500.xhp msgctxt "" @@ -15630,7 +15630,7 @@ "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\">在多列区域中分é…文本。按照相åŒçš„高度将文字æµåˆ†é…到所有的列之中。自动调整区域的高度。</ahelp>å‡åŒ€åˆ†é…<link href=\"text/swriter/01/04020000.xhp\" name=\"multi-column sections\">多列区域</link>中的文本。" +msgstr "<ahelp hid=\".\" visibility=\"hidden\">在多æ åŒºåŸŸä¸­åˆ†é…文本。按照相åŒçš„高度将文字æµåˆ†é…到所有的æ ä¸­ã€‚区域的高度将会自动调整。</ahelp>å‡åŒ€åˆ†é…<link href=\"text/swriter/01/04020000.xhp\" name=\"multi-column sections\">多æ åŒºåŸŸ</link>中的文本。" #: 05040500.xhp msgctxt "" @@ -15648,7 +15648,7 @@ "20\n" "help.text" msgid "If the <emph>Automatic width</emph> check box is not selected, enter the width and spacing options for the columns." -msgstr "如果没有选中<emph>自动宽度</emph>å¤é€‰æ¡†ï¼Œåˆ™è¾“å…¥å„列的宽度和间è·é€‰é¡¹ã€‚" +msgstr "如果没有选中<emph>自动宽度</emph>å¤é€‰æ¡†ï¼Œåˆ™è¾“å…¥å„æ çš„宽度和间è·é€‰é¡¹ã€‚" #: 05040500.xhp msgctxt "" @@ -15657,7 +15657,7 @@ "21\n" "help.text" msgid "(Column number)" -msgstr "(列编å·ï¼‰" +msgstr "(æ æ¬¡ï¼‰" #: 05040500.xhp msgctxt "" @@ -15666,7 +15666,7 @@ "22\n" "help.text" msgid "Displays the column number, as well as width and distance to the adjacent columns." -msgstr "显示列编å·ä»¥åŠç›¸é‚»ä¸¤åˆ—之间的宽度和间è·" +msgstr "显示了æ çš„ç¼–å·ä»¥åŠç›¸é‚»ä¸¤æ ä¹‹é—´çš„宽度和间è·" #: 05040500.xhp msgctxt "" @@ -15684,7 +15684,7 @@ "24\n" "help.text" msgid "<ahelp hid=\"modules/swriter/ui/columnpage/back\">Moves the column display one column to the left.</ahelp>" -msgstr "<ahelp hid=\"modules/swriter/ui/columnpage/back\">将列的显示å‘左移动一列。</ahelp>" +msgstr "<ahelp hid=\"modules/swriter/ui/columnpage/back\">å°†æ çš„显示å‘左移动一æ ã€‚</ahelp>" #: 05040500.xhp msgctxt "" @@ -15719,7 +15719,7 @@ "26\n" "help.text" msgid "<ahelp hid=\"modules/swriter/ui/columnpage/next\">Moves the column display one column to the right.</ahelp>" -msgstr "<ahelp hid=\"modules/swriter/ui/columnpage/next\">将列的显示å‘å³ç§»åŠ¨ä¸€åˆ—。</ahelp>" +msgstr "<ahelp hid=\"modules/swriter/ui/columnpage/next\">å°†æ çš„显示å‘å³ç§»åŠ¨ä¸€æ ã€‚</ahelp>" #: 05040500.xhp msgctxt "" @@ -15754,7 +15754,7 @@ "43\n" "help.text" msgid "<ahelp hid=\"modules/swriter/ui/columnpage/width3mf\">Enter the width of the column.</ahelp>" -msgstr "<ahelp hid=\"modules/swriter/ui/columnpage/width3mf\">输入列的宽度。</ahelp>" +msgstr "<ahelp hid=\"modules/swriter/ui/columnpage/width3mf\">输入æ çš„宽度。</ahelp>" #: 05040500.xhp msgctxt "" @@ -15772,7 +15772,7 @@ "8\n" "help.text" msgid "<ahelp hid=\"modules/swriter/ui/columnpage/spacing2mf\">Enter the amount of space that you want to leave between the columns.</ahelp>" -msgstr "<ahelp hid=\"modules/swriter/ui/columnpage/spacing2mf\">输入列之间的间è·ã€‚</ahelp>" +msgstr "<ahelp hid=\"modules/swriter/ui/columnpage/spacing2mf\">输入æ ä¹‹é—´çš„é—´è·ã€‚</ahelp>" #: 05040500.xhp msgctxt "" @@ -15790,7 +15790,7 @@ "10\n" "help.text" msgid "<ahelp hid=\"modules/swriter/ui/columnpage/autowidth\">Creates columns of equal width.</ahelp>" -msgstr "<ahelp hid=\"modules/swriter/ui/columnpage/autowidth\">创建宽度相等的列。</ahelp>" +msgstr "<ahelp hid=\"modules/swriter/ui/columnpage/autowidth\">创建宽度相等的æ ã€‚</ahelp>" #: 05040500.xhp msgctxt "" @@ -15799,7 +15799,7 @@ "44\n" "help.text" msgid "The column layout preview only shows the columns and not the surrounding page." -msgstr "分æ ç‰ˆå¼é¢„览仅显示列而ä¸æ˜¾ç¤ºå‘¨å›´çš„页é¢ã€‚" +msgstr "分æ å¸ƒå±€é¢„览仅显示æ ï¼Œè€Œä¸æ˜¾ç¤ºå‘¨å›´çš„页é¢ã€‚" #: 05040500.xhp msgctxt "" @@ -15817,7 +15817,7 @@ "12\n" "help.text" msgid "This area is only available if your layout contains more than one column." -msgstr "此区域仅在版å¼åŒ…å«å¤šä¸ªåˆ—æ—¶å¯ç”¨ã€‚" +msgstr "此区域仅在您选择了两æ æˆ–多æ å¸ƒå±€æ—¶å¯ç”¨ã€‚" #: 05040500.xhp msgctxt "" @@ -15826,7 +15826,7 @@ "13\n" "help.text" msgid "Line" -msgstr "线æ¡" +msgstr "线型" #: 05040500.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/zh-CN/helpcontent2/source/text/swriter.po libreoffice-5.1.2~rc2/translations/source/zh-CN/helpcontent2/source/text/swriter.po --- libreoffice-5.1.1~rc2/translations/source/zh-CN/helpcontent2/source/text/swriter.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/zh-CN/helpcontent2/source/text/swriter.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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-12 02:15+0000\n" -"Last-Translator: ç¨ç‘ é” <suokunlong@126.com>\n" +"PO-Revision-Date: 2016-03-04 10:43+0000\n" +"Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: zh_CN\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1447294555.000000\n" +"X-POOTLE-MTIME: 1457088214.000000\n" #: main0000.xhp msgctxt "" @@ -49,7 +49,7 @@ "5\n" "help.text" msgid "Menus, Toolbars, and Keys" -msgstr "èœå•ã€å·¥å…·æ åŠæŒ‰é”®" +msgstr "èœå•ï¼Œå·¥å…·æ åŠå¿«æ·é”®" #: main0000.xhp msgctxt "" @@ -95,22 +95,20 @@ msgstr "文件" #: main0101.xhp -#, fuzzy msgctxt "" "main0101.xhp\n" "hd_id3147331\n" "help.text" msgid "<link href=\"text/swriter/main0101.xhp\" name=\"File\">File</link>" -msgstr "<link href=\"text/swriter/main0101.xhp\" name=\"文件\">文件</link>" +msgstr "<link href=\"text/swriter/main0101.xhp\" name=\"File\">文件</link>" #: main0101.xhp -#, fuzzy msgctxt "" "main0101.xhp\n" "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=\".\">这些命令适用于当å‰çš„文档,打开新文档或关闭应用程åºã€‚</ahelp>" +msgstr "<ahelp hid=\".\">这些命令适用于当å‰æ–‡æ¡£ã€æ‰“开新文档以åŠå…³é—­åº”用程åºã€‚</ahelp>" #: main0102.xhp msgctxt "" @@ -121,31 +119,28 @@ msgstr "编辑" #: main0102.xhp -#, fuzzy msgctxt "" "main0102.xhp\n" "hd_id3149610\n" "help.text" msgid "<link href=\"text/swriter/main0102.xhp\" name=\"Edit\">Edit</link>" -msgstr "<link href=\"text/swriter/main0102.xhp\" name=\"编辑\">编辑</link>" +msgstr "<link href=\"text/swriter/main0102.xhp\" name=\"Edit\">编辑</link>" #: main0102.xhp -#, fuzzy msgctxt "" "main0102.xhp\n" "par_id3149626\n" "help.text" msgid "<ahelp hid=\".\">This menu contains commands for editing the contents of the current document.</ahelp>" -msgstr "<ahelp hid=\".\">该èœå•åŒ…å«ç”¨äºŽç¼–辑当å‰æ–‡æ¡£å†…容的命令。</ahelp>" +msgstr "<ahelp hid=\".\">æ­¤èœå•åŒ…å«å¯ç”¨äºŽç¼–辑当å‰æ–‡æ¡£å†…容的命令。</ahelp>" #: main0102.xhp -#, fuzzy msgctxt "" "main0102.xhp\n" "hd_id3147619\n" "help.text" msgid "<link href=\"text/shared/02/07070000.xhp\" name=\"Select Text\">Select Text</link>" -msgstr "<link href=\"text/shared/02/07070000.xhp\" name=\"选择文字\">选择文字</link>" +msgstr "<link href=\"text/shared/02/07070000.xhp\" name=\"Select Text\">选择文本</link>" #: main0102.xhp msgctxt "" @@ -153,7 +148,7 @@ "hd_id102920150120456626\n" "help.text" msgid "Direct Cursor Mode" -msgstr "" +msgstr "直接定ä½å…‰æ ‡" #: main0102.xhp msgctxt "" @@ -161,7 +156,7 @@ "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 "该功能å…许用户通过点击页é¢ä¸Šä»»ä½•ä¸€è¡Œä¸­çš„起始ã€ä¸­é—´æˆ–结尾ä½ç½®æ¥å®šä½å…‰æ ‡ï¼Œç„¶åŽå¼€å§‹è¾“入。" #: main0102.xhp msgctxt "" @@ -169,7 +164,7 @@ "hd_id102920150120455108\n" "help.text" msgid "Go to Page" -msgstr "" +msgstr "转到页é¢" #: main0102.xhp msgctxt "" @@ -177,7 +172,7 @@ "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 "打开<emph>导航</emph>窗å£ï¼Œåœ¨<emph>页é¢</emph>微调按钮中您å¯ä»¥è¾“入页ç ã€‚" #: main0102.xhp msgctxt "" @@ -188,49 +183,44 @@ msgstr "<link href=\"text/swriter/01/02150000.xhp\" name=\"Footnotes\">脚注或尾注</link>" #: main0102.xhp -#, fuzzy msgctxt "" "main0102.xhp\n" "hd_id3147327\n" "help.text" msgid "<link href=\"text/swriter/01/02160000.xhp\" name=\"Index Entry\">Index Entry</link>" -msgstr "<link href=\"text/swriter/01/02160000.xhp\" name=\"索引æ¡ç›®\">索引æ¡ç›®</link>" +msgstr "<link href=\"text/swriter/01/02160000.xhp\" name=\"Index Entry\">索引项</link>" #: main0102.xhp -#, fuzzy msgctxt "" "main0102.xhp\n" "hd_id3147352\n" "help.text" msgid "<link href=\"text/swriter/01/02130000.xhp\" name=\"Bibliography Entry\">Bibliography Entry</link>" -msgstr "<link href=\"text/swriter/01/02130000.xhp\" name=\"文献目录æ¡ç›®\">文献目录æ¡ç›®</link>" +msgstr "<link href=\"text/swriter/01/02130000.xhp\" name=\"Bibliography Entry\">å‚考文献项目</link>" #: main0102.xhp -#, fuzzy msgctxt "" "main0102.xhp\n" "hd_id0914201501170124\n" "help.text" msgid "<link href=\"text/swriter/01/02140000.xhp\" name=\"Fields\">Fields</link>" -msgstr "<link href=\"text/swriter/01/02140000.xhp\" name=\"字段\">字段</link>" +msgstr "<link href=\"text/swriter/01/02140000.xhp\" name=\"Fields\">字段</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=\"链接\">链接</link>" +msgstr "<link href=\"text/shared/01/02180000.xhp\" name=\"Links\">链接</link>" #: main0102.xhp -#, fuzzy msgctxt "" "main0102.xhp\n" "hd_id3156150\n" "help.text" msgid "<link href=\"text/shared/01/02220000.xhp\" name=\"ImageMap\">ImageMap</link>" -msgstr "<link href=\"text/shared/01/02220000.xhp\" name=\"图åƒæ˜ å°„\">图åƒæ˜ å°„</link>" +msgstr "<link href=\"text/shared/01/02220000.xhp\" name=\"ImageMap\">图åƒæ˜ å°„</link>" #: main0102.xhp msgctxt "" @@ -249,22 +239,20 @@ msgstr "视图" #: main0103.xhp -#, fuzzy msgctxt "" "main0103.xhp\n" "hd_id3147233\n" "help.text" msgid "<link href=\"text/swriter/main0103.xhp\" name=\"View\">View</link>" -msgstr "<link href=\"text/swriter/main0103.xhp\" name=\"视图\">视图</link>" +msgstr "<link href=\"text/swriter/main0103.xhp\" name=\"View\">视图</link>" #: main0103.xhp -#, fuzzy msgctxt "" "main0103.xhp\n" "par_id3147249\n" "help.text" msgid "<ahelp hid=\".\">This menu contains commands for controlling the on-screen display of the document.</ahelp>" -msgstr "<ahelp hid=\".\">该èœå•åŒ…å«ç”¨äºŽæŽ§åˆ¶æ–‡æ¡£åœ¨å±å¹•ä¸Šçš„显示方å¼çš„命令。</ahelp>" +msgstr "<ahelp hid=\".\">æ­¤èœå•åŒ…å«ç”¨äºŽæŽ§åˆ¶æ–‡æ¡£åœ¨å±å¹•ä¸Šçš„显示方å¼çš„命令。</ahelp>" #: main0103.xhp msgctxt "" @@ -288,7 +276,7 @@ "hd_id102720150854015048\n" "help.text" msgid "Scrollbars" -msgstr "" +msgstr "滚动æ¡" #: main0103.xhp msgctxt "" @@ -296,7 +284,7 @@ "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 "显示或éšè—滚动æ¡ã€‚滚动æ¡ç”¨æ¥æ”¹å˜æ–‡æ¡£åœ¨å±å¹•ä¸Šå¯è§åŒºåŸŸçš„,通过左å³æˆ–上下移动滚动æ¡ï¼Œé¡µé¢ä¸Šè¢«é®æŒ¡çš„ä¸å¯è§åŒºåŸŸä¼šå±•çŽ°å‡ºæ¥ã€‚" #: main0103.xhp msgctxt "" @@ -304,7 +292,7 @@ "hd_id102720150854018740\n" "help.text" msgid "Hide Whitespace" -msgstr "" +msgstr "éšè—页é¢ä¹‹é—´çš„空白" #: main0103.xhp msgctxt "" @@ -312,16 +300,15 @@ "par_id102720150854012820\n" "help.text" msgid "View documents with the white space found at the end and beginning of pages hidden." -msgstr "" +msgstr "éšè—用于区分ä¸åŒé¡µé¢çš„上下之间的空白。" #: main0103.xhp -#, fuzzy msgctxt "" "main0103.xhp\n" "par_idN10613\n" "help.text" msgid "Table Boundaries" -msgstr "表格边框" +msgstr "表格虚框" #: main0103.xhp msgctxt "" @@ -329,7 +316,7 @@ "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 "对于没有设置边框的表格,显示虚的边框。该虚框仅在å±å¹•æ˜¾ç¤ºä¸­å¯è§ï¼Œç”¨æ¥åŒºåˆ†è¡¨æ ¼ä¸Žæ­£å¸¸æ–‡æœ¬ï¼Œæ‰“å°æ—¶ä¸ä¼šè¢«æ‰“å°å‡ºæ¥ã€‚" #: main0103.xhp msgctxt "" @@ -337,7 +324,7 @@ "hd_id102720150854011929\n" "help.text" msgid "Images and Charts" -msgstr "" +msgstr "图åƒå’Œå›¾è¡¨" #: main0103.xhp msgctxt "" @@ -345,7 +332,7 @@ "par_id102720150854013292\n" "help.text" msgid "Show or hide graphical objects like images and charts within a document." -msgstr "" +msgstr "显示或éšè—文档中的图形对象,比如图åƒå’Œå›¾è¡¨ã€‚" #: main0103.xhp msgctxt "" @@ -353,7 +340,7 @@ "hd_id102720150854019880\n" "help.text" msgid "Comments" -msgstr "" +msgstr "批注" #: main0103.xhp msgctxt "" @@ -361,7 +348,7 @@ "par_id102720150854014989\n" "help.text" msgid "Show or hide a document's annotations and replies to the written remarks." -msgstr "" +msgstr "显示或éšè—文档中的批注,以åŠå¯¹æ‰¹æ³¨çš„回å¤ã€‚" #: main0103.xhp msgctxt "" @@ -369,16 +356,15 @@ "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\">剪贴画库</link>" #: main0103.xhp -#, fuzzy msgctxt "" "main0103.xhp\n" "hd_id3147265\n" "help.text" msgid "<link href=\"text/shared/01/03010000.xhp\" name=\"Zoom\">Zoom</link>" -msgstr "<link href=\"text/shared/01/03010000.xhp\" name=\"缩放\">缩放</link>" +msgstr "<link href=\"text/shared/01/03010000.xhp\" name=\"Zoom\">缩放</link>" #: main0104.xhp msgctxt "" @@ -550,88 +536,78 @@ msgstr "æ ¼å¼" #: main0105.xhp -#, fuzzy msgctxt "" "main0105.xhp\n" "hd_id3147820\n" "help.text" msgid "<link href=\"text/swriter/main0105.xhp\" name=\"Format\">Format</link>" -msgstr "<link href=\"text/swriter/main0105.xhp\" name=\"æ ¼å¼\">æ ¼å¼</link>" +msgstr "<link href=\"text/swriter/main0105.xhp\" name=\"Format\">æ ¼å¼</link>" #: main0105.xhp -#, fuzzy msgctxt "" "main0105.xhp\n" "par_id3147218\n" "help.text" msgid "<ahelp hid=\".uno:FormatMenu\">Contains commands for formatting the layout and the contents of your document.</ahelp>" -msgstr "<ahelp hid=\".uno:FormatMenu\">包å«æ ¼å¼åŒ–文档版å¼å’Œå†…容的命令。</ahelp>" +msgstr "<ahelp hid=\".uno:FormatMenu\">包å«ç”¨äºŽæ ¼å¼åŒ–文档的布局以åŠå†…容的命令。</ahelp>" #: main0105.xhp -#, fuzzy msgctxt "" "main0105.xhp\n" "hd_id3147261\n" "help.text" msgid "<link href=\"text/shared/01/05020000.xhp\" name=\"Character\">Character</link>" -msgstr "<link href=\"text/shared/01/05020000.xhp\" name=\"字符\">字符</link>" +msgstr "<link href=\"text/shared/01/05020000.xhp\" name=\"Character\">字符</link>" #: main0105.xhp -#, fuzzy msgctxt "" "main0105.xhp\n" "hd_id3147286\n" "help.text" msgid "<link href=\"text/shared/01/05030000.xhp\" name=\"Paragraph\">Paragraph</link>" -msgstr "<link href=\"text/shared/01/05030000.xhp\" name=\"段è½\">段è½</link>" +msgstr "<link href=\"text/shared/01/05030000.xhp\" name=\"Paragraph\">段è½</link>" #: main0105.xhp -#, fuzzy msgctxt "" "main0105.xhp\n" "hd_id3145784\n" "help.text" msgid "<link href=\"text/shared/01/06050000.xhp\" name=\"Numbering/Bullets\">Bullets and Numbering</link>" -msgstr "<link href=\"text/shared/01/06050000.xhp\" name=\"ç¼–å·/项目符å·\">项目符å·å’Œç¼–å·</link>" +msgstr "<link href=\"text/shared/01/06050000.xhp\" name=\"Numbering/Bullets\">项目符å·å’Œç¼–å·</link>" #: main0105.xhp -#, fuzzy msgctxt "" "main0105.xhp\n" "hd_id3145692\n" "help.text" msgid "<link href=\"text/swriter/01/05040000.xhp\" name=\"Page\">Page</link>" -msgstr "<link href=\"text/swriter/01/05040000.xhp\" name=\"页é¢\">页é¢</link>" +msgstr "<link href=\"text/swriter/01/05040000.xhp\" name=\"Page\">页é¢</link>" #: main0105.xhp -#, fuzzy msgctxt "" "main0105.xhp\n" "hd_id3145743\n" "help.text" msgid "<link href=\"text/swriter/01/05040500.xhp\" name=\"Columns\">Columns</link>" -msgstr "<link href=\"text/swriter/01/05040500.xhp\" name=\"分æ \">分æ </link>" +msgstr "<link href=\"text/swriter/01/05040500.xhp\" name=\"Columns\">分æ </link>" #: main0105.xhp -#, fuzzy msgctxt "" "main0105.xhp\n" "hd_id3145717\n" "help.text" msgid "<link href=\"text/swriter/01/02170000.xhp\" name=\"Sections\">Sections</link>" -msgstr "<link href=\"text/swriter/01/02170000.xhp\" name=\"区域\">区域</link>" +msgstr "<link href=\"text/swriter/01/02170000.xhp\" name=\"Sections\">区域</link>" #: main0105.xhp -#, fuzzy msgctxt "" "main0105.xhp\n" "hd_id3149910\n" "help.text" msgid "<link href=\"text/swriter/01/04130000.xhp\" name=\"Frame\">Frame</link>" -msgstr "<link href=\"text/swriter/01/04130000.xhp\" name=\"框架\">框架</link>" +msgstr "<link href=\"text/swriter/01/04130000.xhp\" name=\"Frame\">框架</link>" #: main0105.xhp -#, fuzzy msgctxt "" "main0105.xhp\n" "hd_id3149935\n" @@ -648,70 +624,62 @@ msgstr "工具" #: main0106.xhp -#, fuzzy msgctxt "" "main0106.xhp\n" "hd_id3147241\n" "help.text" msgid "<link href=\"text/swriter/main0106.xhp\" name=\"Tools\">Tools</link>" -msgstr "<link href=\"text/swriter/main0106.xhp\" name=\"工具\">工具</link>" +msgstr "<link href=\"text/swriter/main0106.xhp\" name=\"Tools\">工具</link>" #: main0106.xhp -#, fuzzy msgctxt "" "main0106.xhp\n" "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=\".\">包å«æ‹¼å†™æ£€æŸ¥å·¥å…·ã€å¯ä»¥æ·»åŠ åˆ°æ–‡æ¡£ä¸­çš„对象图片库,以åŠç”¨äºŽé…ç½®èœå•å’Œè®¾ç½®ç¨‹åºé¦–选项的工具。</ahelp>" +msgstr "<ahelp hid=\".\">包å«æ‹¼å†™æ£€æŸ¥å·¥å…·ï¼Œå¯æ·»åŠ åˆ°æ–‡æ¡£ä¸­çš„对象图片库,以åŠç”¨äºŽé…ç½®èœå•å’Œè®¾ç½®ç¨‹åºé¦–选项的工具。</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=\"大纲编å·\">大纲编å·</link>" +msgstr "<link href=\"text/swriter/01/06060000.xhp\" name=\"Outline Numbering\">大纲编å·</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=\"行编å·\">行编å·</link>" +msgstr "<link href=\"text/swriter/01/06180000.xhp\" name=\"Line Numbering\">行编å·</link>" #: main0106.xhp -#, fuzzy msgctxt "" "main0106.xhp\n" "hd_id3145713\n" "help.text" msgid "<link href=\"text/swriter/01/06080000.xhp\" name=\"Footnotes\">Footnotes</link>" -msgstr "<link href=\"text/swriter/01/06080000.xhp\" name=\"脚注\">脚注</link>" +msgstr "<link href=\"text/swriter/01/06080000.xhp\" name=\"Footnotes\">脚注</link>" #: main0106.xhp -#, fuzzy msgctxt "" "main0106.xhp\n" "hd_id3147346\n" "help.text" msgid "<link href=\"text/swriter/01/06100000.xhp\" name=\"Sort\">Sort</link>" -msgstr "<link href=\"text/swriter/01/06100000.xhp\" name=\"排åº\">排åº</link>" +msgstr "<link href=\"text/swriter/01/06100000.xhp\" name=\"Sort\">排åº</link>" #: main0106.xhp -#, fuzzy msgctxt "" "main0106.xhp\n" "hd_id3149939\n" "help.text" msgid "<link href=\"text/shared/01/06040000.xhp\" name=\"AutoCorrect\">AutoCorrect Options</link>" -msgstr "<link href=\"text/shared/01/06040000.xhp\" name=\"自动更正选项\">自动更正选项</link>" +msgstr "<link href=\"text/shared/01/06040000.xhp\" name=\"AutoCorrect\">自动更正选项</link>" #: main0106.xhp -#, fuzzy msgctxt "" "main0106.xhp\n" "hd_id3147406\n" @@ -762,7 +730,6 @@ msgstr "<link href=\"text/swriter/main0110.xhp\">表格</link>" #: main0110.xhp -#, fuzzy msgctxt "" "main0110.xhp\n" "par_idN10563\n" @@ -1176,7 +1143,7 @@ "tit\n" "help.text" msgid "Styles" -msgstr "" +msgstr "æ ·å¼" #: main0115.xhp msgctxt "" @@ -1192,7 +1159,7 @@ "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=\".\">包å«ç”¨äºŽåœ¨æ–‡æœ¬æ–‡æ¡£ä¸­åˆ›å»ºã€ç¼–辑ã€è®¾ç½®ã€è½½å…¥å’Œç®¡ç†æ ·å¼çš„命令。</ahelp>" #: main0115.xhp msgctxt "" @@ -1200,7 +1167,7 @@ "hd_id0903201507192919\n" "help.text" msgid "Default" -msgstr "" +msgstr "默认" #: main0115.xhp msgctxt "" @@ -1208,7 +1175,7 @@ "par_id090320150719290\n" "help.text" msgid "Set the current paragraph or selected paragraphs to the default style." -msgstr "" +msgstr "将当期段è½æˆ–选定段è½çš„æ ·å¼è®¾ç½®ä¸ºé»˜è®¤æ ·å¼ã€‚" #: main0200.xhp msgctxt "" @@ -1682,27 +1649,25 @@ "tit\n" "help.text" msgid "Print Preview" -msgstr "" +msgstr "打å°é¢„览" #: 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=\"打å°é¢„览\">打å°é¢„览</link>" +msgstr "<link href=\"text/swriter/main0210.xhp\" name=\"Print Preview\">打å°é¢„览</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>打å°é¢„览</emph>æ ã€‚" +msgstr "在打å°é¢„览模å¼ä¸­æŸ¥çœ‹å½“å‰æ–‡æ¡£æ—¶ï¼Œä¼šæ˜¾ç¤º<emph>打å°é¢„览</emph>工具æ ã€‚" #: main0213.xhp msgctxt "" @@ -2074,7 +2039,7 @@ "5\n" "help.text" msgid "$[officename] Writer lets you create both basic documents, such as memos, <link href=\"text/shared/guide/fax.xhp\" name=\"faxes\">faxes</link>, letters , resumes and <link href=\"text/swriter/01/01150000.xhp\" name=\"merge documents\">merge documents</link>, as well as long and complex or multi-part documents, complete with bibliographies, reference tables and indexes." -msgstr "$[officename] Writer å¯ä»¥åˆ›å»ºå„ç§åŸºæœ¬æ–‡æ¡£ï¼Œå¦‚备忘录ã€<link href=\"text/shared/guide/fax.xhp\" name=\"传真\">传真</link>ã€ä¿¡å‡½ã€ç®€åŽ†å’Œ<link href=\"text/swriter/01/01150000.xhp\" name=\"åˆå¹¶æ–‡æ¡£\">åˆå¹¶æ–‡æ¡£</link>等,还å¯ä»¥åˆ©ç”¨æ–‡çŒ®ç›®å½•ã€è¡¨æ ¼å’Œç´¢å¼•åˆ›å»ºå¤æ‚的或有多个部分的文档。" +msgstr "$[officename] Writer å¯ä»¥åˆ›å»ºå„ç§åŸºæœ¬æ–‡æ¡£ï¼Œå¦‚备忘录ã€<link href=\"text/shared/guide/fax.xhp\" name=\"faxes\">传真</link>ã€ä¿¡å‡½ã€ç®€åŽ†å’Œ<link href=\"text/swriter/01/01150000.xhp\" name=\"merge documents\">åˆå¹¶æ–‡æ¡£</link>等,还å¯ä»¥åˆ©ç”¨æ–‡çŒ®ç›®å½•ã€è¡¨æ ¼å’Œç´¢å¼•åˆ›å»ºå¤æ‚文档以多章节文档。" #: main0503.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/zh-CN/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-5.1.2~rc2/translations/source/zh-CN/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-5.1.1~rc2/translations/source/zh-CN/officecfg/registry/data/org/openoffice/Office/UI.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/zh-CN/officecfg/registry/data/org/openoffice/Office/UI.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\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-22 09:46+0000\n" -"Last-Translator: ç¨ç‘ é” <suokunlong@126.com>\n" +"PO-Revision-Date: 2016-03-09 17:53+0000\n" +"Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: zh_CN\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1456134394.000000\n" +"X-POOTLE-MTIME: 1457546018.000000\n" #: BaseWindowState.xcu msgctxt "" @@ -16738,7 +16738,7 @@ "Label\n" "value.text" msgid "To Background" -msgstr "背景显示" +msgstr "作为背景" #: GenericCommands.xcu msgctxt "" @@ -25522,7 +25522,7 @@ "Label\n" "value.text" msgid "Hide Whitespac~e" -msgstr "éšè—空格 (~E)" +msgstr "éšè—页é¢ä¹‹é—´çš„空白 (~E)" #: WriterCommands.xcu msgctxt "" @@ -25567,7 +25567,7 @@ "Label\n" "value.text" msgid "Table Boundaries" -msgstr "显示虚框" +msgstr "表格虚框" #: WriterCommands.xcu msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/zh-CN/sw/source/ui/app.po libreoffice-5.1.2~rc2/translations/source/zh-CN/sw/source/ui/app.po --- libreoffice-5.1.1~rc2/translations/source/zh-CN/sw/source/ui/app.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/zh-CN/sw/source/ui/app.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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-18 01:51+0000\n" +"PO-Revision-Date: 2016-03-15 03:00+0000\n" "Last-Translator: ç¨ç‘ é” <suokunlong@126.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: zh_CN\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1447811510.000000\n" +"X-POOTLE-MTIME: 1458010818.000000\n" #: app.src msgctxt "" @@ -2360,7 +2360,7 @@ "FN_FORMAT_GRAFIC_DLG\n" "menuitem.text" msgid "Format ~Image..." -msgstr "图片样å¼(~I)..." +msgstr "图片格å¼... (~I)" #: mn.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/zh-CN/sw/source/ui/fldui.po libreoffice-5.1.2~rc2/translations/source/zh-CN/sw/source/ui/fldui.po --- libreoffice-5.1.1~rc2/translations/source/zh-CN/sw/source/ui/fldui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/zh-CN/sw/source/ui/fldui.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,18 +3,18 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2013-11-20 13:01+0100\n" -"PO-Revision-Date: 2014-04-09 05:05+0000\n" -"Last-Translator: ç¨ç‘ <suokunlong@gmail.com>\n" +"POT-Creation-Date: 2015-04-22 23:40+0200\n" +"PO-Revision-Date: 2016-03-09 18:36+0000\n" +"Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: zh_CN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Pootle 2.5.1\n" +"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1397019951.000000\n" +"X-POOTLE-MTIME: 1457548561.000000\n" #: fldui.src msgctxt "" @@ -430,7 +430,7 @@ "FLD_STAT_PAGE\n" "string.text" msgid "Pages" -msgstr "页" +msgstr "页数" #: fldui.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/zh-CN/sw/uiconfig/swriter/ui.po libreoffice-5.1.2~rc2/translations/source/zh-CN/sw/uiconfig/swriter/ui.po --- libreoffice-5.1.1~rc2/translations/source/zh-CN/sw/uiconfig/swriter/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/zh-CN/sw/uiconfig/swriter/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: LibO 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-18 08:36+0000\n" -"Last-Translator: ç¨ç‘ é” <suokunlong@126.com>\n" +"PO-Revision-Date: 2016-03-09 18:38+0000\n" +"Last-Translator: system user <>\n" "Language-Team: none\n" "Language: zh_CN\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1447835807.000000\n" +"X-POOTLE-MTIME: 1457548720.000000\n" #: abstractdialog.ui msgctxt "" @@ -1679,7 +1679,7 @@ "label\n" "string.text" msgid "Column:" -msgstr "分æ ï¼š" +msgstr "æ æ¬¡ï¼š" #: columnpage.ui msgctxt "" @@ -1805,7 +1805,7 @@ "label\n" "string.text" msgid "Columns:" -msgstr "列:" +msgstr "æ æ•°ï¼š" #: columnpage.ui msgctxt "" @@ -11021,7 +11021,7 @@ "label\n" "string.text" msgid "Text Flow" -msgstr "文字方å‘" +msgstr "æ¢è¡Œå’Œåˆ†é¡µ" #: paradialog.ui msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/zh-TW/helpcontent2/source/text/scalc/01.po libreoffice-5.1.2~rc2/translations/source/zh-TW/helpcontent2/source/text/scalc/01.po --- libreoffice-5.1.1~rc2/translations/source/zh-TW/helpcontent2/source/text/scalc/01.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/zh-TW/helpcontent2/source/text/scalc/01.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\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-06-27 06:25+0000\n" -"Last-Translator: wck317 <wck317@pchome.com.tw>\n" +"PO-Revision-Date: 2016-03-04 08:15+0000\n" +"Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: zh_TW\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1435386307.000000\n" +"X-POOTLE-MTIME: 1457079350.000000\n" #: 01120000.xhp msgctxt "" @@ -60133,13 +60133,14 @@ msgstr "等於" #: 12090103.xhp +#, fuzzy msgctxt "" "12090103.xhp\n" "par_id3154254\n" "15\n" "help.text" msgid "<" -msgstr "" +msgstr "<" #: 12090103.xhp msgctxt "" @@ -60151,13 +60152,14 @@ msgstr "å°æ–¼" #: 12090103.xhp +#, fuzzy msgctxt "" "12090103.xhp\n" "par_id3155335\n" "17\n" "help.text" msgid ">" -msgstr "" +msgstr ">" #: 12090103.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/zh-TW/helpcontent2/source/text/shared/01.po libreoffice-5.1.2~rc2/translations/source/zh-TW/helpcontent2/source/text/shared/01.po --- libreoffice-5.1.1~rc2/translations/source/zh-TW/helpcontent2/source/text/shared/01.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/zh-TW/helpcontent2/source/text/shared/01.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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:19+0000\n" +"PO-Revision-Date: 2016-03-04 09:46+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: zh_TW\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1452604780.000000\n" +"X-POOTLE-MTIME: 1457084811.000000\n" #: 01010000.xhp msgctxt "" @@ -7490,13 +7490,14 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 "" @@ -15825,13 +15831,14 @@ msgstr "<emph>涵義</emph>" #: 05020301.xhp +#, fuzzy msgctxt "" "05020301.xhp\n" "par_id3152801\n" "5\n" "help.text" msgid "#" -msgstr "" +msgstr "#" #: 05020301.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/zh-TW/helpcontent2/source/text/shared/02.po libreoffice-5.1.2~rc2/translations/source/zh-TW/helpcontent2/source/text/shared/02.po --- libreoffice-5.1.1~rc2/translations/source/zh-TW/helpcontent2/source/text/shared/02.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/zh-TW/helpcontent2/source/text/shared/02.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-11-10 19:33+0100\n" -"PO-Revision-Date: 2015-05-11 23:06+0000\n" +"PO-Revision-Date: 2016-03-04 10:00+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: zh_TW\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1431385586.000000\n" +"X-POOTLE-MTIME: 1457085648.000000\n" #: 01110000.xhp msgctxt "" @@ -13864,13 +13864,14 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 "" @@ -15808,31 +15813,34 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/zh-TW/helpcontent2/source/text/shared/autopi.po libreoffice-5.1.2~rc2/translations/source/zh-TW/helpcontent2/source/text/shared/autopi.po --- libreoffice-5.1.1~rc2/translations/source/zh-TW/helpcontent2/source/text/shared/autopi.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/zh-TW/helpcontent2/source/text/shared/autopi.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 23:07+0000\n" +"PO-Revision-Date: 2016-03-04 10:09+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: zh_TW\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1431385631.000000\n" +"X-POOTLE-MTIME: 1457086164.000000\n" #: 01000000.xhp msgctxt "" @@ -3422,13 +3422,14 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/zh-TW/helpcontent2/source/text/shared/explorer/database.po libreoffice-5.1.2~rc2/translations/source/zh-TW/helpcontent2/source/text/shared/explorer/database.po --- libreoffice-5.1.1~rc2/translations/source/zh-TW/helpcontent2/source/text/shared/explorer/database.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/zh-TW/helpcontent2/source/text/shared/explorer/database.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-06 16:41+0000\n" +"PO-Revision-Date: 2016-03-04 10:17+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: zh_TW\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1430930482.000000\n" +"X-POOTLE-MTIME: 1457086661.000000\n" #: 02000000.xhp msgctxt "" @@ -1760,13 +1760,14 @@ 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 @@ 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 @@ msgstr "å¦" #: 02010100.xhp +#, fuzzy msgctxt "" "02010100.xhp\n" "par_id3150997\n" "239\n" "help.text" msgid "." -msgstr "" +msgstr "." #: 02010100.xhp msgctxt "" @@ -6236,13 +6239,14 @@ 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 "" @@ -6272,13 +6276,14 @@ msgstr "<ahelp hid=\"dbaccess/ui/dbaseindexdialog/addall\" visibility=\"visible\">將所有自由標誌移至[表格標誌]清單。</ahelp>" #: 11030100.xhp +#, fuzzy msgctxt "" "11030100.xhp\n" "hd_id3149579\n" "8\n" "help.text" msgid ">" -msgstr "" +msgstr ">" #: 11030100.xhp msgctxt "" @@ -12426,12 +12431,13 @@ msgstr "<ahelp hid=\".\">附加新的控制項列。</ahelp>" #: querywizard04.xhp +#, fuzzy msgctxt "" "querywizard04.xhp\n" "par_idN105F1\n" "help.text" msgid "-" -msgstr "" +msgstr "-" #: querywizard04.xhp msgctxt "" @@ -14450,12 +14456,13 @@ msgstr "<ahelp hid=\".\">é¸å–欄ä½ä»¥ç·¨è¼¯æ¬„ä½è³‡è¨Šã€‚</ahelp>" #: tablewizard02.xhp +#, fuzzy msgctxt "" "tablewizard02.xhp\n" "par_idN10574\n" "help.text" msgid "-" -msgstr "" +msgstr "-" #: tablewizard02.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/zh-TW/helpcontent2/source/text/swriter/01.po libreoffice-5.1.2~rc2/translations/source/zh-TW/helpcontent2/source/text/swriter/01.po --- libreoffice-5.1.1~rc2/translations/source/zh-TW/helpcontent2/source/text/swriter/01.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/zh-TW/helpcontent2/source/text/swriter/01.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-06 01:38+0000\n" +"PO-Revision-Date: 2016-03-04 10:55+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: zh_TW\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1430876328.000000\n" +"X-POOTLE-MTIME: 1457088931.000000\n" #: 01120000.xhp msgctxt "" @@ -11037,13 +11037,14 @@ 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 "" @@ -27778,12 +27779,13 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/zh-TW/helpcontent2/source/text/swriter/02.po libreoffice-5.1.2~rc2/translations/source/zh-TW/helpcontent2/source/text/swriter/02.po --- libreoffice-5.1.1~rc2/translations/source/zh-TW/helpcontent2/source/text/swriter/02.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/zh-TW/helpcontent2/source/text/swriter/02.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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 18:22+0000\n" +"PO-Revision-Date: 2016-03-04 10:56+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: zh_TW\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1429813360.000000\n" +"X-POOTLE-MTIME: 1457088961.000000\n" #: 02110000.xhp msgctxt "" @@ -1673,13 +1673,14 @@ msgstr "減法" #: 14020000.xhp +#, fuzzy msgctxt "" "14020000.xhp\n" "par_id3150087\n" "12\n" "help.text" msgid "-" -msgstr "" +msgstr "-" #: 14020000.xhp msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/zh-TW/svx/uiconfig/ui.po libreoffice-5.1.2~rc2/translations/source/zh-TW/svx/uiconfig/ui.po --- libreoffice-5.1.1~rc2/translations/source/zh-TW/svx/uiconfig/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/zh-TW/svx/uiconfig/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,8 +4,8 @@ "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:58+0100\n" -"PO-Revision-Date: 2016-02-20 06:28+0000\n" -"Last-Translator: pesder <pesder@gmail.com>\n" +"PO-Revision-Date: 2016-02-28 15:02+0000\n" +"Last-Translator: Cheng-Chia Tseng <pswo10680@gmail.com>\n" "Language-Team: \n" "Language: zh_TW\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1455949701.000000\n" +"X-POOTLE-MTIME: 1456671755.000000\n" #: acceptrejectchangesdialog.ui msgctxt "" @@ -2403,7 +2403,8 @@ "The 'Status' column shows whether the document can be recovered." msgstr "" "按下「開始回復ã€å•Ÿå‹•ä¸‹åˆ—文件的回復進度。\n" -"\\m按下「放棄回復資料ã€ä¸å†è©¦åœ–回復這些文件。\n" +"\n" +"按下「放棄回復資料ã€ä¸å†è©¦åœ–回復這些文件。\n" "\n" "「狀態ã€æ¬„目會顯示文件是å¦å¯ä»¥å›žå¾©ã€‚" diff -Nru libreoffice-5.1.1~rc2/translations/source/zu/cui/uiconfig/ui.po libreoffice-5.1.2~rc2/translations/source/zu/cui/uiconfig/ui.po --- libreoffice-5.1.1~rc2/translations/source/zu/cui/uiconfig/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/zu/cui/uiconfig/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 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 15:13+0000\n" +"PO-Revision-Date: 2016-03-09 17:17+0000\n" "Last-Translator: system user <>\n" "Language-Team: none\n" "Language: zu\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1452266019.000000\n" +"X-POOTLE-MTIME: 1457543840.000000\n" #: aboutconfigdialog.ui msgctxt "" @@ -14067,31 +14067,34 @@ 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 @@ -17369,40 +17372,44 @@ msgstr "(lutho)" #: 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 "" @@ -17424,40 +17431,44 @@ msgstr "(lutho)" #: 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 -Nru libreoffice-5.1.1~rc2/translations/source/zu/dbaccess/uiconfig/ui.po libreoffice-5.1.2~rc2/translations/source/zu/dbaccess/uiconfig/ui.po --- libreoffice-5.1.1~rc2/translations/source/zu/dbaccess/uiconfig/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/zu/dbaccess/uiconfig/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,17 +4,17 @@ "Project-Id-Version: LibO 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 12:46+0000\n" -"Last-Translator: Anonymous Pootle User\n" +"PO-Revision-Date: 2016-03-09 17:22+0000\n" +"Last-Translator: system user <>\n" "Language-Team: none\n" "Language: zu\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: 1366029987.0\n" +"X-POOTLE-MTIME: 1457544156.000000\n" #: admindialog.ui msgctxt "" @@ -1928,22 +1928,24 @@ 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 @@ msgstr "" #: queryfilterdialog.ui +#, fuzzy msgctxt "" "queryfilterdialog.ui\n" "cond1\n" "4\n" "stringlist.text" msgid ">" -msgstr "" +msgstr ">" #: queryfilterdialog.ui msgctxt "" @@ -3017,58 +3020,64 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/zu/extensions/uiconfig/sabpilot/ui.po libreoffice-5.1.2~rc2/translations/source/zu/extensions/uiconfig/sabpilot/ui.po --- libreoffice-5.1.1~rc2/translations/source/zu/extensions/uiconfig/sabpilot/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/zu/extensions/uiconfig/sabpilot/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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 04:01+0000\n" +"PO-Revision-Date: 2016-03-09 17:29+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: zu\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1435291302.000000\n" +"X-POOTLE-MTIME: 1457544595.000000\n" #: contentfieldpage.ui msgctxt "" @@ -281,13 +281,14 @@ msgstr "" #: gridfieldsselectionpage.ui +#, fuzzy msgctxt "" "gridfieldsselectionpage.ui\n" "fieldright\n" "label\n" "string.text" msgid "->" -msgstr "" +msgstr "->" #: gridfieldsselectionpage.ui msgctxt "" @@ -299,13 +300,14 @@ msgstr "" #: gridfieldsselectionpage.ui +#, fuzzy msgctxt "" "gridfieldsselectionpage.ui\n" "fieldleft\n" "label\n" "string.text" msgid "<-" -msgstr "" +msgstr "<-" #: gridfieldsselectionpage.ui msgctxt "" @@ -380,22 +382,24 @@ 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 @@ msgstr "" #: tableselectionpage.ui +#, fuzzy msgctxt "" "tableselectionpage.ui\n" "search\n" "label\n" "string.text" msgid "_..." -msgstr "" +msgstr "_..." #: tableselectionpage.ui msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/zu/formula/source/core/resource.po libreoffice-5.1.2~rc2/translations/source/zu/formula/source/core/resource.po --- libreoffice-5.1.1~rc2/translations/source/zu/formula/source/core/resource.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/zu/formula/source/core/resource.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\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-29 16:07+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff -Nru libreoffice-5.1.1~rc2/translations/source/zu/librelogo/source/pythonpath.po libreoffice-5.1.2~rc2/translations/source/zu/librelogo/source/pythonpath.po --- libreoffice-5.1.1~rc2/translations/source/zu/librelogo/source/pythonpath.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/zu/librelogo/source/pythonpath.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,18 +3,18 @@ msgstr "" "Project-Id-Version: LibO 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 12:46+0000\n" -"Last-Translator: Anonymous Pootle User\n" +"POT-Creation-Date: 2015-04-22 23:40+0200\n" +"PO-Revision-Date: 2016-03-09 17:40+0000\n" +"Last-Translator: system user <>\n" "Language-Team: none\n" "Language: zu\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: 1366029993.0\n" +"X-POOTLE-MTIME: 1457545258.000000\n" #: LibreLogo_en_US.properties msgctxt "" @@ -799,20 +799,22 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/zu/officecfg/registry/data/org/openoffice/Office.po libreoffice-5.1.2~rc2/translations/source/zu/officecfg/registry/data/org/openoffice/Office.po --- libreoffice-5.1.1~rc2/translations/source/zu/officecfg/registry/data/org/openoffice/Office.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/zu/officecfg/registry/data/org/openoffice/Office.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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:21+0000\n" +"PO-Revision-Date: 2016-03-09 17:47+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: zu\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1438903283.000000\n" +"X-POOTLE-MTIME: 1457545640.000000\n" #: Addons.xcu msgctxt "" @@ -1438,13 +1438,14 @@ msgstr "" #: PresentationMinimizer.xcu +#, fuzzy msgctxt "" "PresentationMinimizer.xcu\n" "..PresentationMinimizer.Strings\n" "STR_FILESIZESEPARATOR\n" "value.text" msgid "." -msgstr "" +msgstr "." #: PresentationMinimizer.xcu msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/zu/reportdesign/uiconfig/dbreport/ui.po libreoffice-5.1.2~rc2/translations/source/zu/reportdesign/uiconfig/dbreport/ui.po --- libreoffice-5.1.1~rc2/translations/source/zu/reportdesign/uiconfig/dbreport/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/zu/reportdesign/uiconfig/dbreport/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 21:54+0000\n" +"PO-Revision-Date: 2016-03-09 18:02+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: zu\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1416434096.000000\n" +"X-POOTLE-MTIME: 1457546548.000000\n" #: backgrounddialog.ui msgctxt "" @@ -197,13 +197,14 @@ msgstr "" #: conditionwin.ui +#, fuzzy msgctxt "" "conditionwin.ui\n" "lhsButton\n" "label\n" "string.text" msgid "..." -msgstr "" +msgstr "..." #: conditionwin.ui msgctxt "" @@ -215,13 +216,14 @@ msgstr "" #: conditionwin.ui +#, fuzzy msgctxt "" "conditionwin.ui\n" "rhsButton\n" "label\n" "string.text" msgid "..." -msgstr "" +msgstr "..." #: conditionwin.ui msgctxt "" @@ -278,13 +280,14 @@ msgstr "" #: conditionwin.ui +#, fuzzy msgctxt "" "conditionwin.ui\n" "removeButton\n" "label\n" "string.text" msgid "-" -msgstr "" +msgstr "-" #: conditionwin.ui msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/zu/sc/uiconfig/scalc/ui.po libreoffice-5.1.2~rc2/translations/source/zu/sc/uiconfig/scalc/ui.po --- libreoffice-5.1.1~rc2/translations/source/zu/sc/uiconfig/scalc/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/zu/sc/uiconfig/scalc/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 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 04:12+0000\n" +"PO-Revision-Date: 2016-03-09 18:16+0000\n" "Last-Translator: system user <>\n" "Language-Team: none\n" "Language: zu\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1435291953.000000\n" +"X-POOTLE-MTIME: 1457547374.000000\n" #: advancedfilterdialog.ui msgctxt "" @@ -6390,22 +6390,24 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/zu/sd/uiconfig/simpress/ui.po libreoffice-5.1.2~rc2/translations/source/zu/sd/uiconfig/simpress/ui.po --- libreoffice-5.1.1~rc2/translations/source/zu/sd/uiconfig/simpress/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/zu/sd/uiconfig/simpress/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 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 04:13+0000\n" +"PO-Revision-Date: 2016-03-09 18:24+0000\n" "Last-Translator: system user <>\n" "Language-Team: none\n" "Language: zu\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1435292034.000000\n" +"X-POOTLE-MTIME: 1457547861.000000\n" #: assistentdialog.ui msgctxt "" @@ -998,22 +998,24 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/zu/starmath/source.po libreoffice-5.1.2~rc2/translations/source/zu/starmath/source.po --- libreoffice-5.1.1~rc2/translations/source/zu/starmath/source.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/zu/starmath/source.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\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-12 13:27+0200\n" +"POT-Creation-Date: 2016-03-29 16:07+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff -Nru libreoffice-5.1.1~rc2/translations/source/zu/sw/source/ui/dbui.po libreoffice-5.1.2~rc2/translations/source/zu/sw/source/ui/dbui.po --- libreoffice-5.1.1~rc2/translations/source/zu/sw/source/ui/dbui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/zu/sw/source/ui/dbui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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:18+0000\n" +"PO-Revision-Date: 2016-03-09 18:32+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: zu\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1431591506.000000\n" +"X-POOTLE-MTIME: 1457548330.000000\n" #: dbui.src msgctxt "" @@ -488,31 +488,34 @@ 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 -Nru libreoffice-5.1.1~rc2/translations/source/zu/sw/source/ui/index.po libreoffice-5.1.2~rc2/translations/source/zu/sw/source/ui/index.po --- libreoffice-5.1.1~rc2/translations/source/zu/sw/source/ui/index.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/zu/sw/source/ui/index.po 2016-03-29 15:38:48.000000000 +0000 @@ -3,17 +3,18 @@ msgstr "" "Project-Id-Version: PACKAGE 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 15:21+0200\n" -"Last-Translator: Anonymous Pootle User\n" +"POT-Creation-Date: 2015-04-22 23:40+0200\n" +"PO-Revision-Date: 2016-03-09 18:32+0000\n" +"Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: zu\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: 1457548350.000000\n" #: cnttab.src #, fuzzy @@ -57,20 +58,22 @@ 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 @@ msgstr "" #: cnttab.src +#, fuzzy msgctxt "" "cnttab.src\n" "STR_TOKEN_PAGE_NUMS\n" "string.text" msgid "#" -msgstr "" +msgstr "#" #: cnttab.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/zu/sw/uiconfig/swriter/ui.po libreoffice-5.1.2~rc2/translations/source/zu/sw/uiconfig/swriter/ui.po --- libreoffice-5.1.1~rc2/translations/source/zu/sw/uiconfig/swriter/ui.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/zu/sw/uiconfig/swriter/ui.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 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:21+0000\n" +"PO-Revision-Date: 2016-03-09 18:34+0000\n" "Last-Translator: system user <>\n" "Language-Team: none\n" "Language: zu\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1438903295.000000\n" +"X-POOTLE-MTIME: 1457548490.000000\n" #: abstractdialog.ui msgctxt "" @@ -2311,13 +2311,14 @@ msgstr "Guqula itafula libe umbhalo" #: converttexttable.ui +#, fuzzy msgctxt "" "converttexttable.ui\n" "othered\n" "text\n" "string.text" msgid "," -msgstr "" +msgstr "," #: converttexttable.ui msgctxt "" @@ -2503,13 +2504,14 @@ msgstr "" #: createaddresslist.ui +#, fuzzy msgctxt "" "createaddresslist.ui\n" "PREV\n" "label\n" "string.text" msgid "<" -msgstr "" +msgstr "<" #: createaddresslist.ui msgctxt "" @@ -2521,13 +2523,14 @@ msgstr "" #: createaddresslist.ui +#, fuzzy msgctxt "" "createaddresslist.ui\n" "NEXT\n" "label\n" "string.text" msgid ">" -msgstr "" +msgstr ">" #: createaddresslist.ui msgctxt "" @@ -4434,13 +4437,14 @@ msgstr "" #: fldvarpage.ui +#, fuzzy msgctxt "" "fldvarpage.ui\n" "separator\n" "text\n" "string.text" msgid "." -msgstr "" +msgstr "." #: fldvarpage.ui msgctxt "" @@ -5422,22 +5426,24 @@ 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 @@ msgstr "Isimo" #: insertcaption.ui +#, fuzzy msgctxt "" "insertcaption.ui\n" "separator_edit\n" "text\n" "string.text" msgid ": " -msgstr "" +msgstr ": " #: insertcaption.ui msgctxt "" @@ -6365,13 +6372,14 @@ 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 @@ msgstr "" #: mmpreparepage.ui +#, fuzzy msgctxt "" "mmpreparepage.ui\n" "prev\n" "label\n" "string.text" msgid "<" -msgstr "" +msgstr "<" #: mmpreparepage.ui msgctxt "" @@ -8725,13 +8734,14 @@ msgstr "" #: mmpreparepage.ui +#, fuzzy msgctxt "" "mmpreparepage.ui\n" "next\n" "label\n" "string.text" msgid ">" -msgstr "" +msgstr ">" #: mmpreparepage.ui #, fuzzy @@ -9579,13 +9589,14 @@ msgstr "Isimo" #: optcaptionpage.ui +#, fuzzy msgctxt "" "optcaptionpage.ui\n" "numseparator\n" "text\n" "string.text" msgid ". " -msgstr "" +msgstr ". " #: optcaptionpage.ui #, fuzzy @@ -15713,40 +15724,44 @@ msgstr "[Lutho]" #: 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 -Nru libreoffice-5.1.1~rc2/translations/source/zu/vcl/source/src.po libreoffice-5.1.2~rc2/translations/source/zu/vcl/source/src.po --- libreoffice-5.1.1~rc2/translations/source/zu/vcl/source/src.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/zu/vcl/source/src.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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 21:25+0000\n" +"PO-Revision-Date: 2016-03-09 18:35+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: zu\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1449869106.000000\n" +"X-POOTLE-MTIME: 1457548529.000000\n" #: app.src msgctxt "" @@ -1189,12 +1189,13 @@ msgstr "" #: print.src +#, fuzzy msgctxt "" "print.src\n" "SV_PRINT_INVALID_TXT\n" "string.text" msgid "<ignore>" -msgstr "" +msgstr "<ignore>" #: print.src msgctxt "" @@ -1471,13 +1472,14 @@ msgstr "" #: units.src +#, fuzzy msgctxt "" "units.src\n" "SV_FUNIT_STRINGS\n" "°\n" "itemlist.text" msgid "°" -msgstr "" +msgstr "°" #: units.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/translations/source/zu/wizards/source/formwizard.po libreoffice-5.1.2~rc2/translations/source/zu/wizards/source/formwizard.po --- libreoffice-5.1.1~rc2/translations/source/zu/wizards/source/formwizard.po 2016-02-25 02:01:23.000000000 +0000 +++ libreoffice-5.1.2~rc2/translations/source/zu/wizards/source/formwizard.po 2016-03-29 15:38:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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-04-25 20:57+0000\n" +"PO-Revision-Date: 2016-03-09 18:36+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: zu\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1429995453.000000\n" +"X-POOTLE-MTIME: 1457548595.000000\n" #: dbwizres.src msgctxt "" @@ -1538,12 +1538,13 @@ msgstr "<FIELDNAME> (<SORTMODE>)" #: dbwizres.src +#, fuzzy msgctxt "" "dbwizres.src\n" "RID_DB_QUERY_WIZARD_START + 94\n" "string.text" msgid "<FIELDNAME> <LOGICOPERATOR> <VALUE>" -msgstr "" +msgstr "<FIELDNAME> <LOGICOPERATOR> <VALUE>" #: dbwizres.src msgctxt "" @@ -1554,12 +1555,13 @@ msgstr "<CALCULATEDFUNCTION> <FIELDNAME>" #: dbwizres.src +#, fuzzy msgctxt "" "dbwizres.src\n" "RID_DB_QUERY_WIZARD_START + 96\n" "string.text" msgid "<FIELDNAME> <LOGICOPERATOR> <VALUE>" -msgstr "" +msgstr "<FIELDNAME> <LOGICOPERATOR> <VALUE>" #: dbwizres.src msgctxt "" diff -Nru libreoffice-5.1.1~rc2/ucb/source/ucp/webdav-neon/webdavcontent.cxx libreoffice-5.1.2~rc2/ucb/source/ucp/webdav-neon/webdavcontent.cxx --- libreoffice-5.1.1~rc2/ucb/source/ucp/webdav-neon/webdavcontent.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/ucb/source/ucp/webdav-neon/webdavcontent.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -865,7 +865,6 @@ switch ( eType ) { case UNKNOWN: - case NOT_FOUND: case DAV: throw lang::IllegalArgumentException(); @@ -954,7 +953,6 @@ switch ( eType ) { case UNKNOWN: - case NOT_FOUND: case DAV: throw beans::UnknownPropertyException(); @@ -1444,7 +1442,7 @@ NeonUri aUri( xResAccess->getURL() ); aUnescapedTitle = aUri.GetPathBaseNameUnescaped(); - if ( eType == UNKNOWN || eType == NOT_FOUND ) + if ( eType == UNKNOWN ) { xProps.reset( new ContentProperties( aUnescapedTitle ) ); } @@ -1475,20 +1473,10 @@ "IsFolder", uno::makeAny( false ), true ); - if ( eType == NOT_FOUND ) - { - xProps->addProperty( - "IsDocument", - uno::makeAny( false ), - true ); - } - else - { - xProps->addProperty( + xProps->addProperty( "IsDocument", uno::makeAny( true ), true ); - } } } else @@ -2912,7 +2900,7 @@ } } osl::MutexGuard g(m_aMutex); - if ( m_eResourceTypeForLocks == UNKNOWN || m_eResourceTypeForLocks == NOT_FOUND ) + if (m_eResourceTypeForLocks == UNKNOWN) { m_eResourceTypeForLocks = eResourceTypeForLocks; } @@ -3450,7 +3438,7 @@ { { osl::MutexGuard g(m_aMutex); - if ( m_eResourceType != UNKNOWN && m_eResourceType != NOT_FOUND ) { + if (m_eResourceType != UNKNOWN) { return m_eResourceType; } } @@ -3499,10 +3487,6 @@ { rResAccess->resetUri(); - if ( e.getStatus() == SC_NOT_FOUND ) - { - eResourceType = NOT_FOUND; - } if ( e.getStatus() == SC_METHOD_NOT_ALLOWED ) { // Status SC_METHOD_NOT_ALLOWED is a safe indicator that the @@ -3526,7 +3510,7 @@ } osl::MutexGuard g(m_aMutex); - if ( m_eResourceType == UNKNOWN || m_eResourceType == NOT_FOUND ) { + if (m_eResourceType == UNKNOWN) { m_eResourceType = eResourceType; } else { SAL_WARN_IF( diff -Nru libreoffice-5.1.1~rc2/unusedcode.easy libreoffice-5.1.2~rc2/unusedcode.easy --- libreoffice-5.1.1~rc2/unusedcode.easy 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/unusedcode.easy 2016-03-29 15:41:04.000000000 +0000 @@ -93,7 +93,6 @@ sd::LeftImpressPaneShell::RegisterInterface(SfxModule*) std::_Rb_tree<rtl::OUString, std::pair<rtl::OUString const, (anonymous namespace)::TemplateId>, std::_Select1st<std::pair<rtl::OUString const, (anonymous namespace)::TemplateId> >, std::less<rtl::OUString>, std::allocator<std::pair<rtl::OUString const, (anonymous namespace)::TemplateId> > >::_M_move_data(std::_Rb_tree<rtl::OUString, std::pair<rtl::OUString const, (anonymous namespace)::TemplateId>, std::_Select1st<std::pair<rtl::OUString const, (anonymous namespace)::TemplateId> >, std::less<rtl::OUString>, std::allocator<std::pair<rtl::OUString const, (anonymous namespace)::TemplateId> > >&, std::integral_constant<bool, true>) std::__cxx1998::vector<rtl::Reference<oox::xls::(anonymous namespace)::WorkerThread>, std::allocator<rtl::Reference<oox::xls::(anonymous namespace)::WorkerThread> > >::reserve(unsigned long) -vcl::IsWindowSystemAvailable() vcl::MapChar(vcl::_TrueTypeFont*, unsigned short, bool) vcl::Region::IsInside(Rectangle const&) const vcl::RenderSettings::PushAndApply(OutputDevice&) diff -Nru libreoffice-5.1.1~rc2/vbahelper/inc/pch/precompiled_msforms.hxx libreoffice-5.1.2~rc2/vbahelper/inc/pch/precompiled_msforms.hxx --- libreoffice-5.1.1~rc2/vbahelper/inc/pch/precompiled_msforms.hxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/vbahelper/inc/pch/precompiled_msforms.hxx 2016-03-29 15:41:04.000000000 +0000 @@ -117,7 +117,7 @@ #include <vcl/gfxlink.hxx> #include <vcl/gradient.hxx> #include <vcl/graph.h> -#include <vcl/graph.hxx> +#include <vcl/graphic.hxx> #include <vcl/hatch.hxx> #include <vcl/image.hxx> #include <vcl/impdel.hxx> diff -Nru libreoffice-5.1.1~rc2/vcl/CppunitTest_vcl_blocklistparser_test.mk libreoffice-5.1.2~rc2/vcl/CppunitTest_vcl_blocklistparser_test.mk --- libreoffice-5.1.1~rc2/vcl/CppunitTest_vcl_blocklistparser_test.mk 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-5.1.2~rc2/vcl/CppunitTest_vcl_blocklistparser_test.mk 2016-03-29 15:41:04.000000000 +0000 @@ -0,0 +1,49 @@ +# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*- +# +# 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/. +# + +$(eval $(call gb_CppunitTest_CppunitTest,vcl_blocklistparser_test)) + +$(eval $(call gb_CppunitTest_set_include,vcl_blocklistparser_test,\ + $$(INCLUDE) \ + -I$(SRCDIR)/vcl/inc \ +)) + +$(eval $(call gb_CppunitTest_add_exception_objects,vcl_blocklistparser_test, \ + vcl/qa/cppunit/blocklistparsertest \ +)) + +$(eval $(call gb_CppunitTest_use_externals,vcl_blocklistparser_test,\ + boost_headers \ +)) + +$(eval $(call gb_CppunitTest_use_libraries,vcl_blocklistparser_test, \ + sal \ + test \ + unotest \ + vcl \ + $(gb_UWINAPI) \ +)) + +$(eval $(call gb_CppunitTest_use_api,vcl_blocklistparser_test,\ + udkapi \ + offapi \ +)) + +$(eval $(call gb_CppunitTest_use_ure,vcl_blocklistparser_test)) +$(eval $(call gb_CppunitTest_use_vcl,vcl_blocklistparser_test)) + +$(eval $(call gb_CppunitTest_use_components,vcl_blocklistparser_test,\ + configmgr/source/configmgr \ + i18npool/util/i18npool \ + ucb/source/core/ucb1 \ +)) + +$(eval $(call gb_CppunitTest_use_configuration,vcl_blocklistparser_test)) + +# vim: set noet sw=4 ts=4: diff -Nru libreoffice-5.1.1~rc2/vcl/CppunitTest_vcl_mapmode.mk libreoffice-5.1.2~rc2/vcl/CppunitTest_vcl_mapmode.mk --- libreoffice-5.1.1~rc2/vcl/CppunitTest_vcl_mapmode.mk 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-5.1.2~rc2/vcl/CppunitTest_vcl_mapmode.mk 2016-03-29 15:41:04.000000000 +0000 @@ -0,0 +1,53 @@ +# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*- +# +# 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/. +# + +$(eval $(call gb_CppunitTest_CppunitTest,vcl_mapmode)) + +$(eval $(call gb_CppunitTest_set_include,vcl_mapmode,\ + $$(INCLUDE) \ + -I$(SRCDIR)/vcl/inc \ +)) + +$(eval $(call gb_CppunitTest_add_exception_objects,vcl_mapmode, \ + vcl/qa/cppunit/mapmode \ +)) + +$(eval $(call gb_CppunitTest_use_externals,vcl_mapmode,boost_headers)) + +$(eval $(call gb_CppunitTest_use_libraries,vcl_mapmode, \ + comphelper \ + cppu \ + cppuhelper \ + sal \ + svt \ + test \ + tl \ + tk \ + unotest \ + vcl \ + $(gb_UWINAPI) \ +)) + +$(eval $(call gb_CppunitTest_use_api,vcl_mapmode,\ + udkapi \ + offapi \ +)) + +$(eval $(call gb_CppunitTest_use_ure,vcl_mapmode)) +$(eval $(call gb_CppunitTest_use_vcl,vcl_mapmode)) + +$(eval $(call gb_CppunitTest_use_components,vcl_mapmode,\ + configmgr/source/configmgr \ + i18npool/util/i18npool \ + ucb/source/core/ucb1 \ +)) + +$(eval $(call gb_CppunitTest_use_configuration,vcl_mapmode)) + +# vim: set noet sw=4 ts=4: diff -Nru libreoffice-5.1.1~rc2/vcl/inc/opengl/program.hxx libreoffice-5.1.2~rc2/vcl/inc/opengl/program.hxx --- libreoffice-5.1.1~rc2/vcl/inc/opengl/program.hxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/vcl/inc/opengl/program.hxx 2016-03-29 15:41:04.000000000 +0000 @@ -37,6 +37,7 @@ GLuint mnTexCoordAttrib; GLuint mnAlphaCoordAttrib; GLuint mnMaskCoordAttrib; + GLuint mnNormalAttrib; TextureList maTextures; bool mbBlending; @@ -59,6 +60,7 @@ void SetTextureCoord( const GLvoid* pData ); void SetAlphaCoord( const GLvoid* pData ); void SetMaskCoord(const GLvoid* pData); + void SetExtrusionVectors(const GLvoid* pData); void SetUniform1f( const OString& rName, GLfloat v1 ); void SetUniform2f( const OString& rName, GLfloat v1, GLfloat v2 ); @@ -80,7 +82,7 @@ bool DrawTexture( const OpenGLTexture& rTexture ); protected: - void SetVertexAttrib( GLuint& rAttrib, const OString& rName, const GLvoid* pData ); + void SetVertexAttrib( GLuint& rAttrib, const OString& rName, const GLvoid* pData, GLint nSize = 2 ); GLuint GetUniformLocation( const OString& rName ); }; diff -Nru libreoffice-5.1.1~rc2/vcl/inc/opengl/salbmp.hxx libreoffice-5.1.2~rc2/vcl/inc/opengl/salbmp.hxx --- libreoffice-5.1.1~rc2/vcl/inc/opengl/salbmp.hxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/vcl/inc/opengl/salbmp.hxx 2016-03-29 15:41:04.000000000 +0000 @@ -87,6 +87,7 @@ bool Create( const OpenGLTexture& rTex, long nX, long nY, long nWidth, long nHeight ); OpenGLTexture& GetTexture() const; static rtl::Reference<OpenGLContext> GetBitmapContext(); + const BitmapPalette& GetBitmapPalette() const { return maPalette; } private: diff -Nru libreoffice-5.1.1~rc2/vcl/inc/opengl/win/blocklist_parser.hxx libreoffice-5.1.2~rc2/vcl/inc/opengl/win/blocklist_parser.hxx --- libreoffice-5.1.1~rc2/vcl/inc/opengl/win/blocklist_parser.hxx 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-5.1.2~rc2/vcl/inc/opengl/win/blocklist_parser.hxx 2016-03-29 15:41:04.000000000 +0000 @@ -0,0 +1,43 @@ +/* -*- 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/. + */ + +#include <vcl/dllapi.h> +#include <xmlreader/xmlreader.hxx> +#include <vector> +#include "opengl/win/WinDeviceInfo.hxx" + +class InvalidFileException +{ +}; + +class VCL_DLLPUBLIC WinBlocklistParser +{ +public: + WinBlocklistParser(const OUString& rURL, std::vector<wgl::DriverInfo>& rDriverList); + void parse(); + +private: + void handleEntry(wgl::DriverInfo& rDriver, xmlreader::XmlReader& rReader); + void handleDevices(wgl::DriverInfo& rDriver, xmlreader::XmlReader& rReader); + void handleList(xmlreader::XmlReader& rReader); + void handleContent(xmlreader::XmlReader& rReader); + + enum class BlockType + { + WHITELIST, + BLACKLIST, + UNKNOWN + }; + + BlockType meBlockType; + std::vector<wgl::DriverInfo>& mrDriverList; + OUString maURL; +}; + +/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff -Nru libreoffice-5.1.1~rc2/vcl/inc/opengl/win/WinDeviceInfo.hxx libreoffice-5.1.2~rc2/vcl/inc/opengl/win/WinDeviceInfo.hxx --- libreoffice-5.1.1~rc2/vcl/inc/opengl/win/WinDeviceInfo.hxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/vcl/inc/opengl/win/WinDeviceInfo.hxx 2016-03-29 15:41:04.000000000 +0000 @@ -10,7 +10,10 @@ #ifndef INCLUDED_VCL_OPENGL_WIN_WINDEVICEINFO_HXX #define INCLUDED_VCL_OPENGL_WIN_WINDEVICEINFO_HXX +#include <vcl/dllapi.h> + #include "opengl/DeviceInfo.hxx" + #include <rtl/ustring.hxx> #include <vector> #include <cstdint> @@ -60,14 +63,14 @@ bool ParseDriverVersion(const OUString& rString, uint64_t& rVersion); -struct DriverInfo +struct VCL_DLLPUBLIC DriverInfo { DriverInfo(OperatingSystem os, const OUString& vendor, VersionComparisonOp op, uint64_t driverVersion, bool bWhiteListed = false, const char *suggestedVersion = nullptr); DriverInfo(); - ~DriverInfo(); + virtual ~DriverInfo(); OperatingSystem meOperatingSystem; uint32_t mnOperatingSystemVersion; @@ -96,7 +99,7 @@ #define GFX_DRIVER_VERSION(a,b,c,d) \ ((uint64_t(a)<<48) | (uint64_t(b)<<32) | (uint64_t(c)<<16) | uint64_t(d)) -inline uint64_t V(uint32_t a, uint32_t b, uint32_t c, uint32_t d) +inline VCL_DLLPUBLIC uint64_t V(uint32_t a, uint32_t b, uint32_t c, uint32_t d) { // We make sure every driver number is padded by 0s, this will allow us the // easiest 'compare as if decimals' approach. See ParseDriverVersion for a @@ -115,7 +118,7 @@ } -class WinOpenGLDeviceInfo : public OpenGLDeviceInfo +class VCL_DLLPUBLIC WinOpenGLDeviceInfo : public OpenGLDeviceInfo { private: OUString maDriverVersion; @@ -204,6 +207,9 @@ return mnWindowsVersion; } + static bool FindBlocklistedDeviceInList(std::vector<wgl::DriverInfo>& aDeviceInfos, + OUString sDriverVersion, OUString sAdapterVendorID, + OUString sAdapterDeviceID, uint32_t nWindowsVersion); }; #endif diff -Nru libreoffice-5.1.1~rc2/vcl/inc/openglgdiimpl.hxx libreoffice-5.1.2~rc2/vcl/inc/openglgdiimpl.hxx --- libreoffice-5.1.1~rc2/vcl/inc/openglgdiimpl.hxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/vcl/inc/openglgdiimpl.hxx 2016-03-29 15:41:04.000000000 +0000 @@ -113,6 +113,7 @@ bool UseSolid( SalColor nColor ); bool UseSolidAA( SalColor nColor, double fTransparency ); bool UseSolidAA( SalColor nColor ); + bool UseLine(SalColor nColor, double fTransparency, GLfloat fLineWidth, bool bUseAA); bool UseInvert50(); bool UseInvert(SalInvert nFlags); @@ -127,6 +128,9 @@ void DrawRect( long nX, long nY, long nWidth, long nHeight ); void DrawRect( const Rectangle& rRect ); void DrawPolygon( sal_uInt32 nPoints, const SalPoint* pPtAry ); + void DrawLineSegment(float x1, float y1, float x2, float y2); + void DrawLineCap(float x1, float y1, float x2, float y2, css::drawing::LineCap eLineCap, float fLineWidth); + void DrawPolyLine( const basegfx::B2DPolygon& rPolygon, float fLineWidth, basegfx::B2DLineJoin eLineJoin, css::drawing::LineCap eLineCap); void DrawPolyPolygon( const basegfx::B2DPolyPolygon& rPolyPolygon, bool blockAA = false ); void DrawRegionBand( const RegionBand& rRegion ); void DrawTextureRect( OpenGLTexture& rTexture, const SalTwoRect& rPosAry, bool bInverted = false ); diff -Nru libreoffice-5.1.1~rc2/vcl/inc/pch/precompiled_vcl.hxx libreoffice-5.1.2~rc2/vcl/inc/pch/precompiled_vcl.hxx --- libreoffice-5.1.1~rc2/vcl/inc/pch/precompiled_vcl.hxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/vcl/inc/pch/precompiled_vcl.hxx 2016-03-29 15:41:04.000000000 +0000 @@ -151,7 +151,7 @@ #include <vcl/font.hxx> #include <vcl/gdimtf.hxx> #include <vcl/gradient.hxx> -#include <vcl/graph.hxx> +#include <vcl/graphic.hxx> #include <vcl/graphicfilter.hxx> #include <vcl/help.hxx> #include <vcl/i18nhelp.hxx> diff -Nru libreoffice-5.1.1~rc2/vcl/inc/svdata.hxx libreoffice-5.1.2~rc2/vcl/inc/svdata.hxx --- libreoffice-5.1.1~rc2/vcl/inc/svdata.hxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/vcl/inc/svdata.hxx 2016-03-29 15:41:04.000000000 +0000 @@ -126,6 +126,7 @@ OUString* mpAppName; // Application name OUString* mpAppFileName; // Abs. Application FileName OUString* mpDisplayName; // Application Display Name + OUString* mpToolkitName; // Toolkit Name Help* mpHelp; // Application help PopupMenu* mpActivePopupMenu; // Actives Popup-Menu (in Execute) ImplIdleMgr* mpIdleMgr; // Idle-Manager diff -Nru libreoffice-5.1.1~rc2/vcl/inc/unx/gtk/gtkframe.hxx libreoffice-5.1.2~rc2/vcl/inc/unx/gtk/gtkframe.hxx --- libreoffice-5.1.1~rc2/vcl/inc/unx/gtk/gtkframe.hxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/vcl/inc/unx/gtk/gtkframe.hxx 2016-03-29 15:41:04.000000000 +0000 @@ -33,7 +33,7 @@ #include <salframe.hxx> #include <vcl/sysdata.hxx> -#include <unx/x11windowprovider.hxx> +#include <unx/nativewindowhandleprovider.hxx> #include <unx/saltype.h> #include <unx/screensaverinhibitor.hxx> @@ -49,6 +49,8 @@ #include <list> #include <vector> +#include <config_vclplug.h> + class GtkSalGraphics; class GtkSalDisplay; @@ -66,7 +68,8 @@ typedef void GDBusConnection; #endif -class GtkSalFrame : public SalFrame, public X11WindowProvider +class GtkSalFrame : public SalFrame + , public NativeWindowHandleProvider { struct IMHandler { @@ -221,7 +224,7 @@ SalMenu* m_pSalMenu; -#if defined(ENABLE_DBUS) && defined(ENABLE_GIO) +#if defined(ENABLE_DBUS) && ENABLE_GIO public: void EnsureDbusMenuSynced(); private: @@ -518,7 +521,8 @@ static GtkSalFrame *getFromWindow( GtkWindow *pWindow ); - virtual Window GetX11Window() override; + sal_uIntPtr GetNativeWindowHandle(GtkWidget *pWidget); + virtual sal_uIntPtr GetNativeWindowHandle() override; static void KeyCodeToGdkKey(const vcl::KeyCode& rKeyCode, guint* pGdkKeyCode, GdkModifierType *pGdkModifiers); diff -Nru libreoffice-5.1.1~rc2/vcl/inc/unx/gtk/gtkgdi.hxx libreoffice-5.1.2~rc2/vcl/inc/unx/gtk/gtkgdi.hxx --- libreoffice-5.1.1~rc2/vcl/inc/unx/gtk/gtkgdi.hxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/vcl/inc/unx/gtk/gtkgdi.hxx 2016-03-29 15:41:04.000000000 +0000 @@ -33,6 +33,44 @@ #include <headless/svpgdi.hxx> #include "textrender.hxx" +enum class GtkControlPart +{ + Button, + LinkButton, + CheckButton, + CheckButtonCheck, + RadioButton, + RadioButtonRadio, + Entry, + SpinButton, + SpinButtonUpButton, + SpinButtonDownButton, + ScrollbarVertical, + ScrollbarHorizontal, + ScrollbarTrough, + ScrollbarSlider, + ScrollbarButton, + ProgressBar, + ProgressBarTrough, + ProgressBarProgress, + MenuBar, + MenuItem, + MenuItemArrow, + Menu, + CheckMenuItem, + CheckMenuItemCheck, + RadioMenuItem, + RadioMenuItemRadio, + SeparatorMenuItem, + SeparatorMenuItemSeparator, + Notebook, + NotebookHeader, + NotebookStack, + NotebookHeaderTabs, + NotebookHeaderTabsTab, + FrameBorder, +}; + class GtkSalGraphics : public SvpSalGraphics { GtkSalFrame *mpFrame; @@ -63,30 +101,51 @@ private: GtkWidget *mpWindow; static GtkStyleContext *mpButtonStyle; + static GtkStyleContext *mpLinkButtonStyle; static GtkStyleContext *mpEntryStyle; static GtkStyleContext *mpTextViewStyle; static GtkStyleContext *mpVScrollbarStyle; + static GtkStyleContext *mpVScrollbarTroughStyle; + static GtkStyleContext *mpVScrollbarSliderStyle; + static GtkStyleContext *mpVScrollbarButtonStyle; static GtkStyleContext *mpHScrollbarStyle; + static GtkStyleContext *mpHScrollbarTroughStyle; + static GtkStyleContext *mpHScrollbarSliderStyle; + static GtkStyleContext *mpHScrollbarButtonStyle; static GtkStyleContext *mpToolbarStyle; static GtkStyleContext *mpToolButtonStyle; static GtkStyleContext *mpToolbarSeperatorStyle; static GtkStyleContext *mpCheckButtonStyle; + static GtkStyleContext *mpRadioButtonStyle; static GtkStyleContext *mpMenuBarStyle; static GtkStyleContext *mpMenuBarItemStyle; static GtkStyleContext *mpMenuStyle; static GtkStyleContext *mpSpinStyle; + static GtkStyleContext *mpSpinUpStyle; + static GtkStyleContext *mpSpinDownStyle; + static GtkStyleContext *mpMenuItemStyle; + static GtkStyleContext *mpMenuItemArrowStyle; static GtkStyleContext *mpCheckMenuItemStyle; + static GtkStyleContext *mpRadioMenuItemStyle; + static GtkStyleContext *mpSeparatorMenuItemStyle; static GtkStyleContext *mpComboboxStyle; static GtkStyleContext *mpComboboxButtonStyle; static GtkStyleContext *mpListboxStyle; static GtkStyleContext *mpListboxButtonStyle; - static GtkStyleContext *mpNoteBookStyle; static GtkStyleContext *mpFrameInStyle; static GtkStyleContext *mpFrameOutStyle; static GtkStyleContext *mpFixedHoriLineStyle; static GtkStyleContext *mpFixedVertLineStyle; static GtkStyleContext *mpTreeHeaderButtonStyle; static GtkStyleContext *mpProgressBarStyle; + static GtkStyleContext *mpProgressBarTroughStyle; + static GtkStyleContext *mpProgressBarProgressStyle; + static GtkStyleContext *mpNotebookStyle; + static GtkStyleContext *mpNotebookStackStyle; + static GtkStyleContext *mpNotebookHeaderStyle; + static GtkStyleContext *mpNotebookHeaderTabsStyle; + static GtkStyleContext *mpNotebookHeaderTabsTabStyle; + static GtkStyleContext *mpNotebookHeaderTabsTabLabelStyle; static Rectangle NWGetScrollButtonRect( ControlPart nPart, Rectangle aAreaRect ); static Rectangle NWGetSpinButtonRect( ControlPart nPart, Rectangle aAreaRect); @@ -116,10 +175,16 @@ ControlType nType, ControlPart nPart, const ImplControlValue& aValue); - static void PaintCheckOrRadio(GtkStyleContext *context, - cairo_t *cr, - const Rectangle& rControlRectangle, - ControlType nType); + static void PaintCheckOrRadio(cairo_t *cr, GtkStyleContext *context, + const Rectangle& rControlRectangle, + bool bIsCheck, bool bInMenu); + + static void PaintCheck(cairo_t *cr, GtkStyleContext *context, + const Rectangle& rControlRectangle, bool bInMenu); + + static void PaintRadio(cairo_t *cr, GtkStyleContext *context, + const Rectangle& rControlRectangle, bool bInMenu); + static bool style_loaded; }; diff -Nru libreoffice-5.1.1~rc2/vcl/inc/unx/gtk/gtksalmenu.hxx libreoffice-5.1.2~rc2/vcl/inc/unx/gtk/gtksalmenu.hxx --- libreoffice-5.1.1~rc2/vcl/inc/unx/gtk/gtksalmenu.hxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/vcl/inc/unx/gtk/gtksalmenu.hxx 2016-03-29 15:41:04.000000000 +0000 @@ -10,15 +10,17 @@ #ifndef INCLUDED_VCL_INC_UNX_GTK_GTKSALMENU_HXX #define INCLUDED_VCL_INC_UNX_GTK_GTKSALMENU_HXX +#include <config_vclplug.h> + #include <vector> -#ifdef ENABLE_GIO +#if ENABLE_GIO #include <gio/gio.h> #endif #include <unx/salmenu.h> #include <unx/gtk/gtkframe.hxx> -#if defined(ENABLE_DBUS) && defined(ENABLE_GIO) && \ +#if defined(ENABLE_DBUS) && ENABLE_GIO && \ (GLIB_MAJOR_VERSION > 2 || GLIB_MINOR_VERSION >= 36) # define ENABLE_GMENU_INTEGRATION # include <unx/gtk/glomenu.h> @@ -49,7 +51,7 @@ GMenuModel* mpMenuModel; GActionGroup* mpActionGroup; - GtkSalMenu* GetMenuForItemCommand( gchar* aCommand, gboolean bGetSubmenu ); + GtkSalMenu* GetMenuForItemCommand( gchar* aCommand, int& rDupsToSkip, gboolean bGetSubmenu ); void ImplUpdate( gboolean bRecurse ); void ActivateAllSubmenus(MenuBar* pMenuBar); diff -Nru libreoffice-5.1.1~rc2/vcl/inc/unx/nativewindowhandleprovider.hxx libreoffice-5.1.2~rc2/vcl/inc/unx/nativewindowhandleprovider.hxx --- libreoffice-5.1.1~rc2/vcl/inc/unx/nativewindowhandleprovider.hxx 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-5.1.2~rc2/vcl/inc/unx/nativewindowhandleprovider.hxx 2016-03-29 15:41:04.000000000 +0000 @@ -0,0 +1,25 @@ +/* -*- 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/. + */ + +#ifndef INCLUDED_VCL_UNX_NATIVEWINDOWHANDLEPROVIDER +#define INCLUDED_VCL_UNX_NATIVEWINDOWHANDLEPROVIDER + +#include <vcl/dllapi.h> + +class VCL_PLUGIN_PUBLIC NativeWindowHandleProvider +{ +public: + virtual ~NativeWindowHandleProvider(); + + virtual sal_uIntPtr GetNativeWindowHandle() = 0; +}; + +#endif + +/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff -Nru libreoffice-5.1.1~rc2/vcl/inc/unx/salframe.h libreoffice-5.1.2~rc2/vcl/inc/unx/salframe.h --- libreoffice-5.1.1~rc2/vcl/inc/unx/salframe.h 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/vcl/inc/unx/salframe.h 2016-03-29 15:41:04.000000000 +0000 @@ -27,7 +27,7 @@ #include <unx/saltype.h> #include <unx/saldisp.hxx> #include <unx/screensaverinhibitor.hxx> -#include <unx/x11windowprovider.hxx> +#include <unx/nativewindowhandleprovider.hxx> #include <salframe.hxx> #include <salwtype.hxx> #include <salinst.hxx> @@ -50,7 +50,7 @@ #define SHOWSTATE_NORMAL 1 #define SHOWSTATE_HIDDEN 2 -class VCLPLUG_GEN_PUBLIC X11SalFrame : public SalFrame, public X11WindowProvider +class VCLPLUG_GEN_PUBLIC X11SalFrame : public SalFrame, public NativeWindowHandleProvider { friend class vcl_sal::WMAdaptor; friend class vcl_sal::NetWMAdaptor; @@ -261,7 +261,7 @@ // done setting up the clipregion virtual void EndSetClipRegion() override; - virtual Window GetX11Window() override; + virtual sal_uIntPtr GetNativeWindowHandle() override; /// @internal void setPendingSizeEvent(); diff -Nru libreoffice-5.1.1~rc2/vcl/inc/unx/salinst.h libreoffice-5.1.2~rc2/vcl/inc/unx/salinst.h --- libreoffice-5.1.1~rc2/vcl/inc/unx/salinst.h 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/vcl/inc/unx/salinst.h 2016-03-29 15:41:04.000000000 +0000 @@ -45,7 +45,7 @@ SalXLib *mpXLib; public: - X11SalInstance( SalYieldMutex* pMutex ) : SalGenericInstance( pMutex ), mpXLib(NULL) {} + explicit X11SalInstance(SalYieldMutex* pMutex); virtual ~X11SalInstance(); virtual SalFrame* CreateChildFrame( SystemParentData* pParent, SalFrameStyleFlags nStyle ) override; diff -Nru libreoffice-5.1.1~rc2/vcl/inc/unx/x11/x11display.hxx libreoffice-5.1.2~rc2/vcl/inc/unx/x11/x11display.hxx --- libreoffice-5.1.1~rc2/vcl/inc/unx/x11/x11display.hxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/vcl/inc/unx/x11/x11display.hxx 1970-01-01 00:00:00.000000000 +0000 @@ -1,25 +0,0 @@ -/* -*- 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/. - */ - -#ifndef INCLUDED_VCL_INC_UNX_X11_X11DISPLAY_HXX -#define INCLUDED_VCL_INC_UNX_X11_X11DISPLAY_HXX - -#include <prex.h> -#include <X11/Xproto.h> -#include <postx.h> - -#include <rtl/string.hxx> - -#include <vcl/dllapi.h> - -VCL_DLLPUBLIC Display* OpenX11Display(OString& rDisplay); - -#endif // INCLUDED_VCL_INC_UNX_X11_X11DISPLAY_HXX - -/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff -Nru libreoffice-5.1.1~rc2/vcl/inc/unx/x11windowprovider.hxx libreoffice-5.1.2~rc2/vcl/inc/unx/x11windowprovider.hxx --- libreoffice-5.1.1~rc2/vcl/inc/unx/x11windowprovider.hxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/vcl/inc/unx/x11windowprovider.hxx 1970-01-01 00:00:00.000000000 +0000 @@ -1,28 +0,0 @@ -/* -*- 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/. - */ - -#ifndef INCLUDED_VCL_UNX_X11WINDOWPROVIDER -#define INCLUDED_VCL_UNX_X11WINDOWPROVIDER - -#include <prex.h> -#include <postx.h> - -#include <vcl/dllapi.h> - -class VCL_PLUGIN_PUBLIC X11WindowProvider -{ -public: - virtual ~X11WindowProvider(); - - virtual Window GetX11Window() = 0; -}; - -#endif - -/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff -Nru libreoffice-5.1.1~rc2/vcl/Library_vcl.mk libreoffice-5.1.2~rc2/vcl/Library_vcl.mk --- libreoffice-5.1.1~rc2/vcl/Library_vcl.mk 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/vcl/Library_vcl.mk 2016-03-29 15:41:04.000000000 +0000 @@ -275,7 +275,7 @@ vcl/source/gdi/gdimetafiletools \ vcl/source/gdi/gfxlink \ vcl/source/gdi/gradient \ - vcl/source/gdi/graph \ + vcl/source/gdi/graphic \ vcl/source/gdi/graphictools \ vcl/source/gdi/hatch \ vcl/source/gdi/impanmvw \ @@ -581,7 +581,7 @@ vcl/unx/generic/plugadapt/salplug \ vcl/unx/generic/printer/jobdata \ vcl/unx/generic/printer/ppdparser \ - vcl/unx/generic/gdi/x11windowprovider \ + vcl/unx/generic/gdi/nativewindowhandleprovider \ vcl/unx/generic/window/screensaverinhibitor \ $(if $(filter TRUE,$(ENABLE_CUPS)),\ vcl/unx/generic/printer/cupsmgr \ diff -Nru libreoffice-5.1.1~rc2/vcl/Module_vcl.mk libreoffice-5.1.2~rc2/vcl/Module_vcl.mk --- libreoffice-5.1.1~rc2/vcl/Module_vcl.mk 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/vcl/Module_vcl.mk 2016-03-29 15:41:04.000000000 +0000 @@ -99,6 +99,7 @@ CppunitTest_vcl_fontcharmap \ CppunitTest_vcl_complextext \ CppunitTest_vcl_filters_test \ + CppunitTest_vcl_mapmode \ CppunitTest_vcl_outdev \ CppunitTest_vcl_app_test \ CppunitTest_vcl_wmf_test \ @@ -121,6 +122,7 @@ ifeq ($(OS),WNT) $(eval $(call gb_Module_add_check_targets,vcl,\ CppunitTest_vcl_timer \ + CppunitTest_vcl_blocklistparser_test \ )) endif # vim: set noet sw=4 ts=4: diff -Nru libreoffice-5.1.1~rc2/vcl/opengl/gdiimpl.cxx libreoffice-5.1.2~rc2/vcl/opengl/gdiimpl.cxx --- libreoffice-5.1.1~rc2/vcl/opengl/gdiimpl.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/vcl/opengl/gdiimpl.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -37,6 +37,9 @@ #include <vector> +#include <glm/gtc/type_ptr.hpp> +#include <glm/gtx/norm.hpp> + #include <stdlib.h> class OpenGLFlushIdle : public Idle @@ -448,9 +451,10 @@ if( maOffscreenTex.GetWidth() != GetWidth() || maOffscreenTex.GetHeight() != GetHeight() ) { + VCL_GL_INFO( "re-size offscreen texture " << maOffscreenTex.Id() ); + mpFlush->SetPriority( SchedulerPriority::POST_PAINT ); mpContext->ReleaseFramebuffer( maOffscreenTex ); maOffscreenTex = OpenGLTexture(); - VCL_GL_INFO( "re-size offscreen texture" ); } } @@ -625,6 +629,311 @@ CHECK_GL_ERROR(); } +namespace +{ + +inline void addVertex(std::vector<GLfloat>& rVertices, std::vector<GLfloat>& rExtrusionVectors, glm::vec2 point, glm::vec2 extrusionVector, float length) +{ + rVertices.push_back(point.x); + rVertices.push_back(point.y); + + rExtrusionVectors.push_back(extrusionVector.x); + rExtrusionVectors.push_back(extrusionVector.y); + rExtrusionVectors.push_back(length); +} + +inline void addVertexPair(std::vector<GLfloat>& rVertices, std::vector<GLfloat>& rExtrusionVectors, glm::vec2 point, glm::vec2 extrusionVector, float length) +{ + addVertex(rVertices, rExtrusionVectors, point, -extrusionVector, -length); + addVertex(rVertices, rExtrusionVectors, point, extrusionVector, length); +} + +inline glm::vec2 normalize(const glm::vec2& vector) +{ + if (glm::length(vector) > 0.0) + return glm::normalize(vector); + return vector; +} + +} // end anonymous namespace + +void OpenGLSalGraphicsImpl::DrawLineCap(float x1, float y1, float x2, float y2, css::drawing::LineCap eLineCap, float fLineWidth) +{ + if (eLineCap != css::drawing::LineCap_ROUND && eLineCap != css::drawing::LineCap_SQUARE) + return; + + OpenGLZone aZone; + + const int nRoundCapIteration = 12; + + std::vector<GLfloat> aVertices; + std::vector<GLfloat> aExtrusionVectors; + + glm::vec2 p1(x1, y1); + glm::vec2 p2(x2, y2); + glm::vec2 lineVector = normalize(p2 - p1); + glm::vec2 normal = glm::vec2(-lineVector.y, lineVector.x); + + if (eLineCap == css::drawing::LineCap_ROUND) + { + for (int nFactor = 0; nFactor <= nRoundCapIteration; nFactor++) + { + float angle = float(nFactor) * (M_PI / float(nRoundCapIteration)); + glm::vec2 roundNormal(normal.x * glm::cos(angle) - normal.y * glm::sin(angle), + normal.x * glm::sin(angle) + normal.y * glm::cos(angle)); + + addVertexPair(aVertices, aExtrusionVectors, p1, roundNormal, 1.0f); + } + } + else if (eLineCap == css::drawing::LineCap_SQUARE) + { + glm::vec2 extrudedPoint = p1 + -lineVector * (fLineWidth / 2.0f); + + addVertexPair(aVertices, aExtrusionVectors, extrudedPoint, normal, 1.0f); + addVertexPair(aVertices, aExtrusionVectors, p1, normal, 1.0f); + } + + ApplyProgramMatrices(0.0f); + mpProgram->SetExtrusionVectors(aExtrusionVectors.data()); + mpProgram->SetVertices(aVertices.data()); + glDrawArrays(GL_TRIANGLE_STRIP, 0, aVertices.size() / 2); + + CHECK_GL_ERROR(); +} + +void OpenGLSalGraphicsImpl::DrawLineSegment(float x1, float y1, float x2, float y2) +{ + glm::vec2 p1(x1, y1); + glm::vec2 p2(x2, y2); + + if (p1.x == p2.x && p1.y == p2.y) + return; + + std::vector<GLfloat> aPoints; + std::vector<GLfloat> aExtrusionVectors; + + OpenGLZone aZone; + + glm::vec2 lineVector = normalize(p2 - p1); + glm::vec2 normal = glm::vec2(-lineVector.y, lineVector.x); + + addVertexPair(aPoints, aExtrusionVectors, p1, normal, 1.0f); + addVertexPair(aPoints, aExtrusionVectors, p2, normal, 1.0f); + + ApplyProgramMatrices(0.0f); + mpProgram->SetExtrusionVectors(aExtrusionVectors.data()); + mpProgram->SetVertices(aPoints.data()); + glDrawArrays(GL_TRIANGLE_STRIP, 0, aPoints.size() / 2); + + CHECK_GL_ERROR(); +} + +/** Draw a simple (non bezier) polyline + * + * OpenGL polyline drawing algorithm inspired by: + * - http://mattdesl.svbtle.com/drawing-lines-is-hard + * - https://www.mapbox.com/blog/drawing-antialiased-lines/ + * - https://cesiumjs.org/2013/04/22/Robust-Polyline-Rendering-with-WebGL/ + * - http://artgrammer.blogspot.si/2011/05/drawing-nearly-perfect-2d-line-segments.html + * - http://artgrammer.blogspot.si/2011/07/drawing-polylines-by-tessellation.html + * + */ +void OpenGLSalGraphicsImpl::DrawPolyLine(const basegfx::B2DPolygon& rPolygon, float fLineWidth, basegfx::B2DLineJoin eLineJoin, css::drawing::LineCap eLineCap) +{ + sal_uInt32 nPoints = rPolygon.count(); + bool bClosed = rPolygon.isClosed(); + + if (!bClosed && nPoints >= 2) + { + // draw begin cap + { + glm::vec2 p1(rPolygon.getB2DPoint(0).getX(), rPolygon.getB2DPoint(0).getY()); + glm::vec2 p2(rPolygon.getB2DPoint(1).getX(), rPolygon.getB2DPoint(1).getY()); + DrawLineCap(p1.x, p1.y, p2.x, p2.y, eLineCap, fLineWidth); + } + + // draw end cap + { + glm::vec2 p1(rPolygon.getB2DPoint(nPoints - 1).getX(), rPolygon.getB2DPoint(nPoints - 1).getY()); + glm::vec2 p2(rPolygon.getB2DPoint(nPoints - 2).getX(), rPolygon.getB2DPoint(nPoints - 2).getY()); + DrawLineCap(p1.x, p1.y, p2.x, p2.y, eLineCap, fLineWidth); + } + } + + if (nPoints == 2 || eLineJoin == basegfx::B2DLineJoin::NONE) + { + // If line joint is NONE or a simple line with 2 points, draw the polyline + // each line segment separatly. + for (int i = 0; i < int(nPoints) - 1; ++i) + { + glm::vec2 p1(rPolygon.getB2DPoint(i+0).getX(), rPolygon.getB2DPoint(i+0).getY()); + glm::vec2 p2(rPolygon.getB2DPoint(i+1).getX(), rPolygon.getB2DPoint(i+1).getY()); + DrawLineSegment(p1.x, p1.y, p2.x, p2.y); + } + if (bClosed) + { + glm::vec2 p1(rPolygon.getB2DPoint(nPoints - 1).getX(), rPolygon.getB2DPoint(nPoints - 1).getY()); + glm::vec2 p2(rPolygon.getB2DPoint(0).getX(), rPolygon.getB2DPoint(0).getY()); + DrawLineSegment(p1.x, p1.y, p2.x, p2.y); + } + } + else if (nPoints > 2) + { + OpenGLZone aZone; + + int i = 0; + int lastPoint = int(nPoints); + + std::vector<GLfloat> aVertices; + std::vector<GLfloat> aExtrusionVectors; + + // First guess on the size, but we could know relatively exactly + // how much vertices we need. + aVertices.reserve(nPoints * 4); + aExtrusionVectors.reserve(nPoints * 6); + + // Handle first point + + glm::vec2 nextLineVector; + glm::vec2 previousLineVector; + glm::vec2 normal; // perpendicular to the line vector + + glm::vec2 p0(rPolygon.getB2DPoint(nPoints - 1).getX(), rPolygon.getB2DPoint(nPoints - 1).getY()); + glm::vec2 p1(rPolygon.getB2DPoint(0).getX(), rPolygon.getB2DPoint(0).getY()); + glm::vec2 p2(rPolygon.getB2DPoint(1).getX(), rPolygon.getB2DPoint(1).getY()); + + nextLineVector = normalize(p2 - p1); + + if (!bClosed) + { + normal = glm::vec2(-nextLineVector.y, nextLineVector.x); // make perpendicular + addVertexPair(aVertices, aExtrusionVectors, p1, normal, 1.0f); + + i++; // first point done already + lastPoint--; // last point will be calculated separatly from the loop + + p0 = p1; + previousLineVector = nextLineVector; + } + else + { + lastPoint++; // we need to connect last point to first point so one more line segment to calculate + + previousLineVector = normalize(p1 - p0); + } + + for (; i < lastPoint; ++i) + { + int index1 = (i + 0) % nPoints; // loop indices - important when polyline is closed + int index2 = (i + 1) % nPoints; + + p1 = glm::vec2(rPolygon.getB2DPoint(index1).getX(), rPolygon.getB2DPoint(index1).getY()); + p2 = glm::vec2(rPolygon.getB2DPoint(index2).getX(), rPolygon.getB2DPoint(index2).getY()); + + if (p1 == p2) // skip equal points, normals could div-by-0 + continue; + + nextLineVector = normalize(p2 - p1); + + if (eLineJoin == basegfx::B2DLineJoin::Miter) + { + // With miter join we calculate the extrusion vector by adding normals of + // previous and next line segment. The vector shows the way but we also + // need the length (otherwise the line will be deformed). Length factor is + // calculated as dot product of extrusion vector and one of the normals. + // The value we get is the inverse length (used in the shader): + // length = line_width / dot(extrusionVector, normal) + + normal = glm::vec2(-previousLineVector.y, previousLineVector.x); + + glm::vec2 tangent = normalize(nextLineVector + previousLineVector); + glm::vec2 extrusionVector(-tangent.y, tangent.x); + GLfloat length = glm::dot(extrusionVector, normal); + + addVertexPair(aVertices, aExtrusionVectors, p1, extrusionVector, length); + } + else if (eLineJoin == basegfx::B2DLineJoin::Bevel) + { + // For bevel join we just add 2 additional vertices and use previous + // line segment normal and next line segment normal as extrusion vector. + // All the magic is done by the fact that we draw triangle strips, so we + // cover the joins correctly. + + glm::vec2 previousNormal = glm::vec2(-previousLineVector.y, previousLineVector.x); + glm::vec2 nextNormal = glm::vec2(-nextLineVector.y, nextLineVector.x); + + addVertexPair(aVertices, aExtrusionVectors, p1, previousNormal, 1.0f); + addVertexPair(aVertices, aExtrusionVectors, p1, nextNormal, 1.0f); + } + else if (eLineJoin == basegfx::B2DLineJoin::Round) + { + // For round join we do a similar thing as in bevel, we add more intermediate + // vertices and add normals to get extrusion vectors in the between the + // both normals. + + // 3 additional extrusion vectors + normals are enough to make most + // line joins look round. Ideally the number of vectors could be + // calculated. + + glm::vec2 previousNormal = glm::vec2(-previousLineVector.y, previousLineVector.x); + glm::vec2 nextNormal = glm::vec2(-nextLineVector.y, nextLineVector.x); + + glm::vec2 middle = normalize(previousNormal + nextNormal); + glm::vec2 middleLeft = normalize(previousNormal + middle); + glm::vec2 middleRight = normalize(middle + nextNormal); + + addVertexPair(aVertices, aExtrusionVectors, p1, previousNormal, 1.0f); + addVertexPair(aVertices, aExtrusionVectors, p1, middleLeft, 1.0f); + addVertexPair(aVertices, aExtrusionVectors, p1, middle, 1.0f); + addVertexPair(aVertices, aExtrusionVectors, p1, middleRight, 1.0f); + addVertexPair(aVertices, aExtrusionVectors, p1, nextNormal, 1.0f); + } + p0 = p1; + previousLineVector = nextLineVector; + } + + if (!bClosed) + { + // Create vertices for the last point. There is no line join so just + // use the last line segment normal as the extrusion vector. + + p1 = glm::vec2(rPolygon.getB2DPoint(nPoints - 1).getX(), rPolygon.getB2DPoint(nPoints - 1).getY()); + + normal = glm::vec2(-previousLineVector.y, previousLineVector.x); + + addVertexPair(aVertices, aExtrusionVectors, p1, normal, 1.0f); + } + + ApplyProgramMatrices(0.0f); + mpProgram->SetExtrusionVectors(aExtrusionVectors.data()); + mpProgram->SetVertices(aVertices.data()); + glDrawArrays(GL_TRIANGLE_STRIP, 0, aVertices.size() / 2); + + CHECK_GL_ERROR(); + } +} + +bool OpenGLSalGraphicsImpl::UseLine(SalColor nColor, double fTransparency, GLfloat fLineWidth, bool bUseAA) +{ + if( nColor == SALCOLOR_NONE ) + return false; + if( !UseProgram( "lineVertexShader", "lineFragmentShader" ) ) + return false; + mpProgram->SetColorf("color", nColor, fTransparency); + mpProgram->SetUniform1f("line_width", fLineWidth); + // The width of the feather - area we make lineary transparent in VS. + // Good AA value is 0.5, 0.0 means the no AA will be done. + mpProgram->SetUniform1f("feather", bUseAA ? 0.5f : 0.0f); + // We need blending or AA won't work correctly + mpProgram->SetBlendMode( GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA ); +#ifdef DBG_UTIL + mProgramIsSolidColor = true; +#endif + mProgramSolidColor = nColor; + mProgramSolidTransparency = fTransparency; + return true; +} + void OpenGLSalGraphicsImpl::DrawLineAA( double nX1, double nY1, double nX2, double nY2 ) { OpenGLZone aZone; @@ -1540,58 +1849,20 @@ return true; const bool bIsHairline = (rLineWidth.getX() == rLineWidth.getY()) && (rLineWidth.getX() <= 1.2); + const float fLineWidth = bIsHairline ? 1.0f : rLineWidth.getX(); - // #i101491# - if( !bIsHairline && (rPolygon.count() > 1000) ) - { - // the used basegfx::tools::createAreaGeometry is simply too - // expensive with very big polygons; fallback to caller (who - // should use ImplLineConverter normally) - // AW: ImplLineConverter had to be removed since it does not even - // know LineJoins, so the fallback will now prepare the line geometry - // the same way. - return false; - } + PreDraw(XOROption::IMPLEMENT_XOR); - // shortcut for hairline drawing to improve performance - if (bIsHairline) + if (UseLine(mnLineColor, 0.0f, fLineWidth, true)) { - // Let's just leave it to OutputDevice to do the bezier subdivision, - // drawPolyLine(sal_uInt32 nPoints, const SalPoint* pPtAry) will be - // called with the result. - return false; - } - - // #i11575#desc5#b adjust B2D tesselation result to raster positions - basegfx::B2DPolygon aPolygon = rPolygon; - const double fHalfWidth = 0.5 * rLineWidth.getX(); - - // get the area polygon for the line polygon - if( (rLineWidth.getX() != rLineWidth.getY()) - && !basegfx::fTools::equalZero( rLineWidth.getY() ) ) - { - // prepare for createAreaGeometry() with anisotropic linewidth - aPolygon.transform( basegfx::tools::createScaleB2DHomMatrix(1.0, rLineWidth.getX() / rLineWidth.getY())); - } + basegfx::B2DPolygon aPolygon(rPolygon); - // create the area-polygon for the line - const basegfx::B2DPolyPolygon aAreaPolyPoly( basegfx::tools::createAreaGeometry(aPolygon, fHalfWidth, eLineJoin, eLineCap) ); - - if( (rLineWidth.getX() != rLineWidth.getY()) - && !basegfx::fTools::equalZero( rLineWidth.getX() ) ) - { - // postprocess createAreaGeometry() for anisotropic linewidth - aPolygon.transform(basegfx::tools::createScaleB2DHomMatrix(1.0, rLineWidth.getY() / rLineWidth.getX())); - } + if (aPolygon.areControlPointsUsed()) + aPolygon = basegfx::tools::polygonSubdivide(aPolygon, 7.5 * F_PI180); + else + aPolygon.removeDoublePoints(); - PreDraw( XOROption::IMPLEMENT_XOR ); - if( UseSolid( mnLineColor, fTransparency ) ) - { - for( sal_uInt32 i = 0; i < aAreaPolyPoly.count(); i++ ) - { - const ::basegfx::B2DPolyPolygon aOnePoly( aAreaPolyPoly.getB2DPolygon( i ) ); - DrawPolyPolygon( aOnePoly ); - } + DrawPolyLine(aPolygon, fLineWidth, eLineJoin, eLineCap); } PostDraw(); diff -Nru libreoffice-5.1.1~rc2/vcl/opengl/lineFragmentShader.glsl libreoffice-5.1.2~rc2/vcl/opengl/lineFragmentShader.glsl --- libreoffice-5.1.1~rc2/vcl/opengl/lineFragmentShader.glsl 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-5.1.2~rc2/vcl/opengl/lineFragmentShader.glsl 2016-03-29 15:41:04.000000000 +0000 @@ -0,0 +1,36 @@ +/* -*- 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/. + */ + +varying float fade_factor; // 0->1 fade factor used for AA +uniform vec4 color; + +uniform float line_width; +uniform float feather; + +void main() +{ + float start = (line_width / 2.0) - feather; // where we start to apply alpha + float end = (line_width / 2.0) + feather; // where we end to apply alpha + + // Calculate the multiplier so we can transform the 0->1 fade factor + // to take feather and line width into account. + float multiplied = 1.0 / (1.0 - (start / end)); + + float dist = (1.0 - abs(fade_factor)) * multiplied; + + float alpha = clamp(dist, 0.0, 1.0); + + // modify the alpha chanel only + vec4 result_color = color; + result_color.a = result_color.a * alpha; + + gl_FragColor = result_color; +} + +/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff -Nru libreoffice-5.1.1~rc2/vcl/opengl/lineVertexShader.glsl libreoffice-5.1.2~rc2/vcl/opengl/lineVertexShader.glsl --- libreoffice-5.1.1~rc2/vcl/opengl/lineVertexShader.glsl 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-5.1.2~rc2/vcl/opengl/lineVertexShader.glsl 2016-03-29 15:41:04.000000000 +0000 @@ -0,0 +1,37 @@ +/* -*- 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/. + */ + +attribute vec2 position; +attribute vec4 extrusion_vectors; + +varying float fade_factor; // fade factor for anti-aliasing + +uniform float line_width; +uniform float feather; // width where we fade the line + +uniform mat4 mvp; + +void main() +{ + vec2 extrusion_vector = extrusion_vectors.xy; + // miter factor to additionaly lenghten the distance of vertex (needed for miter) + // if 1.0 - miter_factor has no effect + float miter_factor = 1.0f / abs(extrusion_vectors.z); + // fade factor is always -1.0 or 1.0 -> we transport that info together with length + fade_factor = sign(extrusion_vectors.z); + + float rendered_thickness = (line_width + feather * 2.0) * miter_factor; + + // lengthen the vertex in directon of the extrusion vector by line width. + vec4 position = vec4(position + (extrusion_vector * (rendered_thickness / 2.0) ), 0.0, 1.0); + + gl_Position = mvp * position; +} + +/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff -Nru libreoffice-5.1.1~rc2/vcl/opengl/program.cxx libreoffice-5.1.2~rc2/vcl/opengl/program.cxx --- libreoffice-5.1.1~rc2/vcl/opengl/program.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/vcl/opengl/program.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -22,6 +22,7 @@ mnTexCoordAttrib( SAL_MAX_UINT32 ), mnAlphaCoordAttrib( SAL_MAX_UINT32 ), mnMaskCoordAttrib( SAL_MAX_UINT32 ), + mnNormalAttrib( SAL_MAX_UINT32 ), mbBlending( false ), mfLastWidth(0.0), mfLastHeight(0.0), @@ -100,7 +101,7 @@ return true; } -void OpenGLProgram::SetVertexAttrib( GLuint& rAttrib, const OString& rName, const GLvoid* pData ) +void OpenGLProgram::SetVertexAttrib( GLuint& rAttrib, const OString& rName, const GLvoid* pData, GLint nSize ) { if( rAttrib == SAL_MAX_UINT32 ) { @@ -113,7 +114,7 @@ CHECK_GL_ERROR(); mnEnabledAttribs |= ( 1 << rAttrib ); } - glVertexAttribPointer( rAttrib, 2, GL_FLOAT, GL_FALSE, 0, pData ); + glVertexAttribPointer( rAttrib, nSize, GL_FLOAT, GL_FALSE, 0, pData ); CHECK_GL_ERROR(); } @@ -137,6 +138,11 @@ SetVertexAttrib(mnMaskCoordAttrib, "mask_coord_in", pData); } +void OpenGLProgram::SetExtrusionVectors(const GLvoid* pData) +{ + SetVertexAttrib(mnNormalAttrib, "extrusion_vectors", pData, 3); +} + GLuint OpenGLProgram::GetUniformLocation( const OString& rName ) { auto it = maUniformLocations.find( rName ); diff -Nru libreoffice-5.1.1~rc2/vcl/opengl/win/blocklist_parser.cxx libreoffice-5.1.2~rc2/vcl/opengl/win/blocklist_parser.cxx --- libreoffice-5.1.1~rc2/vcl/opengl/win/blocklist_parser.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/vcl/opengl/win/blocklist_parser.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -7,7 +7,7 @@ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ -#include "blocklist_parser.hxx" +#include "opengl/win/blocklist_parser.hxx" WinBlocklistParser::WinBlocklistParser(const OUString& rURL, std::vector<wgl::DriverInfo>& rDriverList) diff -Nru libreoffice-5.1.1~rc2/vcl/opengl/win/blocklist_parser.hxx libreoffice-5.1.2~rc2/vcl/opengl/win/blocklist_parser.hxx --- libreoffice-5.1.1~rc2/vcl/opengl/win/blocklist_parser.hxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/vcl/opengl/win/blocklist_parser.hxx 1970-01-01 00:00:00.000000000 +0000 @@ -1,45 +0,0 @@ -/* -*- 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/. - */ - -#include "opengl/win/WinDeviceInfo.hxx" - -#include <xmlreader/xmlreader.hxx> - -#include <vector> - -class InvalidFileException -{ -}; - -class WinBlocklistParser -{ -public: - WinBlocklistParser(const OUString& rURL, std::vector<wgl::DriverInfo>& rDriverList); - void parse(); - -private: - void handleEntry(wgl::DriverInfo& rDriver, xmlreader::XmlReader& rReader); - void handleDevices(wgl::DriverInfo& rDriver, xmlreader::XmlReader& rReader); - void handleList(xmlreader::XmlReader& rReader); - void handleContent(xmlreader::XmlReader& rReader); - - - enum class BlockType - { - WHITELIST, - BLACKLIST, - UNKNOWN - }; - - BlockType meBlockType; - std::vector<wgl::DriverInfo>& mrDriverList; - OUString maURL; -}; - -/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff -Nru libreoffice-5.1.1~rc2/vcl/opengl/win/WinDeviceInfo.cxx libreoffice-5.1.2~rc2/vcl/opengl/win/WinDeviceInfo.cxx --- libreoffice-5.1.1~rc2/vcl/opengl/win/WinDeviceInfo.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/vcl/opengl/win/WinDeviceInfo.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -9,7 +9,7 @@ #include "opengl/win/WinDeviceInfo.hxx" -#include "blocklist_parser.hxx" +#include "opengl/win/blocklist_parser.hxx" #include <config_folders.h> #include <windows.h> @@ -451,67 +451,69 @@ } -bool WinOpenGLDeviceInfo::FindBlocklistedDeviceInList() +bool WinOpenGLDeviceInfo::FindBlocklistedDeviceInList(std::vector<wgl::DriverInfo>& aDeviceInfos, + OUString sDriverVersion, OUString sAdapterVendorID, + OUString sAdapterDeviceID, uint32_t nWindowsVersion) { uint64_t driverVersion; - wgl::ParseDriverVersion(maDriverVersion, driverVersion); + wgl::ParseDriverVersion(sDriverVersion, driverVersion); - wgl::OperatingSystem eOS = WindowsVersionToOperatingSystem(mnWindowsVersion); + wgl::OperatingSystem eOS = WindowsVersionToOperatingSystem(nWindowsVersion); bool match = false; uint32_t i = 0; - for (; i < maDriverInfo.size(); i++) + for (; i < aDeviceInfos.size(); i++) { - if (maDriverInfo[i].meOperatingSystem != wgl::DRIVER_OS_ALL && - maDriverInfo[i].meOperatingSystem != eOS) + if (aDeviceInfos[i].meOperatingSystem != wgl::DRIVER_OS_ALL && + aDeviceInfos[i].meOperatingSystem != eOS) { continue; } - if (maDriverInfo[i].mnOperatingSystemVersion && maDriverInfo[i].mnOperatingSystemVersion != mnWindowsVersion) + if (aDeviceInfos[i].mnOperatingSystemVersion && aDeviceInfos[i].mnOperatingSystemVersion != nWindowsVersion) { continue; } - if (!maDriverInfo[i].maAdapterVendor.equalsIgnoreAsciiCase(GetDeviceVendor(wgl::VendorAll)) && - !maDriverInfo[i].maAdapterVendor.equalsIgnoreAsciiCase(maAdapterVendorID)) + if (!aDeviceInfos[i].maAdapterVendor.equalsIgnoreAsciiCase(GetDeviceVendor(wgl::VendorAll)) && + !aDeviceInfos[i].maAdapterVendor.equalsIgnoreAsciiCase(sAdapterVendorID)) { continue; } - if (std::none_of(maDriverInfo[i].maDevices.begin(), maDriverInfo[i].maDevices.end(), compareIgnoreAsciiCase("all")) && - std::none_of(maDriverInfo[i].maDevices.begin(), maDriverInfo[i].maDevices.end(), compareIgnoreAsciiCase(maAdapterDeviceID))) + if (std::none_of(aDeviceInfos[i].maDevices.begin(), aDeviceInfos[i].maDevices.end(), compareIgnoreAsciiCase("all")) && + std::none_of(aDeviceInfos[i].maDevices.begin(), aDeviceInfos[i].maDevices.end(), compareIgnoreAsciiCase(sAdapterDeviceID))) { continue; } - switch (maDriverInfo[i].meComparisonOp) + switch (aDeviceInfos[i].meComparisonOp) { case wgl::DRIVER_LESS_THAN: - match = driverVersion < maDriverInfo[i].mnDriverVersion; + match = driverVersion < aDeviceInfos[i].mnDriverVersion; break; case wgl::DRIVER_LESS_THAN_OR_EQUAL: - match = driverVersion <= maDriverInfo[i].mnDriverVersion; + match = driverVersion <= aDeviceInfos[i].mnDriverVersion; break; case wgl::DRIVER_GREATER_THAN: - match = driverVersion > maDriverInfo[i].mnDriverVersion; + match = driverVersion > aDeviceInfos[i].mnDriverVersion; break; case wgl::DRIVER_GREATER_THAN_OR_EQUAL: - match = driverVersion >= maDriverInfo[i].mnDriverVersion; + match = driverVersion >= aDeviceInfos[i].mnDriverVersion; break; case wgl::DRIVER_EQUAL: - match = driverVersion == maDriverInfo[i].mnDriverVersion; + match = driverVersion == aDeviceInfos[i].mnDriverVersion; break; case wgl::DRIVER_NOT_EQUAL: - match = driverVersion != maDriverInfo[i].mnDriverVersion; + match = driverVersion != aDeviceInfos[i].mnDriverVersion; break; case wgl::DRIVER_BETWEEN_EXCLUSIVE: - match = driverVersion > maDriverInfo[i].mnDriverVersion && driverVersion < maDriverInfo[i].mnDriverVersionMax; + match = driverVersion > aDeviceInfos[i].mnDriverVersion && driverVersion < aDeviceInfos[i].mnDriverVersionMax; break; case wgl::DRIVER_BETWEEN_INCLUSIVE: - match = driverVersion >= maDriverInfo[i].mnDriverVersion && driverVersion <= maDriverInfo[i].mnDriverVersionMax; + match = driverVersion >= aDeviceInfos[i].mnDriverVersion && driverVersion <= aDeviceInfos[i].mnDriverVersionMax; break; case wgl::DRIVER_BETWEEN_INCLUSIVE_START: - match = driverVersion >= maDriverInfo[i].mnDriverVersion && driverVersion < maDriverInfo[i].mnDriverVersionMax; + match = driverVersion >= aDeviceInfos[i].mnDriverVersion && driverVersion < aDeviceInfos[i].mnDriverVersionMax; break; case wgl::DRIVER_COMPARISON_IGNORED: // We don't have a comparison op, so we match everything. @@ -522,17 +524,17 @@ break; } - if (match || maDriverInfo[i].mnDriverVersion == wgl::DriverInfo::allDriverVersions) + if (match || aDeviceInfos[i].mnDriverVersion == wgl::DriverInfo::allDriverVersions) { // white listed drivers - if (maDriverInfo[i].mbWhitelisted) + if (aDeviceInfos[i].mbWhitelisted) { SAL_WARN("vcl.opengl", "whitelisted driver"); return false; } match = true; - SAL_WARN("vcl.opengl", "use : " << maDriverInfo[i].maSuggestedVersion); + SAL_WARN("vcl.opengl", "use : " << aDeviceInfos[i].maSuggestedVersion); break; } } @@ -541,6 +543,11 @@ return match; } +bool WinOpenGLDeviceInfo::FindBlocklistedDeviceInList() +{ + return FindBlocklistedDeviceInList(maDriverInfo, maDriverVersion, maAdapterVendorID, maAdapterDeviceID, mnWindowsVersion); +} + namespace { OUString getCacheFolder() diff -Nru libreoffice-5.1.1~rc2/vcl/opengl/x11/gdiimpl.cxx libreoffice-5.1.2~rc2/vcl/opengl/x11/gdiimpl.cxx --- libreoffice-5.1.1~rc2/vcl/opengl/x11/gdiimpl.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/vcl/opengl/x11/gdiimpl.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -47,12 +47,12 @@ rtl::Reference<OpenGLContext> X11OpenGLSalGraphicsImpl::CreateWinContext() { - X11WindowProvider *pProvider = dynamic_cast<X11WindowProvider*>(mrParent.m_pFrame); + NativeWindowHandleProvider *pProvider = dynamic_cast<NativeWindowHandleProvider*>(mrParent.m_pFrame); if( !pProvider ) return nullptr; - Window aWin = pProvider->GetX11Window(); + sal_uIntPtr aWin = pProvider->GetNativeWindowHandle(); rtl::Reference<OpenGLContext> pContext = OpenGLContext::Create(); pContext->setVCLOnly(); pContext->init( mrParent.GetXDisplay(), aWin, diff -Nru libreoffice-5.1.1~rc2/vcl/osx/salinst.cxx libreoffice-5.1.2~rc2/vcl/osx/salinst.cxx --- libreoffice-5.1.1~rc2/vcl/osx/salinst.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/vcl/osx/salinst.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -1097,15 +1097,5 @@ return pImage; } -namespace vcl -{ - -bool IsWindowSystemAvailable() -{ - // Yes I know the parens are not needed. I like them in cases like this. So sue me. - return ([NSScreen screens] != nil && [[NSScreen screens] count] > 0); -} - -} // namespace vcl /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff -Nru libreoffice-5.1.1~rc2/vcl/Package_opengl.mk libreoffice-5.1.2~rc2/vcl/Package_opengl.mk --- libreoffice-5.1.1~rc2/vcl/Package_opengl.mk 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/vcl/Package_opengl.mk 2016-03-29 15:41:04.000000000 +0000 @@ -21,6 +21,8 @@ invert50FragmentShader.glsl \ convolutionFragmentShader.glsl \ linearGradientFragmentShader.glsl \ + lineFragmentShader.glsl \ + lineVertexShader.glsl \ maskFragmentShader.glsl \ maskedTextureVertexShader.glsl \ maskedTextureFragmentShader.glsl \ diff -Nru libreoffice-5.1.1~rc2/vcl/qa/cppunit/blocklistparsertest.cxx libreoffice-5.1.2~rc2/vcl/qa/cppunit/blocklistparsertest.cxx --- libreoffice-5.1.1~rc2/vcl/qa/cppunit/blocklistparsertest.cxx 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-5.1.2~rc2/vcl/qa/cppunit/blocklistparsertest.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -0,0 +1,161 @@ +/* -*- 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/. + */ + +#include <sal/types.h> + +#include <cppunit/TestAssert.h> +#include <cppunit/TestFixture.h> +#include <cppunit/extensions/HelperMacros.h> +#include <cppunit/plugin/TestPlugIn.h> + +#include <unotest/bootstrapfixturebase.hxx> + +#include "opengl/win/blocklist_parser.hxx" + +namespace +{ + +class BlocklistParserTest : public test::BootstrapFixtureBase +{ + void testParse(); + void testEvaluate(); + + CPPUNIT_TEST_SUITE(BlocklistParserTest); + CPPUNIT_TEST(testParse); + CPPUNIT_TEST(testEvaluate); + CPPUNIT_TEST_SUITE_END(); +}; + +void BlocklistParserTest::testParse() +{ + std::vector<wgl::DriverInfo> aDriveInfos; + + WinBlocklistParser aBlocklistParser(getURLFromSrc("vcl/qa/cppunit/") + "test_blocklist_parse.xml", aDriveInfos); + aBlocklistParser.parse(); + + CPPUNIT_ASSERT_EQUAL(static_cast<size_t>(20), aDriveInfos.size()); + + size_t i = 0; + + for (bool bIsWhitelisted : {true, false}) + { + wgl::DriverInfo& aDriveInfo = aDriveInfos[i++]; + CPPUNIT_ASSERT_EQUAL(bIsWhitelisted, aDriveInfo.mbWhitelisted); + CPPUNIT_ASSERT_EQUAL(WinOpenGLDeviceInfo::GetDeviceVendor(wgl::VendorAll), aDriveInfo.maAdapterVendor); // "all" + CPPUNIT_ASSERT_EQUAL(wgl::VersionComparisonOp::DRIVER_LESS_THAN, aDriveInfo.meComparisonOp); + CPPUNIT_ASSERT_EQUAL(wgl::V(10,20,30,40), aDriveInfo.mnDriverVersion); + + aDriveInfo = aDriveInfos[i++]; + CPPUNIT_ASSERT_EQUAL(bIsWhitelisted, aDriveInfo.mbWhitelisted); + CPPUNIT_ASSERT_EQUAL(WinOpenGLDeviceInfo::GetDeviceVendor(wgl::VendorIntel), aDriveInfo.maAdapterVendor); + CPPUNIT_ASSERT_EQUAL(wgl::VersionComparisonOp::DRIVER_LESS_THAN_OR_EQUAL, aDriveInfo.meComparisonOp); + CPPUNIT_ASSERT_EQUAL(wgl::V(11,21,31,41), aDriveInfo.mnDriverVersion); + + aDriveInfo = aDriveInfos[i++]; + CPPUNIT_ASSERT_EQUAL(bIsWhitelisted, aDriveInfo.mbWhitelisted); + CPPUNIT_ASSERT_EQUAL(WinOpenGLDeviceInfo::GetDeviceVendor(wgl::VendorATI), aDriveInfo.maAdapterVendor); + CPPUNIT_ASSERT_EQUAL(wgl::VersionComparisonOp::DRIVER_GREATER_THAN, aDriveInfo.meComparisonOp); + CPPUNIT_ASSERT_EQUAL(wgl::V(12,22,32,42), aDriveInfo.mnDriverVersion); + + aDriveInfo = aDriveInfos[i++]; + CPPUNIT_ASSERT_EQUAL(bIsWhitelisted, aDriveInfo.mbWhitelisted); + CPPUNIT_ASSERT_EQUAL(WinOpenGLDeviceInfo::GetDeviceVendor(wgl::VendorAMD), aDriveInfo.maAdapterVendor); + CPPUNIT_ASSERT_EQUAL(wgl::VersionComparisonOp::DRIVER_GREATER_THAN_OR_EQUAL, aDriveInfo.meComparisonOp); + + aDriveInfo = aDriveInfos[i++]; + CPPUNIT_ASSERT_EQUAL(bIsWhitelisted, aDriveInfo.mbWhitelisted); + CPPUNIT_ASSERT_EQUAL(WinOpenGLDeviceInfo::GetDeviceVendor(wgl::VendorNVIDIA), aDriveInfo.maAdapterVendor); + CPPUNIT_ASSERT_EQUAL(wgl::VersionComparisonOp::DRIVER_EQUAL, aDriveInfo.meComparisonOp); + + aDriveInfo = aDriveInfos[i++]; + CPPUNIT_ASSERT_EQUAL(bIsWhitelisted, aDriveInfo.mbWhitelisted); + CPPUNIT_ASSERT_EQUAL(WinOpenGLDeviceInfo::GetDeviceVendor(wgl::VendorMicrosoft), aDriveInfo.maAdapterVendor); + CPPUNIT_ASSERT_EQUAL(wgl::VersionComparisonOp::DRIVER_NOT_EQUAL, aDriveInfo.meComparisonOp); + + aDriveInfo = aDriveInfos[i++]; + CPPUNIT_ASSERT_EQUAL(bIsWhitelisted, aDriveInfo.mbWhitelisted); + CPPUNIT_ASSERT_EQUAL(WinOpenGLDeviceInfo::GetDeviceVendor(wgl::VendorAll), aDriveInfo.maAdapterVendor); + CPPUNIT_ASSERT_EQUAL(wgl::VersionComparisonOp::DRIVER_BETWEEN_EXCLUSIVE, aDriveInfo.meComparisonOp); + + aDriveInfo = aDriveInfos[i++]; + CPPUNIT_ASSERT_EQUAL(bIsWhitelisted, aDriveInfo.mbWhitelisted); + CPPUNIT_ASSERT_EQUAL(WinOpenGLDeviceInfo::GetDeviceVendor(wgl::VendorAll), aDriveInfo.maAdapterVendor); + CPPUNIT_ASSERT_EQUAL(wgl::VersionComparisonOp::DRIVER_BETWEEN_INCLUSIVE, aDriveInfo.meComparisonOp); + + aDriveInfo = aDriveInfos[i++]; + CPPUNIT_ASSERT_EQUAL(bIsWhitelisted, aDriveInfo.mbWhitelisted); + CPPUNIT_ASSERT_EQUAL(WinOpenGLDeviceInfo::GetDeviceVendor(wgl::VendorAll), aDriveInfo.maAdapterVendor); + CPPUNIT_ASSERT_EQUAL(wgl::VersionComparisonOp::DRIVER_BETWEEN_INCLUSIVE_START, aDriveInfo.meComparisonOp); + + aDriveInfo = aDriveInfos[i++]; + CPPUNIT_ASSERT_EQUAL(bIsWhitelisted, aDriveInfo.mbWhitelisted); + CPPUNIT_ASSERT_EQUAL(WinOpenGLDeviceInfo::GetDeviceVendor(wgl::VendorAll), aDriveInfo.maAdapterVendor); + CPPUNIT_ASSERT_EQUAL(wgl::VersionComparisonOp::DRIVER_COMPARISON_IGNORED, aDriveInfo.meComparisonOp); + } +} + +void BlocklistParserTest::testEvaluate() +{ + std::vector<wgl::DriverInfo> aDriveInfos; + + WinBlocklistParser aBlocklistParser(getURLFromSrc("vcl/qa/cppunit/") + "test_blocklist_evaluate.xml", aDriveInfos); + aBlocklistParser.parse(); + + OUString vendorAMD = WinOpenGLDeviceInfo::GetDeviceVendor(wgl::VendorAMD); + OUString vendorNVIDIA = WinOpenGLDeviceInfo::GetDeviceVendor(wgl::VendorNVIDIA); + OUString vendorIntel = WinOpenGLDeviceInfo::GetDeviceVendor(wgl::VendorIntel); + OUString vendorMicrosoft = WinOpenGLDeviceInfo::GetDeviceVendor(wgl::VendorMicrosoft); + + uint32_t osWindowsXP = 0x00050001; + uint32_t osWindowsVista = 0x00060000; + uint32_t osWindows7 = 0x00060001; + uint32_t osWindows8 = 0x00060002; + uint32_t osWindows10 = 0x000A0000; + + // Check OS + CPPUNIT_ASSERT_EQUAL(true, WinOpenGLDeviceInfo::FindBlocklistedDeviceInList( + aDriveInfos, "10.20.30.40", vendorNVIDIA, "all", osWindowsXP)); + CPPUNIT_ASSERT_EQUAL(true, WinOpenGLDeviceInfo::FindBlocklistedDeviceInList( + aDriveInfos, "10.20.30.40", vendorNVIDIA, "all", osWindowsVista)); + CPPUNIT_ASSERT_EQUAL(false, WinOpenGLDeviceInfo::FindBlocklistedDeviceInList( + aDriveInfos, "10.20.30.40", vendorNVIDIA, "all", osWindows7)); + CPPUNIT_ASSERT_EQUAL(false, WinOpenGLDeviceInfo::FindBlocklistedDeviceInList( + aDriveInfos, "10.20.30.40", vendorNVIDIA, "all", osWindows8)); + CPPUNIT_ASSERT_EQUAL(false, WinOpenGLDeviceInfo::FindBlocklistedDeviceInList( + aDriveInfos, "10.20.30.40", vendorNVIDIA, "all", osWindows10)); + + + // Check Vendors + CPPUNIT_ASSERT_EQUAL(true, WinOpenGLDeviceInfo::FindBlocklistedDeviceInList( + aDriveInfos, "10.20.30.40", vendorMicrosoft, "all", osWindows7)); + CPPUNIT_ASSERT_EQUAL(true, WinOpenGLDeviceInfo::FindBlocklistedDeviceInList( + aDriveInfos, "10.20.30.40", vendorMicrosoft, "all", osWindows10)); + + // Check Versions + CPPUNIT_ASSERT_EQUAL(true, WinOpenGLDeviceInfo::FindBlocklistedDeviceInList( + aDriveInfos, "10.20.30.39", vendorAMD, "all", osWindows7)); + CPPUNIT_ASSERT_EQUAL(false, WinOpenGLDeviceInfo::FindBlocklistedDeviceInList( + aDriveInfos, "10.20.30.40", vendorAMD, "all", osWindows7)); + CPPUNIT_ASSERT_EQUAL(false, WinOpenGLDeviceInfo::FindBlocklistedDeviceInList( + aDriveInfos, "10.20.30.41", vendorAMD, "all", osWindows7)); + + // Check + CPPUNIT_ASSERT_EQUAL(true, WinOpenGLDeviceInfo::FindBlocklistedDeviceInList( + aDriveInfos, "9.17.10.4229", vendorIntel, "all", osWindows7)); + + +} + +} // namespace + +CPPUNIT_TEST_SUITE_REGISTRATION(BlocklistParserTest); + +CPPUNIT_PLUGIN_IMPLEMENT(); + +/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff -Nru libreoffice-5.1.1~rc2/vcl/qa/cppunit/mapmode.cxx libreoffice-5.1.2~rc2/vcl/qa/cppunit/mapmode.cxx --- libreoffice-5.1.1~rc2/vcl/qa/cppunit/mapmode.cxx 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-5.1.2~rc2/vcl/qa/cppunit/mapmode.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -0,0 +1,65 @@ +/* -*- 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/. + */ + +#include <test/bootstrapfixture.hxx> +#include <cppunit/TestAssert.h> +#include <cppunit/TestFixture.h> + +#include <osl/file.hxx> +#include <osl/process.h> + +#include <vcl/mapmod.hxx> + +class VclMapModeTest : public test::BootstrapFixture +{ +public: + VclMapModeTest() : BootstrapFixture(true, false) {} + + void testMultiplier(); + + CPPUNIT_TEST_SUITE(VclMapModeTest); + CPPUNIT_TEST(testMultiplier); + CPPUNIT_TEST_SUITE_END(); +}; + +void VclMapModeTest::testMultiplier() +{ + MapMode aMapMode; + CPPUNIT_ASSERT_MESSAGE( "Default map mode is MAP_PIXEL, multiplier should be 1", aMapMode.GetUnitMultiplier() == 1 ); + aMapMode.SetMapUnit( MAP_SYSFONT ); + CPPUNIT_ASSERT_MESSAGE( "Map mode is MAP_SYSFONT, multiplier should be 1", aMapMode.GetUnitMultiplier() == 1 ); + aMapMode.SetMapUnit( MAP_APPFONT ); + CPPUNIT_ASSERT_MESSAGE( "Map mode is MAP_APPFONT, multiplier should be 1", aMapMode.GetUnitMultiplier() == 1 ); + aMapMode.SetMapUnit( MAP_100TH_MM ); + CPPUNIT_ASSERT_MESSAGE( "Map mode is MAP_100TH_MM, multiplier should be 1", aMapMode.GetUnitMultiplier() == 1 ); + aMapMode.SetMapUnit( MAP_10TH_MM ); + CPPUNIT_ASSERT_MESSAGE( "Map mode is MAP_10TH_MM, multiplier should be 10", aMapMode.GetUnitMultiplier() == 10 ); + aMapMode.SetMapUnit( MAP_MM ); + CPPUNIT_ASSERT_MESSAGE( "Map mode is MAP_MM, multiplier should be 100", aMapMode.GetUnitMultiplier() == 100 ); + aMapMode.SetMapUnit( MAP_CM ); + CPPUNIT_ASSERT_MESSAGE( "Map mode is MAP_CM, multiplier should be 1000", aMapMode.GetUnitMultiplier() == 1000 ); + aMapMode.SetMapUnit( MAP_1000TH_INCH ); + CPPUNIT_ASSERT_MESSAGE( "Map mode is MAP_1000TH_INCH, multiplier should be 2.54", aMapMode.GetUnitMultiplier() == 2.54 ); + aMapMode.SetMapUnit( MAP_100TH_INCH ); + CPPUNIT_ASSERT_MESSAGE( "Map mode is MAP_100TH_INCH, multiplier should be 2.54", aMapMode.GetUnitMultiplier() == 25.4 ); + aMapMode.SetMapUnit( MAP_10TH_INCH ); + CPPUNIT_ASSERT_MESSAGE( "Map mode is MAP_10TH_INCH, multiplier should be 254", aMapMode.GetUnitMultiplier() == 254 ); + aMapMode.SetMapUnit( MAP_INCH ); + CPPUNIT_ASSERT_MESSAGE( "Map mode is MAP_INCH, multiplier should be 2540", aMapMode.GetUnitMultiplier() == 2540 ); + aMapMode.SetMapUnit( MAP_TWIP ); + CPPUNIT_ASSERT_MESSAGE( "Map mode is MAP_TWIP, multiplier should be 1.76388889", aMapMode.GetUnitMultiplier() == 1.76388889 ); + aMapMode.SetMapUnit( MAP_POINT ); + CPPUNIT_ASSERT_MESSAGE( "Map mode is MAP_POINT, multiplier should be 35.27777778", aMapMode.GetUnitMultiplier() == 35.27777778 ); +} + +CPPUNIT_TEST_SUITE_REGISTRATION(VclMapModeTest); + +CPPUNIT_PLUGIN_IMPLEMENT(); + +/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff -Nru libreoffice-5.1.1~rc2/vcl/qa/cppunit/test_blocklist_evaluate.xml libreoffice-5.1.2~rc2/vcl/qa/cppunit/test_blocklist_evaluate.xml --- libreoffice-5.1.1~rc2/vcl/qa/cppunit/test_blocklist_evaluate.xml 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-5.1.2~rc2/vcl/qa/cppunit/test_blocklist_evaluate.xml 2016-03-29 15:41:04.000000000 +0000 @@ -0,0 +1,47 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- +* 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/. +--> + +<!-- + entry attributes: + os - "all", "xp", "server2003", "vista", "7", "8", "8_1", "10" + vendor - "all", "intel", "ati", "amd", "nvidia", "microsoft" + compare - "less", "less_equal", "greater", "greater_equal", "equal", "not_equal", "between_exclusive", "between_inclusive", "between_inclusive_start" + version + minVersion + maxVersion +--> + +<root> + <whitelist> + </whitelist> + <blacklist> + <entry os="xp" vendor="all"> + <device id="all"/> + </entry> + <entry os="server2003" vendor="all"> + <device id="all"/> + </entry> + <entry os="vista" vendor="all"> + <device id="all"/> + </entry> + + <entry os="all" vendor="amd" compare="less" version="10.20.30.40"> + <device id="all"/> + </entry> + + <entry os="all" vendor="microsoft"> + <device id="all"/> + </entry> + + <entry os="all" vendor="intel" compare="less" version="10.18.14.4264"> + <device id="all"/> + </entry> + + </blacklist> +</root> diff -Nru libreoffice-5.1.1~rc2/vcl/qa/cppunit/test_blocklist_parse.xml libreoffice-5.1.2~rc2/vcl/qa/cppunit/test_blocklist_parse.xml --- libreoffice-5.1.1~rc2/vcl/qa/cppunit/test_blocklist_parse.xml 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-5.1.2~rc2/vcl/qa/cppunit/test_blocklist_parse.xml 2016-03-29 15:41:04.000000000 +0000 @@ -0,0 +1,75 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- +* 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/. +--> + +<root> + <whitelist> + <entry os="all" vendor="all" compare="less" version="10.20.30.40"> + <device id="all"/> + </entry> + <entry os="xp" vendor="intel" compare="less_equal" version="11.21.31.41"> + <device id="all"/> + </entry> + <entry os="server2003" vendor="ati" compare="greater" version="12.22.32.42"> + <device id="all"/> + </entry> + <entry os="vista" vendor="amd" compare="greater_equal" version="10.20.30.40"> + <device id="all"/> + </entry> + <entry os="7" vendor="nvidia" compare="equal" version="10.20.30.40"> + <device id="all"/> + </entry> + <entry os="8" vendor="microsoft" compare="not_equal" version="10.20.30.40"> + <device id="all"/> + </entry> + <entry os="8_1" compare="between_exclusive" version="10.20.30.40"> + <device id="all"/> + </entry> + <entry os="10" compare="between_inclusive" version="10.20.30.40"> + <device id="all"/> + </entry> + <entry os="all" compare="between_inclusive_start" version="10.20.30.40"> + <device id="all"/> + </entry> + <entry os="all"> + <device id="all"/> + </entry> + </whitelist> + <blacklist> + <entry os="all" vendor="all" compare="less" version="10.20.30.40"> + <device id="all"/> + </entry> + <entry os="xp" vendor="intel" compare="less_equal" version="11.21.31.41"> + <device id="all"/> + </entry> + <entry os="server2003" vendor="ati" compare="greater" version="12.22.32.42"> + <device id="all"/> + </entry> + <entry os="vista" vendor="amd" compare="greater_equal" version="10.20.30.40"> + <device id="all"/> + </entry> + <entry os="7" vendor="nvidia" compare="equal" version="10.20.30.40"> + <device id="all"/> + </entry> + <entry os="8" vendor="microsoft" compare="not_equal" version="10.20.30.40"> + <device id="all"/> + </entry> + <entry os="8_1" compare="between_exclusive" version="10.20.30.40"> + <device id="all"/> + </entry> + <entry os="10" compare="between_inclusive" version="10.20.30.40"> + <device id="all"/> + </entry> + <entry os="all" compare="between_inclusive_start" version="10.20.30.40"> + <device id="all"/> + </entry> + <entry os="all"> + <device id="all"/> + </entry> + </blacklist> +</root> Binary files /tmp/tmpjVu_CV/d8O1VeJAAp/libreoffice-5.1.1~rc2/vcl/qa/cppunit/wmf/data/line_styles.emf and /tmp/tmpjVu_CV/VUSojbs3iI/libreoffice-5.1.2~rc2/vcl/qa/cppunit/wmf/data/line_styles.emf differ diff -Nru libreoffice-5.1.1~rc2/vcl/qa/cppunit/wmf/wmfimporttest.cxx libreoffice-5.1.2~rc2/vcl/qa/cppunit/wmf/wmfimporttest.cxx --- libreoffice-5.1.1~rc2/vcl/qa/cppunit/wmf/wmfimporttest.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/vcl/qa/cppunit/wmf/wmfimporttest.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -43,6 +43,7 @@ void testNonPlaceableWmf(); void testSine(); void testEmfProblem(); + void testEmfLineStyles(); void testWorldTransformFontSize(); void testTdf93750(); @@ -50,6 +51,7 @@ CPPUNIT_TEST(testNonPlaceableWmf); CPPUNIT_TEST(testSine); CPPUNIT_TEST(testEmfProblem); + CPPUNIT_TEST(testEmfLineStyles); CPPUNIT_TEST(testWorldTransformFontSize); CPPUNIT_TEST(testTdf93750); @@ -120,6 +122,64 @@ assertXPath(pDoc, "/metafile/sectrectclipregion[1]", "right", "1876"); } +void WmfTest::testEmfLineStyles() +{ + SvFileStream aFileStream(getFullUrl("line_styles.emf"), StreamMode::READ); + GDIMetaFile aGDIMetaFile; + ReadWindowMetafile(aFileStream, aGDIMetaFile); + + MetafileXmlDump dumper; + dumper.filterAllActionTypes(); + dumper.filterActionType(MetaActionType::LINE, false); + dumper.filterActionType(MetaActionType::LINECOLOR, false); + xmlDocPtr pDoc = dumper.dumpAndParse(aGDIMetaFile); + + CPPUNIT_ASSERT (pDoc); + + assertXPath(pDoc, "/metafile/line", 4); + assertXPath(pDoc, "/metafile/linecolor", 5); + + assertXPath(pDoc, "/metafile/linecolor[1]", "color", "#ffffff"); + assertXPath(pDoc, "/metafile/linecolor[2]", "color", "#00ff00"); + assertXPath(pDoc, "/metafile/linecolor[3]", "color", "#408080"); + assertXPath(pDoc, "/metafile/linecolor[4]", "color", "#ff0000"); + assertXPath(pDoc, "/metafile/linecolor[5]", "color", "#0000ff"); + + assertXPath(pDoc, "/metafile/line[1]", "style", "dash"); + assertXPath(pDoc, "/metafile/line[1]", "dashlen", "528"); + assertXPath(pDoc, "/metafile/line[1]", "dashcount", "1"); + assertXPath(pDoc, "/metafile/line[1]", "dotlen", "176"); + assertXPath(pDoc, "/metafile/line[1]", "dotcount", "0"); + assertXPath(pDoc, "/metafile/line[1]", "distance", "176"); + assertXPath(pDoc, "/metafile/line[1]", "join", "miter"); + assertXPath(pDoc, "/metafile/line[1]", "cap", "butt"); + + assertXPath(pDoc, "/metafile/line[2]", "style", "dash"); + assertXPath(pDoc, "/metafile/line[2]", "dashlen", "528"); + assertXPath(pDoc, "/metafile/line[2]", "dashcount", "0"); + assertXPath(pDoc, "/metafile/line[2]", "dotlen", "176"); + assertXPath(pDoc, "/metafile/line[2]", "dotcount", "1"); + assertXPath(pDoc, "/metafile/line[2]", "distance", "176"); + assertXPath(pDoc, "/metafile/line[2]", "join", "miter"); + assertXPath(pDoc, "/metafile/line[2]", "cap", "butt"); + + assertXPath(pDoc, "/metafile/line[3]", "style", "dash"); + assertXPath(pDoc, "/metafile/line[3]", "dashlen", "528"); + assertXPath(pDoc, "/metafile/line[3]", "dashcount", "1"); + assertXPath(pDoc, "/metafile/line[3]", "dotlen", "176"); + assertXPath(pDoc, "/metafile/line[3]", "dotcount", "1"); + assertXPath(pDoc, "/metafile/line[3]", "distance", "176"); + + assertXPath(pDoc, "/metafile/line[4]", "style", "dash"); + assertXPath(pDoc, "/metafile/line[4]", "dashlen", "528"); + assertXPath(pDoc, "/metafile/line[4]", "dashcount", "1"); + assertXPath(pDoc, "/metafile/line[4]", "dotlen", "176"); + assertXPath(pDoc, "/metafile/line[4]", "dotcount", "2"); + assertXPath(pDoc, "/metafile/line[4]", "distance", "176"); + assertXPath(pDoc, "/metafile/line[4]", "join", "miter"); + assertXPath(pDoc, "/metafile/line[4]", "cap", "butt"); +}; + void WmfTest::testWorldTransformFontSize() { SvFileStream aFileStream(getFullUrl("image1.emf"), StreamMode::READ); diff -Nru libreoffice-5.1.1~rc2/vcl/source/app/svapp.cxx libreoffice-5.1.2~rc2/vcl/source/app/svapp.cxx --- libreoffice-5.1.1~rc2/vcl/source/app/svapp.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/vcl/source/app/svapp.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -534,9 +534,8 @@ void Scheduler::ProcessEventsToIdle() { - int nSanity = 1000; - while(ImplYield(false, false, 0) || - Scheduler::ProcessTaskScheduling(false)) + int nSanity = 100; + while(ImplYield(false, true, 0)) { if (nSanity-- < 0) { @@ -1416,6 +1415,15 @@ pSVData->maGDIData.mnAppFontX += (pSVData->maGDIData.mnAppFontX*nScale)/100; } +OUString Application::GetToolkitName() +{ + ImplSVData* pSVData = ImplGetSVData(); + if ( pSVData->maAppData.mpToolkitName ) + return *(pSVData->maAppData.mpToolkitName); + else + return OUString(); +} + void Application::SetDefDialogParent( vcl::Window* pWindow ) { ImplGetSVData()->maWinData.mpDefDialogParent = pWindow; diff -Nru libreoffice-5.1.1~rc2/vcl/source/app/svmain.cxx libreoffice-5.1.2~rc2/vcl/source/app/svmain.cxx --- libreoffice-5.1.1~rc2/vcl/source/app/svmain.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/vcl/source/app/svmain.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -499,6 +499,11 @@ delete pSVData->maAppData.mpDisplayName; pSVData->maAppData.mpDisplayName = nullptr; } + if ( pSVData->maAppData.mpToolkitName ) + { + delete pSVData->maAppData.mpToolkitName; + pSVData->maAppData.mpToolkitName = nullptr; + } if ( pSVData->maAppData.mpEventListeners ) { delete pSVData->maAppData.mpEventListeners; diff -Nru libreoffice-5.1.1~rc2/vcl/source/control/edit.cxx libreoffice-5.1.2~rc2/vcl/source/control/edit.cxx --- libreoffice-5.1.1~rc2/vcl/source/control/edit.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/vcl/source/control/edit.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -2125,7 +2125,7 @@ Invalidate(); // #i25161# call auto complete handler for ext text commit also - if (m_pImpl->m_AutocompleteSignal.empty()) + if (!m_pImpl->m_AutocompleteSignal.empty()) { if ( (maSelection.Min() == maSelection.Max()) && (maSelection.Min() == maText.getLength()) ) { diff -Nru libreoffice-5.1.1~rc2/vcl/source/control/fixedhyper.cxx libreoffice-5.1.2~rc2/vcl/source/control/fixedhyper.cxx --- libreoffice-5.1.1~rc2/vcl/source/control/fixedhyper.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/vcl/source/control/fixedhyper.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -18,6 +18,7 @@ */ #include <vcl/fixedhyper.hxx> +#include <vcl/svapp.hxx> FixedHyperlink::FixedHyperlink(vcl::Window* pParent, WinBits nWinStyle) : FixedText(pParent, nWinStyle) @@ -35,8 +36,8 @@ // to underline aFont.SetUnderline( UNDERLINE_SINGLE ); SetControlFont( aFont ); - // changes the color to light blue - SetControlForeground( Color( COL_LIGHTBLUE ) ); + // changes the color to link color + SetControlForeground( Application::GetSettings().GetStyleSettings().GetLinkColor() ); // calculates text len m_nTextLen = GetCtrlTextWidth( GetText() ); } diff -Nru libreoffice-5.1.1~rc2/vcl/source/control/spinfld.cxx libreoffice-5.1.2~rc2/vcl/source/control/spinfld.cxx --- libreoffice-5.1.1~rc2/vcl/source/control/spinfld.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/vcl/source/control/spinfld.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -81,7 +81,8 @@ rRenderContext.IsNativeControlSupported(CTRL_SPINBOX, rSpinbuttonValue.mnLowerPart)) { // only paint the embedded spin buttons, all buttons are painted at once - bNativeOK = rRenderContext.DrawNativeControl(CTRL_SPINBOX, PART_ALL_BUTTONS, Rectangle(), + Rectangle aUpperAndLowerButtons( rSpinbuttonValue.maUpperRect.GetUnion( rSpinbuttonValue.maLowerRect ) ); + bNativeOK = rRenderContext.DrawNativeControl(CTRL_SPINBOX, PART_ALL_BUTTONS, aUpperAndLowerButtons, ControlState::ENABLED, rSpinbuttonValue, OUString()); } else @@ -142,8 +143,9 @@ if (rRenderContext.IsNativeControlSupported(CTRL_SPINBUTTONS, PART_ENTIRE_CONTROL)) { + Rectangle aArea = rSpinbuttonValue.maUpperRect.GetUnion(rSpinbuttonValue.maLowerRect); // only paint the standalone spin buttons, all buttons are painted at once - bNativeOK = rRenderContext.DrawNativeControl(CTRL_SPINBUTTONS, PART_ALL_BUTTONS, Rectangle(), + bNativeOK = rRenderContext.DrawNativeControl(CTRL_SPINBUTTONS, PART_ALL_BUTTONS, aArea, ControlState::ENABLED, rSpinbuttonValue, OUString()); } return bNativeOK; @@ -156,49 +158,7 @@ bool bUpperIn, bool bLowerIn, bool bUpperEnabled, bool bLowerEnabled, bool bHorz, bool bMirrorHorz) { - DecorationView aDecoView(&rRenderContext); - - DrawButtonFlags nStyle = DrawButtonFlags::NoLeftLightBorder; - DrawSymbolFlags nSymStyle = DrawSymbolFlags::NONE; - - SymbolType eType1, eType2; - - const StyleSettings& rStyleSettings = rRenderContext.GetSettings().GetStyleSettings(); - if ( rStyleSettings.GetOptions() & StyleSettingsOptions::SpinArrow ) - { - // arrows are only use in OS/2 look - if ( bHorz ) - { - eType1 = bMirrorHorz ? SymbolType::ARROW_RIGHT : SymbolType::ARROW_LEFT; - eType2 = bMirrorHorz ? SymbolType::ARROW_LEFT : SymbolType::ARROW_RIGHT; - } - else - { - eType1 = SymbolType::ARROW_UP; - eType2 = SymbolType::ARROW_DOWN; - } - } - else - { - if ( bHorz ) - { - eType1 = bMirrorHorz ? SymbolType::SPIN_RIGHT : SymbolType::SPIN_LEFT; - eType2 = bMirrorHorz ? SymbolType::SPIN_LEFT : SymbolType::SPIN_RIGHT; - } - else - { - eType1 = SymbolType::SPIN_UP; - eType2 = SymbolType::SPIN_DOWN; - } - } - - // draw upper/left Button - DrawButtonFlags nTempStyle = nStyle; - if (bUpperIn) - nTempStyle |= DrawButtonFlags::Pressed; - bool bNativeOK = false; - Rectangle aUpRect; if (pWindow) { @@ -234,15 +194,66 @@ bNativeOK = ImplDrawNativeSpinbuttons(rRenderContext, aValue); } - if (!bNativeOK) - aUpRect = aDecoView.DrawButton(rUpperRect, nTempStyle); + if (bNativeOK) + return; + + ImplDrawUpDownButtons(rRenderContext, + rUpperRect, rLowerRect, + bUpperIn, bLowerIn, bUpperEnabled, bLowerEnabled, + bHorz, bMirrorHorz); +} + +void ImplDrawUpDownButtons(vcl::RenderContext& rRenderContext, + const Rectangle& rUpperRect, const Rectangle& rLowerRect, + bool bUpperIn, bool bLowerIn, bool bUpperEnabled, bool bLowerEnabled, + bool bHorz, bool bMirrorHorz) +{ + DecorationView aDecoView(&rRenderContext); + + SymbolType eType1, eType2; + + const StyleSettings& rStyleSettings = rRenderContext.GetSettings().GetStyleSettings(); + if ( rStyleSettings.GetOptions() & StyleSettingsOptions::SpinArrow ) + { + // arrows are only use in OS/2 look + if ( bHorz ) + { + eType1 = bMirrorHorz ? SymbolType::ARROW_RIGHT : SymbolType::ARROW_LEFT; + eType2 = bMirrorHorz ? SymbolType::ARROW_LEFT : SymbolType::ARROW_RIGHT; + } + else + { + eType1 = SymbolType::ARROW_UP; + eType2 = SymbolType::ARROW_DOWN; + } + } + else + { + if ( bHorz ) + { + eType1 = bMirrorHorz ? SymbolType::SPIN_RIGHT : SymbolType::SPIN_LEFT; + eType2 = bMirrorHorz ? SymbolType::SPIN_LEFT : SymbolType::SPIN_RIGHT; + } + else + { + eType1 = SymbolType::SPIN_UP; + eType2 = SymbolType::SPIN_DOWN; + } + } + + DrawButtonFlags nStyle = DrawButtonFlags::NoLeftLightBorder; + // draw upper/left Button + if (bUpperIn) + nStyle |= DrawButtonFlags::Pressed; + + Rectangle aUpRect = aDecoView.DrawButton(rUpperRect, nStyle); + nStyle = DrawButtonFlags::NoLeftLightBorder; // draw lower/right Button if (bLowerIn) nStyle |= DrawButtonFlags::Pressed; - Rectangle aLowRect; - if(!bNativeOK) - aLowRect = aDecoView.DrawButton(rLowerRect, nStyle); + + Rectangle aLowRect = aDecoView.DrawButton(rLowerRect, nStyle); // make use of additional default edge aUpRect.Left()--; @@ -283,16 +294,15 @@ aLowRect.Top()++; } - DrawSymbolFlags nTempSymStyle = nSymStyle; + DrawSymbolFlags nSymStyle = DrawSymbolFlags::NONE; if (!bUpperEnabled) - nTempSymStyle |= DrawSymbolFlags::Disable; - if (!bNativeOK) - aDecoView.DrawSymbol(aUpRect, eType1, rStyleSettings.GetButtonTextColor(), nTempSymStyle); + nSymStyle |= DrawSymbolFlags::Disable; + aDecoView.DrawSymbol(aUpRect, eType1, rStyleSettings.GetButtonTextColor(), nSymStyle); + nSymStyle = DrawSymbolFlags::NONE; if (!bLowerEnabled) nSymStyle |= DrawSymbolFlags::Disable; - if (!bNativeOK) - aDecoView.DrawSymbol(aLowRect, eType2, rStyleSettings.GetButtonTextColor(), nSymStyle); + aDecoView.DrawSymbol(aLowRect, eType2, rStyleSettings.GetButtonTextColor(), nSymStyle); } void SpinField::ImplInitSpinFieldData() diff -Nru libreoffice-5.1.1~rc2/vcl/source/control/tabctrl.cxx libreoffice-5.1.2~rc2/vcl/source/control/tabctrl.cxx --- libreoffice-5.1.1~rc2/vcl/source/control/tabctrl.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/vcl/source/control/tabctrl.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -847,8 +847,8 @@ if (!bLayout && (bNativeOK = rRenderContext.IsNativeControlSupported(CTRL_TAB_ITEM, PART_ENTIRE_CONTROL))) { TabitemValue tiValue(Rectangle(pItem->maRect.Left() + TAB_TABOFFSET_X, - pItem->maRect.Right() - TAB_TABOFFSET_X, pItem->maRect.Top() + TAB_TABOFFSET_Y, + pItem->maRect.Right() - TAB_TABOFFSET_X, pItem->maRect.Bottom() - TAB_TABOFFSET_Y)); if (pItem->maRect.Left() < 5) tiValue.mnAlignment |= TabitemFlags::LeftAligned; diff -Nru libreoffice-5.1.1~rc2/vcl/source/filter/igif/gifread.hxx libreoffice-5.1.2~rc2/vcl/source/filter/igif/gifread.hxx --- libreoffice-5.1.1~rc2/vcl/source/filter/igif/gifread.hxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/vcl/source/filter/igif/gifread.hxx 2016-03-29 15:41:04.000000000 +0000 @@ -20,7 +20,7 @@ #ifndef INCLUDED_VCL_SOURCE_FILTER_IGIF_GIFREAD_HXX #define INCLUDED_VCL_SOURCE_FILTER_IGIF_GIFREAD_HXX -#include <vcl/graph.hxx> +#include <vcl/graphic.hxx> #include <vcl/bmpacc.hxx> #ifdef _GIFPRIVATE diff -Nru libreoffice-5.1.1~rc2/vcl/source/filter/ixbm/xbmread.hxx libreoffice-5.1.2~rc2/vcl/source/filter/ixbm/xbmread.hxx --- libreoffice-5.1.1~rc2/vcl/source/filter/ixbm/xbmread.hxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/vcl/source/filter/ixbm/xbmread.hxx 2016-03-29 15:41:04.000000000 +0000 @@ -20,7 +20,7 @@ #ifndef INCLUDED_VCL_SOURCE_FILTER_IXBM_XBMREAD_HXX #define INCLUDED_VCL_SOURCE_FILTER_IXBM_XBMREAD_HXX -#include <vcl/graph.hxx> +#include <vcl/graphic.hxx> #include <vcl/bmpacc.hxx> #ifdef _XBMPRIVATE diff -Nru libreoffice-5.1.1~rc2/vcl/source/filter/ixpm/xpmread.cxx libreoffice-5.1.2~rc2/vcl/source/filter/ixpm/xpmread.cxx --- libreoffice-5.1.1~rc2/vcl/source/filter/ixpm/xpmread.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/vcl/source/filter/ixpm/xpmread.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -18,7 +18,7 @@ */ #include <vcl/bmpacc.hxx> -#include <vcl/graph.hxx> +#include <vcl/graphic.hxx> #include "rgbtable.hxx" #define _XPMPRIVATE #include "xpmread.hxx" diff -Nru libreoffice-5.1.1~rc2/vcl/source/filter/jpeg/Exif.hxx libreoffice-5.1.2~rc2/vcl/source/filter/jpeg/Exif.hxx --- libreoffice-5.1.1~rc2/vcl/source/filter/jpeg/Exif.hxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/vcl/source/filter/jpeg/Exif.hxx 2016-03-29 15:41:04.000000000 +0000 @@ -21,7 +21,7 @@ #define INCLUDED_VCL_SOURCE_FILTER_JPEG_EXIF_HXX #include <osl/endian.h> -#include <vcl/graph.hxx> +#include <vcl/graphic.hxx> #include <vcl/fltcall.hxx> #include <com/sun/star/uno/Sequence.h> #include <com/sun/star/beans/PropertyValue.hpp> diff -Nru libreoffice-5.1.1~rc2/vcl/source/filter/jpeg/jpegc.cxx libreoffice-5.1.2~rc2/vcl/source/filter/jpeg/jpegc.cxx --- libreoffice-5.1.1~rc2/vcl/source/filter/jpeg/jpegc.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/vcl/source/filter/jpeg/jpegc.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -231,7 +231,7 @@ } bool WriteJPEG( JPEGWriter* pJPEGWriter, void* pOutputStream, - long nWidth, long nHeight, bool bGreys, + long nWidth, long nHeight, basegfx::B2DSize aPPI, bool bGreys, long nQualityPercent, long aChromaSubsampling, css::uno::Reference<css::task::XStatusIndicator> const & status ) { @@ -270,8 +270,8 @@ jpeg_set_quality( &cinfo, (int) nQualityPercent, FALSE ); cinfo.density_unit = 1; - cinfo.X_density = 96; - cinfo.Y_density = 96; + cinfo.X_density = aPPI.getX(); + cinfo.Y_density = aPPI.getY(); if ( ( nWidth > 128 ) || ( nHeight > 128 ) ) jpeg_simple_progression( &cinfo ); diff -Nru libreoffice-5.1.1~rc2/vcl/source/filter/jpeg/jpeg.h libreoffice-5.1.2~rc2/vcl/source/filter/jpeg/jpeg.h --- libreoffice-5.1.1~rc2/vcl/source/filter/jpeg/jpeg.h 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/vcl/source/filter/jpeg/jpeg.h 2016-03-29 15:41:04.000000000 +0000 @@ -24,6 +24,7 @@ #include <com/sun/star/uno/Reference.hxx> #include <sal/types.h> +#include <basegfx/vector/b2dsize.hxx> #include <jpeglib.h> @@ -38,7 +39,8 @@ void jpeg_svstream_dest (j_compress_ptr cinfo, void* outfile); -bool WriteJPEG( JPEGWriter* pJPEGWriter, void* pOutputStream, long nWidth, long nHeight, bool bGreyScale, +bool WriteJPEG( JPEGWriter* pJPEGWriter, void* pOutputStream, + long nWidth, long nHeight, basegfx::B2DSize aPPI, bool bGreyScale, long nQualityPercent, long aChromaSubsampling, css::uno::Reference<css::task::XStatusIndicator> const & status); diff -Nru libreoffice-5.1.1~rc2/vcl/source/filter/jpeg/jpeg.hxx libreoffice-5.1.2~rc2/vcl/source/filter/jpeg/jpeg.hxx --- libreoffice-5.1.1~rc2/vcl/source/filter/jpeg/jpeg.hxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/vcl/source/filter/jpeg/jpeg.hxx 2016-03-29 15:41:04.000000000 +0000 @@ -20,7 +20,7 @@ #ifndef INCLUDED_VCL_SOURCE_FILTER_JPEG_JPEG_HXX #define INCLUDED_VCL_SOURCE_FILTER_JPEG_JPEG_HXX -#include <vcl/graph.hxx> +#include <vcl/graphic.hxx> #include <vcl/graphicfilter.hxx> #include <vcl/fltcall.hxx> #include <com/sun/star/uno/Sequence.h> diff -Nru libreoffice-5.1.1~rc2/vcl/source/filter/jpeg/JpegReader.hxx libreoffice-5.1.2~rc2/vcl/source/filter/jpeg/JpegReader.hxx --- libreoffice-5.1.1~rc2/vcl/source/filter/jpeg/JpegReader.hxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/vcl/source/filter/jpeg/JpegReader.hxx 2016-03-29 15:41:04.000000000 +0000 @@ -20,7 +20,7 @@ #ifndef INCLUDED_VCL_SOURCE_FILTER_JPEG_JPEGREADER_HXX #define INCLUDED_VCL_SOURCE_FILTER_JPEG_JPEGREADER_HXX -#include <vcl/graph.hxx> +#include <vcl/graphic.hxx> #include <vcl/fltcall.hxx> #include <com/sun/star/uno/Sequence.h> #include <com/sun/star/beans/PropertyValue.hpp> diff -Nru libreoffice-5.1.1~rc2/vcl/source/filter/jpeg/JpegTransform.hxx libreoffice-5.1.2~rc2/vcl/source/filter/jpeg/JpegTransform.hxx --- libreoffice-5.1.1~rc2/vcl/source/filter/jpeg/JpegTransform.hxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/vcl/source/filter/jpeg/JpegTransform.hxx 2016-03-29 15:41:04.000000000 +0000 @@ -20,7 +20,7 @@ #ifndef INCLUDED_VCL_SOURCE_FILTER_JPEG_JPEGTRANSFORM_HXX #define INCLUDED_VCL_SOURCE_FILTER_JPEG_JPEGTRANSFORM_HXX -#include <vcl/graph.hxx> +#include <vcl/graphic.hxx> class JpegTransform { diff -Nru libreoffice-5.1.1~rc2/vcl/source/filter/jpeg/JpegWriter.cxx libreoffice-5.1.2~rc2/vcl/source/filter/jpeg/JpegWriter.cxx --- libreoffice-5.1.1~rc2/vcl/source/filter/jpeg/JpegWriter.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/vcl/source/filter/jpeg/JpegWriter.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -227,7 +227,11 @@ if( !mbNative ) mpBuffer = new sal_uInt8[ AlignedWidth4Bytes( mbGreys ? mpReadAccess->Width() * 8L : mpReadAccess->Width() * 24L ) ]; - bRet = WriteJPEG( this, &mrStream, mpReadAccess->Width(), mpReadAccess->Height(), mbGreys, mnQuality, maChromaSubsampling, mxStatusIndicator ); + SAL_INFO("vcl", "\nJPEG Export - DPI X: " << rGraphic.GetPPI().getX() << "\nJPEG Export - DPI Y: " << rGraphic.GetPPI().getY()); + + bRet = WriteJPEG( this, &mrStream, mpReadAccess->Width(), + mpReadAccess->Height(), rGraphic.GetPPI(), mbGreys, + mnQuality, maChromaSubsampling, mxStatusIndicator ); delete[] mpBuffer; mpBuffer = nullptr; diff -Nru libreoffice-5.1.1~rc2/vcl/source/filter/jpeg/JpegWriter.hxx libreoffice-5.1.2~rc2/vcl/source/filter/jpeg/JpegWriter.hxx --- libreoffice-5.1.1~rc2/vcl/source/filter/jpeg/JpegWriter.hxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/vcl/source/filter/jpeg/JpegWriter.hxx 2016-03-29 15:41:04.000000000 +0000 @@ -20,7 +20,7 @@ #ifndef INCLUDED_VCL_SOURCE_FILTER_JPEG_JPEGWRITER_HXX #define INCLUDED_VCL_SOURCE_FILTER_JPEG_JPEGWRITER_HXX -#include <vcl/graph.hxx> +#include <vcl/graphic.hxx> #include <vcl/fltcall.hxx> #include <com/sun/star/uno/Sequence.h> #include <com/sun/star/beans/PropertyValue.hpp> diff -Nru libreoffice-5.1.1~rc2/vcl/source/filter/sgvmain.cxx libreoffice-5.1.2~rc2/vcl/source/filter/sgvmain.cxx --- libreoffice-5.1.1~rc2/vcl/source/filter/sgvmain.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/vcl/source/filter/sgvmain.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -19,7 +19,7 @@ #include <rtl/math.hxx> #include <osl/endian.h> -#include <vcl/graph.hxx> +#include <vcl/graphic.hxx> #include <tools/poly.hxx> #include <tools/fract.hxx> #include <vcl/graphicfilter.hxx> diff -Nru libreoffice-5.1.1~rc2/vcl/source/filter/wmf/emfwr.hxx libreoffice-5.1.2~rc2/vcl/source/filter/wmf/emfwr.hxx --- libreoffice-5.1.1~rc2/vcl/source/filter/wmf/emfwr.hxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/vcl/source/filter/wmf/emfwr.hxx 2016-03-29 15:41:04.000000000 +0000 @@ -21,7 +21,7 @@ #define INCLUDED_VCL_SOURCE_FILTER_WMF_EMFWR_HXX #include <vcl/metaact.hxx> -#include <vcl/graph.hxx> +#include <vcl/graphic.hxx> #include <vcl/gdimtf.hxx> #include <vcl/virdev.hxx> #include <vcl/fltcall.hxx> diff -Nru libreoffice-5.1.1~rc2/vcl/source/filter/wmf/enhwmf.cxx libreoffice-5.1.2~rc2/vcl/source/filter/wmf/enhwmf.cxx --- libreoffice-5.1.1~rc2/vcl/source/filter/wmf/enhwmf.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/vcl/source/filter/wmf/enhwmf.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -17,10 +17,12 @@ * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ -#include "winmtf.hxx" #include <osl/endian.h> #include <basegfx/matrix/b2dhommatrix.hxx> #include <vcl/dibtools.hxx> + +#include "winmtf.hxx" + #include <memory> #ifdef DBG_UTIL @@ -912,37 +914,27 @@ aLineInfo.SetWidth( aSize.Width() ); bool bTransparent = false; - switch( nStyle & 0xFF ) + switch( nStyle & PS_STYLE_MASK ) { case PS_DASHDOTDOT : aLineInfo.SetStyle( LINE_DASH ); aLineInfo.SetDashCount( 1 ); aLineInfo.SetDotCount( 2 ); - aLineInfo.SetDashLen( 150 ); - aLineInfo.SetDotLen( 30 ); - aLineInfo.SetDistance( 50 ); break; case PS_DASHDOT : aLineInfo.SetStyle( LINE_DASH ); aLineInfo.SetDashCount( 1 ); aLineInfo.SetDotCount( 1 ); - aLineInfo.SetDashLen( 150 ); - aLineInfo.SetDotLen( 30 ); - aLineInfo.SetDistance( 90 ); break; case PS_DOT : aLineInfo.SetStyle( LINE_DASH ); aLineInfo.SetDashCount( 0 ); aLineInfo.SetDotCount( 1 ); - aLineInfo.SetDotLen( 30 ); - aLineInfo.SetDistance( 50 ); break; case PS_DASH : aLineInfo.SetStyle( LINE_DASH ); aLineInfo.SetDashCount( 1 ); aLineInfo.SetDotCount( 0 ); - aLineInfo.SetDashLen( 225 ); - aLineInfo.SetDistance( 100 ); break; case PS_NULL : bTransparent = true; @@ -953,7 +945,7 @@ default : aLineInfo.SetStyle( LINE_SOLID ); } - switch( nStyle & 0xF00 ) + switch( nStyle & PS_ENDCAP_STYLE_MASK ) { case PS_ENDCAP_ROUND : if ( aSize.Width() ) @@ -971,7 +963,7 @@ default : aLineInfo.SetLineCap( css::drawing::LineCap_BUTT ); } - switch( nStyle & 0xF000 ) + switch( nStyle & PS_JOIN_STYLE_MASK ) { case PS_JOIN_ROUND : aLineInfo.SetLineJoin ( basegfx::B2DLineJoin::Round ); @@ -1008,20 +1000,28 @@ aLineInfo.SetWidth( nWidth ); bool bTransparent = false; - sal_uInt16 nDashCount = 0; - sal_uInt16 nDotCount = 0; switch( nStyle & PS_STYLE_MASK ) { case PS_DASHDOTDOT : - nDotCount++; + aLineInfo.SetStyle( LINE_DASH ); + aLineInfo.SetDashCount( 1 ); + aLineInfo.SetDotCount( 2 ); + break; case PS_DASHDOT : - nDashCount++; + aLineInfo.SetStyle( LINE_DASH ); + aLineInfo.SetDashCount( 1 ); + aLineInfo.SetDotCount( 1 ); + break; case PS_DOT : - nDotCount++; + aLineInfo.SetStyle( LINE_DASH ); + aLineInfo.SetDashCount( 0 ); + aLineInfo.SetDotCount( 1 ); break; case PS_DASH : - nDashCount++; + aLineInfo.SetStyle( LINE_DASH ); + aLineInfo.SetDashCount( 1 ); + aLineInfo.SetDotCount( 0 ); break; case PS_NULL : bTransparent = true; @@ -1033,11 +1033,37 @@ default : aLineInfo.SetStyle( LINE_SOLID ); } - if ( nDashCount | nDotCount ) + switch( nStyle & PS_ENDCAP_STYLE_MASK ) { - aLineInfo.SetStyle( LINE_DASH ); - aLineInfo.SetDashCount( nDashCount ); - aLineInfo.SetDotCount( nDotCount ); + case PS_ENDCAP_ROUND : + if ( aLineInfo.GetWidth() ) + { + aLineInfo.SetLineCap( css::drawing::LineCap_ROUND ); + break; + } + case PS_ENDCAP_SQUARE : + if ( aLineInfo.GetWidth() ) + { + aLineInfo.SetLineCap( css::drawing::LineCap_SQUARE ); + break; + } + case PS_ENDCAP_FLAT : + default : + aLineInfo.SetLineCap( css::drawing::LineCap_BUTT ); + } + switch( nStyle & PS_JOIN_STYLE_MASK ) + { + case PS_JOIN_ROUND : + aLineInfo.SetLineJoin ( basegfx::B2DLineJoin::Round ); + break; + case PS_JOIN_MITER : + aLineInfo.SetLineJoin ( basegfx::B2DLineJoin::Miter ); + break; + case PS_JOIN_BEVEL : + aLineInfo.SetLineJoin ( basegfx::B2DLineJoin::Bevel ); + break; + default : + aLineInfo.SetLineJoin ( basegfx::B2DLineJoin::NONE ); } pOut->CreateObject( nIndex, GDI_PEN, new WinMtfLineStyle( aColorRef, aLineInfo, bTransparent ) ); } diff -Nru libreoffice-5.1.1~rc2/vcl/source/filter/wmf/winmtf.cxx libreoffice-5.1.2~rc2/vcl/source/filter/wmf/winmtf.cxx --- libreoffice-5.1.1~rc2/vcl/source/filter/wmf/winmtf.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/vcl/source/filter/wmf/winmtf.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -503,14 +503,13 @@ return rPolygon; } -tools::Polygon& WinMtfOutput::ImplScale( tools::Polygon& rPolygon ) +void WinMtfOutput::ImplScale( tools::Polygon& rPolygon ) { sal_uInt16 nPoints = rPolygon.GetSize(); for ( sal_uInt16 i = 0; i < nPoints; i++ ) { rPolygon[ i ] = ImplScale( rPolygon[ i ] ); } - return rPolygon; } tools::PolyPolygon& WinMtfOutput::ImplScale( tools::PolyPolygon& rPolyPolygon ) @@ -730,8 +729,16 @@ { WinMtfLineStyle* pLineStyle = static_cast<WinMtfLineStyle*>(pStyle); Size aSize(pLineStyle->aLineInfo.GetWidth(), 0); - aSize = ImplMap(aSize); - pLineStyle->aLineInfo.SetWidth(aSize.Width()); + pLineStyle->aLineInfo.SetWidth( ImplMap(aSize).Width() ); + + if ( pLineStyle->aLineInfo.GetStyle() == LINE_DASH ) + { + aSize.Width() += 1; + long nDotLen = ImplMap( aSize ).Width(); + pLineStyle->aLineInfo.SetDistance( nDotLen ); + pLineStyle->aLineInfo.SetDotLen( nDotLen ); + pLineStyle->aLineInfo.SetDashLen( nDotLen * 3 ); + } } } if ( (sal_uInt32)nIndex >= vGDIObj.size() ) diff -Nru libreoffice-5.1.1~rc2/vcl/source/filter/wmf/winmtf.hxx libreoffice-5.1.2~rc2/vcl/source/filter/wmf/winmtf.hxx --- libreoffice-5.1.1~rc2/vcl/source/filter/wmf/winmtf.hxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/vcl/source/filter/wmf/winmtf.hxx 2016-03-29 15:41:04.000000000 +0000 @@ -21,7 +21,7 @@ #define INCLUDED_VCL_SOURCE_FILTER_WMF_WINMTF_HXX #include <sot/object.hxx> -#include <vcl/graph.hxx> +#include <vcl/graphic.hxx> #include <basegfx/tools/b2dclipstate.hxx> #include <vcl/font.hxx> #include <vcl/bmpacc.hxx> @@ -148,14 +148,15 @@ #define PS_INSIDEFRAME 6 #define PS_STYLE_MASK 15 -#define PS_ENDCAP_ROUND 0x000 -#define PS_ENDCAP_SQUARE 0x100 -#define PS_ENDCAP_FLAT 0x200 +#define PS_ENDCAP_ROUND 0x000 +#define PS_ENDCAP_SQUARE 0x100 +#define PS_ENDCAP_FLAT 0x200 +#define PS_ENDCAP_STYLE_MASK 0xF00 #define PS_JOIN_ROUND 0x0000 #define PS_JOIN_BEVEL 0x1000 #define PS_JOIN_MITER 0x2000 - +#define PS_JOIN_STYLE_MASK 0xF000 #define ANSI_CHARSET 0 #define DEFAULT_CHARSET 1 @@ -609,7 +610,7 @@ void ImplMap( vcl::Font& rFont ); tools::Polygon& ImplMap( tools::Polygon& rPolygon ); tools::PolyPolygon& ImplMap( tools::PolyPolygon& rPolyPolygon ); - tools::Polygon& ImplScale( tools::Polygon& rPolygon ); + void ImplScale( tools::Polygon& rPolygon ); tools::PolyPolygon& ImplScale( tools::PolyPolygon& rPolyPolygon ); void ImplResizeObjectArry( sal_uInt32 nNewEntry ); void ImplSetNonPersistentLineColorTransparenz(); diff -Nru libreoffice-5.1.1~rc2/vcl/source/filter/wmf/winwmf.cxx libreoffice-5.1.2~rc2/vcl/source/filter/wmf/winwmf.cxx --- libreoffice-5.1.1~rc2/vcl/source/filter/wmf/winwmf.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/vcl/source/filter/wmf/winwmf.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -811,37 +811,28 @@ aLineInfo.SetWidth(nWidth); bool bTransparent = false; + switch( nStyle & 0xFF ) { case PS_DASHDOTDOT : aLineInfo.SetStyle( LINE_DASH ); aLineInfo.SetDashCount( 1 ); aLineInfo.SetDotCount( 2 ); - aLineInfo.SetDashLen( 150 ); - aLineInfo.SetDotLen( 30 ); - aLineInfo.SetDistance( 50 ); break; case PS_DASHDOT : aLineInfo.SetStyle( LINE_DASH ); aLineInfo.SetDashCount( 1 ); aLineInfo.SetDotCount( 1 ); - aLineInfo.SetDashLen( 150 ); - aLineInfo.SetDotLen( 30 ); - aLineInfo.SetDistance( 90 ); break; case PS_DOT : aLineInfo.SetStyle( LINE_DASH ); aLineInfo.SetDashCount( 0 ); aLineInfo.SetDotCount( 1 ); - aLineInfo.SetDotLen( 30 ); - aLineInfo.SetDistance( 50 ); break; case PS_DASH : aLineInfo.SetStyle( LINE_DASH ); aLineInfo.SetDashCount( 1 ); aLineInfo.SetDotCount( 0 ); - aLineInfo.SetDashLen( 225 ); - aLineInfo.SetDistance( 100 ); break; case PS_NULL : bTransparent = true; diff -Nru libreoffice-5.1.1~rc2/vcl/source/filter/wmf/wmfwr.hxx libreoffice-5.1.2~rc2/vcl/source/filter/wmf/wmfwr.hxx --- libreoffice-5.1.1~rc2/vcl/source/filter/wmf/wmfwr.hxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/vcl/source/filter/wmf/wmfwr.hxx 2016-03-29 15:41:04.000000000 +0000 @@ -21,7 +21,7 @@ #define INCLUDED_VCL_SOURCE_FILTER_WMF_WMFWR_HXX #include <vcl/metaact.hxx> -#include <vcl/graph.hxx> +#include <vcl/graphic.hxx> #include <vcl/gdimtf.hxx> #include <vcl/virdev.hxx> #include <vcl/fltcall.hxx> diff -Nru libreoffice-5.1.1~rc2/vcl/source/gdi/bitmap4.cxx libreoffice-5.1.2~rc2/vcl/source/gdi/bitmap4.cxx --- libreoffice-5.1.1~rc2/vcl/source/gdi/bitmap4.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/vcl/source/gdi/bitmap4.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -942,6 +942,7 @@ bool Bitmap::ImplPopArt() { + /* note: GetBitCount() after that is no more than 8 */ bool bRet = ( GetBitCount() <= 8 ) || Convert( BMP_CONVERSION_8BIT_COLORS ); if( bRet ) @@ -954,8 +955,8 @@ { const long nWidth = pWriteAcc->Width(); const long nHeight = pWriteAcc->Height(); - const sal_uLong nEntryCount = 1UL << pWriteAcc->GetBitCount(); - sal_uLong n; + const int nEntryCount = 1 << pWriteAcc->GetBitCount(); + int n; PopArtEntry* pPopArtTable = new PopArtEntry[ nEntryCount ]; for( n = 0; n < nEntryCount; n++ ) diff -Nru libreoffice-5.1.1~rc2/vcl/source/gdi/cvtsvm.cxx libreoffice-5.1.2~rc2/vcl/source/gdi/cvtsvm.cxx --- libreoffice-5.1.1~rc2/vcl/source/gdi/cvtsvm.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/vcl/source/gdi/cvtsvm.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -26,7 +26,7 @@ #include <tools/helpers.hxx> #include <vcl/dibtools.hxx> #include <vcl/virdev.hxx> -#include <vcl/graph.hxx> +#include <vcl/graphic.hxx> #include <vcl/lineinfo.hxx> #include <rtl/strbuf.hxx> diff -Nru libreoffice-5.1.1~rc2/vcl/source/gdi/gfxlink.cxx libreoffice-5.1.2~rc2/vcl/source/gdi/gfxlink.cxx --- libreoffice-5.1.1~rc2/vcl/source/gdi/gfxlink.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/vcl/source/gdi/gfxlink.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -24,7 +24,7 @@ #include <unotools/ucbstreamhelper.hxx> #include <unotools/tempfile.hxx> #include <ucbhelper/content.hxx> -#include <vcl/graph.hxx> +#include <vcl/graphic.hxx> #include <vcl/gfxlink.hxx> #include <vcl/cvtgrf.hxx> #include <com/sun/star/ucb/CommandAbortedException.hpp> diff -Nru libreoffice-5.1.1~rc2/vcl/source/gdi/graph.cxx libreoffice-5.1.2~rc2/vcl/source/gdi/graph.cxx --- libreoffice-5.1.1~rc2/vcl/source/gdi/graph.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/vcl/source/gdi/graph.cxx 1970-01-01 00:00:00.000000000 +0000 @@ -1,574 +0,0 @@ -/* -*- 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 <vcl/outdev.hxx> -#include <vcl/svapp.hxx> -#include <vcl/graph.hxx> -#include <vcl/metaact.hxx> -#include <impgraph.hxx> -#include <comphelper/processfactory.hxx> -#include <com/sun/star/lang/XMultiServiceFactory.hpp> -#include <com/sun/star/graphic/GraphicProvider.hpp> -#include <com/sun/star/graphic/XGraphicProvider.hpp> -#include <com/sun/star/lang/XUnoTunnel.hpp> -#include <com/sun/star/lang/XTypeProvider.hpp> -#include <com/sun/star/graphic/XGraphic.hpp> -#include <cppuhelper/typeprovider.hxx> - -using namespace ::com::sun::star; - -static void ImplDrawDefault( OutputDevice* pOutDev, const OUString* pText, - vcl::Font* pFont, const Bitmap* pBitmap, const BitmapEx* pBitmapEx, - const Point& rDestPt, const Size& rDestSize ) -{ - sal_uInt16 nPixel = (sal_uInt16) pOutDev->PixelToLogic( Size( 1, 1 ) ).Width(); - sal_uInt16 nPixelWidth = nPixel; - Point aPoint( rDestPt.X() + nPixelWidth, rDestPt.Y() + nPixelWidth ); - Size aSize( rDestSize.Width() - ( nPixelWidth << 1 ), rDestSize.Height() - ( nPixelWidth << 1 ) ); - bool bFilled = ( pBitmap != nullptr || pBitmapEx != nullptr || pFont != nullptr ); - Rectangle aBorderRect( aPoint, aSize ); - - pOutDev->Push(); - - pOutDev->SetFillColor(); - - // On the printer a black rectangle and on the screen one with 3D effect - if ( pOutDev->GetOutDevType() == OUTDEV_PRINTER ) - pOutDev->SetLineColor( COL_BLACK ); - else - { - aBorderRect.Left() += nPixel; - aBorderRect.Top() += nPixel; - - pOutDev->SetLineColor( COL_LIGHTGRAY ); - pOutDev->DrawRect( aBorderRect ); - - aBorderRect.Left() -= nPixel; - aBorderRect.Top() -= nPixel; - aBorderRect.Right() -= nPixel; - aBorderRect.Bottom() -= nPixel; - pOutDev->SetLineColor( COL_GRAY ); - } - - pOutDev->DrawRect( aBorderRect ); - - aPoint.X() += nPixelWidth + 2*nPixel; - aPoint.Y() += nPixelWidth + 2*nPixel; - aSize.Width() -= 2*nPixelWidth + 4*nPixel; - aSize.Height() -= 2*nPixelWidth + 4*nPixel; - - if( aSize.Width() > 0 && aSize.Height() > 0 - && ( ( pBitmap && !!*pBitmap ) || ( pBitmapEx && !!*pBitmapEx ) ) ) - { - Size aBitmapSize( pOutDev->PixelToLogic( pBitmap ? pBitmap->GetSizePixel() : pBitmapEx->GetSizePixel() ) ); - - if( aSize.Height() > aBitmapSize.Height() && aSize.Width() > aBitmapSize.Width() ) - { - if ( pBitmap ) - pOutDev->DrawBitmap( aPoint, *pBitmap ); - else - pOutDev->DrawBitmapEx( aPoint, *pBitmapEx ); - aPoint.X() += aBitmapSize.Width() + 2*nPixel; - aSize.Width() -= aBitmapSize.Width() + 2*nPixel; - } - } - - if ( aSize.Width() > 0 && aSize.Height() > 0 && pFont && pText && pText->getLength() - && !(!pOutDev->IsOutputEnabled() /*&& pOutDev->GetConnectMetaFile() */) ) - { - MapMode aMapMode( MAP_POINT ); - Size aSz = pOutDev->LogicToLogic( Size( 0, 12 ), &aMapMode, nullptr ); - long nThreshold = aSz.Height() / 2; - long nStep = nThreshold / 3; - - if ( !nStep ) - nStep = aSz.Height() - nThreshold; - - for(;; aSz.Height() -= nStep ) - { - pFont->SetSize( aSz ); - pOutDev->SetFont( *pFont ); - - long nTextHeight = pOutDev->GetTextHeight(); - long nTextWidth = pOutDev->GetTextWidth( *pText ); - if ( nTextHeight ) - { - // The approximation does not respect imprecisions caused - // by word wraps - long nLines = aSize.Height() / nTextHeight; - long nWidth = aSize.Width() * nLines; // Approximation!!! - - if ( nTextWidth <= nWidth || aSz.Height() <= nThreshold ) - { - sal_uInt16 nStart = 0; - sal_uInt16 nLen = 0; - - while( nStart < pText->getLength() && (*pText)[nStart] == ' ' ) - nStart++; - while( nStart+nLen < pText->getLength() && (*pText)[nStart+nLen] != ' ' ) - nLen++; - while( nStart < pText->getLength() && nLines-- ) - { - sal_uInt16 nNext = nLen; - do - { - while ( nStart+nNext < pText->getLength() && (*pText)[nStart+nNext] == ' ' ) - nNext++; - while ( nStart+nNext < pText->getLength() && (*pText)[nStart+nNext] != ' ' ) - nNext++; - nTextWidth = pOutDev->GetTextWidth( *pText, nStart, nNext ); - if ( nTextWidth > aSize.Width() ) - break; - nLen = nNext; - } - while ( nStart+nNext < pText->getLength() ); - - sal_uInt16 n = nLen; - nTextWidth = pOutDev->GetTextWidth( *pText, nStart, n ); - while( nTextWidth > aSize.Width() ) - nTextWidth = pOutDev->GetTextWidth( *pText, nStart, --n ); - pOutDev->DrawText( aPoint, *pText, nStart, n ); - - aPoint.Y() += nTextHeight; - nStart = sal::static_int_cast<sal_uInt16>(nStart + nLen); - nLen = nNext-nLen; - while( nStart < pText->getLength() && (*pText)[nStart] == ' ' ) - { - nStart++; - nLen--; - } - } - break; - } - } - else - break; - } - } - - // If the default graphic does not have content, we draw a red rectangle - if( !bFilled ) - { - aBorderRect.Left()++; - aBorderRect.Top()++; - aBorderRect.Right()--; - aBorderRect.Bottom()--; - - pOutDev->SetLineColor( COL_LIGHTRED ); - pOutDev->DrawLine( aBorderRect.TopLeft(), aBorderRect.BottomRight() ); - pOutDev->DrawLine( aBorderRect.TopRight(), aBorderRect.BottomLeft() ); - } - - pOutDev->Pop(); -} - -Graphic::Graphic() -{ - mpImpGraphic = new ImpGraphic; -} - -Graphic::Graphic( const Graphic& rGraphic ) : -SvDataCopyStream() -{ - if( rGraphic.IsAnimated() ) - mpImpGraphic = new ImpGraphic( *rGraphic.mpImpGraphic ); - else - { - mpImpGraphic = rGraphic.mpImpGraphic; - mpImpGraphic->mnRefCount++; - } -} - -Graphic::Graphic( const Bitmap& rBmp ) -{ - mpImpGraphic = new ImpGraphic( rBmp ); -} - -Graphic::Graphic( const BitmapEx& rBmpEx ) -{ - mpImpGraphic = new ImpGraphic( rBmpEx ); -} - -Graphic::Graphic(const SvgDataPtr& rSvgDataPtr) -{ - mpImpGraphic = new ImpGraphic(rSvgDataPtr); -} - -Graphic::Graphic( const Animation& rAnimation ) -{ - mpImpGraphic = new ImpGraphic( rAnimation ); -} - -Graphic::Graphic( const GDIMetaFile& rMtf ) -{ - mpImpGraphic = new ImpGraphic( rMtf ); -} - -Graphic::Graphic( const css::uno::Reference< css::graphic::XGraphic >& rxGraphic ) -{ - uno::Reference< lang::XUnoTunnel > xTunnel( rxGraphic, uno::UNO_QUERY ); - const ::Graphic* pGraphic = ( xTunnel.is() ? - reinterpret_cast< ::Graphic* >( xTunnel->getSomething( getUnoTunnelId() ) ) : - nullptr ); - - if( pGraphic ) - { - if( pGraphic->IsAnimated() ) - mpImpGraphic = new ImpGraphic( *pGraphic->mpImpGraphic ); - else - { - mpImpGraphic = pGraphic->mpImpGraphic; - mpImpGraphic->mnRefCount++; - } - } - else - mpImpGraphic = new ImpGraphic; -} - -Graphic::~Graphic() -{ - if( mpImpGraphic->mnRefCount == 1UL ) - delete mpImpGraphic; - else - mpImpGraphic->mnRefCount--; -} - -void Graphic::ImplTestRefCount() -{ - if( mpImpGraphic->mnRefCount > 1UL ) - { - mpImpGraphic->mnRefCount--; - mpImpGraphic = new ImpGraphic( *mpImpGraphic ); - } -} - -Graphic& Graphic::operator=( const Graphic& rGraphic ) -{ - if( &rGraphic != this ) - { - if( rGraphic.IsAnimated() ) - { - if( mpImpGraphic->mnRefCount == 1UL ) - delete mpImpGraphic; - else - mpImpGraphic->mnRefCount--; - - mpImpGraphic = new ImpGraphic( *rGraphic.mpImpGraphic ); - } - else - { - rGraphic.mpImpGraphic->mnRefCount++; - - if( mpImpGraphic->mnRefCount == 1UL ) - delete mpImpGraphic; - else - mpImpGraphic->mnRefCount--; - - mpImpGraphic = rGraphic.mpImpGraphic; - } - } - - return *this; -} - -bool Graphic::operator==( const Graphic& rGraphic ) const -{ - return( *mpImpGraphic == *rGraphic.mpImpGraphic ); -} - -bool Graphic::operator!=( const Graphic& rGraphic ) const -{ - return( *mpImpGraphic != *rGraphic.mpImpGraphic ); -} - -bool Graphic::operator!() const -{ - return( GRAPHIC_NONE == mpImpGraphic->ImplGetType() ); -} - -void Graphic::Clear() -{ - ImplTestRefCount(); - mpImpGraphic->ImplClear(); -} - -GraphicType Graphic::GetType() const -{ - return mpImpGraphic->ImplGetType(); -} - -void Graphic::SetDefaultType() -{ - ImplTestRefCount(); - mpImpGraphic->ImplSetDefaultType(); -} - -bool Graphic::IsSupportedGraphic() const -{ - return mpImpGraphic->ImplIsSupportedGraphic(); -} - -bool Graphic::IsTransparent() const -{ - return mpImpGraphic->ImplIsTransparent(); -} - -bool Graphic::IsAlpha() const -{ - return mpImpGraphic->ImplIsAlpha(); -} - -bool Graphic::IsAnimated() const -{ - return mpImpGraphic->ImplIsAnimated(); -} - -bool Graphic::IsEPS() const -{ - return mpImpGraphic->ImplIsEPS(); -} - -Bitmap Graphic::GetBitmap(const GraphicConversionParameters& rParameters) const -{ - return mpImpGraphic->ImplGetBitmap(rParameters); -} - -BitmapEx Graphic::GetBitmapEx(const GraphicConversionParameters& rParameters) const -{ - return mpImpGraphic->ImplGetBitmapEx(rParameters); -} - -Animation Graphic::GetAnimation() const -{ - return mpImpGraphic->ImplGetAnimation(); -} - -const GDIMetaFile& Graphic::GetGDIMetaFile() const -{ - return mpImpGraphic->ImplGetGDIMetaFile(); -} - -uno::Reference< graphic::XGraphic > Graphic::GetXGraphic() const -{ - uno::Reference< graphic::XGraphic > xRet; - - if( GetType() != GRAPHIC_NONE ) - { - uno::Reference < uno::XComponentContext > xContext( ::comphelper::getProcessComponentContext() ); - uno::Reference< graphic::XGraphicProvider > xProv( graphic::GraphicProvider::create( xContext ) ); - - uno::Sequence< beans::PropertyValue > aLoadProps( 1 ); - OUString aURL = "private:memorygraphic/" + OUString::number( reinterpret_cast< sal_Int64 >( this ) ); - - aLoadProps[ 0 ].Name = "URL"; - aLoadProps[ 0 ].Value <<= aURL; - - xRet = xProv->queryGraphic( aLoadProps ); - } - - return xRet; -} - -Size Graphic::GetPrefSize() const -{ - return mpImpGraphic->ImplGetPrefSize(); -} - -void Graphic::SetPrefSize( const Size& rPrefSize ) -{ - ImplTestRefCount(); - mpImpGraphic->ImplSetPrefSize( rPrefSize ); -} - -MapMode Graphic::GetPrefMapMode() const -{ - return mpImpGraphic->ImplGetPrefMapMode(); -} - -void Graphic::SetPrefMapMode( const MapMode& rPrefMapMode ) -{ - ImplTestRefCount(); - mpImpGraphic->ImplSetPrefMapMode( rPrefMapMode ); -} - -Size Graphic::GetSizePixel( const OutputDevice* pRefDevice ) const -{ - Size aRet; - - if( GRAPHIC_BITMAP == mpImpGraphic->ImplGetType() ) - aRet = mpImpGraphic->ImplGetBitmapEx(GraphicConversionParameters()).GetSizePixel(); - else - aRet = ( pRefDevice ? pRefDevice : Application::GetDefaultDevice() )->LogicToPixel( GetPrefSize(), GetPrefMapMode() ); - - return aRet; -} - -sal_uLong Graphic::GetSizeBytes() const -{ - return mpImpGraphic->ImplGetSizeBytes(); -} - -void Graphic::Draw( OutputDevice* pOutDev, const Point& rDestPt ) const -{ - mpImpGraphic->ImplDraw( pOutDev, rDestPt ); -} - -void Graphic::Draw( OutputDevice* pOutDev, - const Point& rDestPt, const Size& rDestSz ) const -{ - if( GRAPHIC_DEFAULT == mpImpGraphic->ImplGetType() ) - ImplDrawDefault( pOutDev, nullptr, nullptr, nullptr, nullptr, rDestPt, rDestSz ); - else - mpImpGraphic->ImplDraw( pOutDev, rDestPt, rDestSz ); -} - -void Graphic::DrawEx( OutputDevice* pOutDev, const OUString& rText, - vcl::Font& rFont, const BitmapEx& rBitmap, - const Point& rDestPt, const Size& rDestSz ) -{ - ImplDrawDefault( pOutDev, &rText, &rFont, nullptr, &rBitmap, rDestPt, rDestSz ); -} - -void Graphic::StartAnimation( OutputDevice* pOutDev, const Point& rDestPt, - const Size& rDestSz, long nExtraData, - OutputDevice* pFirstFrameOutDev ) -{ - ImplTestRefCount(); - mpImpGraphic->ImplStartAnimation( pOutDev, rDestPt, rDestSz, nExtraData, pFirstFrameOutDev ); -} - -void Graphic::StopAnimation( OutputDevice* pOutDev, long nExtraData ) -{ - ImplTestRefCount(); - mpImpGraphic->ImplStopAnimation( pOutDev, nExtraData ); -} - -void Graphic::SetAnimationNotifyHdl( const Link<Animation*,void>& rLink ) -{ - mpImpGraphic->ImplSetAnimationNotifyHdl( rLink ); -} - -Link<Animation*,void> Graphic::GetAnimationNotifyHdl() const -{ - return mpImpGraphic->ImplGetAnimationNotifyHdl(); -} - -sal_uLong Graphic::GetAnimationLoopCount() const -{ - return mpImpGraphic->ImplGetAnimationLoopCount(); -} - -GraphicReader* Graphic::GetContext() -{ - return mpImpGraphic->ImplGetContext(); -} - -void Graphic::SetContext( GraphicReader* pReader ) -{ - mpImpGraphic->ImplSetContext( pReader ); -} - -bool Graphic::SwapOut() -{ - ImplTestRefCount(); - return mpImpGraphic->ImplSwapOut(); -} - -void Graphic::SwapOutAsLink() -{ - ImplTestRefCount(); - mpImpGraphic->ImplSwapOutAsLink(); -} - -bool Graphic::SwapOut( SvStream* pOStream ) -{ - ImplTestRefCount(); - return mpImpGraphic->ImplSwapOut( pOStream ); -} - -bool Graphic::SwapIn() -{ - ImplTestRefCount(); - return mpImpGraphic->ImplSwapIn(); -} - -bool Graphic::SwapIn( SvStream* pStrm ) -{ - ImplTestRefCount(); - return mpImpGraphic->ImplSwapIn( pStrm ); -} - -bool Graphic::IsSwapOut() const -{ - return mpImpGraphic->ImplIsSwapOut(); -} - -void Graphic::SetLink( const GfxLink& rGfxLink ) -{ - ImplTestRefCount(); - mpImpGraphic->ImplSetLink( rGfxLink ); -} - -GfxLink Graphic::GetLink() const -{ - return mpImpGraphic->ImplGetLink(); -} - -bool Graphic::IsLink() const -{ - return mpImpGraphic->ImplIsLink(); -} - -BitmapChecksum Graphic::GetChecksum() const -{ - return mpImpGraphic->ImplGetChecksum(); -} - -bool Graphic::ExportNative( SvStream& rOStream ) const -{ - return mpImpGraphic->ImplExportNative( rOStream ); -} - -SvStream& ReadGraphic( SvStream& rIStream, Graphic& rGraphic ) -{ - rGraphic.ImplTestRefCount(); - return ReadImpGraphic( rIStream, *rGraphic.mpImpGraphic ); -} - -SvStream& WriteGraphic( SvStream& rOStream, const Graphic& rGraphic ) -{ - return WriteImpGraphic( rOStream, *rGraphic.mpImpGraphic ); -} - -const SvgDataPtr& Graphic::getSvgData() const -{ - return mpImpGraphic->getSvgData(); -} - -namespace { - -struct Id: public rtl::Static<cppu::OImplementationId, Id> {}; - -} - -css::uno::Sequence<sal_Int8> Graphic::getUnoTunnelId() { - return Id::get().getImplementationId(); -} - -/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff -Nru libreoffice-5.1.1~rc2/vcl/source/gdi/graphic.cxx libreoffice-5.1.2~rc2/vcl/source/gdi/graphic.cxx --- libreoffice-5.1.1~rc2/vcl/source/gdi/graphic.cxx 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-5.1.2~rc2/vcl/source/gdi/graphic.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -0,0 +1,596 @@ +/* -*- 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 <vcl/outdev.hxx> +#include <vcl/svapp.hxx> +#include <vcl/graphic.hxx> +#include <vcl/metaact.hxx> +#include <impgraph.hxx> +#include <comphelper/processfactory.hxx> +#include <com/sun/star/lang/XMultiServiceFactory.hpp> +#include <com/sun/star/graphic/GraphicProvider.hpp> +#include <com/sun/star/graphic/XGraphicProvider.hpp> +#include <com/sun/star/lang/XUnoTunnel.hpp> +#include <com/sun/star/lang/XTypeProvider.hpp> +#include <com/sun/star/graphic/XGraphic.hpp> +#include <cppuhelper/typeprovider.hxx> + +using namespace ::com::sun::star; + +static void ImplDrawDefault( OutputDevice* pOutDev, const OUString* pText, + vcl::Font* pFont, const Bitmap* pBitmap, const BitmapEx* pBitmapEx, + const Point& rDestPt, const Size& rDestSize ) +{ + sal_uInt16 nPixel = (sal_uInt16) pOutDev->PixelToLogic( Size( 1, 1 ) ).Width(); + sal_uInt16 nPixelWidth = nPixel; + Point aPoint( rDestPt.X() + nPixelWidth, rDestPt.Y() + nPixelWidth ); + Size aSize( rDestSize.Width() - ( nPixelWidth << 1 ), rDestSize.Height() - ( nPixelWidth << 1 ) ); + bool bFilled = ( pBitmap != nullptr || pBitmapEx != nullptr || pFont != nullptr ); + Rectangle aBorderRect( aPoint, aSize ); + + pOutDev->Push(); + + pOutDev->SetFillColor(); + + // On the printer a black rectangle and on the screen one with 3D effect + if ( pOutDev->GetOutDevType() == OUTDEV_PRINTER ) + pOutDev->SetLineColor( COL_BLACK ); + else + { + aBorderRect.Left() += nPixel; + aBorderRect.Top() += nPixel; + + pOutDev->SetLineColor( COL_LIGHTGRAY ); + pOutDev->DrawRect( aBorderRect ); + + aBorderRect.Left() -= nPixel; + aBorderRect.Top() -= nPixel; + aBorderRect.Right() -= nPixel; + aBorderRect.Bottom() -= nPixel; + pOutDev->SetLineColor( COL_GRAY ); + } + + pOutDev->DrawRect( aBorderRect ); + + aPoint.X() += nPixelWidth + 2*nPixel; + aPoint.Y() += nPixelWidth + 2*nPixel; + aSize.Width() -= 2*nPixelWidth + 4*nPixel; + aSize.Height() -= 2*nPixelWidth + 4*nPixel; + + if( aSize.Width() > 0 && aSize.Height() > 0 + && ( ( pBitmap && !!*pBitmap ) || ( pBitmapEx && !!*pBitmapEx ) ) ) + { + Size aBitmapSize( pOutDev->PixelToLogic( pBitmap ? pBitmap->GetSizePixel() : pBitmapEx->GetSizePixel() ) ); + + if( aSize.Height() > aBitmapSize.Height() && aSize.Width() > aBitmapSize.Width() ) + { + if ( pBitmap ) + pOutDev->DrawBitmap( aPoint, *pBitmap ); + else + pOutDev->DrawBitmapEx( aPoint, *pBitmapEx ); + aPoint.X() += aBitmapSize.Width() + 2*nPixel; + aSize.Width() -= aBitmapSize.Width() + 2*nPixel; + } + } + + if ( aSize.Width() > 0 && aSize.Height() > 0 && pFont && pText && pText->getLength() + && !(!pOutDev->IsOutputEnabled() /*&& pOutDev->GetConnectMetaFile() */) ) + { + MapMode aMapMode( MAP_POINT ); + Size aSz = pOutDev->LogicToLogic( Size( 0, 12 ), &aMapMode, nullptr ); + long nThreshold = aSz.Height() / 2; + long nStep = nThreshold / 3; + + if ( !nStep ) + nStep = aSz.Height() - nThreshold; + + for(;; aSz.Height() -= nStep ) + { + pFont->SetSize( aSz ); + pOutDev->SetFont( *pFont ); + + long nTextHeight = pOutDev->GetTextHeight(); + long nTextWidth = pOutDev->GetTextWidth( *pText ); + if ( nTextHeight ) + { + // The approximation does not respect imprecisions caused + // by word wraps + long nLines = aSize.Height() / nTextHeight; + long nWidth = aSize.Width() * nLines; // Approximation!!! + + if ( nTextWidth <= nWidth || aSz.Height() <= nThreshold ) + { + sal_uInt16 nStart = 0; + sal_uInt16 nLen = 0; + + while( nStart < pText->getLength() && (*pText)[nStart] == ' ' ) + nStart++; + while( nStart+nLen < pText->getLength() && (*pText)[nStart+nLen] != ' ' ) + nLen++; + while( nStart < pText->getLength() && nLines-- ) + { + sal_uInt16 nNext = nLen; + do + { + while ( nStart+nNext < pText->getLength() && (*pText)[nStart+nNext] == ' ' ) + nNext++; + while ( nStart+nNext < pText->getLength() && (*pText)[nStart+nNext] != ' ' ) + nNext++; + nTextWidth = pOutDev->GetTextWidth( *pText, nStart, nNext ); + if ( nTextWidth > aSize.Width() ) + break; + nLen = nNext; + } + while ( nStart+nNext < pText->getLength() ); + + sal_uInt16 n = nLen; + nTextWidth = pOutDev->GetTextWidth( *pText, nStart, n ); + while( nTextWidth > aSize.Width() ) + nTextWidth = pOutDev->GetTextWidth( *pText, nStart, --n ); + pOutDev->DrawText( aPoint, *pText, nStart, n ); + + aPoint.Y() += nTextHeight; + nStart = sal::static_int_cast<sal_uInt16>(nStart + nLen); + nLen = nNext-nLen; + while( nStart < pText->getLength() && (*pText)[nStart] == ' ' ) + { + nStart++; + nLen--; + } + } + break; + } + } + else + break; + } + } + + // If the default graphic does not have content, we draw a red rectangle + if( !bFilled ) + { + aBorderRect.Left()++; + aBorderRect.Top()++; + aBorderRect.Right()--; + aBorderRect.Bottom()--; + + pOutDev->SetLineColor( COL_LIGHTRED ); + pOutDev->DrawLine( aBorderRect.TopLeft(), aBorderRect.BottomRight() ); + pOutDev->DrawLine( aBorderRect.TopRight(), aBorderRect.BottomLeft() ); + } + + pOutDev->Pop(); +} + +Graphic::Graphic() +{ + mpImpGraphic = new ImpGraphic; +} + +Graphic::Graphic( const Graphic& rGraphic ) : +SvDataCopyStream() +{ + if( rGraphic.IsAnimated() ) + mpImpGraphic = new ImpGraphic( *rGraphic.mpImpGraphic ); + else + { + mpImpGraphic = rGraphic.mpImpGraphic; + mpImpGraphic->mnRefCount++; + } +} + +Graphic::Graphic( const Bitmap& rBmp ) +{ + mpImpGraphic = new ImpGraphic( rBmp ); +} + +Graphic::Graphic( const BitmapEx& rBmpEx ) +{ + mpImpGraphic = new ImpGraphic( rBmpEx ); +} + +Graphic::Graphic(const SvgDataPtr& rSvgDataPtr) +{ + mpImpGraphic = new ImpGraphic(rSvgDataPtr); +} + +Graphic::Graphic( const Animation& rAnimation ) +{ + mpImpGraphic = new ImpGraphic( rAnimation ); +} + +Graphic::Graphic( const GDIMetaFile& rMtf ) +{ + mpImpGraphic = new ImpGraphic( rMtf ); +} + +Graphic::Graphic( const css::uno::Reference< css::graphic::XGraphic >& rxGraphic ) +{ + uno::Reference< lang::XUnoTunnel > xTunnel( rxGraphic, uno::UNO_QUERY ); + const ::Graphic* pGraphic = ( xTunnel.is() ? + reinterpret_cast< ::Graphic* >( xTunnel->getSomething( getUnoTunnelId() ) ) : + nullptr ); + + if( pGraphic ) + { + if( pGraphic->IsAnimated() ) + mpImpGraphic = new ImpGraphic( *pGraphic->mpImpGraphic ); + else + { + mpImpGraphic = pGraphic->mpImpGraphic; + mpImpGraphic->mnRefCount++; + } + } + else + mpImpGraphic = new ImpGraphic; +} + +Graphic::~Graphic() +{ + if( mpImpGraphic->mnRefCount == 1UL ) + delete mpImpGraphic; + else + mpImpGraphic->mnRefCount--; +} + +void Graphic::ImplTestRefCount() +{ + if( mpImpGraphic->mnRefCount > 1UL ) + { + mpImpGraphic->mnRefCount--; + mpImpGraphic = new ImpGraphic( *mpImpGraphic ); + } +} + +Graphic& Graphic::operator=( const Graphic& rGraphic ) +{ + if( &rGraphic != this ) + { + if( rGraphic.IsAnimated() ) + { + if( mpImpGraphic->mnRefCount == 1UL ) + delete mpImpGraphic; + else + mpImpGraphic->mnRefCount--; + + mpImpGraphic = new ImpGraphic( *rGraphic.mpImpGraphic ); + } + else + { + rGraphic.mpImpGraphic->mnRefCount++; + + if( mpImpGraphic->mnRefCount == 1UL ) + delete mpImpGraphic; + else + mpImpGraphic->mnRefCount--; + + mpImpGraphic = rGraphic.mpImpGraphic; + } + } + + return *this; +} + +bool Graphic::operator==( const Graphic& rGraphic ) const +{ + return( *mpImpGraphic == *rGraphic.mpImpGraphic ); +} + +bool Graphic::operator!=( const Graphic& rGraphic ) const +{ + return( *mpImpGraphic != *rGraphic.mpImpGraphic ); +} + +bool Graphic::operator!() const +{ + return( GRAPHIC_NONE == mpImpGraphic->ImplGetType() ); +} + +void Graphic::Clear() +{ + ImplTestRefCount(); + mpImpGraphic->ImplClear(); +} + +GraphicType Graphic::GetType() const +{ + return mpImpGraphic->ImplGetType(); +} + +void Graphic::SetDefaultType() +{ + ImplTestRefCount(); + mpImpGraphic->ImplSetDefaultType(); +} + +bool Graphic::IsSupportedGraphic() const +{ + return mpImpGraphic->ImplIsSupportedGraphic(); +} + +bool Graphic::IsTransparent() const +{ + return mpImpGraphic->ImplIsTransparent(); +} + +bool Graphic::IsAlpha() const +{ + return mpImpGraphic->ImplIsAlpha(); +} + +bool Graphic::IsAnimated() const +{ + return mpImpGraphic->ImplIsAnimated(); +} + +bool Graphic::IsEPS() const +{ + return mpImpGraphic->ImplIsEPS(); +} + +Bitmap Graphic::GetBitmap(const GraphicConversionParameters& rParameters) const +{ + return mpImpGraphic->ImplGetBitmap(rParameters); +} + +BitmapEx Graphic::GetBitmapEx(const GraphicConversionParameters& rParameters) const +{ + return mpImpGraphic->ImplGetBitmapEx(rParameters); +} + +Animation Graphic::GetAnimation() const +{ + return mpImpGraphic->ImplGetAnimation(); +} + +const GDIMetaFile& Graphic::GetGDIMetaFile() const +{ + return mpImpGraphic->ImplGetGDIMetaFile(); +} + +uno::Reference< graphic::XGraphic > Graphic::GetXGraphic() const +{ + uno::Reference< graphic::XGraphic > xRet; + + if( GetType() != GRAPHIC_NONE ) + { + uno::Reference < uno::XComponentContext > xContext( ::comphelper::getProcessComponentContext() ); + uno::Reference< graphic::XGraphicProvider > xProv( graphic::GraphicProvider::create( xContext ) ); + + uno::Sequence< beans::PropertyValue > aLoadProps( 1 ); + OUString aURL = "private:memorygraphic/" + OUString::number( reinterpret_cast< sal_Int64 >( this ) ); + + aLoadProps[ 0 ].Name = "URL"; + aLoadProps[ 0 ].Value <<= aURL; + + xRet = xProv->queryGraphic( aLoadProps ); + } + + return xRet; +} + +Size Graphic::GetPrefSize() const +{ + return mpImpGraphic->ImplGetPrefSize(); +} + +void Graphic::SetPrefSize( const Size& rPrefSize ) +{ + ImplTestRefCount(); + mpImpGraphic->ImplSetPrefSize( rPrefSize ); +} + +MapMode Graphic::GetPrefMapMode() const +{ + return mpImpGraphic->ImplGetPrefMapMode(); +} + +void Graphic::SetPrefMapMode( const MapMode& rPrefMapMode ) +{ + ImplTestRefCount(); + mpImpGraphic->ImplSetPrefMapMode( rPrefMapMode ); +} + +basegfx::B2DSize Graphic::GetPPI() const +{ + MapMode aMapMode = GetPrefMapMode(); + + double fWidthInches = ( GetPrefSize().Width() * aMapMode.GetUnitMultiplier() ) / 2540; + double fHeightInches = ( GetPrefSize().Height() * aMapMode.GetUnitMultiplier() ) / 2540; + double fPpiX = 0; + double fPpiY = 0; + + if ( fWidthInches > 0 || fHeightInches > 0 ) // we don't want a divide by 0 situation + { + fPpiX = GetSizePixel().Width() / fWidthInches; + fPpiY = GetSizePixel().Height() / fHeightInches; + } + else + { + SAL_WARN("vcl", "PPI X is " << fPpiX << " and PPI Y is " << fPpiY << ": thus we are making this 0 DPI. This is unlikely."); + } + + return basegfx::B2DSize( fPpiX, fPpiY ); +} + +Size Graphic::GetSizePixel( const OutputDevice* pRefDevice ) const +{ + Size aRet; + + if( GRAPHIC_BITMAP == mpImpGraphic->ImplGetType() ) + aRet = mpImpGraphic->ImplGetBitmapEx(GraphicConversionParameters()).GetSizePixel(); + else + aRet = ( pRefDevice ? pRefDevice : Application::GetDefaultDevice() )->LogicToPixel( GetPrefSize(), GetPrefMapMode() ); + + return aRet; +} + +sal_uLong Graphic::GetSizeBytes() const +{ + return mpImpGraphic->ImplGetSizeBytes(); +} + +void Graphic::Draw( OutputDevice* pOutDev, const Point& rDestPt ) const +{ + mpImpGraphic->ImplDraw( pOutDev, rDestPt ); +} + +void Graphic::Draw( OutputDevice* pOutDev, + const Point& rDestPt, const Size& rDestSz ) const +{ + if( GRAPHIC_DEFAULT == mpImpGraphic->ImplGetType() ) + ImplDrawDefault( pOutDev, nullptr, nullptr, nullptr, nullptr, rDestPt, rDestSz ); + else + mpImpGraphic->ImplDraw( pOutDev, rDestPt, rDestSz ); +} + +void Graphic::DrawEx( OutputDevice* pOutDev, const OUString& rText, + vcl::Font& rFont, const BitmapEx& rBitmap, + const Point& rDestPt, const Size& rDestSz ) +{ + ImplDrawDefault( pOutDev, &rText, &rFont, nullptr, &rBitmap, rDestPt, rDestSz ); +} + +void Graphic::StartAnimation( OutputDevice* pOutDev, const Point& rDestPt, + const Size& rDestSz, long nExtraData, + OutputDevice* pFirstFrameOutDev ) +{ + ImplTestRefCount(); + mpImpGraphic->ImplStartAnimation( pOutDev, rDestPt, rDestSz, nExtraData, pFirstFrameOutDev ); +} + +void Graphic::StopAnimation( OutputDevice* pOutDev, long nExtraData ) +{ + ImplTestRefCount(); + mpImpGraphic->ImplStopAnimation( pOutDev, nExtraData ); +} + +void Graphic::SetAnimationNotifyHdl( const Link<Animation*,void>& rLink ) +{ + mpImpGraphic->ImplSetAnimationNotifyHdl( rLink ); +} + +Link<Animation*,void> Graphic::GetAnimationNotifyHdl() const +{ + return mpImpGraphic->ImplGetAnimationNotifyHdl(); +} + +sal_uLong Graphic::GetAnimationLoopCount() const +{ + return mpImpGraphic->ImplGetAnimationLoopCount(); +} + +GraphicReader* Graphic::GetContext() +{ + return mpImpGraphic->ImplGetContext(); +} + +void Graphic::SetContext( GraphicReader* pReader ) +{ + mpImpGraphic->ImplSetContext( pReader ); +} + +bool Graphic::SwapOut() +{ + ImplTestRefCount(); + return mpImpGraphic->ImplSwapOut(); +} + +void Graphic::SwapOutAsLink() +{ + ImplTestRefCount(); + mpImpGraphic->ImplSwapOutAsLink(); +} + +bool Graphic::SwapOut( SvStream* pOStream ) +{ + ImplTestRefCount(); + return mpImpGraphic->ImplSwapOut( pOStream ); +} + +bool Graphic::SwapIn() +{ + ImplTestRefCount(); + return mpImpGraphic->ImplSwapIn(); +} + +bool Graphic::SwapIn( SvStream* pStrm ) +{ + ImplTestRefCount(); + return mpImpGraphic->ImplSwapIn( pStrm ); +} + +bool Graphic::IsSwapOut() const +{ + return mpImpGraphic->ImplIsSwapOut(); +} + +void Graphic::SetLink( const GfxLink& rGfxLink ) +{ + ImplTestRefCount(); + mpImpGraphic->ImplSetLink( rGfxLink ); +} + +GfxLink Graphic::GetLink() const +{ + return mpImpGraphic->ImplGetLink(); +} + +bool Graphic::IsLink() const +{ + return mpImpGraphic->ImplIsLink(); +} + +BitmapChecksum Graphic::GetChecksum() const +{ + return mpImpGraphic->ImplGetChecksum(); +} + +bool Graphic::ExportNative( SvStream& rOStream ) const +{ + return mpImpGraphic->ImplExportNative( rOStream ); +} + +SvStream& ReadGraphic( SvStream& rIStream, Graphic& rGraphic ) +{ + rGraphic.ImplTestRefCount(); + return ReadImpGraphic( rIStream, *rGraphic.mpImpGraphic ); +} + +SvStream& WriteGraphic( SvStream& rOStream, const Graphic& rGraphic ) +{ + return WriteImpGraphic( rOStream, *rGraphic.mpImpGraphic ); +} + +const SvgDataPtr& Graphic::getSvgData() const +{ + return mpImpGraphic->getSvgData(); +} + +namespace { + +struct Id: public rtl::Static<cppu::OImplementationId, Id> {}; + +} + +css::uno::Sequence<sal_Int8> Graphic::getUnoTunnelId() { + return Id::get().getImplementationId(); +} + +/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff -Nru libreoffice-5.1.1~rc2/vcl/source/gdi/impgraph.cxx libreoffice-5.1.2~rc2/vcl/source/gdi/impgraph.cxx --- libreoffice-5.1.1~rc2/vcl/source/gdi/impgraph.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/vcl/source/gdi/impgraph.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -33,7 +33,7 @@ #include <vcl/virdev.hxx> #include <vcl/gfxlink.hxx> #include <vcl/cvtgrf.hxx> -#include <vcl/graph.hxx> +#include <vcl/graphic.hxx> #include <vcl/metaact.hxx> #include <impgraph.hxx> #include <com/sun/star/ucb/CommandAbortedException.hpp> diff -Nru libreoffice-5.1.1~rc2/vcl/source/gdi/mapmod.cxx libreoffice-5.1.2~rc2/vcl/source/gdi/mapmod.cxx --- libreoffice-5.1.1~rc2/vcl/source/gdi/mapmod.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/vcl/source/gdi/mapmod.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -210,6 +210,52 @@ mpImplMapMode->maScaleY.ReduceInaccurate(32); } +double MapMode::GetUnitMultiplier() const +{ + double nMul; + switch ( GetMapUnit() ) + { + case MAP_PIXEL : + case MAP_SYSFONT : + case MAP_APPFONT : + + case MAP_100TH_MM : + nMul = 1; + break; + case MAP_10TH_MM : + nMul = 10; + break; + case MAP_MM : + nMul = 100; + break; + case MAP_CM : + nMul = 1000; + break; + case MAP_1000TH_INCH : + nMul = 2.54; + break; + case MAP_100TH_INCH : + nMul = 25.4; + break; + case MAP_10TH_INCH : + nMul = 254; + break; + case MAP_INCH : + nMul = 2540; + break; + case MAP_TWIP : + nMul = 1.76388889; + break; + case MAP_POINT : + nMul = 35.27777778; + break; + default: + nMul = 1.0; + break; + } + return nMul; +} + MapMode& MapMode::operator=( const MapMode& rMapMode ) { DBG_ASSERT( rMapMode.mpImplMapMode->mnRefCount < 0xFFFFFFFE, "MapMode: RefCount overflow" ); diff -Nru libreoffice-5.1.1~rc2/vcl/source/gdi/octree.cxx libreoffice-5.1.2~rc2/vcl/source/gdi/octree.cxx --- libreoffice-5.1.1~rc2/vcl/source/gdi/octree.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/vcl/source/gdi/octree.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -242,10 +242,10 @@ InverseColorMap::InverseColorMap( const BitmapPalette& rPal ) : nBits( 8 - OCTREE_BITS ) { - const sal_uLong nColorMax = 1 << OCTREE_BITS; - const sal_uLong xsqr = 1 << ( nBits << 1 ); - const sal_uLong xsqr2 = xsqr << 1; - const sal_uLong nColors = rPal.GetEntryCount(); + const int nColorMax = 1 << OCTREE_BITS; + const long xsqr = 1L << ( nBits << 1 ); + const long xsqr2 = xsqr << 1; + const int nColors = rPal.GetEntryCount(); const long x = 1L << nBits; const long x2 = x >> 1L; sal_uLong r, g, b; @@ -253,7 +253,7 @@ ImplCreateBuffers( nColorMax ); - for( sal_uLong nIndex = 0; nIndex < nColors; nIndex++ ) + for( int nIndex = 0; nIndex < nColors; nIndex++ ) { const BitmapColor& rColor = rPal[ (sal_uInt16) nIndex ]; const long cRed = rColor.GetRed(); diff -Nru libreoffice-5.1.1~rc2/vcl/source/gdi/pdfextoutdevdata.cxx libreoffice-5.1.2~rc2/vcl/source/gdi/pdfextoutdevdata.cxx --- libreoffice-5.1.1~rc2/vcl/source/gdi/pdfextoutdevdata.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/vcl/source/gdi/pdfextoutdevdata.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -18,7 +18,7 @@ */ #include "vcl/pdfextoutdevdata.hxx" -#include "vcl/graph.hxx" +#include <vcl/graphic.hxx> #include "vcl/outdev.hxx" #include "vcl/gfxlink.hxx" #include "vcl/dllapi.h" @@ -294,13 +294,17 @@ std::deque< PDFWriter::StructAttribute > mParaStructAttributes; std::deque< PDFWriter::StructAttributeValue > mParaStructAttributeValues; std::deque< Graphic > mGraphics; + Graphic mCurrentGraphic; std::deque< std::shared_ptr< PDFWriter::AnyWidget > > mControls; GlobalSyncData* mpGlobalData; bool mbGroupIgnoreGDIMtfActions; - explicit PageSyncData( GlobalSyncData* pGlobal ) : mbGroupIgnoreGDIMtfActions ( false ) { mpGlobalData = pGlobal; } + + explicit PageSyncData( GlobalSyncData* pGlobal ) + : mbGroupIgnoreGDIMtfActions ( false ) + { mpGlobalData = pGlobal; } void PushAction( const OutputDevice& rOutDev, const PDFExtOutDevDataSync::Action eAct ); bool PlaySyncPageAct( PDFWriter& rWriter, sal_uInt32& rCurGDIMtfAction, const PDFExtOutDevData& rOutDevData ); @@ -403,12 +407,19 @@ } else if ( aBeg->eAct == PDFExtOutDevDataSync::EndGroupGfxLink ) { - if ( rOutDevData.GetIsLosslessCompression() && !rOutDevData.GetIsReduceImageResolution() ) + Graphic& rGraphic = mGraphics.front(); + if ( rGraphic.IsLink() ) { - Graphic& rGraphic = mGraphics.front(); - if ( rGraphic.IsLink() && rGraphic.GetLink().GetType() == GFX_LINK_TYPE_NATIVE_JPG ) + GfxLinkType eType = rGraphic.GetLink().GetType(); + if ( eType == GFX_LINK_TYPE_NATIVE_JPG ) + { + mbGroupIgnoreGDIMtfActions = rOutDevData.GetIsLosslessCompression() && !rOutDevData.GetIsReduceImageResolution(); + if ( !mbGroupIgnoreGDIMtfActions ) + mCurrentGraphic = rGraphic; + } + else if ( eType == GFX_LINK_TYPE_NATIVE_PNG ) { - mbGroupIgnoreGDIMtfActions = true; + mCurrentGraphic = rGraphic; } } break; @@ -464,6 +475,7 @@ } mbGroupIgnoreGDIMtfActions = false; } + mCurrentGraphic.Clear(); } break; case PDFExtOutDevDataSync::CreateNamedDest: @@ -516,6 +528,11 @@ delete mpGlobalSyncData; } +Graphic PDFExtOutDevData::GetCurrentGraphic() const +{ + return mpPageSyncData->mCurrentGraphic; +} + void PDFExtOutDevData::SetDocumentLocale( const css::lang::Locale& rLoc ) { maDocLocale = rLoc; diff -Nru libreoffice-5.1.1~rc2/vcl/source/gdi/pdfwriter_impl2.cxx libreoffice-5.1.2~rc2/vcl/source/gdi/pdfwriter_impl2.cxx --- libreoffice-5.1.1~rc2/vcl/source/gdi/pdfwriter_impl2.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/vcl/source/gdi/pdfwriter_impl2.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -24,7 +24,7 @@ #include "vcl/gdimtf.hxx" #include "vcl/metaact.hxx" #include "vcl/bmpacc.hxx" -#include "vcl/graph.hxx" +#include <vcl/graphic.hxx> #include "svdata.hxx" @@ -65,7 +65,7 @@ m_rOuterFace.Pop(); } -void PDFWriterImpl::implWriteBitmapEx( const Point& i_rPoint, const Size& i_rSize, const BitmapEx& i_rBitmapEx, +void PDFWriterImpl::implWriteBitmapEx( const Point& i_rPoint, const Size& i_rSize, const BitmapEx& i_rBitmapEx, Graphic i_Graphic, VirtualDevice* i_pDummyVDev, const vcl::PDFWriter::PlayMetafileContext& i_rContext ) { if ( !i_rBitmapEx.IsEmpty() && i_rSize.Width() && i_rSize.Height() ) @@ -95,6 +95,15 @@ { aBitmapEx.Mirror( nMirrorFlags ); } + + bool bIsJpeg = false, bIsPng = false; + if( i_Graphic.GetType() != GRAPHIC_NONE && i_Graphic.GetBitmapEx() == aBitmapEx ) + { + GfxLinkType eType = i_Graphic.GetLink().GetType(); + bIsJpeg = (eType == GFX_LINK_TYPE_NATIVE_JPG); + bIsPng = (eType == GFX_LINK_TYPE_NATIVE_PNG); + } + if( i_rContext.m_nMaxImageResolution > 50 ) { // do downsampling if necessary @@ -151,7 +160,7 @@ aBitmapEx.Convert( eConv ); } bool bUseJPGCompression = !i_rContext.m_bOnlyLosslessCompression; - if ( ( aSizePixel.Width() < 32 ) || ( aSizePixel.Height() < 32 ) ) + if ( bIsPng || ( aSizePixel.Width() < 32 ) || ( aSizePixel.Height() < 32 ) ) bUseJPGCompression = false; SvMemoryStream aStrm; @@ -160,8 +169,10 @@ bool bTrueColorJPG = true; if ( bUseJPGCompression ) { - sal_uInt32 nZippedFileSize; // sj: we will calculate the filesize of a zipped bitmap - { // to determine if jpeg compression is useful + + sal_uInt32 nZippedFileSize = 0; // sj: we will calculate the filesize of a zipped bitmap + if ( !bIsJpeg ) // to determine if jpeg compression is useful + { SvMemoryStream aTemp; aTemp.SetCompressMode( aTemp.GetCompressMode() | SvStreamCompressFlags::ZBITMAP ); aTemp.SetVersion( SOFFICE_FILEFORMAT_40 ); // sj: up from version 40 our bitmap stream operator @@ -203,7 +214,7 @@ aOutMediaProperties[2].Value <<= aFilterData; xGraphicProvider->storeGraphic( xGraphic, aOutMediaProperties ); xOut->flush(); - if ( xSeekable->getLength() > nZippedFileSize ) + if ( !bIsJpeg && xSeekable->getLength() > nZippedFileSize ) { bUseJPGCompression = false; } @@ -482,7 +493,9 @@ xVDev->EnableMapMode( false ); xVDev->DrawMask( aPoint, aDstSizePixel, aMask, Color( COL_WHITE ) ); aAlpha = xVDev->GetBitmap( aPoint, aDstSizePixel ); - implWriteBitmapEx( rPos, rSize, BitmapEx( aPaint, aAlpha ), pDummyVDev, i_rContext ); + + Graphic aGraphic = i_pOutDevData ? i_pOutDevData->GetCurrentGraphic() : Graphic(); + implWriteBitmapEx( rPos, rSize, BitmapEx( aPaint, aAlpha ), aGraphic, pDummyVDev, i_rContext ); } } } @@ -781,14 +794,17 @@ aBitmapEx.GetPrefMapMode(), pDummyVDev->GetMapMode() ) ); if( ! ( aSize.Width() && aSize.Height() ) ) aSize = pDummyVDev->PixelToLogic( aBitmapEx.GetSizePixel() ); - implWriteBitmapEx( pA->GetPoint(), aSize, aBitmapEx, pDummyVDev, i_rContext ); + + Graphic aGraphic = i_pOutDevData ? i_pOutDevData->GetCurrentGraphic() : Graphic(); + implWriteBitmapEx( pA->GetPoint(), aSize, aBitmapEx, aGraphic, pDummyVDev, i_rContext ); } break; case( MetaActionType::BMPSCALE ): { const MetaBmpScaleAction* pA = static_cast<const MetaBmpScaleAction*>(pAction); - implWriteBitmapEx( pA->GetPoint(), pA->GetSize(), BitmapEx( pA->GetBitmap() ), pDummyVDev, i_rContext ); + Graphic aGraphic = i_pOutDevData ? i_pOutDevData->GetCurrentGraphic() : Graphic(); + implWriteBitmapEx( pA->GetPoint(), pA->GetSize(), BitmapEx( pA->GetBitmap() ), aGraphic, pDummyVDev, i_rContext ); } break; @@ -797,7 +813,8 @@ const MetaBmpScalePartAction* pA = static_cast<const MetaBmpScalePartAction*>(pAction); BitmapEx aBitmapEx( pA->GetBitmap() ); aBitmapEx.Crop( Rectangle( pA->GetSrcPoint(), pA->GetSrcSize() ) ); - implWriteBitmapEx( pA->GetDestPoint(), pA->GetDestSize(), aBitmapEx, pDummyVDev, i_rContext ); + Graphic aGraphic = i_pOutDevData ? i_pOutDevData->GetCurrentGraphic() : Graphic(); + implWriteBitmapEx( pA->GetDestPoint(), pA->GetDestSize(), aBitmapEx, aGraphic, pDummyVDev, i_rContext ); } break; @@ -807,14 +824,16 @@ BitmapEx aBitmapEx( pA->GetBitmapEx() ); Size aSize( OutputDevice::LogicToLogic( aBitmapEx.GetPrefSize(), aBitmapEx.GetPrefMapMode(), pDummyVDev->GetMapMode() ) ); - implWriteBitmapEx( pA->GetPoint(), aSize, aBitmapEx, pDummyVDev, i_rContext ); + Graphic aGraphic = i_pOutDevData ? i_pOutDevData->GetCurrentGraphic() : Graphic(); + implWriteBitmapEx( pA->GetPoint(), aSize, aBitmapEx, aGraphic, pDummyVDev, i_rContext ); } break; case( MetaActionType::BMPEXSCALE ): { const MetaBmpExScaleAction* pA = static_cast<const MetaBmpExScaleAction*>(pAction); - implWriteBitmapEx( pA->GetPoint(), pA->GetSize(), pA->GetBitmapEx(), pDummyVDev, i_rContext ); + Graphic aGraphic = i_pOutDevData ? i_pOutDevData->GetCurrentGraphic() : Graphic(); + implWriteBitmapEx( pA->GetPoint(), pA->GetSize(), pA->GetBitmapEx(), aGraphic, pDummyVDev, i_rContext ); } break; @@ -823,7 +842,8 @@ const MetaBmpExScalePartAction* pA = static_cast<const MetaBmpExScalePartAction*>(pAction); BitmapEx aBitmapEx( pA->GetBitmapEx() ); aBitmapEx.Crop( Rectangle( pA->GetSrcPoint(), pA->GetSrcSize() ) ); - implWriteBitmapEx( pA->GetDestPoint(), pA->GetDestSize(), aBitmapEx, pDummyVDev, i_rContext ); + Graphic aGraphic = i_pOutDevData ? i_pOutDevData->GetCurrentGraphic() : Graphic(); + implWriteBitmapEx( pA->GetDestPoint(), pA->GetDestSize(), aBitmapEx, aGraphic, pDummyVDev, i_rContext ); } break; diff -Nru libreoffice-5.1.1~rc2/vcl/source/gdi/pdfwriter_impl.hxx libreoffice-5.1.2~rc2/vcl/source/gdi/pdfwriter_impl.hxx --- libreoffice-5.1.1~rc2/vcl/source/gdi/pdfwriter_impl.hxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/vcl/source/gdi/pdfwriter_impl.hxx 2016-03-29 15:41:04.000000000 +0000 @@ -1011,7 +1011,7 @@ // helper for playMetafile void implWriteGradient( const tools::PolyPolygon& rPolyPoly, const Gradient& rGradient, VirtualDevice* pDummyVDev, const vcl::PDFWriter::PlayMetafileContext& ); - void implWriteBitmapEx( const Point& rPoint, const Size& rSize, const BitmapEx& rBitmapEx, + void implWriteBitmapEx( const Point& rPoint, const Size& rSize, const BitmapEx& rBitmapEx, Graphic i_pGraphic, VirtualDevice* pDummyVDev, const vcl::PDFWriter::PlayMetafileContext& ); // helpers for CCITT 1bit bitmap stream diff -Nru libreoffice-5.1.1~rc2/vcl/source/glyphs/graphite_layout.cxx libreoffice-5.1.2~rc2/vcl/source/glyphs/graphite_layout.cxx --- libreoffice-5.1.1~rc2/vcl/source/glyphs/graphite_layout.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/vcl/source/glyphs/graphite_layout.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -668,24 +668,24 @@ unsigned int GraphiteLayout::ScanFwdForChar(int &findChar, bool fallback) const { int res = mvChar2Glyph[findChar - mnMinCharPos]; - int done = 3; - while (res == -1 && --done) + if (res >= 0) + return unsigned(res); + if (fallback) { - if (fallback) - { - for (++findChar; findChar - mnMinCharPos < int(mvChar2Glyph.size()); ++findChar) - if ((res = mvChar2Glyph[findChar - mnMinCharPos]) != -1) - return res; - } - else - { - for (--findChar; findChar >= mnMinCharPos; --findChar) - if ((res = mvChar2Glyph[findChar - mnMinCharPos]) != -1) - return res; - } - fallback = !fallback; + for (++findChar; findChar - mnMinCharPos < int(mvChar2Glyph.size()); ++findChar) + if ((res = mvChar2Glyph[findChar - mnMinCharPos]) != -1) + return res; + --findChar; + return mvGlyphs.size() - 1; + } + else + { + for (--findChar; findChar >= mnMinCharPos; --findChar) + if ((res = mvChar2Glyph[findChar - mnMinCharPos]) != -1) + return res; + ++findChar; + return 0; } - return unsigned(res); } void GraphiteLayout::ApplyDXArray(ImplLayoutArgs &args, std::vector<int> & rDeltaWidth) @@ -693,8 +693,8 @@ bool bRtl(mnLayoutFlags & SalLayoutFlags::BiDiRtl); int startChar = args.mnMinCharPos < mnMinCharPos ? mnMinCharPos : args.mnMinCharPos; int endChar = args.mnEndCharPos >= mnEndCharPos ? mnEndCharPos - 1 : args.mnEndCharPos; - unsigned int startGi = ScanFwdForChar(startChar, !bRtl); - unsigned int endGi = ScanFwdForChar(endChar, bRtl); + unsigned int startGi = ScanFwdForChar(startChar, bRtl); + unsigned int endGi = ScanFwdForChar(endChar, !bRtl); int nChars = endChar - startChar + 1; if (nChars <= 0) return; if (startGi > endGi) diff -Nru libreoffice-5.1.1~rc2/vcl/source/image/Image.cxx libreoffice-5.1.2~rc2/vcl/source/image/Image.cxx --- libreoffice-5.1.1~rc2/vcl/source/image/Image.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/vcl/source/image/Image.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -25,7 +25,7 @@ #include <tools/resmgr.hxx> #include <vcl/settings.hxx> #include <vcl/outdev.hxx> -#include <vcl/graph.hxx> +#include <vcl/graphic.hxx> #include <vcl/graphicfilter.hxx> #include <vcl/svapp.hxx> #include <vcl/image.hxx> diff -Nru libreoffice-5.1.1~rc2/vcl/source/image/ImageList.cxx libreoffice-5.1.2~rc2/vcl/source/image/ImageList.cxx --- libreoffice-5.1.1~rc2/vcl/source/image/ImageList.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/vcl/source/image/ImageList.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -25,7 +25,7 @@ #include <tools/resmgr.hxx> #include <vcl/settings.hxx> #include <vcl/outdev.hxx> -#include <vcl/graph.hxx> +#include <vcl/graphic.hxx> #include <vcl/graphicfilter.hxx> #include <vcl/svapp.hxx> #include <vcl/image.hxx> diff -Nru libreoffice-5.1.1~rc2/vcl/source/opengl/OpenGLContext.cxx libreoffice-5.1.2~rc2/vcl/source/opengl/OpenGLContext.cxx --- libreoffice-5.1.1~rc2/vcl/source/opengl/OpenGLContext.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/vcl/source/opengl/OpenGLContext.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -17,7 +17,7 @@ #include <vcl/pngwrite.hxx> #include <vcl/bmpacc.hxx> -#include <vcl/graph.hxx> +#include <vcl/graphic.hxx> #include <osl/thread.hxx> diff -Nru libreoffice-5.1.1~rc2/vcl/source/opengl/OpenGLHelper.cxx libreoffice-5.1.2~rc2/vcl/source/opengl/OpenGLHelper.cxx --- libreoffice-5.1.1~rc2/vcl/source/opengl/OpenGLHelper.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/vcl/source/opengl/OpenGLHelper.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -20,7 +20,7 @@ #include <vcl/bmpacc.hxx> #include <memory> #include <vcl/pngwrite.hxx> -#include <vcl/graph.hxx> +#include <vcl/graphic.hxx> #include <vcl/svapp.hxx> #include <officecfg/Office/Common.hxx> #include <com/sun/star/util/XFlushable.hpp> diff -Nru libreoffice-5.1.1~rc2/vcl/source/outdev/polygon.cxx libreoffice-5.1.2~rc2/vcl/source/outdev/polygon.cxx --- libreoffice-5.1.1~rc2/vcl/source/outdev/polygon.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/vcl/source/outdev/polygon.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -103,6 +103,8 @@ if(bSuccess) { + if( mpAlphaVDev ) + mpAlphaVDev->DrawPolyPolygon( rPolyPoly ); return; } } @@ -210,6 +212,8 @@ if(bSuccess) { + if( mpAlphaVDev ) + mpAlphaVDev->DrawPolygon( rPoly ); return; } } diff -Nru libreoffice-5.1.1~rc2/vcl/source/window/syswin.cxx libreoffice-5.1.2~rc2/vcl/source/window/syswin.cxx --- libreoffice-5.1.1~rc2/vcl/source/window/syswin.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/vcl/source/window/syswin.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -1128,6 +1128,10 @@ mbIsCalculatingInitialLayoutSize = false; mbInitialLayoutDone = true; } + else if (!(GetStyle() & WB_SIZEABLE)) + { + SetMinOutputSizePixel(GetSizePixel()); + } } void SystemWindow::doDeferredInit(WinBits /*nBits*/) diff -Nru libreoffice-5.1.1~rc2/vcl/source/window/toolbox.cxx libreoffice-5.1.2~rc2/vcl/source/window/toolbox.cxx --- libreoffice-5.1.1~rc2/vcl/source/window/toolbox.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/vcl/source/window/toolbox.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -2905,8 +2905,8 @@ bTmpLower = false; } - ImplDrawSpinButton(rRenderContext, this, maUpperRect, maLowerRect, - bUpperIn, bLowerIn, bTmpUpper, bTmpLower, !mbHorz); + ImplDrawUpDownButtons(rRenderContext, maUpperRect, maLowerRect, + bUpperIn, bLowerIn, bTmpUpper, bTmpLower, !mbHorz); } void ToolBox::ImplDrawSeparator(vcl::RenderContext& rRenderContext, sal_uInt16 nPos, const Rectangle& rRect) @@ -3455,8 +3455,7 @@ if ( bNewIn != mbIn ) { mbIn = bNewIn; - Invalidate(); - InvalidateSpin(mbIn, false); + InvalidateSpin(true, false); } return true; } @@ -3467,7 +3466,7 @@ if ( bNewIn != mbIn ) { mbIn = bNewIn; - InvalidateSpin(false, mbIn); + InvalidateSpin(false, true); } return true; } @@ -3582,7 +3581,7 @@ mbUpper = false; mbLower = false; mbIn = false; - InvalidateSpin(false, false); + InvalidateSpin(); return true; } @@ -4484,7 +4483,7 @@ ShowLine( false ); else if ( (mnCurLine+mnVisLines-1 < mnCurLines) && (pData->GetDelta() < 0) ) ShowLine( true ); - InvalidateSpin(false, false); + InvalidateSpin(); return; } } @@ -5193,7 +5192,7 @@ mnCurLine = 1; mbFormat = true; ImplFormat(); - InvalidateSpin(false, false); + InvalidateSpin(); ImplChangeHighlight( ImplGetFirstValidItem( mnCurLine ) ); } break; @@ -5206,7 +5205,7 @@ mnCurLine = mnCurLines; mbFormat = true; ImplFormat(); - InvalidateSpin(false, false); + InvalidateSpin(); ImplChangeHighlight( ImplGetFirstValidItem( mnCurLine ) ); } break; diff -Nru libreoffice-5.1.1~rc2/vcl/unx/generic/app/saldata.cxx libreoffice-5.1.2~rc2/vcl/unx/generic/app/saldata.cxx --- libreoffice-5.1.1~rc2/vcl/unx/generic/app/saldata.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/vcl/unx/generic/app/saldata.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -48,7 +48,9 @@ #include "unx/sm.hxx" #include "unx/i18n_im.hxx" #include "unx/i18n_xkb.hxx" -#include "unx/x11/x11display.hxx" +#include <prex.h> +#include <X11/Xproto.h> +#include <postx.h> #include "salinst.hxx" #include <osl/signal.h> @@ -374,6 +376,58 @@ close (m_pTimeoutFDS[1]); } +static Display *OpenX11Display(OString& rDisplay) +{ + /* + * open connection to X11 Display + * try in this order: + * o -display command line parameter, + * o $DISPLAY environment variable + * o default display + */ + + Display *pDisp = nullptr; + + // is there a -display command line parameter? + + sal_uInt32 nParams = osl_getCommandArgCount(); + OUString aParam; + for (sal_uInt32 i=0; i<nParams; i++) + { + osl_getCommandArg(i, &aParam.pData); + if ( aParam == "-display" ) + { + osl_getCommandArg(i+1, &aParam.pData); + rDisplay = OUStringToOString( + aParam, osl_getThreadTextEncoding()); + + if ((pDisp = XOpenDisplay(rDisplay.getStr()))!=nullptr) + { + /* + * if a -display switch was used, we need + * to set the environment accordingly since + * the clipboard build another connection + * to the xserver using $DISPLAY + */ + OUString envVar("DISPLAY"); + osl_setEnvironment(envVar.pData, aParam.pData); + } + break; + } + } + + if (!pDisp && rDisplay.isEmpty()) + { + // Open $DISPLAY or default... + char *pDisplay = getenv("DISPLAY"); + if (pDisplay != nullptr) + rDisplay = OString(pDisplay); + pDisp = XOpenDisplay(pDisplay); + } + + return pDisp; +} + void SalXLib::Init() { SalI18N_InputMethod* pInputMethod = new SalI18N_InputMethod; diff -Nru libreoffice-5.1.1~rc2/vcl/unx/generic/app/salinst.cxx libreoffice-5.1.2~rc2/vcl/unx/generic/app/salinst.cxx --- libreoffice-5.1.1~rc2/vcl/unx/generic/app/salinst.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/vcl/unx/generic/app/salinst.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -65,6 +65,15 @@ } } +X11SalInstance::X11SalInstance(SalYieldMutex* pMutex) + : SalGenericInstance(pMutex) + , mpXLib(nullptr) +{ + ImplSVData* pSVData = ImplGetSVData(); + delete pSVData->maAppData.mpToolkitName; + pSVData->maAppData.mpToolkitName = new OUString("x11"); +} + X11SalInstance::~X11SalInstance() { // close session management diff -Nru libreoffice-5.1.1~rc2/vcl/unx/generic/gdi/nativewindowhandleprovider.cxx libreoffice-5.1.2~rc2/vcl/unx/generic/gdi/nativewindowhandleprovider.cxx --- libreoffice-5.1.1~rc2/vcl/unx/generic/gdi/nativewindowhandleprovider.cxx 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-5.1.2~rc2/vcl/unx/generic/gdi/nativewindowhandleprovider.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -0,0 +1,17 @@ +/* -*- 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/. + */ + +#include "unx/nativewindowhandleprovider.hxx" + +NativeWindowHandleProvider::~NativeWindowHandleProvider() +{ +} + + +/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff -Nru libreoffice-5.1.1~rc2/vcl/unx/generic/gdi/salgdi.cxx libreoffice-5.1.2~rc2/vcl/unx/generic/gdi/salgdi.cxx --- libreoffice-5.1.1~rc2/vcl/unx/generic/gdi/salgdi.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/vcl/unx/generic/gdi/salgdi.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -53,7 +53,7 @@ #include <unx/x11/xlimits.hxx> #include "salgdiimpl.hxx" -#include "unx/x11windowprovider.hxx" +#include "unx/nativewindowhandleprovider.hxx" #include "textrender.hxx" #include "gdiimpl.hxx" #include "opengl/x11/gdiimpl.hxx" diff -Nru libreoffice-5.1.1~rc2/vcl/unx/generic/gdi/x11windowprovider.cxx libreoffice-5.1.2~rc2/vcl/unx/generic/gdi/x11windowprovider.cxx --- libreoffice-5.1.1~rc2/vcl/unx/generic/gdi/x11windowprovider.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/vcl/unx/generic/gdi/x11windowprovider.cxx 1970-01-01 00:00:00.000000000 +0000 @@ -1,88 +0,0 @@ -/* -*- 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/. - */ - -#include <vcl/svapp.hxx> - -#include "unx/x11windowprovider.hxx" -#include "unx/x11/x11display.hxx" - -X11WindowProvider::~X11WindowProvider() -{ -} - -Display *OpenX11Display(OString& rDisplay) -{ - /* - * open connection to X11 Display - * try in this order: - * o -display command line parameter, - * o $DISPLAY environment variable - * o default display - */ - - Display *pDisp = nullptr; - - // is there a -display command line parameter? - - sal_uInt32 nParams = osl_getCommandArgCount(); - OUString aParam; - for (sal_uInt32 i=0; i<nParams; i++) - { - osl_getCommandArg(i, &aParam.pData); - if ( aParam == "-display" ) - { - osl_getCommandArg(i+1, &aParam.pData); - rDisplay = OUStringToOString( - aParam, osl_getThreadTextEncoding()); - - if ((pDisp = XOpenDisplay(rDisplay.getStr()))!=nullptr) - { - /* - * if a -display switch was used, we need - * to set the environment accoringly since - * the clipboard build another connection - * to the xserver using $DISPLAY - */ - OUString envVar("DISPLAY"); - osl_setEnvironment(envVar.pData, aParam.pData); - } - break; - } - } - - if (!pDisp && rDisplay.isEmpty()) - { - // Open $DISPLAY or default... - char *pDisplay = getenv("DISPLAY"); - if (pDisplay != nullptr) - rDisplay = OString(pDisplay); - pDisp = XOpenDisplay(pDisplay); - } - - return pDisp; -} - -namespace vcl -{ - -bool IsWindowSystemAvailable() -{ - Display *pDisp; - OString aDisplay; - - pDisp = OpenX11Display(aDisplay); - if (pDisp) - XCloseDisplay(pDisp); - - return (pDisp != nullptr); -} - -} // namespace vcl - -/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff -Nru libreoffice-5.1.1~rc2/vcl/unx/generic/window/salframe.cxx libreoffice-5.1.2~rc2/vcl/unx/generic/window/salframe.cxx --- libreoffice-5.1.1~rc2/vcl/unx/generic/window/salframe.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/vcl/unx/generic/window/salframe.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -4133,7 +4133,7 @@ } -Window X11SalFrame::GetX11Window() +sal_uIntPtr X11SalFrame::GetNativeWindowHandle() { return mhWindow; } diff -Nru libreoffice-5.1.1~rc2/vcl/unx/gtk/gtkinst.cxx libreoffice-5.1.2~rc2/vcl/unx/gtk/gtkinst.cxx --- libreoffice-5.1.1~rc2/vcl/unx/gtk/gtkinst.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/vcl/unx/gtk/gtkinst.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -186,6 +186,14 @@ InitAtkBridge(); + ImplSVData* pSVData = ImplGetSVData(); + delete pSVData->maAppData.mpToolkitName; +#if GTK_CHECK_VERSION(3,0,0) + pSVData->maAppData.mpToolkitName = new OUString("gtk3"); +#else + pSVData->maAppData.mpToolkitName = new OUString("gtk2"); +#endif + bNeedsInit = false; } diff -Nru libreoffice-5.1.1~rc2/vcl/unx/gtk/gtkobject.cxx libreoffice-5.1.2~rc2/vcl/unx/gtk/gtkobject.cxx --- libreoffice-5.1.1~rc2/vcl/unx/gtk/gtkobject.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/vcl/unx/gtk/gtkobject.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -51,7 +51,6 @@ // system data m_aSystemData.nSize = sizeof( SystemEnvData ); -#if !GTK_CHECK_VERSION(3,0,0) SalDisplay* pDisp = vcl_sal::getSalDisplay(GetGenericData()); m_aSystemData.pDisplay = pDisp->GetDisplay(); m_aSystemData.pVisual = pDisp->GetVisual(pParent->getXScreenNumber()).GetVisual(); @@ -59,17 +58,12 @@ m_aSystemData.aColormap = pDisp->GetColormap(pParent->getXScreenNumber()).GetXColormap(); m_aSystemData.aWindow = GDK_WINDOW_XWINDOW(widget_get_window(m_pSocket)); m_aSystemData.aShellWindow = GDK_WINDOW_XWINDOW(widget_get_window(GTK_WIDGET(pParent->getWindow()))); -#else - static int nWindow = 0; - m_aSystemData.aWindow = nWindow; - ++nWindow; - m_aSystemData.aShellWindow = reinterpret_cast<long>(this); -#endif m_aSystemData.pSalFrame = nullptr; m_aSystemData.pWidget = m_pSocket; m_aSystemData.nScreen = pParent->getXScreenNumber().getXScreen(); m_aSystemData.pAppContext = nullptr; m_aSystemData.pShellWidget = GTK_WIDGET(pParent->getWindow()); + m_aSystemData.pToolkit = "gtk2"; g_signal_connect( G_OBJECT(m_pSocket), "button-press-event", G_CALLBACK(signalButton), this ); g_signal_connect( G_OBJECT(m_pSocket), "button-release-event", G_CALLBACK(signalButton), this ); @@ -86,11 +80,7 @@ { if( m_pRegion ) { -#if GTK_CHECK_VERSION(3,0,0) - cairo_region_destroy( m_pRegion ); -#else gdk_region_destroy( m_pRegion ); -#endif } if( m_pSocket ) { @@ -119,15 +109,9 @@ void GtkSalObject::BeginSetClipRegion( sal_uLong ) { -#if GTK_CHECK_VERSION(3,0,0) - if( m_pRegion ) - cairo_region_destroy( m_pRegion ); - m_pRegion = cairo_region_create(); -#else if( m_pRegion ) gdk_region_destroy( m_pRegion ); m_pRegion = gdk_region_new(); -#endif } void GtkSalObject::UnionClipRegion( long nX, long nY, long nWidth, long nHeight ) @@ -138,11 +122,7 @@ aRect.width = nWidth; aRect.height = nHeight; -#if GTK_CHECK_VERSION(3,0,0) - cairo_region_union_rectangle( m_pRegion, &aRect ); -#else gdk_region_union_with_rect( m_pRegion, &aRect ); -#endif } void GtkSalObject::EndSetClipRegion() diff -Nru libreoffice-5.1.1~rc2/vcl/unx/gtk/gtksalframe.cxx libreoffice-5.1.2~rc2/vcl/unx/gtk/gtksalframe.cxx --- libreoffice-5.1.1~rc2/vcl/unx/gtk/gtksalframe.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/vcl/unx/gtk/gtksalframe.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -38,8 +38,10 @@ #include <vcl/window.hxx> #include <vcl/settings.hxx> +#include <config_vclplug.h> + #include <unx/x11/xlimits.hxx> -#if defined(ENABLE_DBUS) && defined(ENABLE_GIO) +#if defined(ENABLE_DBUS) && ENABLE_GIO # include <unx/gtk/gtksalmenu.hxx> #endif #if defined ENABLE_GMENU_INTEGRATION // defined in gtksalmenu.hxx above @@ -432,7 +434,7 @@ m_bDefaultPos = true; m_bDefaultSize = ( (nStyle & SalFrameStyleFlags::SIZEABLE) && ! pParent ); m_bWindowIsGtkPlug = false; -#if defined(ENABLE_DBUS) && defined(ENABLE_GIO) +#if defined(ENABLE_DBUS) && ENABLE_GIO m_pLastSyncedDbusMenu = nullptr; #endif Init( pParent, nStyle ); @@ -446,7 +448,7 @@ GetGenericData()->ErrorTrapPush(); m_bDefaultPos = true; m_bDefaultSize = true; -#if defined(ENABLE_DBUS) && defined(ENABLE_GIO) +#if defined(ENABLE_DBUS) && ENABLE_GIO m_pLastSyncedDbusMenu = nullptr; #endif Init( pSysData ); @@ -486,7 +488,7 @@ } } -#if defined(ENABLE_DBUS) && defined(ENABLE_GIO) +#if defined(ENABLE_DBUS) && ENABLE_GIO void GtkSalFrame::EnsureDbusMenuSynced() { GtkSalMenu* pSalMenu = static_cast<GtkSalMenu*>(GetMenu()); @@ -1022,6 +1024,7 @@ m_aSystemData.nScreen = m_nXScreen.getXScreen(); m_aSystemData.pAppContext = nullptr; m_aSystemData.pShellWidget = m_aSystemData.pWidget; + m_aSystemData.pToolkit = "gtk2"; m_bGraphics = false; m_pGraphics = NULL; @@ -3929,7 +3932,7 @@ return Size( aRect.GetWidth(), aRect.GetHeight() ); } -Window GtkSalFrame::GetX11Window() +sal_uIntPtr GtkSalFrame::GetNativeWindowHandle() { return widget_get_xid(m_pWindow); } diff -Nru libreoffice-5.1.1~rc2/vcl/unx/gtk/gtksalmenu.cxx libreoffice-5.1.2~rc2/vcl/unx/gtk/gtksalmenu.cxx --- libreoffice-5.1.1~rc2/vcl/unx/gtk/gtksalmenu.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/vcl/unx/gtk/gtksalmenu.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -57,14 +57,14 @@ aCommand = g_strdup( aCommandStr ); // Some items could have duplicated commands. A new one should be generated. - for ( sal_uInt16 i = 2; ; i++ ) + for ( sal_uInt16 i = 1; ; i++ ) { if ( !g_action_group_has_action( pActionGroup, aCommand ) || ( aCurrentCommand && g_strcmp0( aCurrentCommand, aCommand ) == 0 ) ) break; g_free( aCommand ); - aCommand = g_strdup_printf("%s%d", aCommandStr, i); + aCommand = g_strdup_printf("dup:%d:%s", i, aCommandStr); } g_free( aCommandStr ); @@ -615,16 +615,22 @@ if ( bIsSubmenu ) g_lo_menu_set_submenu_action_to_item_in_section( pMenu, nSection, nItemPos, aItemCommand ); else + { g_lo_menu_set_action_and_target_value_to_item_in_section( pMenu, nSection, nItemPos, aItemCommand, pTarget ); + pTarget = nullptr; + } g_free( aItemCommand ); } if ( aCurrentCommand ) g_free( aCurrentCommand ); + + if (pTarget) + g_variant_unref(pTarget); } -GtkSalMenu* GtkSalMenu::GetMenuForItemCommand( gchar* aCommand, gboolean bGetSubmenu ) +GtkSalMenu* GtkSalMenu::GetMenuForItemCommand(gchar* aCommand, int& rDupsToSkip, gboolean bGetSubmenu) { SolarMutexGuard aGuard; GtkSalMenu* pMenu = nullptr; @@ -639,7 +645,13 @@ OString aItemCommandOStr = OUStringToOString( aItemCommand, RTL_TEXTENCODING_UTF8 ); gchar* aItemCommandStr = const_cast<gchar*>(aItemCommandOStr.getStr()); - if ( g_strcmp0( aItemCommandStr, aCommand ) == 0 ) + bool bFound = g_strcmp0( aItemCommandStr, aCommand ) == 0; + if (bFound && rDupsToSkip) + { + --rDupsToSkip; + bFound = false; + } + if (bFound) { pMenu = bGetSubmenu ? pSalItem->mpSubMenu : this; break; @@ -647,7 +659,7 @@ else { if ( pSalItem->mpSubMenu != nullptr ) - pMenu = pSalItem->mpSubMenu->GetMenuForItemCommand( aCommand, bGetSubmenu ); + pMenu = pSalItem->mpSubMenu->GetMenuForItemCommand(aCommand, rDupsToSkip, bGetSubmenu); if ( pMenu != nullptr ) break; @@ -657,6 +669,24 @@ return pMenu; } +namespace +{ + const gchar* DetermineDupIndex(const gchar *aCommand, int& rDupsToSkip) + { + if (g_str_has_prefix(aCommand, "dup:")) + { + aCommand = aCommand + strlen("dup:"); + gchar *endptr; + rDupsToSkip = g_ascii_strtoll(aCommand, &endptr, 10); + aCommand = endptr+1; + } + else + rDupsToSkip = 0; + + return aCommand; + } +} + void GtkSalMenu::DispatchCommand( gint itemId, const gchar *aCommand ) { SolarMutexGuard aGuard; @@ -664,7 +694,9 @@ if ( !mbMenuBar ) return; - GtkSalMenu* pSalSubMenu = GetMenuForItemCommand( const_cast<gchar*>(aCommand), FALSE ); + int nDupsToSkip; + aCommand = DetermineDupIndex(aCommand, nDupsToSkip); + GtkSalMenu* pSalSubMenu = GetMenuForItemCommand( const_cast<gchar*>(aCommand), nDupsToSkip, FALSE ); Menu* pSubMenu = ( pSalSubMenu != nullptr ) ? pSalSubMenu->GetMenu() : nullptr; MenuBar* pMenuBar = static_cast< MenuBar* >( mpVCLMenu ); @@ -697,7 +729,9 @@ if ( !mbMenuBar ) return; - GtkSalMenu* pSalSubMenu = GetMenuForItemCommand( const_cast<gchar*>(aMenuCommand), TRUE ); + int nDupsToSkip; + aMenuCommand = DetermineDupIndex(aMenuCommand, nDupsToSkip); + GtkSalMenu* pSalSubMenu = GetMenuForItemCommand( const_cast<gchar*>(aMenuCommand), nDupsToSkip, TRUE ); if ( pSalSubMenu != nullptr ) { MenuBar* pMenuBar = static_cast< MenuBar* >( mpVCLMenu ); diff -Nru libreoffice-5.1.1~rc2/vcl/unx/gtk/gtksys.cxx libreoffice-5.1.2~rc2/vcl/unx/gtk/gtksys.cxx --- libreoffice-5.1.1~rc2/vcl/unx/gtk/gtksys.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/vcl/unx/gtk/gtksys.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -40,6 +40,13 @@ { mpDisplay = gdk_display_get_default(); countScreenMonitors(); +#if GTK_CHECK_VERSION(3,0,0) + // rhbz#1285356, native look will be gtk2, which crashes + // when gtk3 is already loaded. Until there is a solution + // java-side force look and feel to something that doesn't + // crash when we are using gtk3 + setenv("STOC_FORCE_SYSTEM_LAF", "true", 1); +#endif } GtkSalSystem::~GtkSalSystem() diff -Nru libreoffice-5.1.1~rc2/vcl/unx/gtk3/gtk3gtkframe.cxx libreoffice-5.1.2~rc2/vcl/unx/gtk3/gtk3gtkframe.cxx --- libreoffice-5.1.1~rc2/vcl/unx/gtk3/gtk3gtkframe.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/vcl/unx/gtk3/gtk3gtkframe.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -38,7 +38,9 @@ #include <vcl/window.hxx> #include <vcl/settings.hxx> -#if defined(ENABLE_DBUS) && defined(ENABLE_GIO) +#include <config_vclplug.h> + +#if defined(ENABLE_DBUS) && ENABLE_GIO # include <unx/gtk/gtksalmenu.hxx> #endif #if defined ENABLE_GMENU_INTEGRATION // defined in gtksalmenu.hxx above @@ -48,7 +50,12 @@ #include <gtk/gtk.h> #include <prex.h> #include <X11/Xatom.h> -#include <gdk/gdkx.h> +#if defined(GDK_WINDOWING_X11) +# include <gdk/gdkx.h> +#endif +#if defined(GDK_WINDOWING_WAYLAND) +# include <gdk/gdkwayland.h> +#endif #include <postx.h> #include <dlfcn.h> @@ -474,7 +481,7 @@ m_bDefaultPos = true; m_bDefaultSize = ( (nStyle & SalFrameStyleFlags::SIZEABLE) && ! pParent ); m_bWindowIsGtkPlug = false; -#if defined(ENABLE_DBUS) && defined(ENABLE_GIO) +#if defined(ENABLE_DBUS) && ENABLE_GIO m_pLastSyncedDbusMenu = nullptr; #endif Init( pParent, nStyle ); @@ -490,7 +497,7 @@ GetGenericData()->ErrorTrapPush(); m_bDefaultPos = true; m_bDefaultSize = true; -#if defined(ENABLE_DBUS) && defined(ENABLE_GIO) +#if defined(ENABLE_DBUS) && ENABLE_GIO m_pLastSyncedDbusMenu = nullptr; #endif Init( pSysData ); @@ -498,13 +505,6 @@ #ifdef ENABLE_GMENU_INTEGRATION -static void -gdk_x11_window_set_utf8_property (GdkWindow * /*window*/, - const gchar * /*name*/, - const gchar * /*value*/) -{ -} - // AppMenu watch functions. static void ObjectDestroyedNotify( gpointer data ) @@ -514,7 +514,7 @@ } } -#if defined(ENABLE_DBUS) && defined(ENABLE_GIO) +#if defined(ENABLE_DBUS) && ENABLE_GIO void GtkSalFrame::EnsureDbusMenuSynced() { GtkSalMenu* pSalMenu = static_cast<GtkSalMenu*>(GetMenu()); @@ -623,7 +623,7 @@ GActionGroup* pActionGroup = reinterpret_cast<GActionGroup*>(g_lo_action_group_new( static_cast< gpointer >( pSalFrame ) )); // Generate menu paths. - ::Window windowId = GDK_WINDOW_XID( gdkWindow ); + sal_uIntPtr windowId = pSalFrame->GetNativeWindowHandle(pSalFrame->getWindow()); gchar* aDBusWindowPath = g_strdup_printf( "/org/libreoffice/window/%lu", windowId ); gchar* aDBusMenubarPath = g_strdup_printf( "/org/libreoffice/window/%lu/menus/menubar", windowId ); @@ -631,12 +631,32 @@ g_object_set_data_full( G_OBJECT( gdkWindow ), "g-lo-menubar", pMenuModel, ObjectDestroyedNotify ); g_object_set_data_full( G_OBJECT( gdkWindow ), "g-lo-action-group", pActionGroup, ObjectDestroyedNotify ); - gdk_x11_window_set_utf8_property( gdkWindow, "_GTK_APPLICATION_ID", "org.libreoffice" ); - gdk_x11_window_set_utf8_property( gdkWindow, "_GTK_UNIQUE_BUS_NAME", g_dbus_connection_get_unique_name( pSessionBus ) ); - gdk_x11_window_set_utf8_property( gdkWindow, "_GTK_APPLICATION_OBJECT_PATH", "/org/libreoffice" ); - gdk_x11_window_set_utf8_property( gdkWindow, "_GTK_WINDOW_OBJECT_PATH", aDBusWindowPath ); - gdk_x11_window_set_utf8_property( gdkWindow, "_GTK_MENUBAR_OBJECT_PATH", aDBusMenubarPath ); - + GdkDisplay *pDisplay = pSalFrame->getGdkDisplay(); + // fdo#70885 we don't want app menu under Unity + const bool bDesktopIsUnity = (SalGetDesktopEnvironment() == "UNITY"); +#if defined(GDK_WINDOWING_X11) + if (GDK_IS_X11_DISPLAY(pDisplay)) + { + gdk_x11_window_set_utf8_property( gdkWindow, "_GTK_APPLICATION_ID", "org.libreoffice" ); + if (!bDesktopIsUnity) + gdk_x11_window_set_utf8_property( gdkWindow, "_GTK_APP_MENU_OBJECT_PATH", "/org/libreoffice/menus/appmenu" ); + gdk_x11_window_set_utf8_property( gdkWindow, "_GTK_MENUBAR_OBJECT_PATH", aDBusMenubarPath ); + gdk_x11_window_set_utf8_property( gdkWindow, "_GTK_WINDOW_OBJECT_PATH", aDBusWindowPath ); + gdk_x11_window_set_utf8_property( gdkWindow, "_GTK_APPLICATION_OBJECT_PATH", "/org/libreoffice" ); + gdk_x11_window_set_utf8_property( gdkWindow, "_GTK_UNIQUE_BUS_NAME", g_dbus_connection_get_unique_name( pSessionBus ) ); + } +#endif +#if defined(GDK_WINDOWING_WAYLAND) + if (GDK_IS_WAYLAND_DISPLAY(pDisplay)) + { + gdk_wayland_window_set_dbus_properties_libgtk_only(gdkWindow, "org.libreoffice", + "/org/libreoffice/menus/appmenu", + !bDesktopIsUnity ? aDBusMenubarPath : nullptr, + aDBusWindowPath, + "/org/libreoffice", + g_dbus_connection_get_unique_name( pSessionBus )); + } +#endif // Publish the menu model and the action group. SAL_INFO("vcl.unity", "exporting menu model at " << pMenuModel << " for window " << windowId); pSalFrame->m_nMenuExportId = g_dbus_connection_export_menu_model (pSessionBus, aDBusMenubarPath, pMenuModel, nullptr); @@ -644,12 +664,6 @@ pSalFrame->m_nActionGroupExportId = g_dbus_connection_export_action_group( pSessionBus, aDBusWindowPath, pActionGroup, nullptr); pSalFrame->m_nHudAwarenessId = hud_awareness_register( pSessionBus, aDBusMenubarPath, hud_activated, pSalFrame, nullptr, nullptr ); - // fdo#70885 we don't want app menu under Unity - bool bDesktopIsUnity = (SalGetDesktopEnvironment() == "UNITY"); - - if (!bDesktopIsUnity) - gdk_x11_window_set_utf8_property( gdkWindow, "_GTK_APP_MENU_OBJECT_PATH", "/org/libreoffice/menus/appmenu" ); - //app menu, to-do translations, block normal menus when active, honor use appmenu settings ResMgr* pMgr = ImplGetResMgr(); if( pMgr && !bDesktopIsUnity ) @@ -891,7 +905,16 @@ if (isChild(false)) moveWindow(nX, nY); else - gtk_window_begin_move_drag(GTK_WINDOW(m_pWindow), 1, nX, nY, GDK_CURRENT_TIME); + { +#if defined(GDK_WINDOWING_WAYLAND) + if (GDK_IS_WAYLAND_DISPLAY(getGdkDisplay())) + { + gtk_window_begin_move_drag(GTK_WINDOW(m_pWindow), 1, nX, nY, GDK_CURRENT_TIME); + return; + } +#endif + gtk_window_move(GTK_WINDOW(m_pWindow), nX, nY); + } } void GtkSalFrame::widget_set_size_request(long nWidth, long nHeight) @@ -1085,15 +1108,14 @@ //system data m_aSystemData.nSize = sizeof( SystemEnvData ); - static int nWindow = 0; - m_aSystemData.aWindow = nWindow; - ++nWindow; + m_aSystemData.aWindow = GetNativeWindowHandle(m_pWindow); m_aSystemData.aShellWindow = reinterpret_cast<long>(this); m_aSystemData.pSalFrame = this; m_aSystemData.pWidget = m_pWindow; m_aSystemData.nScreen = m_nXScreen.getXScreen(); m_aSystemData.pAppContext = nullptr; m_aSystemData.pShellWidget = m_aSystemData.pWidget; + m_aSystemData.pToolkit = "gtk3"; m_bGraphics = false; m_pGraphics = nullptr; @@ -1613,7 +1635,7 @@ if( m_pParent ) { if( AllSettings::GetLayoutRTL() ) - nX = m_pParent->maGeometry.nWidth-maGeometry.nWidth-1-nX; + nX = m_pParent->maGeometry.nWidth-m_nWidthRequest-1-nX; nX += m_pParent->maGeometry.nX; nY += m_pParent->maGeometry.nY; } @@ -1770,7 +1792,7 @@ pState->mnWidth = m_aRestorePosSize.GetWidth(); pState->mnHeight = m_aRestorePosSize.GetHeight(); GetPosAndSize(GTK_WINDOW(m_pWindow), pState->mnMaximizedX, pState->mnMaximizedY, - pState->mnMaximizedWidth, pState->mnMaximizedWidth); + pState->mnMaximizedWidth, pState->mnMaximizedHeight); pState->mnMask |= WINDOWSTATE_MASK_MAXIMIZED_X | WINDOWSTATE_MASK_MAXIMIZED_Y | WINDOWSTATE_MASK_MAXIMIZED_WIDTH | @@ -3926,9 +3948,30 @@ return Size( aRect.GetWidth(), aRect.GetHeight() ); } -Window GtkSalFrame::GetX11Window() +sal_uIntPtr GtkSalFrame::GetNativeWindowHandle(GtkWidget *pWidget) +{ + (void) this; // Silence loplugin:staticmethods + GdkDisplay *pDisplay = getGdkDisplay(); + GdkWindow *pWindow = gtk_widget_get_window(pWidget); + +#if defined(GDK_WINDOWING_X11) + if (GDK_IS_X11_DISPLAY(pDisplay)) + { + return GDK_WINDOW_XID(pWindow); + } +#endif +#if defined(GDK_WINDOWING_WAYLAND) + if (GDK_IS_WAYLAND_DISPLAY(pDisplay)) + { + return reinterpret_cast<sal_uIntPtr>(gdk_wayland_window_get_wl_surface(pWindow)); + } +#endif + return 0; +} + +sal_uIntPtr GtkSalFrame::GetNativeWindowHandle() { - return widget_get_xid(m_pWindow); + return GetNativeWindowHandle(m_pWindow); } void GtkDragSource::startDrag(const datatransfer::dnd::DragGestureEvent& rEvent, diff -Nru libreoffice-5.1.1~rc2/vcl/unx/gtk3/gtk3gtkobject.cxx libreoffice-5.1.2~rc2/vcl/unx/gtk3/gtk3gtkobject.cxx --- libreoffice-5.1.1~rc2/vcl/unx/gtk3/gtk3gtkobject.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/vcl/unx/gtk3/gtk3gtkobject.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -5,8 +5,186 @@ * 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 "../gtk/gtkobject.cxx" +#ifdef AIX +#define _LINUX_SOURCE_COMPAT +#include <sys/timer.h> +#undef _LINUX_SOURCE_COMPAT +#endif + +#include <unx/gtk/gtkobject.hxx> +#include <unx/gtk/gtkframe.hxx> +#include <unx/gtk/gtkdata.hxx> +#include <unx/gtk/gtkinst.hxx> +#include <unx/gtk/gtkgdi.hxx> + +GtkSalObject::GtkSalObject( GtkSalFrame* pParent, bool bShow ) + : m_pSocket( nullptr ), + m_pRegion( nullptr ) +{ + if( pParent ) + { + // our plug window + m_pSocket = gtk_grid_new(); + Show( bShow ); + // insert into container + gtk_fixed_put( pParent->getFixedContainer(), + m_pSocket, + 0, 0 ); + // realize so we can get a window id + gtk_widget_realize( m_pSocket ); + + // system data + m_aSystemData.nSize = sizeof( SystemEnvData ); + m_aSystemData.aWindow = pParent->GetNativeWindowHandle(m_pSocket); + m_aSystemData.aShellWindow = reinterpret_cast<long>(this); + m_aSystemData.pSalFrame = nullptr; + m_aSystemData.pWidget = m_pSocket; + m_aSystemData.nScreen = pParent->getXScreenNumber().getXScreen(); + m_aSystemData.pAppContext = nullptr; + m_aSystemData.pShellWidget = GTK_WIDGET(pParent->getWindow()); + m_aSystemData.pToolkit = "gtk3"; + + g_signal_connect( G_OBJECT(m_pSocket), "button-press-event", G_CALLBACK(signalButton), this ); + g_signal_connect( G_OBJECT(m_pSocket), "button-release-event", G_CALLBACK(signalButton), this ); + g_signal_connect( G_OBJECT(m_pSocket), "focus-in-event", G_CALLBACK(signalFocus), this ); + g_signal_connect( G_OBJECT(m_pSocket), "focus-out-event", G_CALLBACK(signalFocus), this ); + g_signal_connect( G_OBJECT(m_pSocket), "destroy", G_CALLBACK(signalDestroy), this ); + + // #i59255# necessary due to sync effects with java child windows + pParent->Flush(); + } +} + +GtkSalObject::~GtkSalObject() +{ + if( m_pRegion ) + { + cairo_region_destroy( m_pRegion ); + } + if( m_pSocket ) + { + // remove socket from parent frame's fixed container + gtk_container_remove( GTK_CONTAINER(gtk_widget_get_parent(m_pSocket)), + m_pSocket ); + // get rid of the socket + // actually the gtk_container_remove should let the ref count + // of the socket sink to 0 and destroy it (see signalDestroy) + // this is just a sanity check + if( m_pSocket ) + gtk_widget_destroy( m_pSocket ); + } +} + +void GtkSalObject::ResetClipRegion() +{ + if( m_pSocket ) + gdk_window_shape_combine_region( widget_get_window(m_pSocket), nullptr, 0, 0 ); +} + +sal_uInt16 GtkSalObject::GetClipRegionType() +{ + return SAL_OBJECT_CLIP_INCLUDERECTS; +} + +void GtkSalObject::BeginSetClipRegion( sal_uLong ) +{ + if( m_pRegion ) + cairo_region_destroy( m_pRegion ); + m_pRegion = cairo_region_create(); +} + +void GtkSalObject::UnionClipRegion( long nX, long nY, long nWidth, long nHeight ) +{ + GdkRectangle aRect; + aRect.x = nX; + aRect.y = nY; + aRect.width = nWidth; + aRect.height = nHeight; + + cairo_region_union_rectangle( m_pRegion, &aRect ); +} + +void GtkSalObject::EndSetClipRegion() +{ + if( m_pSocket ) + gdk_window_shape_combine_region( widget_get_window(m_pSocket), m_pRegion, 0, 0 ); +} + +void GtkSalObject::SetPosSize( long nX, long nY, long nWidth, long nHeight ) +{ + if( m_pSocket ) + { + GtkFixed* pContainer = GTK_FIXED(gtk_widget_get_parent(m_pSocket)); + gtk_fixed_move( pContainer, m_pSocket, nX, nY ); + gtk_widget_set_size_request( m_pSocket, nWidth, nHeight ); + gtk_container_resize_children( GTK_CONTAINER(pContainer) ); + } +} + +void GtkSalObject::Show( bool bVisible ) +{ + if( m_pSocket ) + { + if( bVisible ) + gtk_widget_show( m_pSocket ); + else + gtk_widget_hide( m_pSocket ); + } +} + +const SystemEnvData* GtkSalObject::GetSystemData() const +{ + return &m_aSystemData; +} + +gboolean GtkSalObject::signalButton( GtkWidget*, GdkEventButton* pEvent, gpointer object ) +{ + GtkSalObject* pThis = static_cast<GtkSalObject*>(object); + + if( pEvent->type == GDK_BUTTON_PRESS ) + { + pThis->CallCallback( SALOBJ_EVENT_TOTOP, nullptr ); + } + + return FALSE; +} + +gboolean GtkSalObject::signalFocus( GtkWidget*, GdkEventFocus* pEvent, gpointer object ) +{ + GtkSalObject* pThis = static_cast<GtkSalObject*>(object); + + pThis->CallCallback( pEvent->in ? SALOBJ_EVENT_GETFOCUS : SALOBJ_EVENT_LOSEFOCUS, nullptr ); + + return FALSE; +} + +void GtkSalObject::signalDestroy( GtkWidget* pObj, gpointer object ) +{ + GtkSalObject* pThis = static_cast<GtkSalObject*>(object); + if( pObj == pThis->m_pSocket ) + { + pThis->m_pSocket = nullptr; + } +} + +void GtkSalObject::SetForwardKey( bool bEnable ) +{ + if( bEnable ) + gtk_widget_add_events( GTK_WIDGET( m_pSocket ), GDK_KEY_PRESS_MASK | GDK_KEY_RELEASE ); + else + gtk_widget_set_events( GTK_WIDGET( m_pSocket ), ~(GDK_KEY_PRESS_MASK | GDK_KEY_RELEASE) & gtk_widget_get_events( GTK_WIDGET( m_pSocket ) ) ); +} /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff -Nru libreoffice-5.1.1~rc2/vcl/unx/gtk3/gtk3salnativewidgets-gtk.cxx libreoffice-5.1.2~rc2/vcl/unx/gtk3/gtk3salnativewidgets-gtk.cxx --- libreoffice-5.1.1~rc2/vcl/unx/gtk3/gtk3salnativewidgets-gtk.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/vcl/unx/gtk3/gtk3salnativewidgets-gtk.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -22,67 +22,90 @@ #include <boost/optional.hpp> GtkStyleContext* GtkSalGraphics::mpButtonStyle = nullptr; +GtkStyleContext* GtkSalGraphics::mpLinkButtonStyle = nullptr; GtkStyleContext* GtkSalGraphics::mpEntryStyle = nullptr; GtkStyleContext* GtkSalGraphics::mpTextViewStyle = nullptr; GtkStyleContext* GtkSalGraphics::mpVScrollbarStyle = nullptr; +GtkStyleContext* GtkSalGraphics::mpVScrollbarTroughStyle = nullptr; +GtkStyleContext* GtkSalGraphics::mpVScrollbarSliderStyle = nullptr; +GtkStyleContext* GtkSalGraphics::mpVScrollbarButtonStyle = nullptr; GtkStyleContext* GtkSalGraphics::mpHScrollbarStyle = nullptr; +GtkStyleContext* GtkSalGraphics::mpHScrollbarTroughStyle = nullptr; +GtkStyleContext* GtkSalGraphics::mpHScrollbarSliderStyle = nullptr; +GtkStyleContext* GtkSalGraphics::mpHScrollbarButtonStyle = nullptr; GtkStyleContext* GtkSalGraphics::mpToolbarStyle = nullptr; GtkStyleContext* GtkSalGraphics::mpToolButtonStyle = nullptr; GtkStyleContext* GtkSalGraphics::mpToolbarSeperatorStyle = nullptr; GtkStyleContext* GtkSalGraphics::mpCheckButtonStyle = nullptr; +GtkStyleContext* GtkSalGraphics::mpRadioButtonStyle = nullptr; GtkStyleContext* GtkSalGraphics::mpMenuBarStyle = nullptr; GtkStyleContext* GtkSalGraphics::mpMenuBarItemStyle = nullptr; GtkStyleContext* GtkSalGraphics::mpMenuStyle = nullptr; +GtkStyleContext* GtkSalGraphics::mpMenuItemStyle = nullptr; +GtkStyleContext* GtkSalGraphics::mpMenuItemArrowStyle = nullptr; GtkStyleContext* GtkSalGraphics::mpCheckMenuItemStyle = nullptr; +GtkStyleContext* GtkSalGraphics::mpRadioMenuItemStyle = nullptr; +GtkStyleContext* GtkSalGraphics::mpSeparatorMenuItemStyle = nullptr; GtkStyleContext* GtkSalGraphics::mpSpinStyle = nullptr; +GtkStyleContext* GtkSalGraphics::mpSpinUpStyle = nullptr; +GtkStyleContext* GtkSalGraphics::mpSpinDownStyle = nullptr; GtkStyleContext* GtkSalGraphics::mpComboboxStyle = nullptr; GtkStyleContext* GtkSalGraphics::mpComboboxButtonStyle = nullptr; GtkStyleContext* GtkSalGraphics::mpListboxStyle = nullptr; GtkStyleContext* GtkSalGraphics::mpListboxButtonStyle = nullptr; -GtkStyleContext* GtkSalGraphics::mpNoteBookStyle = nullptr; GtkStyleContext* GtkSalGraphics::mpFrameInStyle = nullptr; GtkStyleContext* GtkSalGraphics::mpFrameOutStyle = nullptr; GtkStyleContext* GtkSalGraphics::mpFixedHoriLineStyle = nullptr; GtkStyleContext* GtkSalGraphics::mpFixedVertLineStyle = nullptr; GtkStyleContext* GtkSalGraphics::mpTreeHeaderButtonStyle = nullptr; GtkStyleContext* GtkSalGraphics::mpProgressBarStyle = nullptr; +GtkStyleContext* GtkSalGraphics::mpProgressBarTroughStyle = nullptr; +GtkStyleContext* GtkSalGraphics::mpProgressBarProgressStyle = nullptr; +GtkStyleContext* GtkSalGraphics::mpNotebookStyle = nullptr; +GtkStyleContext* GtkSalGraphics::mpNotebookStackStyle = nullptr; +GtkStyleContext* GtkSalGraphics::mpNotebookHeaderStyle = nullptr; +GtkStyleContext* GtkSalGraphics::mpNotebookHeaderTabsStyle = nullptr; +GtkStyleContext* GtkSalGraphics::mpNotebookHeaderTabsTabStyle = nullptr; bool GtkSalGraphics::style_loaded = false; /************************************************************************ * State conversion ************************************************************************/ -static void NWConvertVCLStateToGTKState( ControlState nVCLState, - GtkStateFlags* nGTKState, GtkShadowType* nGTKShadow ) +static GtkStateFlags NWConvertVCLStateToGTKState(ControlState nVCLState) { - *nGTKShadow = GTK_SHADOW_OUT; - *nGTKState = GTK_STATE_FLAG_NORMAL; + GtkStateFlags nGTKState = GTK_STATE_FLAG_NORMAL; if (!( nVCLState & ControlState::ENABLED )) { - *nGTKState = GTK_STATE_FLAG_INSENSITIVE; + nGTKState = GTK_STATE_FLAG_INSENSITIVE; } if ( nVCLState & ControlState::PRESSED ) { - *nGTKState = (GtkStateFlags) (*nGTKState | GTK_STATE_FLAG_ACTIVE); - *nGTKShadow = GTK_SHADOW_IN; + nGTKState = (GtkStateFlags) (nGTKState | GTK_STATE_FLAG_ACTIVE); } if ( nVCLState & ControlState::ROLLOVER ) { - *nGTKState = (GtkStateFlags) (*nGTKState | GTK_STATE_FLAG_PRELIGHT); + nGTKState = (GtkStateFlags) (nGTKState | GTK_STATE_FLAG_PRELIGHT); } if ( nVCLState & ControlState::SELECTED ) - *nGTKState = (GtkStateFlags) (*nGTKState | GTK_STATE_FLAG_SELECTED); + nGTKState = (GtkStateFlags) (nGTKState | GTK_STATE_FLAG_SELECTED); if ( nVCLState & ControlState::FOCUSED ) - *nGTKState = (GtkStateFlags) (*nGTKState | GTK_STATE_FLAG_FOCUSED); + nGTKState = (GtkStateFlags) (nGTKState | GTK_STATE_FLAG_FOCUSED); if (AllSettings::GetLayoutRTL()) { - *nGTKState = (GtkStateFlags) (*nGTKState | GTK_STATE_FLAG_DIR_RTL); + nGTKState = (GtkStateFlags) (nGTKState | GTK_STATE_FLAG_DIR_RTL); } + else + { + nGTKState = (GtkStateFlags) (nGTKState | GTK_STATE_FLAG_DIR_LTR); + } + + return nGTKState; } enum { @@ -117,16 +140,13 @@ Rectangle GtkSalGraphics::NWGetSpinButtonRect( ControlPart nPart, Rectangle aAreaRect) { - gtk_style_context_save(mpSpinStyle); - gtk_style_context_add_class(mpSpinStyle, GTK_STYLE_CLASS_BUTTON); - gint w, h; gtk_icon_size_lookup (GTK_ICON_SIZE_MENU, &w, &h); gint icon_size = std::max(w, h); GtkBorder padding, border; - gtk_style_context_get_padding(mpSpinStyle, GTK_STATE_FLAG_NORMAL, &padding); - gtk_style_context_get_border(mpSpinStyle, GTK_STATE_FLAG_NORMAL, &border); + gtk_style_context_get_padding(mpSpinUpStyle, gtk_style_context_get_state(mpSpinUpStyle), &padding); + gtk_style_context_get_border(mpSpinUpStyle, gtk_style_context_get_state(mpSpinUpStyle), &border); gint buttonWidth = icon_size + padding.left + padding.right + border.left + border.right; @@ -169,8 +189,6 @@ partRect.Bottom() = aAreaRect.Bottom(); } - gtk_style_context_restore(mpSpinStyle); - return partRect; } @@ -271,7 +289,6 @@ const ScrollbarValue& rScrollbarVal = static_cast<const ScrollbarValue&>(rValue); Rectangle scrollbarRect; GtkStateFlags stateFlags; - GtkShadowType shadowType; GtkOrientation scrollbarOrientation; Rectangle thumbRect = rScrollbarVal.maThumbRect; Rectangle button11BoundRect = rScrollbarVal.maButton1Rect; // backward @@ -281,8 +298,6 @@ gdouble arrow1Angle; // backward gdouble arrow2Angle; // forward Rectangle arrowRect; - const gchar* button1StyleClass = nullptr; - const gchar* button2StyleClass = nullptr; gint slider_width = 0; gint stepper_size = 0; gint stepper_spacing = 0; @@ -332,8 +347,6 @@ scrollbarOrientation = GTK_ORIENTATION_HORIZONTAL; arrow1Angle = G_PI * 3 / 2; arrow2Angle = G_PI / 2; - button1StyleClass = GTK_STYLE_CLASS_LEFT; - button2StyleClass = GTK_STYLE_CLASS_RIGHT; if ( has_backward ) { @@ -374,8 +387,6 @@ scrollbarOrientation = GTK_ORIENTATION_VERTICAL; arrow1Angle = 0; arrow2Angle = G_PI; - button1StyleClass = GTK_STYLE_CLASS_TOP; - button2StyleClass = GTK_STYLE_CLASS_BOTTOM; if ( has_backward ) { @@ -409,37 +420,34 @@ bool has_slider = ( thumbRect.GetWidth() > 0 && thumbRect.GetHeight() > 0 ); // ----------------- TROUGH - gtk_style_context_save(context); - gtk_style_context_add_class(context, GTK_STYLE_CLASS_TROUGH); - gtk_render_background(context, cr, 0, 0, + GtkStyleContext* pScrollbarTroughStyle = scrollbarOrientation == GTK_ORIENTATION_VERTICAL ? + mpVScrollbarTroughStyle : mpHScrollbarTroughStyle; + gtk_render_background(pScrollbarTroughStyle, cr, 0, 0, scrollbarRect.GetWidth(), scrollbarRect.GetHeight() ); - gtk_render_frame(context, cr, 0, 0, + gtk_render_frame(pScrollbarTroughStyle, cr, 0, 0, scrollbarRect.GetWidth(), scrollbarRect.GetHeight() ); - gtk_style_context_restore(context); - // ----------------- THUMB if ( has_slider ) { - NWConvertVCLStateToGTKState( rScrollbarVal.mnThumbState, &stateFlags, &shadowType ); + stateFlags = NWConvertVCLStateToGTKState(rScrollbarVal.mnThumbState); if ( rScrollbarVal.mnThumbState & ControlState::PRESSED ) stateFlags = (GtkStateFlags) (stateFlags | GTK_STATE_PRELIGHT); - gtk_style_context_save(context); - gtk_style_context_set_state(context, stateFlags); - gtk_style_context_add_class(context, GTK_STYLE_CLASS_SLIDER); + GtkStyleContext* pScrollbarSliderStyle = scrollbarOrientation == GTK_ORIENTATION_VERTICAL ? + mpVScrollbarSliderStyle : mpHScrollbarSliderStyle; + + gtk_style_context_set_state(pScrollbarSliderStyle, stateFlags); GtkBorder margin; - gtk_style_context_get_margin(context, stateFlags, &margin); + gtk_style_context_get_margin(pScrollbarSliderStyle, stateFlags, &margin); - gtk_render_slider(context, cr, + gtk_render_slider(pScrollbarSliderStyle, cr, thumbRect.Left() + margin.left, thumbRect.Top() + margin.top, thumbRect.GetWidth() - margin.left - margin.right, thumbRect.GetHeight() - margin.top - margin.bottom, scrollbarOrientation); - - gtk_style_context_restore(context); } bool backwardButtonInsensitive = @@ -450,112 +458,104 @@ // ----------------- BUTTON 1 if ( has_backward ) { - NWConvertVCLStateToGTKState( rScrollbarVal.mnButton1State, &stateFlags, &shadowType ); + stateFlags = NWConvertVCLStateToGTKState(rScrollbarVal.mnButton1State); if ( backwardButtonInsensitive ) stateFlags = GTK_STATE_FLAG_INSENSITIVE; - gtk_style_context_save(context); - gtk_style_context_set_state(context, stateFlags); - gtk_style_context_add_class(context, GTK_STYLE_CLASS_BUTTON); - gtk_style_context_add_class(context, button1StyleClass); + GtkStyleContext* pScrollbarButtonStyle = scrollbarOrientation == GTK_ORIENTATION_VERTICAL ? + mpVScrollbarButtonStyle : mpHScrollbarButtonStyle; - gtk_render_background(context, cr, + gtk_style_context_set_state(pScrollbarButtonStyle, stateFlags); + + gtk_render_background(pScrollbarButtonStyle, cr, button11BoundRect.Left(), button11BoundRect.Top(), button11BoundRect.GetWidth(), button11BoundRect.GetHeight() ); - gtk_render_frame(context, cr, + gtk_render_frame(pScrollbarButtonStyle, cr, button11BoundRect.Left(), button11BoundRect.Top(), button11BoundRect.GetWidth(), button11BoundRect.GetHeight() ); // ----------------- ARROW 1 NWCalcArrowRect( button11BoundRect, arrowRect ); - gtk_render_arrow(context, cr, + gtk_render_arrow(pScrollbarButtonStyle, cr, arrow1Angle, arrowRect.Left(), arrowRect.Top(), MIN(arrowRect.GetWidth(), arrowRect.GetHeight()) ); - - gtk_style_context_restore(context); } if ( has_forward2 ) { - NWConvertVCLStateToGTKState( rScrollbarVal.mnButton2State, &stateFlags, &shadowType ); + stateFlags = NWConvertVCLStateToGTKState(rScrollbarVal.mnButton2State); if ( forwardButtonInsensitive ) stateFlags = GTK_STATE_FLAG_INSENSITIVE; - gtk_style_context_save(context); - gtk_style_context_set_state(context, stateFlags); - gtk_style_context_add_class(context, GTK_STYLE_CLASS_BUTTON); - gtk_style_context_add_class(context, button1StyleClass); + GtkStyleContext* pScrollbarButtonStyle = scrollbarOrientation == GTK_ORIENTATION_VERTICAL ? + mpVScrollbarButtonStyle : mpHScrollbarButtonStyle; - gtk_render_background(context, cr, + gtk_style_context_set_state(pScrollbarButtonStyle, stateFlags); + + gtk_render_background(pScrollbarButtonStyle, cr, button12BoundRect.Left(), button12BoundRect.Top(), button12BoundRect.GetWidth(), button12BoundRect.GetHeight() ); - gtk_render_frame(context, cr, + gtk_render_frame(pScrollbarButtonStyle, cr, button12BoundRect.Left(), button12BoundRect.Top(), button12BoundRect.GetWidth(), button12BoundRect.GetHeight() ); // ----------------- ARROW 1 NWCalcArrowRect( button12BoundRect, arrowRect ); - gtk_render_arrow(context, cr, + gtk_render_arrow(pScrollbarButtonStyle, cr, arrow2Angle, arrowRect.Left(), arrowRect.Top(), MIN(arrowRect.GetWidth(), arrowRect.GetHeight()) ); - - gtk_style_context_restore(context); } // ----------------- BUTTON 2 if ( has_backward2 ) { - NWConvertVCLStateToGTKState( rScrollbarVal.mnButton1State, &stateFlags, &shadowType ); + stateFlags = NWConvertVCLStateToGTKState(rScrollbarVal.mnButton1State); if ( backwardButtonInsensitive ) stateFlags = GTK_STATE_FLAG_INSENSITIVE; - gtk_style_context_save(context); - gtk_style_context_set_state(context, stateFlags); - gtk_style_context_add_class(context, GTK_STYLE_CLASS_BUTTON); - gtk_style_context_add_class(context, button2StyleClass); + GtkStyleContext* pScrollbarButtonStyle = scrollbarOrientation == GTK_ORIENTATION_VERTICAL ? + mpVScrollbarButtonStyle : mpHScrollbarButtonStyle; - gtk_render_background(context, cr, + gtk_style_context_set_state(pScrollbarButtonStyle, stateFlags); + + gtk_render_background(pScrollbarButtonStyle, cr, button21BoundRect.Left(), button21BoundRect.Top(), button21BoundRect.GetWidth(), button21BoundRect.GetHeight() ); - gtk_render_frame(context, cr, + gtk_render_frame(pScrollbarButtonStyle, cr, button21BoundRect.Left(), button21BoundRect.Top(), button21BoundRect.GetWidth(), button21BoundRect.GetHeight() ); // ----------------- ARROW 2 NWCalcArrowRect( button21BoundRect, arrowRect ); - gtk_render_arrow(context, cr, + gtk_render_arrow(pScrollbarButtonStyle, cr, arrow1Angle, arrowRect.Left(), arrowRect.Top(), MIN(arrowRect.GetWidth(), arrowRect.GetHeight()) ); - - gtk_style_context_restore(context); } if ( has_forward ) { - NWConvertVCLStateToGTKState( rScrollbarVal.mnButton2State, &stateFlags, &shadowType ); + stateFlags = NWConvertVCLStateToGTKState(rScrollbarVal.mnButton2State); if ( forwardButtonInsensitive ) stateFlags = GTK_STATE_FLAG_INSENSITIVE; - gtk_style_context_save(context); - gtk_style_context_set_state(context, stateFlags); - gtk_style_context_add_class(context, GTK_STYLE_CLASS_BUTTON); - gtk_style_context_add_class(context, button2StyleClass); + GtkStyleContext* pScrollbarButtonStyle = scrollbarOrientation == GTK_ORIENTATION_VERTICAL ? + mpVScrollbarButtonStyle : mpHScrollbarButtonStyle; - gtk_render_background(context, cr, + gtk_style_context_set_state(pScrollbarButtonStyle, stateFlags); + + gtk_render_background(pScrollbarButtonStyle, cr, button22BoundRect.Left(), button22BoundRect.Top(), button22BoundRect.GetWidth(), button22BoundRect.GetHeight() ); - gtk_render_frame(context, cr, + gtk_render_frame(pScrollbarButtonStyle, cr, button22BoundRect.Left(), button22BoundRect.Top(), button22BoundRect.GetWidth(), button22BoundRect.GetHeight() ); // ----------------- ARROW 2 NWCalcArrowRect( button22BoundRect, arrowRect ); - gtk_render_arrow(context, cr, + gtk_render_arrow(pScrollbarButtonStyle, cr, arrow2Angle, arrowRect.Left(), arrowRect.Top(), MIN(arrowRect.GetWidth(), arrowRect.GetHeight()) ); - - gtk_style_context_restore(context); } } @@ -567,20 +567,15 @@ ControlState nState ) { (void)nType; - Rectangle buttonRect; - GtkStateFlags stateFlags; - GtkShadowType shadowType; GtkBorder padding, border; - NWConvertVCLStateToGTKState( nState, &stateFlags, &shadowType ); - buttonRect = NWGetSpinButtonRect( nPart, aAreaRect ); + GtkStateFlags stateFlags = NWConvertVCLStateToGTKState(nState); + Rectangle buttonRect = NWGetSpinButtonRect( nPart, aAreaRect ); - gtk_style_context_save(context); gtk_style_context_set_state(context, stateFlags); - gtk_style_context_add_class(context, GTK_STYLE_CLASS_BUTTON); - gtk_style_context_get_padding(context, GTK_STATE_FLAG_NORMAL, &padding); - gtk_style_context_get_border(context, GTK_STATE_FLAG_NORMAL, &border); + gtk_style_context_get_padding(context, gtk_style_context_get_state(context), &padding); + gtk_style_context_get_border(context, gtk_style_context_get_state(context), &border); gtk_render_background(context, cr, buttonRect.Left(), buttonRect.Top(), @@ -613,18 +608,15 @@ gtk_render_icon(context, cr, pixbuf, arrowRect.Left(), arrowRect.Top()); g_object_unref(pixbuf); gtk_icon_info_free(info); - - gtk_style_context_restore(context); } void GtkSalGraphics::PaintSpinButton(GtkStyleContext *context, cairo_t *cr, const Rectangle& rControlRectangle, ControlType nType, - ControlPart /*nPart*/, + ControlPart nPart, const ImplControlValue& rValue ) { - Rectangle areaRect; const SpinbuttonValue *pSpinVal = (rValue.getType() == CTRL_SPINBUTTONS) ? static_cast<const SpinbuttonValue *>(&rValue) : nullptr; ControlPart upBtnPart = PART_BUTTON_UP; ControlState upBtnState = ControlState::NONE; @@ -640,24 +632,20 @@ downBtnState = pSpinVal->mnLowerState; } - areaRect = rControlRectangle; - - gtk_render_background(context, cr, - 0, 0, - areaRect.GetWidth(), areaRect.GetHeight() ); - gtk_render_frame(context, cr, - 0, 0, - areaRect.GetWidth(), areaRect.GetHeight() ); - - // CTRL_SPINBUTTONS pass their area in pSpinVal, not in rControlRectangle - if (pSpinVal) + if (nPart == PART_ENTIRE_CONTROL) { - areaRect = pSpinVal->maUpperRect; - areaRect.Union( pSpinVal->maLowerRect ); + gtk_render_background(context, cr, + 0, 0, + rControlRectangle.GetWidth(), rControlRectangle.GetHeight() ); + gtk_render_frame(context, cr, + 0, 0, + rControlRectangle.GetWidth(), rControlRectangle.GetHeight() ); } - PaintOneSpinButton(context, cr, nType, upBtnPart, areaRect, upBtnState ); - PaintOneSpinButton(context, cr, nType, downBtnPart, areaRect, downBtnState ); + cairo_translate(cr, -rControlRectangle.Left(), -rControlRectangle.Top()); + PaintOneSpinButton(mpSpinUpStyle, cr, nType, upBtnPart, rControlRectangle, upBtnState ); + PaintOneSpinButton(mpSpinDownStyle, cr, nType, downBtnPart, rControlRectangle, downBtnState ); + cairo_translate(cr, rControlRectangle.Left(), rControlRectangle.Top()); } #define ARROW_SIZE 11 * 0.85 @@ -668,14 +656,12 @@ (void)nType; (void)nPart; Rectangle aButtonRect; - gint nArrowWidth; - gint nButtonWidth; - GtkBorder padding; - gtk_style_context_get_padding( mpButtonStyle, GTK_STATE_FLAG_NORMAL, &padding); + GtkBorder padding; + gtk_style_context_get_padding( mpButtonStyle, gtk_style_context_get_state(mpButtonStyle), &padding); - nArrowWidth = ARROW_SIZE; - nButtonWidth = nArrowWidth + padding.left + padding.right; + gint nArrowWidth = ARROW_SIZE; + gint nButtonWidth = nArrowWidth + padding.left + padding.right; if( nPart == PART_BUTTON_DOWN ) { Point aPos = Point(aAreaRect.Left() + aAreaRect.GetWidth() - nButtonWidth, aAreaRect.Top()); @@ -741,7 +727,7 @@ if( nPart == PART_ENTIRE_CONTROL ) { - gtk_style_context_save(mpEntryStyle); + GtkJunctionSides eJuncSides = gtk_style_context_get_junction_sides(mpEntryStyle); gtk_style_context_set_state(mpEntryStyle, flags); if (AllSettings::GetLayoutRTL()) gtk_style_context_set_junction_sides(mpEntryStyle, GTK_JUNCTION_LEFT); @@ -762,8 +748,7 @@ (aEditBoxRect.Left() - areaRect.Left()), (aEditBoxRect.Top() - areaRect.Top()), aEditBoxRect.GetWidth(), aEditBoxRect.GetHeight() ); - - gtk_style_context_restore(mpEntryStyle); + gtk_style_context_set_junction_sides(mpEntryStyle, eJuncSides); } gtk_render_background(mpComboboxButtonStyle, cr, @@ -820,30 +805,336 @@ } } -void GtkSalGraphics::PaintCheckOrRadio(GtkStyleContext *context, - cairo_t *cr, - const Rectangle& rControlRectangle, - ControlType nType) +static GtkStyleContext* createStyleContext(GtkControlPart ePart, GtkStyleContext* parent = nullptr) +{ + GtkWidgetPath *path = parent ? gtk_widget_path_copy(gtk_style_context_get_path(parent)) : gtk_widget_path_new(); + switch (ePart) + { + case GtkControlPart::Button: + gtk_widget_path_append_type(path, GTK_TYPE_BUTTON); +#if GTK_CHECK_VERSION(3, 19, 2) + gtk_widget_path_iter_set_object_name(path, -1, "button"); +#else + gtk_widget_path_iter_add_class(path, -1, GTK_STYLE_CLASS_BUTTON); +#endif + break; + case GtkControlPart::LinkButton: + gtk_widget_path_append_type(path, GTK_TYPE_BUTTON); +#if GTK_CHECK_VERSION(3, 19, 2) + gtk_widget_path_iter_set_object_name(path, -1, "button"); +#else + gtk_widget_path_iter_add_class(path, -1, GTK_STYLE_CLASS_BUTTON); +#endif + gtk_widget_path_iter_add_class(path, -1, "link"); + break; + case GtkControlPart::CheckButton: + gtk_widget_path_append_type(path, GTK_TYPE_CHECK_BUTTON); +#if GTK_CHECK_VERSION(3, 19, 2) + gtk_widget_path_iter_set_object_name(path, -1, "checkbutton"); +#else + gtk_widget_path_iter_add_class(path, -1, GTK_STYLE_CLASS_CHECK); +#endif + break; + case GtkControlPart::CheckButtonCheck: + gtk_widget_path_append_type(path, GTK_TYPE_CHECK_BUTTON); +#if GTK_CHECK_VERSION(3, 19, 2) + gtk_widget_path_iter_set_object_name(path, -1, "check"); +#else + gtk_widget_path_iter_add_class(path, -1, GTK_STYLE_CLASS_CHECK); +#endif + break; + case GtkControlPart::RadioButton: + gtk_widget_path_append_type(path, GTK_TYPE_RADIO_BUTTON); +#if GTK_CHECK_VERSION(3, 19, 2) + gtk_widget_path_iter_set_object_name(path, -1, "radiobutton"); +#else + gtk_widget_path_iter_add_class(path, -1, GTK_STYLE_CLASS_RADIO); +#endif + break; + case GtkControlPart::RadioButtonRadio: + gtk_widget_path_append_type(path, GTK_TYPE_RADIO_BUTTON); +#if GTK_CHECK_VERSION(3, 19, 2) + gtk_widget_path_iter_set_object_name(path, -1, "radio"); +#else + gtk_widget_path_iter_add_class(path, -1, GTK_STYLE_CLASS_RADIO); +#endif + break; + case GtkControlPart::Entry: + gtk_widget_path_append_type(path, GTK_TYPE_ENTRY); +#if GTK_CHECK_VERSION(3, 19, 2) + gtk_widget_path_iter_set_object_name(path, -1, "entry"); +#else + gtk_widget_path_iter_add_class(path, -1, GTK_STYLE_CLASS_ENTRY); +#endif + break; + case GtkControlPart::SpinButton: + gtk_widget_path_append_type(path, GTK_TYPE_SPIN_BUTTON); +#if GTK_CHECK_VERSION(3, 19, 2) + gtk_widget_path_iter_set_object_name(path, -1, "spinbutton"); +#else + gtk_widget_path_iter_add_class(path, -1, GTK_STYLE_CLASS_SPINBUTTON); +#endif + gtk_widget_path_iter_add_class(path, -1, GTK_STYLE_CLASS_HORIZONTAL); + break; + case GtkControlPart::SpinButtonUpButton: + case GtkControlPart::SpinButtonDownButton: + gtk_widget_path_append_type(path, GTK_TYPE_SPIN_BUTTON); +#if GTK_CHECK_VERSION(3, 19, 2) + gtk_widget_path_iter_set_object_name(path, -1, "button"); + gtk_widget_path_iter_add_class(path, -1, ePart == GtkControlPart::SpinButtonUpButton ? "up" : "down"); +#else + gtk_widget_path_iter_add_class(path, -1, GTK_STYLE_CLASS_SPINBUTTON); + gtk_widget_path_iter_add_class(path, -1, GTK_STYLE_CLASS_BUTTON); +#endif + break; + case GtkControlPart::ScrollbarVertical: + case GtkControlPart::ScrollbarHorizontal: + gtk_widget_path_append_type(path, GTK_TYPE_SCROLLBAR); +#if GTK_CHECK_VERSION(3, 19, 2) + gtk_widget_path_iter_set_object_name(path, -1, "scrollbar"); +#else + gtk_widget_path_iter_add_class(path, -1, GTK_STYLE_CLASS_SCROLLBAR); +#endif + gtk_widget_path_iter_add_class(path, -1, ePart == GtkControlPart::ScrollbarVertical ? "vertical" : "horizontal"); + break; + case GtkControlPart::ScrollbarTrough: + gtk_widget_path_append_type(path, GTK_TYPE_SCROLLBAR); +#if GTK_CHECK_VERSION(3, 19, 2) + gtk_widget_path_iter_set_object_name(path, -1, "trough"); +#else + gtk_widget_path_iter_add_class(path, -1, GTK_STYLE_CLASS_SCROLLBAR); + gtk_widget_path_iter_add_class(path, -1, GTK_STYLE_CLASS_TROUGH); +#endif + break; + case GtkControlPart::ScrollbarSlider: + gtk_widget_path_append_type(path, GTK_TYPE_SCROLLBAR); +#if GTK_CHECK_VERSION(3, 19, 2) + gtk_widget_path_iter_set_object_name(path, -1, "slider"); +#else + gtk_widget_path_iter_add_class(path, -1, GTK_STYLE_CLASS_SCROLLBAR); + gtk_widget_path_iter_add_class(path, -1, GTK_STYLE_CLASS_SLIDER); +#endif + break; + case GtkControlPart::ScrollbarButton: + gtk_widget_path_append_type(path, GTK_TYPE_SCROLLBAR); +#if GTK_CHECK_VERSION(3, 19, 2) + gtk_widget_path_iter_set_object_name(path, -1, "button"); +#else + gtk_widget_path_iter_add_class(path, -1, GTK_STYLE_CLASS_SCROLLBAR); + gtk_widget_path_iter_add_class(path, -1, GTK_STYLE_CLASS_BUTTON); +#endif + break; + case GtkControlPart::ProgressBar: + gtk_widget_path_append_type(path, GTK_TYPE_PROGRESS_BAR); +#if GTK_CHECK_VERSION(3, 19, 2) + gtk_widget_path_iter_set_object_name(path, -1, "progressbar"); +#else + gtk_widget_path_iter_add_class(path, -1, GTK_STYLE_CLASS_PROGRESSBAR); +#endif + gtk_widget_path_iter_add_class(path, -1, GTK_STYLE_CLASS_HORIZONTAL); + break; + case GtkControlPart::ProgressBarTrough: + gtk_widget_path_append_type(path, GTK_TYPE_PROGRESS_BAR); +#if GTK_CHECK_VERSION(3, 19, 2) + gtk_widget_path_iter_set_object_name(path, -1, "trough"); +#else + gtk_widget_path_iter_add_class(path, -1, GTK_STYLE_CLASS_PROGRESSBAR); + gtk_widget_path_iter_add_class(path, -1, GTK_STYLE_CLASS_TROUGH); +#endif + break; + case GtkControlPart::ProgressBarProgress: + gtk_widget_path_append_type(path, GTK_TYPE_PROGRESS_BAR); +#if GTK_CHECK_VERSION(3, 19, 2) + gtk_widget_path_iter_set_object_name(path, -1, "progress"); +#else + gtk_widget_path_iter_add_class(path, -1, GTK_STYLE_CLASS_PROGRESSBAR); +#endif + break; + case GtkControlPart::MenuBar: + gtk_widget_path_append_type(path, GTK_TYPE_MENU_BAR); +#if GTK_CHECK_VERSION(3, 19, 2) + gtk_widget_path_iter_set_object_name(path, -1, "menubar"); +#else + gtk_widget_path_iter_add_class(path, -1, GTK_STYLE_CLASS_MENUBAR); +#endif + break; + case GtkControlPart::MenuItem: + gtk_widget_path_append_type(path, GTK_TYPE_MENU_ITEM); +#if GTK_CHECK_VERSION(3, 19, 2) + gtk_widget_path_iter_set_object_name(path, -1, "menuitem"); +#else + gtk_widget_path_iter_add_class(path, -1, GTK_STYLE_CLASS_MENUITEM); +#endif + break; + case GtkControlPart::MenuItemArrow: + gtk_widget_path_append_type(path, GTK_TYPE_MENU_ITEM); +#if GTK_CHECK_VERSION(3, 19, 2) + gtk_widget_path_iter_set_object_name(path, -1, "arrow"); +#else + gtk_widget_path_iter_add_class(path, -1, GTK_STYLE_CLASS_ARROW); +#endif + break; + case GtkControlPart::Menu: + gtk_widget_path_append_type(path, GTK_TYPE_MENU); +#if GTK_CHECK_VERSION(3, 19, 2) + gtk_widget_path_iter_set_object_name(path, -1, "menu"); +#else + gtk_widget_path_iter_add_class(path, -1, GTK_STYLE_CLASS_MENU); +#endif + break; + case GtkControlPart::CheckMenuItem: + gtk_widget_path_append_type(path, GTK_TYPE_CHECK_MENU_ITEM); +#if GTK_CHECK_VERSION(3, 19, 2) + gtk_widget_path_iter_set_object_name(path, -1, "menuitem"); +#else + gtk_widget_path_iter_add_class(path, -1, GTK_STYLE_CLASS_MENUITEM); +#endif + break; + case GtkControlPart::CheckMenuItemCheck: + gtk_widget_path_append_type(path, GTK_TYPE_CHECK_MENU_ITEM); +#if GTK_CHECK_VERSION(3, 19, 2) + gtk_widget_path_iter_set_object_name(path, -1, "check"); +#else + gtk_widget_path_iter_add_class(path, -1, GTK_STYLE_CLASS_CHECK); +#endif + break; + case GtkControlPart::RadioMenuItem: + gtk_widget_path_append_type(path, GTK_TYPE_RADIO_MENU_ITEM); +#if GTK_CHECK_VERSION(3, 19, 2) + gtk_widget_path_iter_set_object_name(path, -1, "menuitem"); +#else + gtk_widget_path_iter_add_class(path, -1, GTK_STYLE_CLASS_MENUITEM); +#endif + break; + case GtkControlPart::RadioMenuItemRadio: + gtk_widget_path_append_type(path, GTK_TYPE_RADIO_MENU_ITEM); +#if GTK_CHECK_VERSION(3, 19, 2) + gtk_widget_path_iter_set_object_name(path, -1, "radio"); +#else + gtk_widget_path_iter_add_class(path, -1, GTK_STYLE_CLASS_RADIO); +#endif + break; + case GtkControlPart::SeparatorMenuItem: + gtk_widget_path_append_type(path, GTK_TYPE_SEPARATOR_MENU_ITEM); +#if GTK_CHECK_VERSION(3, 19, 2) + gtk_widget_path_iter_set_object_name(path, -1, "menuitem"); +#else + gtk_widget_path_iter_add_class(path, -1, GTK_STYLE_CLASS_MENUITEM); +#endif + break; + case GtkControlPart::SeparatorMenuItemSeparator: + gtk_widget_path_append_type(path, GTK_TYPE_SEPARATOR_MENU_ITEM); +#if GTK_CHECK_VERSION(3, 19, 2) + gtk_widget_path_iter_set_object_name(path, -1, "separator"); +#else + gtk_widget_path_iter_add_class(path, -1, GTK_STYLE_CLASS_SEPARATOR); +#endif + break; + case GtkControlPart::Notebook: + gtk_widget_path_append_type(path, GTK_TYPE_NOTEBOOK); +#if GTK_CHECK_VERSION(3, 19, 2) + gtk_widget_path_iter_set_object_name(path, -1, "notebook"); +#else + gtk_widget_path_iter_add_class(path, -1, GTK_STYLE_CLASS_NOTEBOOK); +#endif + gtk_widget_path_iter_add_class(path, -1, "frame"); + break; + case GtkControlPart::NotebookStack: + gtk_widget_path_append_type(path, GTK_TYPE_NOTEBOOK); +#if GTK_CHECK_VERSION(3, 19, 2) + gtk_widget_path_iter_set_object_name(path, -1, "stack"); +#else + gtk_widget_path_iter_add_class(path, -1, GTK_STYLE_CLASS_NOTEBOOK); +#endif + break; + case GtkControlPart::NotebookHeader: + gtk_widget_path_append_type(path, GTK_TYPE_NOTEBOOK); +#if GTK_CHECK_VERSION(3, 19, 2) + gtk_widget_path_iter_set_object_name(path, -1, "header"); +#else + gtk_widget_path_iter_add_class(path, -1, GTK_STYLE_CLASS_HEADER); +#endif + gtk_widget_path_iter_add_class(path, -1, "frame"); + gtk_widget_path_iter_add_class(path, -1, "top"); + break; + case GtkControlPart::NotebookHeaderTabs: + gtk_widget_path_append_type(path, GTK_TYPE_NOTEBOOK); +#if GTK_CHECK_VERSION(3, 19, 2) + gtk_widget_path_iter_set_object_name(path, -1, "tabs"); +#else + gtk_widget_path_iter_add_class(path, -1, GTK_STYLE_CLASS_HEADER); +#endif + gtk_widget_path_iter_add_class(path, -1, "top"); + break; + case GtkControlPart::NotebookHeaderTabsTab: + gtk_widget_path_append_type(path, GTK_TYPE_NOTEBOOK); +#if GTK_CHECK_VERSION(3, 19, 2) + gtk_widget_path_iter_set_object_name(path, -1, "tab"); +#else + gtk_widget_path_iter_add_class(path, -1, GTK_STYLE_CLASS_HEADER); +#endif + gtk_widget_path_iter_add_class(path, -1, "top"); + break; + case GtkControlPart::FrameBorder: + gtk_widget_path_append_type(path, GTK_TYPE_FRAME); +#if GTK_CHECK_VERSION(3, 19, 2) + gtk_widget_path_iter_set_object_name(path, -1, "frame"); +#endif + gtk_widget_path_iter_add_class(path, -1, "frame"); + break; + } + + GtkStyleContext* context = gtk_style_context_new(); + gtk_style_context_set_path(context, path); + gtk_style_context_set_parent(context, parent); + gtk_widget_path_unref (path); + +#if !GTK_CHECK_VERSION(3, 19, 2) + if (ePart == GtkControlPart::NotebookHeaderTabsTab) + { + gtk_style_context_add_region(context, GTK_STYLE_REGION_TAB, GTK_REGION_ONLY); + } +#endif + + return context; +} + +#if GTK_CHECK_VERSION(3,13,7) +# define CHECKED GTK_STATE_FLAG_CHECKED +#else +# define CHECKED GTK_STATE_FLAG_ACTIVE +#endif + +void GtkSalGraphics::PaintCheckOrRadio(cairo_t *cr, GtkStyleContext *context, + const Rectangle& rControlRectangle, bool bIsCheck, bool bInMenu) { gint indicator_size; - gtk_style_context_get_style(mpCheckButtonStyle, - "indicator-size", &indicator_size, - NULL); + gtk_style_context_get_style(context, "indicator-size", &indicator_size, nullptr); gint x = (rControlRectangle.GetWidth() - indicator_size) / 2; gint y = (rControlRectangle.GetHeight() - indicator_size) / 2; - if (nType == CTRL_CHECKBOX) + if (!bInMenu) + gtk_render_background(context, cr, x, y, indicator_size, indicator_size); + gtk_render_frame(context, cr, x, y, indicator_size, indicator_size); + + if (bIsCheck) gtk_render_check(context, cr, x, y, indicator_size, indicator_size); - else if (nType == CTRL_RADIOBUTTON) + else gtk_render_option(context, cr, x, y, indicator_size, indicator_size); } -#if GTK_CHECK_VERSION(3,14,0) -# define CHECKED GTK_STATE_FLAG_CHECKED -#else -# define CHECKED GTK_STATE_FLAG_ACTIVE -#endif +void GtkSalGraphics::PaintCheck(cairo_t *cr, GtkStyleContext *context, + const Rectangle& rControlRectangle, bool bInMenu) +{ + PaintCheckOrRadio(cr, context, rControlRectangle, true, bInMenu); +} + +void GtkSalGraphics::PaintRadio(cairo_t *cr, GtkStyleContext *context, + const Rectangle& rControlRectangle, bool bInMenu) +{ + PaintCheckOrRadio(cr, context, rControlRectangle, false, bInMenu); +} static GtkWidget* gCacheWindow; static GtkWidget* gDumbContainer; @@ -854,31 +1145,46 @@ static GtkWidget* gComboBoxEntryWidget; static GtkWidget* gListBox; static GtkWidget* gListBoxButtonWidget; -static GtkWidget* gFrameIn; -static GtkWidget* gFrameOut; static GtkWidget* gMenuBarWidget; static GtkWidget* gMenuItemMenuBarWidget; static GtkWidget* gCheckMenuItemWidget; static GtkWidget* gTreeViewWidget; +void parent_styles_context_set_state(GtkStyleContext* context, GtkStateFlags flags) +{ + while ((context = gtk_style_context_get_parent(context))) + { + gtk_style_context_set_state(context, flags); + } +} + +static gfloat getArrowSize(GtkStyleContext* context) +{ + gfloat arrow_scaling = 1.0; + gtk_style_context_get_style(context, "arrow-scaling", &arrow_scaling, nullptr); + gfloat arrow_size = 11 * arrow_scaling; + return arrow_size; +} + bool GtkSalGraphics::drawNativeControl( ControlType nType, ControlPart nPart, const Rectangle& rControlRegion, ControlState nState, const ImplControlValue& rValue, const OUString& ) { - GtkStateFlags flags; - GtkShadowType shadow; gint renderType = nPart == PART_FOCUS ? RENDER_FOCUS : RENDER_BACKGROUND_AND_FRAME; GtkStyleContext *context = nullptr; +#if !GTK_CHECK_VERSION(3,19,2) const gchar *styleClass = nullptr; +#endif GdkPixbuf *pixbuf = nullptr; + bool bInMenu = false; - NWConvertVCLStateToGTKState(nState, &flags, &shadow); + GtkStateFlags flags = NWConvertVCLStateToGTKState(nState); switch(nType) { case CTRL_SPINBOX: case CTRL_SPINBUTTONS: - context = mpSpinStyle; + context = mpEntryStyle; renderType = RENDER_SPINBUTTON; break; case CTRL_EDITBOX: @@ -896,42 +1202,58 @@ renderType = nPart == PART_FOCUS ? RENDER_FOCUS : RENDER_COMBOBOX; break; case CTRL_MENU_POPUP: + bInMenu = true; // map selected menu entries in vcl parlance to gtk prelight if (nPart >= PART_MENU_ITEM && nPart <= PART_MENU_SUBMENU_ARROW && (nState & ControlState::SELECTED)) flags = (GtkStateFlags) (flags | GTK_STATE_FLAG_PRELIGHT); - + flags = (GtkStateFlags)(flags & ~GTK_STATE_FLAG_ACTIVE); switch(nPart) { case PART_MENU_ITEM: - styleClass = GTK_STYLE_CLASS_MENUITEM; - context = mpCheckMenuItemStyle; + context = mpMenuItemStyle; renderType = RENDER_BACKGROUND_AND_FRAME; break; case PART_MENU_ITEM_CHECK_MARK: - styleClass = GTK_STYLE_CLASS_CHECK; +#if GTK_CHECK_VERSION(3,19,2) context = mpCheckMenuItemStyle; +#else + context = gtk_widget_get_style_context(gCheckMenuItemWidget); + styleClass = GTK_STYLE_CLASS_CHECK; +#endif renderType = RENDER_CHECK; nType = CTRL_CHECKBOX; if (nState & ControlState::PRESSED) + { flags = (GtkStateFlags)(flags | CHECKED); + } break; case PART_MENU_ITEM_RADIO_MARK: +#if GTK_CHECK_VERSION(3,19,2) + context = mpRadioMenuItemStyle; +#else + context = gtk_widget_get_style_context(gCheckMenuItemWidget); styleClass = GTK_STYLE_CLASS_RADIO; - context = mpCheckMenuItemStyle; +#endif renderType = RENDER_RADIO; nType = CTRL_RADIOBUTTON; if (nState & ControlState::PRESSED) + { flags = (GtkStateFlags)(flags | CHECKED); + } break; case PART_MENU_SEPARATOR: - styleClass = GTK_STYLE_CLASS_SEPARATOR; - context = mpCheckMenuItemStyle; + context = mpSeparatorMenuItemStyle; + flags = (GtkStateFlags)(GTK_STATE_FLAG_BACKDROP | GTK_STATE_FLAG_INSENSITIVE); //GTK_STATE_FLAG_BACKDROP hack ? renderType = RENDER_MENU_SEPERATOR; break; case PART_MENU_SUBMENU_ARROW: +#if GTK_CHECK_VERSION(3,19,2) + context = mpMenuItemArrowStyle; +#else + context = gtk_widget_get_style_context(gCheckMenuItemWidget); styleClass = GTK_STYLE_CLASS_ARROW; - context = mpCheckMenuItemStyle; +#endif renderType = RENDER_ARROW; break; case PART_ENTIRE_CONTROL: @@ -961,22 +1283,20 @@ return false; } break; + case CTRL_RADIOBUTTON: + flags = (GtkStateFlags)(flags | + ( (rValue.getTristateVal() == BUTTONVALUE_ON) ? CHECKED : GTK_STATE_FLAG_NORMAL)); + context = mpRadioButtonStyle; + renderType = nPart == PART_FOCUS ? RENDER_FOCUS : RENDER_RADIO; + break; case CTRL_CHECKBOX: flags = (GtkStateFlags)(flags | ( (rValue.getTristateVal() == BUTTONVALUE_ON) ? CHECKED : (rValue.getTristateVal() == BUTTONVALUE_MIXED) ? GTK_STATE_FLAG_INCONSISTENT : GTK_STATE_FLAG_NORMAL)); context = mpCheckButtonStyle; - styleClass = GTK_STYLE_CLASS_CHECK; renderType = nPart == PART_FOCUS ? RENDER_FOCUS : RENDER_CHECK; break; - case CTRL_RADIOBUTTON: - flags = (GtkStateFlags)(flags | - ( (rValue.getTristateVal() == BUTTONVALUE_ON) ? CHECKED : GTK_STATE_FLAG_NORMAL)); - context = mpCheckButtonStyle; - styleClass = GTK_STYLE_CLASS_RADIO; - renderType = nPart == PART_FOCUS ? RENDER_FOCUS : RENDER_RADIO; - break; case CTRL_PUSHBUTTON: context = mpButtonStyle; break; @@ -992,21 +1312,21 @@ } break; case CTRL_LISTNET: - case CTRL_TAB_BODY: return true; break; case CTRL_TAB_PANE: - context = mpNoteBookStyle; + context = mpNotebookStyle; + break; + case CTRL_TAB_BODY: + context = mpNotebookStackStyle; break; case CTRL_TAB_HEADER: - context = mpNoteBookStyle; - styleClass = GTK_STYLE_CLASS_HEADER; + context = mpNotebookHeaderStyle; break; case CTRL_TAB_ITEM: - context = mpNoteBookStyle; + context = mpNotebookHeaderTabsTabStyle; if (nState & ControlState::SELECTED) flags = (GtkStateFlags) (flags | GTK_STATE_FLAG_ACTIVE); - break; case CTRL_WINDOW_BACKGROUND: context = gtk_widget_get_style_context(mpWindow); @@ -1024,7 +1344,6 @@ if (nPart == PART_MENU_ITEM) { context = mpMenuBarItemStyle; - styleClass = GTK_STYLE_CLASS_MENUBAR; flags = (!(nState & ControlState::ENABLED)) ? GTK_STATE_FLAG_INSENSITIVE : GTK_STATE_FLAG_NORMAL; if (nState & ControlState::SELECTED) @@ -1032,8 +1351,8 @@ } else { - context = gtk_widget_get_style_context(gMenuBarWidget); - styleClass = GTK_STYLE_CLASS_BACKGROUND; + // context = mpMenuBarStyle; why does this not work + context = gtk_widget_get_style_context(mpWindow); } break; case CTRL_FIXEDLINE: @@ -1047,7 +1366,6 @@ if (aButtonValue == BUTTONVALUE_ON) flags = (GtkStateFlags) (flags | CHECKED); renderType = RENDER_EXPANDER; - styleClass = GTK_STYLE_CLASS_EXPANDER; break; } case CTRL_LISTHEADER: @@ -1061,13 +1379,11 @@ static_cast<GtkIconLookupFlags>(0), nullptr); flags = GTK_STATE_FLAG_SELECTED; renderType = RENDER_ICON; - styleClass = GTK_STYLE_CLASS_ARROW; } break; case CTRL_PROGRESS: - context = mpProgressBarStyle; + context = mpProgressBarProgressStyle; renderType = RENDER_PROGRESS; - styleClass = GTK_STYLE_CLASS_TROUGH; break; default: return false; @@ -1077,45 +1393,38 @@ clipRegion(cr); cairo_translate(cr, rControlRegion.Left(), rControlRegion.Top()); + Rectangle aDamageRect(rControlRegion); + long nX = 0; long nY = 0; long nWidth = rControlRegion.GetWidth(); long nHeight = rControlRegion.GetHeight(); - gtk_style_context_save(context); gtk_style_context_set_state(context, flags); + parent_styles_context_set_state(context, flags); if (nType == CTRL_TAB_ITEM) { - - const TabitemValue& rTabitemValue = static_cast<const TabitemValue&>(rValue); - - GtkRegionFlags eFlags(GTK_REGION_EVEN); - if (rTabitemValue.isFirst() && rTabitemValue.isLast()) - eFlags = GTK_REGION_ONLY; - else if (rTabitemValue.isFirst()) - eFlags = GTK_REGION_FIRST; - else if (rTabitemValue.isLast()) - eFlags = GTK_REGION_LAST; - - gtk_style_context_add_region(mpNoteBookStyle, GTK_STYLE_REGION_TAB, eFlags); - gtk_style_context_add_class(context, GTK_STYLE_CLASS_TOP); - + GtkBorder margin; +#if GTK_CHECK_VERSION(3,19,2) + gtk_style_context_get_margin(mpNotebookHeaderTabsTabStyle, gtk_style_context_get_state(mpNotebookHeaderTabsTabStyle), &margin); +#else gint initial_gap(0); - gtk_style_context_get_style(mpNoteBookStyle, + gtk_style_context_get_style(mpNotebookStyle, "initial-gap", &initial_gap, NULL); - nX += initial_gap/2; - nWidth -= initial_gap; + margin.left = margin.right = initial_gap/2; +#endif + nX += margin.left; + nWidth -= (margin.left + margin.right); } + +#if !GTK_CHECK_VERSION(3,19,2) if (styleClass) { gtk_style_context_add_class(context, styleClass); } - if (nType == CTRL_TAB_HEADER || nType == CTRL_TAB_PANE) - { - gtk_style_context_add_class(context, GTK_STYLE_CLASS_FRAME); - } +#endif switch(renderType) { @@ -1128,13 +1437,19 @@ } break; case RENDER_CHECK: + { + PaintCheck(cr, context, rControlRegion, bInMenu); + break; + } case RENDER_RADIO: - PaintCheckOrRadio(context, cr, rControlRegion, nType); + { + PaintRadio(cr, context, rControlRegion, bInMenu); break; + } case RENDER_MENU_SEPERATOR: gtk_render_line(context, cr, - 3, rControlRegion.GetHeight() / 2, - rControlRegion.GetWidth() - 3, rControlRegion.GetHeight() / 2); + 0, rControlRegion.GetHeight() / 2, + rControlRegion.GetWidth() - 1, rControlRegion.GetHeight() / 2); break; case RENDER_TOOLBAR_SEPERATOR: gtk_render_line(context, cr, @@ -1188,17 +1503,14 @@ } case RENDER_PROGRESS: { - gtk_render_background(context, cr, nX, nY, nWidth, nHeight); - gtk_render_frame(context, cr, nX, nY, nWidth, nHeight); + gtk_render_background(mpProgressBarTroughStyle, cr, nX, nY, nWidth, nHeight); + gtk_render_frame(mpProgressBarTroughStyle, cr, nX, nY, nWidth, nHeight); long nProgressWidth = rValue.getNumericVal(); if (nProgressWidth) { GtkBorder padding; - gtk_style_context_get_padding(context, GTK_STATE_FLAG_NORMAL, &padding); + gtk_style_context_get_padding(context, gtk_style_context_get_state(context), &padding); - gtk_style_context_remove_class(context, GTK_STYLE_CLASS_TROUGH); - gtk_style_context_add_class(context, GTK_STYLE_CLASS_PROGRESSBAR); - gtk_style_context_add_class(context, GTK_STYLE_CLASS_PULSE); nX += padding.left; nY += padding.top; nHeight -= (padding.top + padding.bottom); @@ -1213,10 +1525,18 @@ break; } - gtk_style_context_restore(context); +#if !GTK_CHECK_VERSION(3,19,2) + if (styleClass) + { + gtk_style_context_remove_class(context, styleClass); + } +#endif + cairo_surface_flush(cairo_get_target(cr)); cairo_destroy(cr); // unref - mpFrame->damaged(basegfx::B2IBox(rControlRegion.Left(), rControlRegion.Top(), rControlRegion.Right(), rControlRegion.Bottom())); + + if (!aDamageRect.IsEmpty()) + mpFrame->damaged(basegfx::B2IBox(aDamageRect.Left(), aDamageRect.Top(), aDamageRect.Right(), aDamageRect.Bottom())); return true; } @@ -1231,24 +1551,20 @@ Rectangle AdjustRectForTextBordersPadding(GtkStyleContext* pStyle, long nContentWidth, long nContentHeight, const Rectangle& rControlRegion) { - gtk_style_context_save(pStyle); - GtkBorder border; - gtk_style_context_get_border(pStyle, GTK_STATE_FLAG_NORMAL, &border); + gtk_style_context_get_border(pStyle, gtk_style_context_get_state(pStyle), &border); GtkBorder padding; - gtk_style_context_get_padding(pStyle, GTK_STATE_FLAG_NORMAL, &padding); + gtk_style_context_get_padding(pStyle, gtk_style_context_get_state(pStyle), &padding); gint nWidgetHeight = nContentHeight + padding.top + padding.bottom + border.top + border.bottom; - nWidgetHeight = std::max<gint>(nWidgetHeight, rControlRegion.GetHeight()); + nWidgetHeight = std::max(std::max<gint>(nWidgetHeight, rControlRegion.GetHeight()), 34); gint nWidgetWidth = nContentWidth + padding.left + padding.right + border.left + border.right; nWidgetWidth = std::max<gint>(nWidgetWidth, rControlRegion.GetWidth()); Rectangle aEditRect(rControlRegion.TopLeft(), Size(nWidgetWidth, nWidgetHeight)); - gtk_style_context_restore(pStyle); - return aEditRect; } @@ -1265,16 +1581,19 @@ { rNativeBoundingRegion = rControlRegion; - gtk_style_context_get_style( mpCheckButtonStyle, + GtkStyleContext *pButtonStyle = (nType == CTRL_CHECKBOX) ? mpCheckButtonStyle : mpRadioButtonStyle; + + + gtk_style_context_get_style( pButtonStyle, "indicator-size", &indicator_size, "indicator-spacing", &indicator_spacing, nullptr ); GtkBorder border; - gtk_style_context_get_border(mpCheckButtonStyle, GTK_STATE_FLAG_NORMAL, &border); + gtk_style_context_get_border(pButtonStyle, gtk_style_context_get_state(pButtonStyle), &border); GtkBorder padding; - gtk_style_context_get_padding(mpCheckButtonStyle, GTK_STATE_FLAG_NORMAL, &padding); + gtk_style_context_get_padding(pButtonStyle, gtk_style_context_get_state(pButtonStyle), &padding); indicator_size += 2*indicator_spacing + border.left + padding.left + border.right + padding.right; @@ -1292,7 +1611,9 @@ { indicator_size = 0; - gtk_style_context_get_style( mpCheckMenuItemStyle, + GtkStyleContext *pMenuItemStyle = (nType == PART_MENU_ITEM_CHECK_MARK ) ? mpCheckMenuItemStyle : mpRadioMenuItemStyle; + + gtk_style_context_get_style( pMenuItemStyle, "indicator-size", &indicator_size, nullptr ); @@ -1304,7 +1625,7 @@ { gint separator_height, separator_width, wide_separators; - gtk_style_context_get_style (mpCheckMenuItemStyle, + gtk_style_context_get_style (mpSeparatorMenuItemStyle, "wide-separators", &wide_separators, "separator-width", &separator_width, "separator-height", &separator_height, @@ -1315,14 +1636,7 @@ } else if (nPart == PART_MENU_SUBMENU_ARROW) { - gfloat arrow_scaling, arrow_size; - - arrow_scaling = 0; - gtk_style_context_get_style (mpCheckMenuItemStyle, - "arrow-scaling", &arrow_scaling, - NULL); - - arrow_size = 11 * arrow_scaling; + gfloat arrow_size = getArrowSize(mpMenuItemArrowStyle); aEditRect = Rectangle( aEditRect.TopLeft(), Size( arrow_size, arrow_size ) ); } @@ -1380,18 +1694,11 @@ } else if (nType == CTRL_TAB_ITEM && nPart == PART_ENTIRE_CONTROL) { - gtk_style_context_save(mpNoteBookStyle); - - gtk_style_context_add_region(mpNoteBookStyle, GTK_STYLE_REGION_TAB, GTK_REGION_ONLY); - gtk_style_context_add_class(mpNoteBookStyle, GTK_STYLE_CLASS_TOP); - const TabitemValue& rTabitemValue = static_cast<const TabitemValue&>(rValue); const Rectangle& rTabitemRect = rTabitemValue.getContentRect(); - aEditRect = AdjustRectForTextBordersPadding(mpNoteBookStyle, rTabitemRect.GetWidth(), + aEditRect = AdjustRectForTextBordersPadding(mpNotebookHeaderTabsTabStyle, rTabitemRect.GetWidth(), rTabitemRect.GetHeight(), rControlRegion); - - gtk_style_context_restore(mpNoteBookStyle); } else if (nType == CTRL_FRAME && nPart == PART_BORDER) { @@ -1399,14 +1706,11 @@ DrawFrameFlags nStyle = static_cast<DrawFrameFlags>(rValue.getNumericVal() & 0xfff0); if (nStyle & DrawFrameFlags::NoDraw) { - gtk_style_context_save(mpFrameInStyle); - gtk_style_context_add_class(mpFrameInStyle, GTK_STYLE_CLASS_FRAME); - GtkBorder padding; - gtk_style_context_get_padding(mpFrameInStyle, GTK_STATE_FLAG_NORMAL, &padding); + gtk_style_context_get_padding(mpFrameInStyle, gtk_style_context_get_state(mpFrameInStyle), &padding); GtkBorder border; - gtk_style_context_get_border(mpFrameInStyle, GTK_STATE_FLAG_NORMAL, &border); + gtk_style_context_get_border(mpFrameInStyle, gtk_style_context_get_state(mpFrameInStyle), &border); int x1 = aEditRect.Left(); int y1 = aEditRect.Top(); @@ -1419,7 +1723,6 @@ x2 - (padding.right + border.right), y2 - (padding.bottom + border.bottom)); - gtk_style_context_restore(mpFrameInStyle); return true; } else @@ -1443,11 +1746,6 @@ return ::Color( (int)(rCol.red * 0xFFFF) >> 8, (int)(rCol.green * 0xFFFF) >> 8, (int)(rCol.blue * 0xFFFF) >> 8 ); } -static inline ::Color getColorFromColor( const GdkColor& rCol ) -{ - return ::Color( rCol.red >> 8, rCol.green >> 8, rCol.blue >> 8 ); -} - void GtkSalGraphics::updateSettings( AllSettings& rSettings ) { GtkStyleContext* pStyle = gtk_widget_get_style_context( mpWindow ); @@ -1457,7 +1755,8 @@ // text colors GdkRGBA text_color; - gtk_style_context_get_color(pStyle, GTK_STATE_FLAG_NORMAL, &text_color); + gtk_style_context_set_state(pStyle, GTK_STATE_FLAG_NORMAL); + gtk_style_context_get_color(pStyle, gtk_style_context_get_state(pStyle), &text_color); ::Color aTextColor = getColor( text_color ); aStyleSet.SetDialogTextColor( aTextColor ); aStyleSet.SetButtonTextColor( aTextColor ); @@ -1468,15 +1767,9 @@ aStyleSet.SetWindowTextColor( aTextColor ); aStyleSet.SetFieldTextColor( aTextColor ); - // mouse over text colors - gtk_style_context_get_color(pStyle, GTK_STATE_FLAG_PRELIGHT, &text_color); - aTextColor = getColor( text_color ); - aStyleSet.SetButtonRolloverTextColor( aTextColor ); - aStyleSet.SetFieldRolloverTextColor( aTextColor ); - // background colors GdkRGBA background_color; - gtk_style_context_get_background_color(pStyle, GTK_STATE_FLAG_NORMAL, &background_color); + gtk_style_context_get_background_color(pStyle, gtk_style_context_get_state(pStyle), &background_color); ::Color aBackColor = getColor( background_color ); aStyleSet.Set3DColors( aBackColor ); @@ -1485,6 +1778,106 @@ aStyleSet.SetWorkspaceColor( aBackColor ); aStyleSet.SetCheckedColorSpecialCase( ); + // UI font + const PangoFontDescription* font = gtk_style_context_get_font(pStyle, gtk_style_context_get_state(pStyle)); + OString aFamily = pango_font_description_get_family( font ); + int nPangoHeight = pango_font_description_get_size( font ); + PangoStyle eStyle = pango_font_description_get_style( font ); + PangoWeight eWeight = pango_font_description_get_weight( font ); + PangoStretch eStretch = pango_font_description_get_stretch( font ); + + psp::FastPrintFontInfo aInfo; + // set family name + aInfo.m_aFamilyName = OStringToOUString( aFamily, RTL_TEXTENCODING_UTF8 ); + // set italic + switch( eStyle ) + { + case PANGO_STYLE_NORMAL: aInfo.m_eItalic = ITALIC_NONE;break; + case PANGO_STYLE_ITALIC: aInfo.m_eItalic = ITALIC_NORMAL;break; + case PANGO_STYLE_OBLIQUE: aInfo.m_eItalic = ITALIC_OBLIQUE;break; + } + // set weight + if( eWeight <= PANGO_WEIGHT_ULTRALIGHT ) + aInfo.m_eWeight = WEIGHT_ULTRALIGHT; + else if( eWeight <= PANGO_WEIGHT_LIGHT ) + aInfo.m_eWeight = WEIGHT_LIGHT; + else if( eWeight <= PANGO_WEIGHT_NORMAL ) + aInfo.m_eWeight = WEIGHT_NORMAL; + else if( eWeight <= PANGO_WEIGHT_BOLD ) + aInfo.m_eWeight = WEIGHT_BOLD; + else + aInfo.m_eWeight = WEIGHT_ULTRABOLD; + // set width + switch( eStretch ) + { + case PANGO_STRETCH_ULTRA_CONDENSED: aInfo.m_eWidth = WIDTH_ULTRA_CONDENSED;break; + case PANGO_STRETCH_EXTRA_CONDENSED: aInfo.m_eWidth = WIDTH_EXTRA_CONDENSED;break; + case PANGO_STRETCH_CONDENSED: aInfo.m_eWidth = WIDTH_CONDENSED;break; + case PANGO_STRETCH_SEMI_CONDENSED: aInfo.m_eWidth = WIDTH_SEMI_CONDENSED;break; + case PANGO_STRETCH_NORMAL: aInfo.m_eWidth = WIDTH_NORMAL;break; + case PANGO_STRETCH_SEMI_EXPANDED: aInfo.m_eWidth = WIDTH_SEMI_EXPANDED;break; + case PANGO_STRETCH_EXPANDED: aInfo.m_eWidth = WIDTH_EXPANDED;break; + case PANGO_STRETCH_EXTRA_EXPANDED: aInfo.m_eWidth = WIDTH_EXTRA_EXPANDED;break; + case PANGO_STRETCH_ULTRA_EXPANDED: aInfo.m_eWidth = WIDTH_ULTRA_EXPANDED;break; + } + +#if OSL_DEBUG_LEVEL > 1 + fprintf( stderr, "font name BEFORE system match: \"%s\"\n", aFamily.getStr() ); +#endif + + // match font to e.g. resolve "Sans" + psp::PrintFontManager::get().matchFont( aInfo, rSettings.GetUILanguageTag().getLocale() ); + +#if OSL_DEBUG_LEVEL > 1 + fprintf( stderr, "font match %s, name AFTER: \"%s\"\n", + aInfo.m_nID != 0 ? "succeeded" : "failed", + OUStringToOString( aInfo.m_aFamilyName, RTL_TEXTENCODING_ISO_8859_1 ).getStr() ); +#endif + + int nPointHeight = 0; + /*sal_Int32 nDispDPIY = GetDisplay()->GetResolution().B(); + static gboolean(*pAbso)(const PangoFontDescription*) = + (gboolean(*)(const PangoFontDescription*))osl_getAsciiFunctionSymbol( GetSalData()->m_pPlugin, "pango_font_description_get_size_is_absolute" ); + + if( pAbso && pAbso( font ) ) + nPointHeight = (nPangoHeight * 72 + nDispDPIY*PANGO_SCALE/2) / (nDispDPIY * PANGO_SCALE); + else*/ + nPointHeight = nPangoHeight/PANGO_SCALE; + + vcl::Font aFont( aInfo.m_aFamilyName, Size( 0, nPointHeight ) ); + if( aInfo.m_eWeight != WEIGHT_DONTKNOW ) + aFont.SetWeight( aInfo.m_eWeight ); + if( aInfo.m_eWidth != WIDTH_DONTKNOW ) + aFont.SetWidthType( aInfo.m_eWidth ); + if( aInfo.m_eItalic != ITALIC_DONTKNOW ) + aFont.SetItalic( aInfo.m_eItalic ); + if( aInfo.m_ePitch != PITCH_DONTKNOW ) + aFont.SetPitch( aInfo.m_ePitch ); + + aStyleSet.SetAppFont( aFont ); + aStyleSet.SetHelpFont( aFont ); + aStyleSet.SetMenuFont( aFont ); + aStyleSet.SetToolFont( aFont ); + aStyleSet.SetLabelFont( aFont ); + aStyleSet.SetInfoFont( aFont ); + aStyleSet.SetRadioCheckFont( aFont ); + aStyleSet.SetPushButtonFont( aFont ); + aStyleSet.SetFieldFont( aFont ); + aStyleSet.SetIconFont( aFont ); + aStyleSet.SetGroupFont( aFont ); + + aFont.SetWeight( WEIGHT_BOLD ); + aStyleSet.SetTabFont( aFont ); //pull from notebook style + GTK_STYLE_REGION_TAB ? + aStyleSet.SetTitleFont( aFont ); + aStyleSet.SetFloatTitleFont( aFont ); + + // mouse over text colors + gtk_style_context_set_state(pStyle, GTK_STATE_FLAG_PRELIGHT); + gtk_style_context_get_color(pStyle, gtk_style_context_get_state(pStyle), &text_color); + aTextColor = getColor( text_color ); + aStyleSet.SetButtonRolloverTextColor( aTextColor ); + aStyleSet.SetFieldRolloverTextColor( aTextColor ); + // tooltip colors { GtkStyleContext *pCStyle = gtk_style_context_new(); @@ -1501,8 +1894,9 @@ gtk_widget_path_free(pCPath); GdkRGBA tooltip_bg_color, tooltip_fg_color; - gtk_style_context_get_color(pCStyle, GTK_STATE_FLAG_NORMAL, &tooltip_fg_color); - gtk_style_context_get_background_color(pCStyle, GTK_STATE_FLAG_NORMAL, &tooltip_bg_color); + gtk_style_context_set_state(pCStyle, GTK_STATE_FLAG_NORMAL); + gtk_style_context_get_color(pCStyle, gtk_style_context_get_state(pCStyle), &tooltip_fg_color); + gtk_style_context_get_background_color(pCStyle, gtk_style_context_get_state(pCStyle), &tooltip_bg_color); g_object_unref( pCStyle ); aStyleSet.SetHelpColor( getColor( tooltip_bg_color )); @@ -1520,22 +1914,28 @@ gtk_widget_path_free( pCPath ); // highlighting colors - gtk_style_context_get_background_color(pCStyle, GTK_STATE_FLAG_SELECTED, &text_color); + gtk_style_context_set_state(pCStyle, GTK_STATE_FLAG_SELECTED); + gtk_style_context_get_background_color(pCStyle, gtk_style_context_get_state(pCStyle), &text_color); ::Color aHighlightColor = getColor( text_color ); - gtk_style_context_get_color(pCStyle, GTK_STATE_FLAG_SELECTED, &text_color); + gtk_style_context_get_color(pCStyle, gtk_style_context_get_state(pCStyle), &text_color); ::Color aHighlightTextColor = getColor( text_color ); aStyleSet.SetHighlightColor( aHighlightColor ); aStyleSet.SetHighlightTextColor( aHighlightTextColor ); // field background color GdkRGBA field_background_color; - gtk_style_context_get_background_color(pCStyle, GTK_STATE_FLAG_NORMAL, &field_background_color); + gtk_style_context_set_state(pCStyle, GTK_STATE_FLAG_NORMAL); + gtk_style_context_get_background_color(pCStyle, gtk_style_context_get_state(pCStyle), &field_background_color); g_object_unref( pCStyle ); ::Color aBackFieldColor = getColor( field_background_color ); aStyleSet.SetFieldColor( aBackFieldColor ); // This baby is the default page/paper color aStyleSet.SetWindowColor( aBackFieldColor ); + + // Tab colors + aStyleSet.SetActiveTabColor( aBackFieldColor ); // same as the window color. + aStyleSet.SetInactiveTabColor( aBackColor ); } // menu disabled entries handling @@ -1543,30 +1943,34 @@ aStyleSet.SetAcceleratorsInContextMenus( false ); // menu colors - gtk_style_context_get_background_color( mpMenuStyle, GTK_STATE_FLAG_NORMAL, &background_color ); + gtk_style_context_set_state(mpMenuStyle, GTK_STATE_FLAG_NORMAL); + gtk_style_context_get_background_color( mpMenuStyle, gtk_style_context_get_state(mpMenuStyle), &background_color ); aBackColor = getColor( background_color ); aStyleSet.SetMenuColor( aBackColor ); + // menu items + gtk_style_context_get_color( mpMenuStyle, gtk_style_context_get_state(mpMenuStyle), &color ); + aTextColor = getColor( color ); + aStyleSet.SetMenuTextColor( aTextColor ); + // menu bar - gtk_style_context_get_background_color( mpMenuBarStyle, GTK_STATE_FLAG_NORMAL, &background_color ); + gtk_style_context_set_state(mpMenuBarStyle, GTK_STATE_FLAG_NORMAL); + gtk_style_context_get_background_color( mpMenuBarStyle, gtk_style_context_get_state(mpMenuBarStyle), &background_color ); aBackColor = getColor( background_color ); aStyleSet.SetMenuBarColor( aBackColor ); aStyleSet.SetMenuBarRolloverColor( aBackColor ); - gtk_style_context_get_color( mpMenuBarItemStyle, GTK_STATE_FLAG_NORMAL, &text_color ); + gtk_style_context_set_state(mpMenuBarItemStyle, GTK_STATE_FLAG_NORMAL); + gtk_style_context_get_color( mpMenuBarItemStyle, gtk_style_context_get_state(mpMenuBarItemStyle), &text_color ); aTextColor = aStyleSet.GetPersonaMenuBarTextColor().get_value_or( getColor( text_color ) ); aStyleSet.SetMenuBarTextColor( aTextColor ); aStyleSet.SetMenuBarRolloverTextColor( aTextColor ); - gtk_style_context_get_color( mpMenuBarItemStyle, GTK_STATE_FLAG_PRELIGHT, &text_color ); + gtk_style_context_set_state(mpMenuBarItemStyle, GTK_STATE_FLAG_PRELIGHT); + gtk_style_context_get_color( mpMenuBarItemStyle, gtk_style_context_get_state(mpMenuBarItemStyle), &text_color ); aTextColor = aStyleSet.GetPersonaMenuBarTextColor().get_value_or( getColor( text_color ) ); aStyleSet.SetMenuBarHighlightTextColor( aTextColor ); - // menu items - gtk_style_context_get_color( mpMenuStyle, GTK_STATE_FLAG_NORMAL, &color ); - aTextColor = getColor( color ); - aStyleSet.SetMenuTextColor( aTextColor ); - // Awful hack for menu separators in the Sonar and similar themes. // If the menu color is not too dark, and the menu text color is lighter, // make the "light" color lighter than the menu color and the "shadow" @@ -1582,33 +1986,46 @@ aStyleSet.SetShadowColor( temp ); } - gtk_style_context_get_background_color( mpCheckMenuItemStyle, GTK_STATE_FLAG_PRELIGHT, &background_color ); + gtk_style_context_set_state(mpMenuItemStyle, GTK_STATE_FLAG_PRELIGHT); + gtk_style_context_get_background_color( mpMenuItemStyle, gtk_style_context_get_state(mpMenuItemStyle), &background_color ); ::Color aHighlightColor = getColor( background_color ); aStyleSet.SetMenuHighlightColor( aHighlightColor ); - gtk_style_context_get_color( mpCheckMenuItemStyle, GTK_STATE_FLAG_PRELIGHT, &color ); + gtk_style_context_get_color( mpMenuItemStyle, gtk_style_context_get_state(mpMenuItemStyle), &color ); ::Color aHighlightTextColor = getColor( color ); aStyleSet.SetMenuHighlightTextColor( aHighlightTextColor ); +#if GTK_CHECK_VERSION(3, 12, 0) // hyperlink colors - GdkColor *link_color = nullptr; - gtk_style_context_get_style(pStyle, - "link-color", &link_color, - NULL); - if (link_color) { - aStyleSet.SetLinkColor(getColorFromColor(*link_color)); - gdk_color_free(link_color); - } + gtk_style_context_set_state(mpLinkButtonStyle, GTK_STATE_FLAG_LINK); + gtk_style_context_get_color(mpLinkButtonStyle, gtk_style_context_get_state(mpLinkButtonStyle), &text_color); + aStyleSet.SetLinkColor(getColor(text_color)); + gtk_style_context_set_state(mpLinkButtonStyle, GTK_STATE_FLAG_VISITED); + gtk_style_context_get_color(mpLinkButtonStyle, gtk_style_context_get_state(mpLinkButtonStyle), &text_color); + aStyleSet.SetVisitedLinkColor(getColor(text_color)); +#endif - link_color = nullptr; - gtk_style_context_get_style(pStyle, - "visited-link-color", &link_color, - NULL); - if (link_color) { - aStyleSet.SetVisitedLinkColor(getColorFromColor(*link_color)); - gdk_color_free(link_color); - } +#if GTK_CHECK_VERSION(3, 19, 2) + { + GtkStyleContext *pCStyle = mpNotebookHeaderTabsTabStyle; + gtk_style_context_set_state(pCStyle, GTK_STATE_FLAG_NORMAL); + gtk_style_context_get_color(pCStyle, gtk_style_context_get_state(pCStyle), &text_color); + aTextColor = getColor( text_color ); + aStyleSet.SetTabTextColor(aTextColor); + + // mouse over text colors + gtk_style_context_set_state(pCStyle, GTK_STATE_FLAG_PRELIGHT); + gtk_style_context_get_color(pCStyle, gtk_style_context_get_state(pCStyle), &text_color); + aTextColor = getColor( text_color ); + aStyleSet.SetTabRolloverTextColor(aTextColor); + + gtk_style_context_set_state(pCStyle, GTK_STATE_FLAG_ACTIVE); + gtk_style_context_get_color(pCStyle, gtk_style_context_get_state(pCStyle), &text_color); + aTextColor = getColor( text_color ); + aStyleSet.SetTabHighlightTextColor(aTextColor); + } +#else { GtkStyleContext *pCStyle = gtk_style_context_new(); gtk_style_context_set_screen( pCStyle, gtk_window_get_screen( GTK_WINDOW( mpWindow ) ) ); @@ -1624,118 +2041,30 @@ gtk_style_context_set_path(pCStyle, pCPath); gtk_widget_path_free(pCPath); - gtk_style_context_get_color(pCStyle, GTK_STATE_FLAG_NORMAL, &text_color); + gtk_style_context_set_state(pCStyle, GTK_STATE_FLAG_NORMAL); + gtk_style_context_get_color(pCStyle, gtk_style_context_get_state(pCStyle), &text_color); aTextColor = getColor( text_color ); aStyleSet.SetTabTextColor(aTextColor); // mouse over text colors gtk_style_context_add_class(pCStyle, "prelight-page"); - gtk_style_context_get_color(pCStyle, GTK_STATE_FLAG_PRELIGHT, &text_color); + gtk_style_context_set_state(pCStyle, GTK_STATE_FLAG_PRELIGHT); + gtk_style_context_get_color(pCStyle, gtk_style_context_get_state(pCStyle), &text_color); gtk_style_context_remove_class(pCStyle, "prelight-page"); aTextColor = getColor( text_color ); aStyleSet.SetTabRolloverTextColor(aTextColor); gtk_style_context_add_class(pCStyle, "active-page"); - gtk_style_context_get_color(pCStyle, GTK_STATE_FLAG_ACTIVE, &text_color); + gtk_style_context_set_state(pCStyle, GTK_STATE_FLAG_ACTIVE); + gtk_style_context_get_color(pCStyle, gtk_style_context_get_state(pCStyle), &text_color); gtk_style_context_remove_class(pCStyle, "active-page"); aTextColor = getColor( text_color ); aStyleSet.SetTabHighlightTextColor(aTextColor); g_object_unref( pCStyle ); - } - - // UI font - const PangoFontDescription* font = gtk_style_context_get_font(pStyle, GTK_STATE_FLAG_NORMAL); - OString aFamily = pango_font_description_get_family( font ); - int nPangoHeight = pango_font_description_get_size( font ); - PangoStyle eStyle = pango_font_description_get_style( font ); - PangoWeight eWeight = pango_font_description_get_weight( font ); - PangoStretch eStretch = pango_font_description_get_stretch( font ); - - psp::FastPrintFontInfo aInfo; - // set family name - aInfo.m_aFamilyName = OStringToOUString( aFamily, RTL_TEXTENCODING_UTF8 ); - // set italic - switch( eStyle ) - { - case PANGO_STYLE_NORMAL: aInfo.m_eItalic = ITALIC_NONE;break; - case PANGO_STYLE_ITALIC: aInfo.m_eItalic = ITALIC_NORMAL;break; - case PANGO_STYLE_OBLIQUE: aInfo.m_eItalic = ITALIC_OBLIQUE;break; - } - // set weight - if( eWeight <= PANGO_WEIGHT_ULTRALIGHT ) - aInfo.m_eWeight = WEIGHT_ULTRALIGHT; - else if( eWeight <= PANGO_WEIGHT_LIGHT ) - aInfo.m_eWeight = WEIGHT_LIGHT; - else if( eWeight <= PANGO_WEIGHT_NORMAL ) - aInfo.m_eWeight = WEIGHT_NORMAL; - else if( eWeight <= PANGO_WEIGHT_BOLD ) - aInfo.m_eWeight = WEIGHT_BOLD; - else - aInfo.m_eWeight = WEIGHT_ULTRABOLD; - // set width - switch( eStretch ) - { - case PANGO_STRETCH_ULTRA_CONDENSED: aInfo.m_eWidth = WIDTH_ULTRA_CONDENSED;break; - case PANGO_STRETCH_EXTRA_CONDENSED: aInfo.m_eWidth = WIDTH_EXTRA_CONDENSED;break; - case PANGO_STRETCH_CONDENSED: aInfo.m_eWidth = WIDTH_CONDENSED;break; - case PANGO_STRETCH_SEMI_CONDENSED: aInfo.m_eWidth = WIDTH_SEMI_CONDENSED;break; - case PANGO_STRETCH_NORMAL: aInfo.m_eWidth = WIDTH_NORMAL;break; - case PANGO_STRETCH_SEMI_EXPANDED: aInfo.m_eWidth = WIDTH_SEMI_EXPANDED;break; - case PANGO_STRETCH_EXPANDED: aInfo.m_eWidth = WIDTH_EXPANDED;break; - case PANGO_STRETCH_EXTRA_EXPANDED: aInfo.m_eWidth = WIDTH_EXTRA_EXPANDED;break; - case PANGO_STRETCH_ULTRA_EXPANDED: aInfo.m_eWidth = WIDTH_ULTRA_EXPANDED;break; - } - -#if OSL_DEBUG_LEVEL > 1 - fprintf( stderr, "font name BEFORE system match: \"%s\"\n", aFamily.getStr() ); + } #endif - // match font to e.g. resolve "Sans" - psp::PrintFontManager::get().matchFont( aInfo, rSettings.GetUILanguageTag().getLocale() ); - -#if OSL_DEBUG_LEVEL > 1 - fprintf( stderr, "font match %s, name AFTER: \"%s\"\n", - aInfo.m_nID != 0 ? "succeeded" : "failed", - OUStringToOString( aInfo.m_aFamilyName, RTL_TEXTENCODING_ISO_8859_1 ).getStr() ); -#endif - - int nPointHeight = 0; - /*sal_Int32 nDispDPIY = GetDisplay()->GetResolution().B(); - static gboolean(*pAbso)(const PangoFontDescription*) = - (gboolean(*)(const PangoFontDescription*))osl_getAsciiFunctionSymbol( GetSalData()->m_pPlugin, "pango_font_description_get_size_is_absolute" ); - - if( pAbso && pAbso( font ) ) - nPointHeight = (nPangoHeight * 72 + nDispDPIY*PANGO_SCALE/2) / (nDispDPIY * PANGO_SCALE); - else*/ - nPointHeight = nPangoHeight/PANGO_SCALE; - - vcl::Font aFont( aInfo.m_aFamilyName, Size( 0, nPointHeight ) ); - if( aInfo.m_eWeight != WEIGHT_DONTKNOW ) - aFont.SetWeight( aInfo.m_eWeight ); - if( aInfo.m_eWidth != WIDTH_DONTKNOW ) - aFont.SetWidthType( aInfo.m_eWidth ); - if( aInfo.m_eItalic != ITALIC_DONTKNOW ) - aFont.SetItalic( aInfo.m_eItalic ); - if( aInfo.m_ePitch != PITCH_DONTKNOW ) - aFont.SetPitch( aInfo.m_ePitch ); - - aStyleSet.SetAppFont( aFont ); - aStyleSet.SetHelpFont( aFont ); - aStyleSet.SetMenuFont( aFont ); - aStyleSet.SetToolFont( aFont ); - aStyleSet.SetLabelFont( aFont ); - aStyleSet.SetInfoFont( aFont ); - aStyleSet.SetRadioCheckFont( aFont ); - aStyleSet.SetPushButtonFont( aFont ); - aStyleSet.SetFieldFont( aFont ); - aStyleSet.SetIconFont( aFont ); - aStyleSet.SetGroupFont( aFont ); - - aFont.SetWeight( WEIGHT_BOLD ); - aStyleSet.SetTabFont( aFont ); //pull from notebook style + GTK_STYLE_REGION_TAB ? - aStyleSet.SetTitleFont( aFont ); - aStyleSet.SetFloatTitleFont( aFont ); // get cursor blink time gboolean blink = false; @@ -2007,9 +2336,13 @@ gtk_widget_realize(gCacheWindow); gEntryBox = gtk_entry_new(); - getStyleContext(&mpEntryStyle, gEntryBox); + gtk_container_add(GTK_CONTAINER(gDumbContainer), gEntryBox); + mpEntryStyle = createStyleContext(GtkControlPart::Entry); + getStyleContext(&mpTextViewStyle, gtk_text_view_new()); - getStyleContext(&mpButtonStyle, gtk_button_new()); + + mpButtonStyle = createStyleContext(GtkControlPart::Button); + mpLinkButtonStyle = createStyleContext(GtkControlPart::LinkButton); GtkWidget* pToolbar = gtk_toolbar_new(); mpToolbarStyle = gtk_widget_get_style_context(pToolbar); @@ -2025,36 +2358,64 @@ gtk_toolbar_insert(GTK_TOOLBAR(pToolbar), item, -1); mpToolButtonStyle = gtk_widget_get_style_context(GTK_WIDGET(pButton)); - getStyleContext(&mpVScrollbarStyle, gtk_scrollbar_new(GTK_ORIENTATION_VERTICAL, nullptr)); - gtk_style_context_add_class(mpVScrollbarStyle, GTK_STYLE_CLASS_SCROLLBAR); - getStyleContext(&mpHScrollbarStyle, gtk_scrollbar_new(GTK_ORIENTATION_HORIZONTAL, nullptr)); - gtk_style_context_add_class(mpHScrollbarStyle, GTK_STYLE_CLASS_SCROLLBAR); + mpVScrollbarStyle = createStyleContext(GtkControlPart::ScrollbarVertical); + mpVScrollbarTroughStyle = createStyleContext(GtkControlPart::ScrollbarTrough, mpVScrollbarStyle); + mpVScrollbarSliderStyle = createStyleContext(GtkControlPart::ScrollbarSlider, mpVScrollbarTroughStyle); + mpVScrollbarButtonStyle = createStyleContext(GtkControlPart::ScrollbarButton, mpVScrollbarStyle); + mpHScrollbarStyle = createStyleContext(GtkControlPart::ScrollbarHorizontal); + mpHScrollbarTroughStyle = createStyleContext(GtkControlPart::ScrollbarTrough, mpHScrollbarStyle); + mpHScrollbarSliderStyle = createStyleContext(GtkControlPart::ScrollbarSlider, mpHScrollbarTroughStyle); + mpHScrollbarButtonStyle = createStyleContext(GtkControlPart::ScrollbarButton, mpHScrollbarStyle); + + { + GtkStyleContext* parentContext = createStyleContext(GtkControlPart::CheckButton); + mpCheckButtonStyle = createStyleContext(GtkControlPart::CheckButtonCheck, parentContext); + g_object_unref(parentContext); + } - getStyleContext(&mpCheckButtonStyle, gtk_check_button_new()); + { + GtkStyleContext* parentContext = createStyleContext(GtkControlPart::RadioButton); + mpRadioButtonStyle = createStyleContext(GtkControlPart::RadioButtonRadio, parentContext); + g_object_unref(parentContext); + } /* Menu bar */ gMenuBarWidget = gtk_menu_bar_new(); gMenuItemMenuBarWidget = gtk_menu_item_new_with_label( "b" ); gtk_menu_shell_append(GTK_MENU_SHELL(gMenuBarWidget), gMenuItemMenuBarWidget); - getStyleContext(&mpMenuBarStyle, gMenuBarWidget); - mpMenuBarItemStyle = gtk_widget_get_style_context(gMenuItemMenuBarWidget); + gtk_container_add(GTK_CONTAINER(gDumbContainer), gMenuBarWidget); + + mpMenuBarStyle = createStyleContext(GtkControlPart::MenuBar, gtk_widget_get_style_context(mpWindow)); + mpMenuBarItemStyle = createStyleContext(GtkControlPart::MenuItem, mpMenuBarStyle); /* Menu */ + mpMenuStyle = createStyleContext(GtkControlPart::Menu, gtk_widget_get_style_context(mpWindow)); GtkWidget *menu = gtk_menu_new(); - mpMenuStyle = gtk_widget_get_style_context(menu); gtk_menu_item_set_submenu(GTK_MENU_ITEM(gMenuItemMenuBarWidget), menu); /* Menu Items */ gCheckMenuItemWidget = gtk_check_menu_item_new_with_label("M"); gtk_menu_shell_append(GTK_MENU_SHELL(menu), gCheckMenuItemWidget); - mpCheckMenuItemStyle = gtk_widget_get_style_context(gCheckMenuItemWidget); + + mpMenuItemStyle = createStyleContext(GtkControlPart::MenuItem, mpMenuStyle); + mpMenuItemArrowStyle = createStyleContext(GtkControlPart::MenuItemArrow, mpMenuItemStyle); + mpCheckMenuItemStyle = createStyleContext(GtkControlPart::CheckMenuItemCheck, mpMenuItemStyle); + mpRadioMenuItemStyle = createStyleContext(GtkControlPart::RadioMenuItemRadio, mpMenuItemStyle); + mpSeparatorMenuItemStyle = createStyleContext(GtkControlPart::SeparatorMenuItemSeparator, mpMenuItemStyle); /* Spinbutton */ gSpinBox = gtk_spin_button_new(nullptr, 0, 0); - getStyleContext(&mpSpinStyle, gSpinBox); + gtk_container_add(GTK_CONTAINER(gDumbContainer), gSpinBox); + mpSpinStyle = createStyleContext(GtkControlPart::SpinButton); + mpSpinUpStyle = createStyleContext(GtkControlPart::SpinButtonUpButton, mpSpinStyle); + mpSpinDownStyle = createStyleContext(GtkControlPart::SpinButtonDownButton, mpSpinStyle); /* NoteBook */ - getStyleContext(&mpNoteBookStyle, gtk_notebook_new()); + mpNotebookStyle = createStyleContext(GtkControlPart::Notebook); + mpNotebookStackStyle = createStyleContext(GtkControlPart::NotebookStack, mpNotebookStyle); + mpNotebookHeaderStyle = createStyleContext(GtkControlPart::NotebookHeader, mpNotebookStyle); + mpNotebookHeaderTabsStyle = createStyleContext(GtkControlPart::NotebookHeaderTabs, mpNotebookHeaderStyle); + mpNotebookHeaderTabsTabStyle = createStyleContext(GtkControlPart::NotebookHeaderTabsTab, mpNotebookHeaderTabsStyle); /* Combobox */ gComboBox = gtk_combo_box_text_new_with_entry(); @@ -2076,14 +2437,7 @@ mpListboxButtonStyle = gtk_widget_get_style_context(gListBoxButtonWidget); /* Frames */ - gFrameIn = gtk_frame_new(nullptr); - gtk_frame_set_shadow_type(GTK_FRAME(gFrameIn), GTK_SHADOW_IN); - - gFrameOut = gtk_frame_new(nullptr); - gtk_frame_set_shadow_type(GTK_FRAME(gFrameOut), GTK_SHADOW_OUT); - - getStyleContext(&mpFrameInStyle, gFrameIn); - getStyleContext(&mpFrameOutStyle, gFrameOut); + mpFrameOutStyle = mpFrameInStyle = createStyleContext(GtkControlPart::FrameBorder); getStyleContext(&mpFixedHoriLineStyle, gtk_separator_new(GTK_ORIENTATION_HORIZONTAL)); getStyleContext(&mpFixedVertLineStyle, gtk_separator_new(GTK_ORIENTATION_VERTICAL)); @@ -2110,7 +2464,9 @@ mpTreeHeaderButtonStyle = gtk_widget_get_style_context(pTreeHeaderCellWidget); /* Progress Bar */ - getStyleContext(&mpProgressBarStyle, gtk_progress_bar_new()); + mpProgressBarStyle = createStyleContext(GtkControlPart::ProgressBar); + mpProgressBarTroughStyle = createStyleContext(GtkControlPart::ProgressBar, mpProgressBarStyle); + mpProgressBarProgressStyle = createStyleContext(GtkControlPart::ProgressBarProgress, mpProgressBarTroughStyle); gtk_widget_show_all(gDumbContainer); } diff -Nru libreoffice-5.1.1~rc2/vcl/unx/kde4/KDESalInstance.cxx libreoffice-5.1.2~rc2/vcl/unx/kde4/KDESalInstance.cxx --- libreoffice-5.1.1~rc2/vcl/unx/kde4/KDESalInstance.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/vcl/unx/kde4/KDESalInstance.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -26,6 +26,14 @@ using namespace com::sun::star; +KDESalInstance::KDESalInstance(SalYieldMutex* pMutex) + : X11SalInstance(pMutex) +{ + ImplSVData* pSVData = ImplGetSVData(); + delete pSVData->maAppData.mpToolkitName; + pSVData->maAppData.mpToolkitName = new OUString("kde4"); +} + SalFrame* KDESalInstance::CreateFrame( SalFrame *pParent, SalFrameStyleFlags nState ) { return new KDESalFrame( pParent, nState ); diff -Nru libreoffice-5.1.1~rc2/vcl/unx/kde4/KDESalInstance.hxx libreoffice-5.1.2~rc2/vcl/unx/kde4/KDESalInstance.hxx --- libreoffice-5.1.1~rc2/vcl/unx/kde4/KDESalInstance.hxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/vcl/unx/kde4/KDESalInstance.hxx 2016-03-29 15:41:04.000000000 +0000 @@ -27,7 +27,7 @@ class KDESalInstance : public X11SalInstance { public: - explicit KDESalInstance( SalYieldMutex* pMutex ) : X11SalInstance( pMutex ) {} + explicit KDESalInstance(SalYieldMutex* pMutex); virtual ~KDESalInstance() {} virtual SalFrame* CreateFrame( SalFrame* pParent, SalFrameStyleFlags nStyle ) override; diff -Nru libreoffice-5.1.1~rc2/vcl/win/source/app/saldata.cxx libreoffice-5.1.2~rc2/vcl/win/source/app/saldata.cxx --- libreoffice-5.1.1~rc2/vcl/win/source/app/saldata.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/vcl/win/source/app/saldata.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -74,15 +74,6 @@ return nRet; } -namespace vcl -{ -bool IsWindowSystemAvailable() -{ - return true; // FIXME: we want this to return false if logged in - // to some Cygwin ssh session for instance -} - -} // namespace vcl /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff -Nru libreoffice-5.1.1~rc2/vcl/win/source/gdi/salgdi2.cxx libreoffice-5.1.2~rc2/vcl/win/source/gdi/salgdi2.cxx --- libreoffice-5.1.1~rc2/vcl/win/source/gdi/salgdi2.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/vcl/win/source/gdi/salgdi2.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -29,6 +29,7 @@ #include <win/salids.hrc> #include <win/salgdi.h> #include <win/salframe.h> +#include <opengl/salbmp.hxx> #include "vcl/salbtype.hxx" #include "vcl/bmpacc.hxx" @@ -36,7 +37,6 @@ #include "salgdiimpl.hxx" #include "opengl/win/gdiimpl.hxx" - bool WinSalGraphics::supportsOperation( OutDevSupportType eType ) const { static bool bAllowForTest(true); @@ -76,9 +76,15 @@ void convertToWinSalBitmap(SalBitmap& rSalBitmap, WinSalBitmap& rWinSalBitmap) { - BitmapBuffer* pRead = rSalBitmap.AcquireBuffer(BITMAP_READ_ACCESS); + BitmapPalette aBitmapPalette; + OpenGLSalBitmap* pGLSalBitmap = dynamic_cast<OpenGLSalBitmap*>(&rSalBitmap); + if (pGLSalBitmap != nullptr) + { + aBitmapPalette = pGLSalBitmap->GetBitmapPalette(); + } - rWinSalBitmap.Create(rSalBitmap.GetSize(), rSalBitmap.GetBitCount(), BitmapPalette()); + BitmapBuffer* pRead = rSalBitmap.AcquireBuffer(BITMAP_READ_ACCESS); + rWinSalBitmap.Create(rSalBitmap.GetSize(), rSalBitmap.GetBitCount(), aBitmapPalette); BitmapBuffer* pWrite = rWinSalBitmap.AcquireBuffer(BITMAP_WRITE_ACCESS); sal_uInt8* pSource(pRead->mpBits); diff -Nru libreoffice-5.1.1~rc2/vcl/win/source/gdi/salgdi3.cxx libreoffice-5.1.2~rc2/vcl/win/source/gdi/salgdi3.cxx --- libreoffice-5.1.1~rc2/vcl/win/source/gdi/salgdi3.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/vcl/win/source/gdi/salgdi3.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -40,6 +40,7 @@ #include <vcl/settings.hxx> #include <vcl/sysdata.hxx> #include <vcl/metric.hxx> +#include <vcl/opengl/OpenGLWrapper.hxx> #include "fontsubset.hxx" #include "outdev.h" @@ -1393,6 +1394,15 @@ rLogFont.lfPitchAndFamily = pWinFontData->GetPitchAndFamily(); } + static BYTE nDefaultQuality = NONANTIALIASED_QUALITY; + if (nDefaultQuality == NONANTIALIASED_QUALITY) + { + if (OpenGLWrapper::isVCLOpenGLEnabled()) + nDefaultQuality = ANTIALIASED_QUALITY; + else + nDefaultQuality = DEFAULT_QUALITY; + } + rLogFont.lfWeight = ImplWeightToWin( pFont->GetWeight() ); rLogFont.lfHeight = (LONG)-pFont->mnHeight; rLogFont.lfWidth = (LONG)pFont->mnWidth; @@ -1402,7 +1412,7 @@ rLogFont.lfEscapement = pFont->mnOrientation; rLogFont.lfOrientation = rLogFont.lfEscapement; rLogFont.lfClipPrecision = CLIP_DEFAULT_PRECIS; - rLogFont.lfQuality = DEFAULT_QUALITY; + rLogFont.lfQuality = nDefaultQuality; rLogFont.lfOutPrecision = OUT_TT_PRECIS; if ( pFont->mnOrientation ) rLogFont.lfClipPrecision |= CLIP_LH_ANGLES; @@ -2150,9 +2160,9 @@ rRect = Rectangle( Point( +aGM.gmptGlyphOrigin.x, -aGM.gmptGlyphOrigin.y ), Size( aGM.gmBlackBoxX, aGM.gmBlackBoxY ) ); rRect.Left() = static_cast<int>( mfCurrentFontScale * rRect.Left() ); - rRect.Right() = static_cast<int>( mfCurrentFontScale * rRect.Right() ); + rRect.Right() = static_cast<int>( mfCurrentFontScale * rRect.Right() ) + 1; rRect.Top() = static_cast<int>( mfCurrentFontScale * rRect.Top() ); - rRect.Bottom() = static_cast<int>( mfCurrentFontScale * rRect.Bottom() ); + rRect.Bottom() = static_cast<int>( mfCurrentFontScale * rRect.Bottom() ) + 1; return true; } diff -Nru libreoffice-5.1.1~rc2/vcl/win/source/gdi/salnativewidgets-luna.cxx libreoffice-5.1.2~rc2/vcl/win/source/gdi/salnativewidgets-luna.cxx --- libreoffice-5.1.1~rc2/vcl/win/source/gdi/salnativewidgets-luna.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/vcl/win/source/gdi/salnativewidgets-luna.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -1162,20 +1162,35 @@ * aCaption: A caption or title string (like button text etc) */ bool WinSalGraphics::drawNativeControl( ControlType nType, - ControlPart nPart, - const Rectangle& rControlRegion, - ControlState nState, - const ImplControlValue& aValue, - const OUString& aCaption ) + ControlPart nPart, + const Rectangle& rControlRegion, + ControlState nState, + const ImplControlValue& aValue, + const OUString& aCaption ) { bool bOk = false; HTHEME hTheme = NULL; Rectangle buttonRect = rControlRegion; + Rectangle cacheRect = rControlRegion; + Size keySize = cacheRect.GetSize(); WinOpenGLSalGraphicsImpl* pImpl = dynamic_cast<WinOpenGLSalGraphicsImpl*>(mpImpl.get()); - ControlCacheKey aControlCacheKey(nType, nPart, nState, buttonRect.GetSize()); + // tdf#95618 - A few controls render outside the region they're given. + if (pImpl && nType == CTRL_TAB_ITEM) + { + Rectangle rNativeBoundingRegion; + Rectangle rNativeContentRegion; + if (getNativeControlRegion(nType, nPart, rControlRegion, nState, aValue, aCaption, + rNativeBoundingRegion, rNativeContentRegion)) + { + cacheRect = rNativeBoundingRegion; + keySize = rNativeBoundingRegion.GetSize(); + } + } + + ControlCacheKey aControlCacheKey(nType, nPart, nState, keySize); if (pImpl != NULL && pImpl->TryRenderCachedNativeControl(aControlCacheKey, buttonRect.Left(), buttonRect.Top())) { return true; @@ -1288,18 +1303,18 @@ else { // We can do OpenGL - OpenGLCompatibleDC aBlackDC(*this, buttonRect.Left(), buttonRect.Top(), buttonRect.GetWidth(), buttonRect.GetHeight()); + OpenGLCompatibleDC aBlackDC(*this, cacheRect.Left(), cacheRect.Top(), cacheRect.GetWidth()+1, cacheRect.GetHeight()+1); SetTextAlign(aBlackDC.getCompatibleHDC(), TA_LEFT|TA_TOP|TA_NOUPDATECP); aBlackDC.fill(MAKE_SALCOLOR(0, 0, 0)); - OpenGLCompatibleDC aWhiteDC(*this, buttonRect.Left(), buttonRect.Top(), buttonRect.GetWidth(), buttonRect.GetHeight()); + OpenGLCompatibleDC aWhiteDC(*this, cacheRect.Left(), cacheRect.Top(), cacheRect.GetWidth()+1, cacheRect.GetHeight()+1); SetTextAlign(aWhiteDC.getCompatibleHDC(), TA_LEFT|TA_TOP|TA_NOUPDATECP); aWhiteDC.fill(MAKE_SALCOLOR(0xff, 0xff, 0xff)); if (ImplDrawNativeControl(aBlackDC.getCompatibleHDC(), hTheme, rc, nType, nPart, nState, aValue, aCaptionStr) && ImplDrawNativeControl(aWhiteDC.getCompatibleHDC(), hTheme, rc, nType, nPart, nState, aValue, aCaptionStr)) { - bOk = pImpl->RenderAndCacheNativeControl(aWhiteDC, aBlackDC, buttonRect.Left(), buttonRect.Top(), aControlCacheKey); + bOk = pImpl->RenderAndCacheNativeControl(aWhiteDC, aBlackDC, cacheRect.Left(), cacheRect.Top(), aControlCacheKey); } } @@ -1330,6 +1345,9 @@ { bool bRet = FALSE; + // FIXME: rNativeBoundingRegion has a different origin + // depending on which part is used; horrors. + HDC hDC = GetDC( mhWnd ); if( nType == CTRL_TOOLBAR ) { diff -Nru libreoffice-5.1.1~rc2/vcl/win/source/gdi/winlayout.cxx libreoffice-5.1.2~rc2/vcl/win/source/gdi/winlayout.cxx --- libreoffice-5.1.1~rc2/vcl/win/source/gdi/winlayout.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/vcl/win/source/gdi/winlayout.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -33,12 +33,12 @@ #include "sft.hxx" #include "sallayout.hxx" -#include "glyphy/demo.hxx" #include <cstdio> #include <cstdlib> #include <sal/alloca.h> +#include <rtl/character.hxx> #include <algorithm> @@ -54,8 +54,16 @@ #if ENABLE_GRAPHITE #include <i18nlangtag/languagetag.hxx> #include <graphite_features.hxx> +#if ENABLE_GRAPHITE_DWRITE +#include <d2d1.h> +#include <dwrite.h> +#endif #endif +// This needs to come after any includes for d2d1.h, otherwise we get lots of errors +#include "glyphy/demo.hxx" + + #define DROPPED_OUTGLYPH 0xFFFF namespace @@ -71,8 +79,9 @@ WORD mnFirstGlyph; int mnGlyphCount; std::vector<Rectangle> maLocation; + std::vector<int> maLeftOverhangs; std::shared_ptr<OpenGLTexture> mpTexture; - int mnAscent; + int mnBaselineOffset; int mnHeight; bool mbVertical; bool mbRealGlyphIndices; @@ -140,6 +149,104 @@ GLuint ImplWinFontEntry::mnGLyphyProgram = 0; +class TextOutRenderer +{ +protected: + explicit TextOutRenderer() = default; + TextOutRenderer(const TextOutRenderer &) = delete; + TextOutRenderer & operator = (const TextOutRenderer &) = delete; + +public: + static TextOutRenderer & get(); + + virtual ~TextOutRenderer() = default; + + virtual bool operator ()(WinLayout const &rLayout, HDC hDC, + const Rectangle* pRectToErase, + Point* pPos, int* pGetNextGlypInfo) = 0; +}; + +class ExTextOutRenderer : public TextOutRenderer +{ + ExTextOutRenderer(const ExTextOutRenderer &) = delete; + ExTextOutRenderer & operator = (const ExTextOutRenderer &) = delete; + +public: + explicit ExTextOutRenderer() = default; + virtual ~ExTextOutRenderer() override = default; + + bool operator ()(WinLayout const &rLayout, HDC hDC, + const Rectangle* pRectToErase, + Point* pPos, int* pGetNextGlypInfo) override; +}; + +#if ENABLE_GRAPHITE_DWRITE + +class D2DWriteTextOutRenderer : public TextOutRenderer +{ + typedef HRESULT(WINAPI *pD2D1CreateFactory_t)(D2D1_FACTORY_TYPE, + REFIID, const D2D1_FACTORY_OPTIONS *, void **); + typedef HRESULT(WINAPI *pDWriteCreateFactory_t)(DWRITE_FACTORY_TYPE, + REFIID, IUnknown **); + + static HINSTANCE mmD2d1, mmDWrite; + static pD2D1CreateFactory_t D2D1CreateFactory; + static pDWriteCreateFactory_t DWriteCreateFactory; + +public: + static bool InitModules(); + + explicit D2DWriteTextOutRenderer(); + virtual ~D2DWriteTextOutRenderer() override; + + bool operator ()(WinLayout const &rLayout, HDC hDC, + const Rectangle* pRectToErase, + Point* pPos, int* pGetNextGlypInfo) override; + + inline bool BindDC(HDC hDC, Rectangle const & rRect = Rectangle(0, 0, 0, 0)) { + RECT const rc = { rRect.Left(), rRect.Top(), rRect.Right(), rRect.Bottom() }; + return SUCCEEDED(mpRT->BindDC(hDC, &rc)); + } + + bool BindFont(HDC hDC) /*override*/; + bool ReleaseFont() /*override*/; + + std::vector<Rectangle> GetGlyphInkBoxes(uint16_t * pGid, uint16_t * pGidEnd) const /*override*/; + ID2D1RenderTarget * GetRenderTarget() const { return mpRT; } + IDWriteFontFace * GetFontFace() const { return mpFontFace; } + float GetEmHeight() const { return mlfEmHeight; } + + inline HRESULT CreateRenderTarget() { + if (mpRT) mpRT->Release(); mpRT = nullptr; + return mpD2DFactory->CreateDCRenderTarget(&mRTProps, &mpRT); + } + + inline bool Ready() const { return mpGdiInterop && mpRT; } + +private: + static void CleanupModules(); + + // This is a singleton object disable copy ctor and assignemnt operator + D2DWriteTextOutRenderer(const D2DWriteTextOutRenderer &) = delete; + D2DWriteTextOutRenderer & operator = (const D2DWriteTextOutRenderer &) = delete; + + bool GetDWriteFaceFromHDC(HDC hDC, IDWriteFontFace ** ppFontFace, float * lfSize) const; + bool GetDWriteInkBox(IDWriteFontFace & rFontFace, WinLayout const &rLayout, float const lfEmHeight, Rectangle &) const; + bool DrawGlyphs(const Point & origin, uint16_t * pGid, uint16_t * pGidEnd, + float * pAdvances, Point * pOffsets) /*override*/; + + ID2D1Factory * mpD2DFactory; + IDWriteFactory * mpDWriteFactory; + IDWriteGdiInterop * mpGdiInterop; + ID2D1DCRenderTarget * mpRT; + const D2D1_RENDER_TARGET_PROPERTIES mRTProps; + + IDWriteFontFace * mpFontFace; + float mlfEmHeight; + HDC mhDC; +}; + + #ifdef SAL_LOG_INFO namespace { @@ -154,7 +261,7 @@ return '0' + (10*(GetRValue(aColor) + GetGValue(aColor) + GetBValue(aColor))) / (0xFF*3); } -void DumpGlyphBitmap(HDC hDC) +void DumpGlyphBitmap(HDC hDC, const OpenGLGlyphCacheChunk& rChunk) { HBITMAP hBitmap = static_cast<HBITMAP>(GetCurrentObject(hDC, OBJ_BITMAP)); if (hBitmap == NULL) @@ -172,10 +279,14 @@ SAL_INFO("vcl.gdi.opengl", "Bitmap " << hBitmap << ": " << aBitmap.bmWidth << "x" << aBitmap.bmHeight << ":"); - std::ostringstream sLine("\n"); + std::ostringstream sLine("\n", std::ios_base::ate); for (long y = 0; y < aBitmap.bmHeight; y++) { - for (long x = 0; x < std::min(75l, aBitmap.bmWidth); x++) + if (y == rChunk.mnBaselineOffset + rChunk.getExtraOffset()) + sLine << "-"; + else + sLine << ColorFor(GetPixel(hDC, 0, y)); + for (long x = 1; x < std::min(75l, aBitmap.bmWidth); x++) sLine << ColorFor(GetPixel(hDC, x, y)); if (y < aBitmap.bmHeight - 1) sLine << "\n"; @@ -290,196 +401,155 @@ return false; } - SIZE aSize; + // For now we assume DWrite is present and we won't bother with fallback paths. + D2DWriteTextOutRenderer * pTxt = dynamic_cast<D2DWriteTextOutRenderer *>(&TextOutRenderer::get()); + if (!pTxt) + return false; - std::vector<ABC> aABC(nCount); - if (bRealGlyphIndices) + pTxt->BindFont(hDC); + + // Bail for vertical text. { - if (!GetTextExtentExPointI(hDC, aGlyphIndices.data(), nCount, 0, NULL, NULL, &aSize)) - { - SAL_WARN("vcl.gdi", "GetTextExtentExPointI failed: " << WindowsErrorString(GetLastError())); - SelectObject(hDC, hOrigFont); - DeleteDC(hDC); - return false; - } - if (!GetCharABCWidthsI(hDC, 0, nCount, aGlyphIndices.data(), aABC.data())) + wchar_t sFaceName[200]; + int nFaceNameLen = GetTextFaceW(hDC, SAL_N_ELEMENTS(sFaceName), sFaceName); + SelectObject(hDC, hOrigFont); + DeleteDC(hDC); + + if (!nFaceNameLen) + SAL_WARN("vcl.gdi", "GetTextFace failed: " << WindowsErrorString(GetLastError())); + + if (sFaceName[0] == '@') { - SAL_WARN("vcl.gdi", "GetCharABCWidthsI failed: " << WindowsErrorString(GetLastError())); - SelectObject(hDC, hOrigFont); - DeleteDC(hDC); + pTxt->ReleaseFont(); return false; } } - else + // Fetch the ink boxes and calculate the size of the atlas. + if (!bRealGlyphIndices) { - if (!GetTextExtentExPointW(hDC, aGlyphIndices.data(), nCount, 0, NULL, NULL, &aSize)) + // FIXME First convert from UTF16 to utf32 + std::vector<uint32_t> aCodePoints(aGlyphIndices.begin(), aGlyphIndices.end()); + aGlyphIndices.resize(aCodePoints.size()); + if (!SUCCEEDED(pTxt->GetFontFace()->GetGlyphIndices(aCodePoints.data(), aCodePoints.size(), aGlyphIndices.data()))) { - SAL_WARN("vcl.gdi", "GetTextExtentExPoint failed: " << WindowsErrorString(GetLastError())); - SelectObject(hDC, hOrigFont); - DeleteDC(hDC); - return false; - } - if (!GetCharABCWidthsW(hDC, nGlyphIndex, nGlyphIndex+nCount-1, aABC.data())) - { - SAL_WARN("vcl.gdi", "GetCharABCWidths failed: " << WindowsErrorString(GetLastError())); - SelectObject(hDC, hOrigFont); - DeleteDC(hDC); + pTxt->ReleaseFont(); return false; } } + Rectangle bounds(0, 0, 0, 0); + auto aInkBoxes = pTxt->GetGlyphInkBoxes(aGlyphIndices.data(), aGlyphIndices.data() + nCount); + for (auto &box : aInkBoxes) + bounds.Union(box + Point(bounds.Right(), 0)); + + // bounds.Top() is the offset from the baseline at (0,0) to the top of the + // inkbox. + aChunk.mnBaselineOffset = -bounds.Top(); + aChunk.mnHeight = bounds.getHeight(); + aChunk.mbVertical = false; - std::ostringstream sLine; - for (int i = 0; i < nCount; i++) - sLine << aABC[i].abcA << ":" << aABC[i].abcB << ":" << aABC[i].abcC << " "; - SAL_INFO("vcl.gdi.opengl", "ABC widths: " << sLine.str()); - - TEXTMETRICW aTextMetric; - if (!GetTextMetricsW(hDC, &aTextMetric)) - { - SAL_WARN("vcl.gdi", "GetTextMetrics failed: " << WindowsErrorString(GetLastError())); - SelectObject(hDC, hOrigFont); - DeleteDC(hDC); - return false; - } - aChunk.mnAscent = aTextMetric.tmAscent; - aChunk.mnHeight = aTextMetric.tmHeight; + aChunk.maLeftOverhangs.resize(nCount); + aChunk.maLocation.resize(nCount); // Try hard to avoid overlap as we want to be able to use // individual rectangles for each glyph. The ABC widths don't // take anti-aliasing into consideration. Let's hope that leaving - // "extra" space inbetween glyphs will help. - std::vector<int> aDX(nCount); - int totWidth = 0; - for (int i = 0; i < nCount; i++) - { - aDX[i] = aABC[i].abcB + std::abs(aABC[i].abcC); - if (i == 0) - aDX[0] += std::abs(aABC[0].abcA); - if (i < nCount-1) - aDX[i] += std::abs(aABC[i+1].abcA); - aDX[i] += aChunk.getExtraSpace(); - totWidth += aDX[i]; - } + // "extra" space between glyphs will help. + std::vector<float> aGlyphAdv(nCount); // offsets between glyphs + std::vector<DWRITE_GLYPH_OFFSET> aGlyphOffset(nCount, DWRITE_GLYPH_OFFSET{0.0f,0.0f}); + std::vector<int> aEnds(nCount); // end of each glyph box + float totWidth = 0; + for (int i = 0; i < nCount; ++i) + { + int overhang = aInkBoxes[i].Left(); + int blackWidth = aInkBoxes[i].getWidth(); // width of non-AA pixels + aChunk.maLeftOverhangs[i] = overhang; - LOGFONTW aLogfont; - if (!GetObjectW(rLayout.mhFont, sizeof(aLogfont), &aLogfont)) - { - SAL_WARN("vcl.gdi", "GetObject failed: " << WindowsErrorString(GetLastError())); - SelectObject(hDC, hOrigFont); - DeleteDC(hDC); - return false; - } + aGlyphAdv[i] = blackWidth + aChunk.getExtraSpace(); + aGlyphOffset[i].advanceOffset = -overhang; - wchar_t sFaceName[200]; - int nFaceNameLen = GetTextFaceW(hDC, SAL_N_ELEMENTS(sFaceName), sFaceName); - if (!nFaceNameLen) - { - SAL_WARN("vcl.gdi", "GetTextFace failed: " << WindowsErrorString(GetLastError())); - SelectObject(hDC, hOrigFont); - DeleteDC(hDC); - return false; + totWidth += aGlyphAdv[i]; + aEnds[i] = totWidth; } - SAL_INFO("vcl.gdi.opengl", OUString(sFaceName, nFaceNameLen) << - ": Escapement=" << aLogfont.lfEscapement << - " Orientation=" << aLogfont.lfOrientation << - " Ascent=" << aTextMetric.tmAscent << - " InternalLeading=" << aTextMetric.tmInternalLeading << - " Size=(" << aSize.cx << "," << aSize.cy << ") totWidth=" << totWidth); - - if (SelectObject(hDC, hOrigFont) == NULL) - SAL_WARN("vcl.gdi", "SelectObject failed: " << WindowsErrorString(GetLastError())); - if (!DeleteDC(hDC)) - SAL_WARN("vcl.gdi", "DeleteDC failed: " << WindowsErrorString(GetLastError())); - // Leave extra space also at top and bottom - int nBitmapWidth, nBitmapHeight; - if (sFaceName[0] == '@') - { - nBitmapWidth = aSize.cy + aChunk.getExtraSpace(); - nBitmapHeight = totWidth; - aChunk.mbVertical = true; - } - else + int nBitmapWidth = totWidth, + nBitmapHeight = bounds.getHeight() + aChunk.getExtraSpace(); + + aChunk.maLocation.resize(nCount); + UINT nPos = 0; + for (int i = 0; i < nCount; i++) { - nBitmapWidth = totWidth; - nBitmapHeight = aSize.cy + aChunk.getExtraSpace(); - aChunk.mbVertical = false; + // FIXME: really I don't get why 'vertical' makes any difference [!] what does it mean !? + if (aChunk.mbVertical) + { + aChunk.maLocation[i].Left() = 0; + aChunk.maLocation[i].Right() = nBitmapWidth; + aChunk.maLocation[i].Top() = nPos; + aChunk.maLocation[i].Bottom() = nPos + aGlyphAdv[i] + aChunk.maLeftOverhangs[i]; + } + else + { + aChunk.maLocation[i].Left() = nPos; + aChunk.maLocation[i].Right() = aEnds[i]; + aChunk.maLocation[i].Top() = 0; + aChunk.maLocation[i].Bottom() = bounds.getHeight() + aChunk.getExtraSpace(); + } + nPos = aEnds[i]; } - // Don't even try to handle non-horizontal text - if (aChunk.mbVertical || aLogfont.lfEscapement != 0) - return false; - OpenGLCompatibleDC aDC(rGraphics, 0, 0, nBitmapWidth, nBitmapHeight); HFONT hNonAntialiasedFont = NULL; -#ifdef DBG_UTIL - static bool bNoAntialias = (std::getenv("VCL_GLYPH_CACHING_HACK_NO_ANTIALIAS") != NULL); - if (bNoAntialias) - { - aLogfont.lfQuality = NONANTIALIASED_QUALITY; - hNonAntialiasedFont = CreateFontIndirectW(&aLogfont); - if (hNonAntialiasedFont == NULL) - { - SAL_WARN("vcl.gdi", "CreateFontIndirect failed: " << WindowsErrorString(GetLastError())); - return false; - } - } -#endif + SetTextColor(aDC.getCompatibleHDC(), RGB(0, 0, 0)); + SetBkColor(aDC.getCompatibleHDC(), RGB(255, 255, 255)); - hOrigFont = SelectFont(aDC.getCompatibleHDC(), hNonAntialiasedFont != NULL ? hNonAntialiasedFont : rLayout.mhFont); - if (hOrigFont == NULL) + aDC.fill(MAKE_SALCOLOR(0xff, 0xff, 0xff)); + + pTxt->BindDC(aDC.getCompatibleHDC(), Rectangle(0, 0, nBitmapWidth, nBitmapHeight)); + auto pRT = pTxt->GetRenderTarget(); + + ID2D1SolidColorBrush* pBrush = nullptr; + if (!SUCCEEDED(pRT->CreateSolidColorBrush(D2D1::ColorF(D2D1::ColorF::Black), &pBrush))) { - SAL_WARN("vcl.gdi", "SelectObject failed: " << WindowsErrorString(GetLastError())); + pTxt->ReleaseFont(); return false; } - SetTextColor(aDC.getCompatibleHDC(), RGB(0, 0, 0)); - SetBkColor(aDC.getCompatibleHDC(), RGB(255, 255, 255)); + D2D1_POINT_2F baseline = { aChunk.getExtraOffset(), aChunk.getExtraOffset() + aChunk.mnBaselineOffset }; + DWRITE_GLYPH_RUN glyphs = { + pTxt->GetFontFace(), + pTxt->GetEmHeight(), + nCount, + aGlyphIndices.data(), + aGlyphAdv.data(), + aGlyphOffset.data(), + false, + 0 + }; - aDC.fill(MAKE_SALCOLOR(0xff, 0xff, 0xff)); + pRT->BeginDraw(); + pRT->DrawGlyphRun(baseline, &glyphs, pBrush); + HRESULT hr = pRT->EndDraw(); - int nY = aChunk.getExtraOffset(); - int nX = nY; - if (aChunk.mbVertical) - nX += aDX[0]; - if (!ExtTextOutW(aDC.getCompatibleHDC(), - nX, nY, - bRealGlyphIndices ? ETO_GLYPH_INDEX : 0, - NULL, - aGlyphIndices.data(), nCount, - aDX.data())) + pBrush->Release(); + + switch (hr) { - SAL_WARN("vcl.gdi", "ExtTextOutW failed: " << WindowsErrorString(GetLastError())); + case S_OK: + break; + case D2DERR_RECREATE_TARGET: + pTxt->CreateRenderTarget(); + break; + default: + SAL_WARN("vcl.gdi", "DrawGlyphRun-EndDraw failed: " << WindowsErrorString(GetLastError())); SelectFont(aDC.getCompatibleHDC(), hOrigFont); if (hNonAntialiasedFont != NULL) DeleteObject(hNonAntialiasedFont); return false; } - aChunk.maLocation.resize(nCount); - UINT nPos = 0; - for (int i = 0; i < nCount; i++) - { - if (aChunk.mbVertical) - { - aChunk.maLocation[i].Left() = 0; - aChunk.maLocation[i].Right() = nBitmapWidth; - aChunk.maLocation[i].Top() = nPos; - aChunk.maLocation[i].Bottom() = nPos + aDX[i]; - nPos = aChunk.maLocation[i].Bottom(); - } - else - { - aChunk.maLocation[i].Left() = nPos; - aChunk.maLocation[i].Right() = nPos + aDX[i]; - nPos = aChunk.maLocation[i].Right(); - aChunk.maLocation[i].Top() = 0; - aChunk.maLocation[i].Bottom() = aSize.cy + aChunk.getExtraSpace(); - } - } + pTxt->ReleaseFont(); aChunk.mpTexture = std::unique_ptr<OpenGLTexture>(aDC.getTexture()); @@ -491,7 +561,14 @@ #ifdef SAL_LOG_INFO SAL_INFO("vcl.gdi.opengl", "this=" << this << " now: " << maOpenGLGlyphCache); - DumpGlyphBitmap(aDC.getCompatibleHDC()); + DumpGlyphBitmap(aDC.getCompatibleHDC(), aChunk); + + { + std::ostringstream sLine; + for (int i = 0; i < nCount; i++) + sLine << aGlyphAdv[i] << ":" << aChunk.maLeftOverhangs[i] << " "; + SAL_INFO("vcl.gdi.opengl", "DX:offset : " << sLine.str()); + } #endif return true; @@ -840,16 +917,10 @@ } bool SimpleWinLayout::DrawTextImpl(HDC hDC, - const Rectangle* pRectToErase, + const Rectangle* /* pRectToErase */, Point* /* pPos */, int* /* pGetNextGlypInfo */) const { - if (pRectToErase) - { - RECT aRect = { pRectToErase->Left(), pRectToErase->Top(), pRectToErase->Left()+pRectToErase->GetWidth(), pRectToErase->Top()+pRectToErase->GetHeight() }; - FillRect(hDC, &aRect, static_cast<HBRUSH>(GetStockObject(WHITE_BRUSH))); - } - if( mnGlyphCount <= 0 ) return false; @@ -1378,6 +1449,9 @@ // we are making changes to the DC, make sure we got a new one assert(aDC.getCompatibleHDC() != hDC); + RECT aWinRect = { aRect.Left(), aRect.Top(), aRect.Left() + aRect.GetWidth(), aRect.Top() + aRect.GetHeight() }; + FillRect(aDC.getCompatibleHDC(), &aWinRect, static_cast<HBRUSH>(GetStockObject(WHITE_BRUSH))); + // setup the hidden DC with black color and white background, we will // use the result of the text drawing later as a mask only HFONT hOrigFont = SelectFont(aDC.getCompatibleHDC(), mhFont); @@ -1462,7 +1536,8 @@ SalTwoRect a2Rects(rChunk.maLocation[n].Left(), rChunk.maLocation[n].Top(), rChunk.maLocation[n].getWidth(), rChunk.maLocation[n].getHeight(), - nAdvance + aPos.X() - rChunk.getExtraOffset(), aPos.Y() - rChunk.mnAscent - rChunk.getExtraOffset(), + nAdvance + aPos.X() - rChunk.getExtraOffset() + rChunk.maLeftOverhangs[n], + aPos.Y() - rChunk.mnBaselineOffset - rChunk.getExtraOffset(), rChunk.maLocation[n].getWidth(), rChunk.maLocation[n].getHeight()); // ??? pImpl->DrawMask(*rChunk.mpTexture, salColor, a2Rects); @@ -2598,16 +2673,10 @@ } bool UniscribeLayout::DrawTextImpl(HDC hDC, - const Rectangle* pRectToErase, + const Rectangle* /* pRectToErase */, Point* /* pPos */, int* /* pGetNextGlypInfo */) const { - if (pRectToErase) - { - RECT aRect = { pRectToErase->Left(), pRectToErase->Top(), pRectToErase->Left()+pRectToErase->GetWidth(), pRectToErase->Top()+pRectToErase->GetHeight() }; - FillRect(hDC, &aRect, static_cast<HBRUSH>(GetStockObject(WHITE_BRUSH))); - } - HFONT hOrigFont = DisableFontScaling(); int nBaseClusterOffset = 0; @@ -2958,7 +3027,7 @@ { SalTwoRect a2Rects(rChunk.maLocation[n].Left(), rChunk.maLocation[n].Top(), rChunk.maLocation[n].getWidth(), rChunk.maLocation[n].getHeight(), - aPos.X(), nAdvance + aPos.Y(), + aPos.X() + rChunk.maLeftOverhangs[n], nAdvance + aPos.Y(), rChunk.maLocation[n].getWidth(), rChunk.maLocation[n].getHeight()); // ??? pImpl->DrawMask(*rChunk.mpTexture, salColor, a2Rects); } @@ -2966,7 +3035,8 @@ { SalTwoRect a2Rects(rChunk.maLocation[n].Left(), rChunk.maLocation[n].Top(), rChunk.maLocation[n].getWidth(), rChunk.maLocation[n].getHeight(), - nAdvance + aPos.X() + mpGlyphOffsets[i].du - rChunk.getExtraOffset(), aPos.Y() + mpGlyphOffsets[i].dv - rChunk.mnAscent - rChunk.getExtraOffset(), + nAdvance + aPos.X() + mpGlyphOffsets[i].du - rChunk.getExtraOffset() + rChunk.maLeftOverhangs[n], + aPos.Y() + mpGlyphOffsets[i].dv - rChunk.mnBaselineOffset - rChunk.getExtraOffset(), rChunk.maLocation[n].getWidth(), rChunk.maLocation[n].getHeight()); // ??? pImpl->DrawMask(*rChunk.mpTexture, salColor, a2Rects); } @@ -3531,6 +3601,404 @@ return mrFont.GetMinKashidaGlyph(); } +HINSTANCE D2DWriteTextOutRenderer::mmD2d1 = nullptr, + D2DWriteTextOutRenderer::mmDWrite = nullptr; +D2DWriteTextOutRenderer::pD2D1CreateFactory_t D2DWriteTextOutRenderer::D2D1CreateFactory = nullptr; +D2DWriteTextOutRenderer::pDWriteCreateFactory_t D2DWriteTextOutRenderer::DWriteCreateFactory = nullptr; + +bool D2DWriteTextOutRenderer::InitModules() +{ + mmD2d1 = LoadLibrary("D2d1.dll"); + mmDWrite = LoadLibrary("dwrite.dll"); + if (mmD2d1 && mmDWrite) + { + D2D1CreateFactory = pD2D1CreateFactory_t(GetProcAddress(mmD2d1, "D2D1CreateFactory")); + DWriteCreateFactory = pDWriteCreateFactory_t(GetProcAddress(mmDWrite, "DWriteCreateFactory")); + } + + if (!D2D1CreateFactory || !DWriteCreateFactory) + { + CleanupModules(); + return false; + } + + return true; +} + +void D2DWriteTextOutRenderer::CleanupModules() +{ + if (mmD2d1) + FreeLibrary(mmD2d1); + if (mmDWrite) + FreeLibrary(mmDWrite); + + mmD2d1 = nullptr; + mmDWrite = nullptr; + D2D1CreateFactory = nullptr; + DWriteCreateFactory = nullptr; +} +#endif // ENABLE_GRAPHITE_DWRITE + +TextOutRenderer & TextOutRenderer::get() +{ +#if ENABLE_GRAPHITE_DWRITE + static std::unique_ptr<TextOutRenderer> _impl(D2DWriteTextOutRenderer::InitModules() + ? static_cast<TextOutRenderer*>(new D2DWriteTextOutRenderer()) + : static_cast<TextOutRenderer*>(new ExTextOutRenderer())); +#else // ENABLE_GRAPHITE_DWRITE + static std::unique_ptr<TextOutRenderer> _impl(static_cast<TextOutRenderer*>(new ExTextOutRenderer())); +#endif // ENABLE_GRAPHITE_DWRITE + + return *_impl; +} + + +bool ExTextOutRenderer::operator ()(WinLayout const &rLayout, HDC hDC, + const Rectangle* pRectToErase, + Point* pPos, int* pGetNextGlypInfo) +{ + const int MAX_GLYPHS = 2; + sal_GlyphId glyphIntStr[MAX_GLYPHS]; + int nGlyphs = 0; + WORD glyphWStr[MAX_GLYPHS]; + do + { + nGlyphs = rLayout.GetNextGlyphs(1, glyphIntStr, *pPos, *pGetNextGlypInfo); + if (nGlyphs < 1) + break; + + std::copy_n(glyphIntStr, nGlyphs, glyphWStr); + ExtTextOutW(hDC, pPos->X(), pPos->Y(), ETO_GLYPH_INDEX, NULL, LPCWSTR(&glyphWStr), nGlyphs, NULL); + } while (!pRectToErase); + + return (pRectToErase && nGlyphs >= 1); +} + +#if ENABLE_GRAPHITE_DWRITE + +D2DWriteTextOutRenderer::D2DWriteTextOutRenderer() + : mpD2DFactory(nullptr), + mpDWriteFactory(nullptr), + mpGdiInterop(nullptr), + mpRT(nullptr), + mRTProps(D2D1::RenderTargetProperties(D2D1_RENDER_TARGET_TYPE_DEFAULT, + D2D1::PixelFormat(DXGI_FORMAT_B8G8R8A8_UNORM, D2D1_ALPHA_MODE_PREMULTIPLIED), + 0, 0, D2D1_RENDER_TARGET_USAGE_NONE, D2D1_FEATURE_LEVEL_DEFAULT)), + mpFontFace(nullptr), + mlfEmHeight(0.0f), + mhDC(0) +{ + HRESULT hr = S_OK; + hr = D2D1CreateFactory(D2D1_FACTORY_TYPE_SINGLE_THREADED, __uuidof(ID2D1Factory), NULL, reinterpret_cast<void **>(&mpD2DFactory)); + hr = DWriteCreateFactory(DWRITE_FACTORY_TYPE_SHARED, __uuidof(IDWriteFactory), reinterpret_cast<IUnknown**>(&mpDWriteFactory)); + if (SUCCEEDED(hr)) + { + hr = mpDWriteFactory->GetGdiInterop(&mpGdiInterop); + hr = CreateRenderTarget(); + } +} + +D2DWriteTextOutRenderer::~D2DWriteTextOutRenderer() +{ + if (mpRT) + mpRT->Release(); + if (mpGdiInterop) + mpGdiInterop->Release(); + if (mpDWriteFactory) + mpDWriteFactory->Release(); + if (mpD2DFactory) + mpD2DFactory->Release(); + + CleanupModules(); +} + +bool D2DWriteTextOutRenderer::operator ()(WinLayout const &rLayout, HDC hDC, + const Rectangle* pRectToErase, + Point* pPos, int* pGetNextGlypInfo) +{ + if (!Ready()) + return false; + + if (!BindFont(hDC)) + return false; +#if 0 + // Gather glyph positioning data. + std::vector<uint16_t> indices; + std::vector<float> advances; + std::vector<Point> offsets; + sal_GlyphId nLGlyph; + DeviceCoordinate nAdv; + while (rLayout.GetNextGlyphs(1, &nLGlyph, *pPos, *pGetNextGlypInfo, &nAdv) == 1) + { + indices.push_back(nLGlyph); + advances.push_back(nAdv); + offsets.push_back(Point(0,pPos->Y())); + } + + // Find the bounds + DrawGlyphs(rLayout.DrawBase(), indices.data(), indices.data()+indices.size(), advances.data(), offsets.data()); + + ReleaseFont(); + + return false; +#else + Rectangle bounds; + bool succeeded = GetDWriteInkBox(*mpFontFace, rLayout, mlfEmHeight, bounds); + if (pRectToErase) + { + // Isn't this equivalent to simply doing: bounds = *pRectToErase ? + bounds.Intersection(*pRectToErase); + bounds.Union(*pRectToErase); + } + succeeded &= BindDC(hDC, bounds); // Update the bounding rect. + + ID2D1SolidColorBrush* pBlackBrush = NULL; + succeeded &= SUCCEEDED(mpRT->CreateSolidColorBrush(D2D1::ColorF(GetTextColor(hDC)), &pBlackBrush)); + + HRESULT hr = S_OK; + int nGlyphs = 0; + if (succeeded) + { + const int MAX_GLYPHS = 2; + sal_GlyphId glyphIntStr[MAX_GLYPHS]; + UINT16 glyphIndices[MAX_GLYPHS]; + long glyphIntAdv[MAX_GLYPHS]; + FLOAT glyphAdvances[MAX_GLYPHS]; + DWRITE_GLYPH_OFFSET glyphOffsets[MAX_GLYPHS] = { { 0.0f, 0.0f }, }; + + mpRT->BeginDraw(); + do + { + nGlyphs = rLayout.GetNextGlyphs(1, glyphIntStr, *pPos, *pGetNextGlypInfo, glyphIntAdv); + if (nGlyphs < 1) + break; + + std::copy_n(glyphIntStr, nGlyphs, glyphIndices); + std::copy_n(glyphIntAdv, nGlyphs, glyphAdvances); + + D2D1_POINT_2F baseline = { pPos->X() - bounds.Left(), pPos->Y() - bounds.Top() }; + DWRITE_GLYPH_RUN glyphs = { + mpFontFace, + mlfEmHeight, + nGlyphs, + glyphIndices, + glyphAdvances, + glyphOffsets, + false, + 0 + }; + + mpRT->DrawGlyphRun(baseline, &glyphs, pBlackBrush); + } while (!pRectToErase); + + hr = mpRT->EndDraw(); + } + + if (pBlackBrush) + pBlackBrush->Release(); + + ReleaseFont(); + + if (hr == D2DERR_RECREATE_TARGET) + CreateRenderTarget(); + + return (succeeded && nGlyphs >= 1 && pRectToErase); +#endif +} + +bool D2DWriteTextOutRenderer::BindFont(HDC hDC) +{ + // A TextOutRender can only be bound to one font at a time, so the + assert(mpFontFace == nullptr); + if (mpFontFace) + { + ReleaseFont(); + return false; + } + + // Initially bind to an empty rectangle to get access to the font face, + // we'll update it once we've calculated a bounding rect in DrawGlyphs + if (!BindDC(mhDC = hDC)) + return false; + + mlfEmHeight = 0; + return GetDWriteFaceFromHDC(hDC, &mpFontFace, &mlfEmHeight); +} + +bool D2DWriteTextOutRenderer::ReleaseFont() +{ + mpFontFace->Release(); + mpFontFace = nullptr; + mhDC = 0; + + return true; +} + +// GetGlyphInkBoxes +// The inkboxes returned have their origin on the baseline, to a -ve value +// of Top() means the glyph extends abs(Top()) many pixels above the +// baseline, and +ve means the ink starts that many pixels below. +std::vector<Rectangle> D2DWriteTextOutRenderer::GetGlyphInkBoxes(uint16_t * pGid, uint16_t * pGidEnd) const +{ + Rectangle aExtent; + Point aPos; + ptrdiff_t nGlyphs = pGidEnd - pGid; + if (nGlyphs < 0) return std::vector<Rectangle>(); + + DWRITE_FONT_METRICS aFontMetrics; + mpFontFace->GetMetrics(&aFontMetrics); + + std::vector<DWRITE_GLYPH_METRICS> metrics(nGlyphs); + if (!SUCCEEDED(mpFontFace->GetDesignGlyphMetrics(pGid, nGlyphs, metrics.data(), false))) + return std::vector<Rectangle>(); + + std::vector<Rectangle> aOut(nGlyphs); + auto pOut = aOut.begin(); + for (auto &m : metrics) + { + const long left = m.leftSideBearing, + top = m.topSideBearing - m.verticalOriginY, + right = m.advanceWidth - m.rightSideBearing, + bottom = INT32(m.advanceHeight) - m.verticalOriginY - m.bottomSideBearing; + + // Scale to screen space. + pOut->Left() = std::lround(left * mlfEmHeight / aFontMetrics.designUnitsPerEm); + pOut->Top() = std::lround(top * mlfEmHeight / aFontMetrics.designUnitsPerEm); + pOut->Right() = std::lround(right * mlfEmHeight / aFontMetrics.designUnitsPerEm); + pOut->Bottom() = std::lround(bottom * mlfEmHeight / aFontMetrics.designUnitsPerEm); + + ++pOut; + } + + return aOut; +} + +bool D2DWriteTextOutRenderer::DrawGlyphs(const Point & origin, uint16_t * pGid, uint16_t * pGidEnd, + float * pAdvances, Point * pOffsets) +{ + Rectangle bounds; + //bool succeeded = GetDWriteInkBox(*mpFontFace, rLayout, mlfEmHeight, bounds); + + Point aPos = origin; + auto aInks = GetGlyphInkBoxes(pGid, pGidEnd); + if (aInks.empty()) return false; + + // Calculate the bounding rectangle. + auto adv = pAdvances; + auto ofs = pOffsets; + for (auto &b:aInks) + { + aPos += *ofs++; + b += aPos; + aPos.X() += *adv++; + bounds.Union(b); + } + bool succeeded = BindDC(mhDC, bounds); // Update the bounding rect. + + ID2D1SolidColorBrush* pBrush = NULL; + succeeded &= SUCCEEDED(mpRT->CreateSolidColorBrush(D2D1::ColorF(GetTextColor(mhDC)), &pBrush)); + + HRESULT hr = S_OK; + if (succeeded) + { + const int MAX_GLYPHS = 20; + UINT16 glyphIndices[MAX_GLYPHS]; + FLOAT glyphAdvances[MAX_GLYPHS]; + DWRITE_GLYPH_OFFSET glyphOffsets[MAX_GLYPHS] = { { 0.0f, 0.0f }, }; + + mpRT->BeginDraw(); + for (size_t nGlyphs = std::min(static_cast<int>(pGidEnd - pGid), MAX_GLYPHS); pGid != pGidEnd; + pGid += nGlyphs, nGlyphs = std::min(static_cast<int>(pGidEnd - pGid), MAX_GLYPHS)) + { + std::copy(pGid, pGidEnd, glyphIndices); + std::copy_n(pAdvances, nGlyphs, glyphAdvances); + std::transform(pOffsets, pOffsets + nGlyphs, glyphOffsets, [](Point &o) { return DWRITE_GLYPH_OFFSET{ o.X(), o.Y() }; }); + D2D1_POINT_2F baseline = { origin.X() - bounds.Left(), origin.Y() - bounds.Top() }; + DWRITE_GLYPH_RUN glyphs = { + mpFontFace, + mlfEmHeight, + nGlyphs, + glyphIndices, + glyphAdvances, + glyphOffsets, + false, + 0 + }; + + mpRT->DrawGlyphRun(baseline, &glyphs, pBrush); + } + + hr = mpRT->EndDraw(); + } + + if (pBrush) + pBrush->Release(); + + if (hr == D2DERR_RECREATE_TARGET) + { + ReleaseFont(); + hr = CreateRenderTarget(); + } + + return (SUCCEEDED(hr) && succeeded); +} + + +bool D2DWriteTextOutRenderer::GetDWriteFaceFromHDC(HDC hDC, IDWriteFontFace ** ppFontFace, float * lfSize) const +{ + bool const succeeded = SUCCEEDED(mpGdiInterop->CreateFontFaceFromHdc(hDC, ppFontFace)); + + if (succeeded) + { + LOGFONTW aLogFont; + HFONT hFont = (HFONT)::GetCurrentObject(hDC, OBJ_FONT); + + GetObjectW(hFont, sizeof(LOGFONTW), &aLogFont); + float dpix, dpiy; + mpRT->GetDpi(&dpix, &dpiy); + *lfSize = aLogFont.lfHeight * 96.0f / dpiy; + + assert(*lfSize < 0); + *lfSize *= -1; + } + + return succeeded; +} + +bool D2DWriteTextOutRenderer::GetDWriteInkBox(IDWriteFontFace & rFontFace, WinLayout const &rLayout, float const /*lfEmHeight*/, Rectangle & rOut) const +{ + rOut.SetEmpty(); + + DWRITE_FONT_METRICS aFontMetrics; + rFontFace.GetMetrics(&aFontMetrics); + + Point aPos; + sal_GlyphId nLGlyph; + std::vector<uint16_t> indices; + std::vector<Point> positions; + int nStart = 0; + while (rLayout.GetNextGlyphs(1, &nLGlyph, aPos, nStart) == 1) + { + positions.push_back(aPos); + indices.push_back(nLGlyph); + } + + auto aBoxes = GetGlyphInkBoxes(indices.data(), indices.data() + indices.size()); + if (aBoxes.empty()) + return false; + + auto p = positions.begin(); + for (auto &b:aBoxes) + { + b += *p++; + rOut.Union(b); + } + + return true; +} + +#endif // ENABLE_GRAPHITE_DWRITE + float gr_fontAdvance(const void* appFontHandle, gr_uint16 glyphId) { HDC hDC = reinterpret_cast<HDC>(const_cast<void*>(appFontHandle)); @@ -3577,7 +4045,7 @@ gr_font_destroy(maImpl.GetFont()); } -bool GraphiteWinLayout::LayoutText( ImplLayoutArgs & args) +bool GraphiteWinLayout::LayoutText(ImplLayoutArgs & args) { HFONT hUnRotatedFont = 0; if (args.mnOrientation) @@ -3619,30 +4087,15 @@ Point* pPos, int* pGetNextGlypInfo) const { - if (pRectToErase) - { - RECT aRect = { pRectToErase->Left(), pRectToErase->Top(), pRectToErase->Left()+pRectToErase->GetWidth(), pRectToErase->Top()+pRectToErase->GetHeight() }; - FillRect(hDC, &aRect, static_cast<HBRUSH>(GetStockObject(WHITE_BRUSH))); - } - HFONT hOrigFont = DisableFontScaling(); maImpl.DrawBase() = WinLayout::maDrawBase; maImpl.DrawOffset() = WinLayout::maDrawOffset; - const int MAX_GLYPHS = 2; - sal_GlyphId glyphIntStr[MAX_GLYPHS]; - WORD glyphWStr[MAX_GLYPHS]; - int nGlyphs = 0; - do - { - nGlyphs = maImpl.GetNextGlyphs(1, glyphIntStr, *pPos, *pGetNextGlypInfo); - if (nGlyphs < 1) - break; - std::copy(glyphIntStr, glyphIntStr + nGlyphs, glyphWStr); - ExtTextOutW(hDC, pPos->X(), pPos->Y(), ETO_GLYPH_INDEX, NULL, (LPCWSTR)&(glyphWStr), nGlyphs, NULL); - } while (!pRectToErase); + + TextOutRenderer & render = TextOutRenderer::get(); + bool const ok = render(*this, hDC, pRectToErase, pPos, pGetNextGlypInfo); if( hOrigFont ) DeleteFont(SelectFont(hDC, hOrigFont)); - return (pRectToErase && nGlyphs >= 1); + return ok; } bool GraphiteWinLayout::CacheGlyphs(SalGraphics& /*rGraphics*/) const diff -Nru libreoffice-5.1.1~rc2/vcl/workben/icontest.cxx libreoffice-5.1.2~rc2/vcl/workben/icontest.cxx --- libreoffice-5.1.1~rc2/vcl/workben/icontest.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/vcl/workben/icontest.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -35,7 +35,7 @@ #include <vcl/button.hxx> #include <vcl/dialog.hxx> #include <vcl/fixed.hxx> -#include <vcl/graph.hxx> +#include <vcl/graphic.hxx> #include <vcl/graphicfilter.hxx> #include <vcl/image.hxx> #include <vcl/openglwin.hxx> diff -Nru libreoffice-5.1.1~rc2/vcl/workben/svpclient.cxx libreoffice-5.1.2~rc2/vcl/workben/svpclient.cxx --- libreoffice-5.1.1~rc2/vcl/workben/svpclient.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/vcl/workben/svpclient.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -34,7 +34,7 @@ #include <vcl/imgctrl.hxx> #include <vcl/bitmapex.hxx> #include <vcl/graphicfilter.hxx> -#include <vcl/graph.hxx> +#include <vcl/graphic.hxx> #include <tools/extendapplicationenvironment.hxx> #include <tools/stream.hxx> diff -Nru libreoffice-5.1.1~rc2/writerfilter/inc/rtftok/RTFDocument.hxx libreoffice-5.1.2~rc2/writerfilter/inc/rtftok/RTFDocument.hxx --- libreoffice-5.1.1~rc2/writerfilter/inc/rtftok/RTFDocument.hxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/writerfilter/inc/rtftok/RTFDocument.hxx 2016-03-29 15:41:04.000000000 +0000 @@ -15,6 +15,7 @@ #include <com/sun/star/lang/XComponent.hpp> #include <com/sun/star/frame/XFrame.hpp> #include <com/sun/star/task/XStatusIndicator.hpp> +#include <unotools/mediadescriptor.hxx> namespace writerfilter { @@ -44,7 +45,7 @@ css::uno::Reference<css::lang::XComponent> const& xDstDoc, css::uno::Reference<css::frame::XFrame> const& xFrame, css::uno::Reference<css::task::XStatusIndicator> const& xStatusIndicator, - bool bIsNewDoc); + const utl::MediaDescriptor& rMediaDescriptor); }; } // namespace rtftok } // namespace writerfilter diff -Nru libreoffice-5.1.1~rc2/writerfilter/Library_writerfilter.mk libreoffice-5.1.2~rc2/writerfilter/Library_writerfilter.mk --- libreoffice-5.1.1~rc2/writerfilter/Library_writerfilter.mk 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/writerfilter/Library_writerfilter.mk 2016-03-29 15:41:04.000000000 +0000 @@ -21,6 +21,7 @@ $$(INCLUDE) \ -I$(SRCDIR)/writerfilter/inc \ -I$(SRCDIR)/writerfilter/source \ + -I$(SRCDIR)/writerfilter/source/dmapper \ )) $(eval $(call gb_Library_use_sdk_api,writerfilter)) diff -Nru libreoffice-5.1.1~rc2/writerfilter/source/dmapper/DomainMapper.cxx libreoffice-5.1.2~rc2/writerfilter/source/dmapper/DomainMapper.cxx --- libreoffice-5.1.1~rc2/writerfilter/source/dmapper/DomainMapper.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/writerfilter/source/dmapper/DomainMapper.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -1193,6 +1193,14 @@ rContext->Insert( PROP_NUMBERING_RULES, aRules ); // erase numbering from pStyle if already set rContext->Erase(PROP_NUMBERING_STYLE_NAME); + + // Indentation can came from: + // 1) Paragraph style's numbering's indentation: the current non-style numId has priority over it. + // 2) Numbering's indentation: Writer handles that natively, so it should not be set on rContext. + // 3) Paragraph style's indentation: ditto. + // 4) Direct paragraph formatting: that will came later. + // So no situation where keeping indentation at this point would make sense -> erase. + rContext->Erase(PROP_PARA_FIRST_LINE_INDENT); } } else diff -Nru libreoffice-5.1.1~rc2/writerfilter/source/dmapper/DomainMapper_Impl.cxx libreoffice-5.1.2~rc2/writerfilter/source/dmapper/DomainMapper_Impl.cxx --- libreoffice-5.1.1~rc2/writerfilter/source/dmapper/DomainMapper_Impl.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/writerfilter/source/dmapper/DomainMapper_Impl.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -1134,9 +1134,10 @@ else { uno::Reference<text::XTextCursor> xCursor; - if (m_bParaHadField) + if (m_bParaHadField && !m_bIsInComments) { // Workaround to make sure char props of the field are not lost. + // Not relevant for editeng-based comments. OUString sMarker("X"); xCursor = xTextAppend->getText()->createTextCursor(); if (xCursor.is()) @@ -2798,7 +2799,7 @@ {OUString("HYPERLINK"), "", FIELD_HYPERLINK }, {OUString("IF"), "ConditionalText", FIELD_IF }, // {OUString("INFO"), "",FIELD_INFO }, -// {OUString("INCLUDEPICTURE"), "", FIELD_INCLUDEPICTURE}, + {OUString("INCLUDEPICTURE"), "", FIELD_INCLUDEPICTURE}, {OUString("KEYWORDS"), "DocInfo.KeyWords", FIELD_KEYWORDS }, {OUString("LASTSAVEDBY"), "DocInfo.ChangeAuthor", FIELD_LASTSAVEDBY }, {OUString("MACROBUTTON"), "Macro", FIELD_MACROBUTTON }, @@ -3563,6 +3564,7 @@ case FIELD_CITATION: case FIELD_TC: case FIELD_EQ: + case FIELD_INCLUDEPICTURE: bCreateField = false; break; case FIELD_FORMCHECKBOX : diff -Nru libreoffice-5.1.1~rc2/writerfilter/source/dmapper/FieldTypes.hxx libreoffice-5.1.2~rc2/writerfilter/source/dmapper/FieldTypes.hxx --- libreoffice-5.1.1~rc2/writerfilter/source/dmapper/FieldTypes.hxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/writerfilter/source/dmapper/FieldTypes.hxx 2016-03-29 15:41:04.000000000 +0000 @@ -120,7 +120,6 @@ ,FIELD_INFO /* INCLUDEPICTURE path \* MERGEFORMAT-> old filter imports an embedded picture - todo: not yet supported */ ,FIELD_INCLUDEPICTURE /* KEYWORDS keyword \* defaultswitch \* Numberingswitch \* MERGEFORMAT -> diff -Nru libreoffice-5.1.1~rc2/writerfilter/source/dmapper/GraphicImport.cxx libreoffice-5.1.2~rc2/writerfilter/source/dmapper/GraphicImport.cxx --- libreoffice-5.1.1~rc2/writerfilter/source/dmapper/GraphicImport.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/writerfilter/source/dmapper/GraphicImport.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -805,8 +805,13 @@ // This needs to be AT_PARAGRAPH by default and not AT_CHARACTER, otherwise shape will move when the user inserts a new paragraph. text::TextContentAnchorType eAnchorType = text::TextContentAnchorType_AT_PARAGRAPH; - if (m_pImpl->nVertRelation == text::RelOrientation::TEXT_LINE) + + // Avoid setting AnchorType for TextBoxes till SwTextBoxHelper::syncProperty() doesn't handle transition. + bool bTextBox = false; + xShapeProps->getPropertyValue("TextBox") >>= bTextBox; + if (m_pImpl->nVertRelation == text::RelOrientation::TEXT_LINE && !bTextBox) eAnchorType = text::TextContentAnchorType_AT_CHARACTER; + xShapeProps->setPropertyValue("AnchorType", uno::makeAny(eAnchorType)); //only the position orientation is handled in applyPosition() diff -Nru libreoffice-5.1.1~rc2/writerfilter/source/filter/RtfFilter.cxx libreoffice-5.1.2~rc2/writerfilter/source/filter/RtfFilter.cxx --- libreoffice-5.1.1~rc2/writerfilter/source/filter/RtfFilter.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/writerfilter/source/filter/RtfFilter.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -146,7 +146,7 @@ writerfilter::dmapper::SourceDocumentType eType = writerfilter::dmapper::SourceDocumentType::RTF; writerfilter::Stream::Pointer_t pStream(writerfilter::dmapper::DomainMapperFactory::createMapper(m_xContext, xInputStream, m_xDstDoc, bRepairStorage, eType, aMediaDesc)); writerfilter::rtftok::RTFDocument::Pointer_t pDocument( - writerfilter::rtftok::RTFDocumentFactory::createDocument(m_xContext, xInputStream, m_xDstDoc, xFrame, xStatusIndicator, bIsNewDoc)); + writerfilter::rtftok::RTFDocumentFactory::createDocument(m_xContext, xInputStream, m_xDstDoc, xFrame, xStatusIndicator, aMediaDesc)); pDocument->resolve(*pStream); bResult = true; sal_uInt32 nEndTime = osl_getGlobalTimer(); diff -Nru libreoffice-5.1.1~rc2/writerfilter/source/rtftok/rtfdocumentfactory.cxx libreoffice-5.1.2~rc2/writerfilter/source/rtftok/rtfdocumentfactory.cxx --- libreoffice-5.1.1~rc2/writerfilter/source/rtftok/rtfdocumentfactory.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/writerfilter/source/rtftok/rtfdocumentfactory.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -19,9 +19,9 @@ css::uno::Reference< css::lang::XComponent > const& xDstDoc, css::uno::Reference< css::frame::XFrame > const& xFrame, css::uno::Reference< css::task::XStatusIndicator > const& xStatusIndicator, - bool bIsNewDoc) + const utl::MediaDescriptor& rMediaDescriptor) { - return std::make_shared<RTFDocumentImpl>(xContext, xInputStream, xDstDoc, xFrame, xStatusIndicator, bIsNewDoc); + return std::make_shared<RTFDocumentImpl>(xContext, xInputStream, xDstDoc, xFrame, xStatusIndicator, rMediaDescriptor); } } // namespace rtftok diff -Nru libreoffice-5.1.1~rc2/writerfilter/source/rtftok/rtfdocumentimpl.cxx libreoffice-5.1.2~rc2/writerfilter/source/rtftok/rtfdocumentimpl.cxx --- libreoffice-5.1.1~rc2/writerfilter/source/rtftok/rtfdocumentimpl.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/writerfilter/source/rtftok/rtfdocumentimpl.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -34,6 +34,8 @@ #include <ooxml/resourceids.hxx> #include <oox/token/namespaces.hxx> #include <oox/drawingml/drawingmltypes.hxx> +#include <rtl/uri.hxx> +#include <dmapper/DomainMapper_Impl.hxx> #include <rtfsdrimport.hxx> #include <rtflookahead.hxx> #include <rtfcharsets.hxx> @@ -211,7 +213,7 @@ uno::Reference<lang::XComponent> const& xDstDoc, uno::Reference<frame::XFrame> const& xFrame, uno::Reference<task::XStatusIndicator> const& xStatusIndicator, - bool bIsNewDoc) + const utl::MediaDescriptor& rMediaDescriptor) : m_xContext(xContext), m_xInputStream(xInputStream), m_xDstDoc(xDstDoc), @@ -240,7 +242,6 @@ m_nBackupTopLevelCurrentCellX(0), m_aTableBufferStack(1), // create top-level buffer already m_aSuperBuffer(), - m_bHasFootnote(false), m_pSuperstream(nullptr), m_nStreamType(0), m_nHeaderFooterPositions(), @@ -271,7 +272,8 @@ m_bHadSect(false), m_nCellxMax(0), m_nListPictureId(0), - m_bIsNewDoc(bIsNewDoc) + m_bIsNewDoc(!rMediaDescriptor.getUnpackedValueOrDefault("InsertMode", false)), + m_rMediaDescriptor(rMediaDescriptor) { OSL_ASSERT(xInputStream.is()); m_pInStream.reset(utl::UcbStreamHelper::CreateStream(xInputStream, true)); @@ -342,7 +344,7 @@ { sal_Size nCurrent = Strm().Tell(); // Seek to header position, parse, then seek back. - auto pImpl = std::make_shared<RTFDocumentImpl>(m_xContext, m_xInputStream, m_xDstDoc, m_xFrame, m_xStatusIndicator, m_bIsNewDoc); + auto pImpl = std::make_shared<RTFDocumentImpl>(m_xContext, m_xInputStream, m_xDstDoc, m_xFrame, m_xStatusIndicator, m_rMediaDescriptor); pImpl->setSuperstream(this); pImpl->setStreamType(nId); pImpl->setIgnoreFirst(rIgnoreFirst); @@ -1551,6 +1553,24 @@ if (!aBuf.isEmpty() && !isalnum(ch)) bFoundCode = true; } + + if (aBuf.toString() == "INCLUDEPICTURE") + { + // Extract the field argument of INCLUDEPICTURE: we handle that + // at a tokenizer level, as DOCX has no such field. + aBuf.append(ch); + while (true) + { + Strm().ReadChar(ch); + if (ch == '}') + break; + aBuf.append(ch); + } + OUString aFieldCommand = OStringToOUString(aBuf.toString(), RTL_TEXTENCODING_UTF8); + boost::tuple<OUString, std::vector<OUString>, std::vector<OUString> > aResult = writerfilter::dmapper::lcl_SplitFieldCommand(aFieldCommand); + m_aPicturePath = boost::get<1>(aResult).empty() ? OUString() : boost::get<1>(aResult).front(); + } + Strm().Seek(nPos); // Form data should be handled only for form fields if any @@ -1701,7 +1721,6 @@ if (aKeyword.equals("\\ftnalt")) nId = NS_ooxml::LN_endnote; - m_bHasFootnote = true; if (m_aStates.top().pCurrentBuffer == &m_aSuperBuffer) m_aStates.top().pCurrentBuffer = nullptr; bool bCustomMark = false; @@ -5147,6 +5166,46 @@ break; case Destination::FIELDRESULT: singleChar(cFieldEnd); + + if (!m_aPicturePath.isEmpty()) + { + // Read the picture into m_aStates.top().aDestinationText. + pushState(); + dispatchDestination(RTF_PICT); + if (m_aPicturePath.endsWith(".png")) + dispatchFlag(RTF_PNGBLIP); + OUString aFileURL = m_rMediaDescriptor.getUnpackedValueOrDefault(utl::MediaDescriptor::PROP_URL(), OUString()); + OUString aPictureURL; + try + { + aPictureURL = rtl::Uri::convertRelToAbs(aFileURL, m_aPicturePath); + } + catch(const rtl::MalformedUriException& rException) + { + SAL_WARN("writerfilter", "rtl::Uri::convertRelToAbs() failed: " << rException.getMessage()); + } + + if (!aPictureURL.isEmpty()) + { + SvFileStream aStream(aPictureURL, StreamMode::READ); + if (aStream.IsOpen()) + { + OUStringBuffer aBuf; + while (aStream.good()) + { + unsigned char ch = 0; + aStream.ReadUChar(ch); + if (ch < 16) + aBuf.append("0"); + aBuf.append(OUString::number(ch, 16)); + } + m_aStates.top().aDestinationText = aBuf; + } + } + popState(); + m_aPicturePath.clear(); + } + break; case Destination::LEVELTEXT: { @@ -6091,10 +6150,8 @@ { OSL_ASSERT(!m_aStates.empty() && m_aStates.top().pCurrentBuffer == nullptr); - if (!m_bHasFootnote) + if (!m_aSuperBuffer.empty()) replayBuffer(m_aSuperBuffer, nullptr, nullptr); - - m_bHasFootnote = false; } return RTFError::OK; diff -Nru libreoffice-5.1.1~rc2/writerfilter/source/rtftok/rtfdocumentimpl.hxx libreoffice-5.1.2~rc2/writerfilter/source/rtftok/rtfdocumentimpl.hxx --- libreoffice-5.1.1~rc2/writerfilter/source/rtftok/rtfdocumentimpl.hxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/writerfilter/source/rtftok/rtfdocumentimpl.hxx 2016-03-29 15:41:04.000000000 +0000 @@ -332,7 +332,7 @@ css::uno::Reference<css::lang::XComponent> const& xDstDoc, css::uno::Reference<css::frame::XFrame> const& xFrame, css::uno::Reference<css::task::XStatusIndicator> const& xStatusIndicator, - bool bIsNewDoc); + const utl::MediaDescriptor& rMediaDescriptor); virtual ~RTFDocumentImpl(); // RTFDocument @@ -523,7 +523,6 @@ /// Buffered superscript, till footnote is reached (or not). RTFBuffer_t m_aSuperBuffer; - bool m_bHasFootnote; /// Superstream of this substream. RTFDocumentImpl* m_pSuperstream; /// Type of the stream: header, footer, footnote, etc. @@ -565,6 +564,8 @@ RTFReferenceTable::Entries_t m_aStyleTableEntries; int m_nCurrentStyleIndex; bool m_bFormField; + /// For the INCLUDEPICTURE field's argument. + OUString m_aPicturePath; // Unicode characters are collected here so we don't have to send them one by one. OUStringBuffer m_aUnicodeBuffer; /// Same for hex characters. @@ -593,6 +594,8 @@ /// New document means not pasting into an existing one. bool m_bIsNewDoc; + /// The media descriptor contains e.g. the base URL of the document. + const utl::MediaDescriptor& m_rMediaDescriptor; }; } // namespace rtftok } // namespace writerfilter diff -Nru libreoffice-5.1.1~rc2/xmloff/source/draw/ximp3dscene.cxx libreoffice-5.1.2~rc2/xmloff/source/draw/ximp3dscene.cxx --- libreoffice-5.1.1~rc2/xmloff/source/draw/ximp3dscene.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/xmloff/source/draw/ximp3dscene.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -18,6 +18,7 @@ */ #include <sax/tools/converter.hxx> +#include <rtl/math.hxx> #include "ximp3dscene.hxx" #include <xmloff/xmluconv.hxx> @@ -66,7 +67,7 @@ { ::basegfx::B3DVector aVal; SvXMLUnitConverter::convertB3DVector(aVal, sValue); - if (!isnan(aVal.getX()) && !isnan(aVal.getY()) && !isnan(aVal.getZ())) + if (!rtl::math::isNan(aVal.getX()) && !rtl::math::isNan(aVal.getY()) && !rtl::math::isNan(aVal.getZ())) { maDirection = aVal; } diff -Nru libreoffice-5.1.1~rc2/xmloff/source/draw/XMLShapeStyleContext.cxx libreoffice-5.1.2~rc2/xmloff/source/draw/XMLShapeStyleContext.cxx --- libreoffice-5.1.1~rc2/xmloff/source/draw/XMLShapeStyleContext.cxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/xmloff/source/draw/XMLShapeStyleContext.cxx 2016-03-29 15:41:04.000000000 +0000 @@ -241,7 +241,11 @@ // of type styleName = NCName which is non-empty. // tdf#89802: for Writer frames there would be no exception here but // it will fail later on attach() and take out the entire frame - if (sStyleName.isEmpty()) + if (sStyleName.isEmpty() && + ( CTF_FILLGRADIENTNAME == aContextIDs[i].nContextID + || CTF_FILLTRANSNAME == aContextIDs[i].nContextID + || CTF_FILLHATCHNAME == aContextIDs[i].nContextID + || CTF_FILLBITMAPNAME == aContextIDs[i].nContextID)) { Sequence<OUString> const seq{ sStyleName }; GetImport().SetError( diff -Nru libreoffice-5.1.1~rc2/xmlsecurity/inc/pch/precompiled_xmlsecurity.hxx libreoffice-5.1.2~rc2/xmlsecurity/inc/pch/precompiled_xmlsecurity.hxx --- libreoffice-5.1.1~rc2/xmlsecurity/inc/pch/precompiled_xmlsecurity.hxx 2016-02-25 02:02:24.000000000 +0000 +++ libreoffice-5.1.2~rc2/xmlsecurity/inc/pch/precompiled_xmlsecurity.hxx 2016-03-29 15:41:04.000000000 +0000 @@ -128,7 +128,7 @@ #include <vcl/gfxlink.hxx> #include <vcl/gradient.hxx> #include <vcl/graph.h> -#include <vcl/graph.hxx> +#include <vcl/graphic.hxx> #include <vcl/hatch.hxx> #include <vcl/idle.hxx> #include <vcl/image.hxx>