summaryrefslogtreecommitdiff
path: root/sd/source/ui/slidesorter/controller
diff options
context:
space:
mode:
authorUrs Fässler <urs@bitzgi.ch>2013-03-13 20:30:06 +0100
committerUrs Fässler <urs@bitzgi.ch>2013-03-13 21:42:27 +0100
commitf4a37ca9584d7b8fcbd7aaa80162edcfde3cd4ed (patch)
tree940328c5e6dcdefe3e730e1f2cbf0211dffa5bd5 /sd/source/ui/slidesorter/controller
parent10af6b399c3d3342a03a3031cf42779bc0d38c87 (diff)
several translations and fixes for translations
Change-Id: I47ca71d578f3e0b1e2c3499f0785d986ed4f583e
Diffstat (limited to 'sd/source/ui/slidesorter/controller')
-rw-r--r--sd/source/ui/slidesorter/controller/SlideSorterController.cxx4
-rw-r--r--sd/source/ui/slidesorter/controller/SlsSlotManager.cxx18
2 files changed, 11 insertions, 11 deletions
diff --git a/sd/source/ui/slidesorter/controller/SlideSorterController.cxx b/sd/source/ui/slidesorter/controller/SlideSorterController.cxx
index a0ea086e83e2..322b20127fcd 100644
--- a/sd/source/ui/slidesorter/controller/SlideSorterController.cxx
+++ b/sd/source/ui/slidesorter/controller/SlideSorterController.cxx
@@ -687,7 +687,7 @@ void SlideSorterController::GetCtrlState (SfxItemSet& rSet)
{
if (rSet.GetItemState(SID_RELOAD) != SFX_ITEM_UNKNOWN)
{
- // "Letzte Version" vom SFx en/disablen lassen
+ // let SFx en-/disable "last version"
SfxViewFrame* pSlideViewFrame = SfxViewFrame::Current();
DBG_ASSERT(pSlideViewFrame!=NULL,
"SlideSorterController::GetCtrlState: ViewFrame not found");
@@ -695,7 +695,7 @@ void SlideSorterController::GetCtrlState (SfxItemSet& rSet)
{
pSlideViewFrame->GetSlotState (SID_RELOAD, NULL, &rSet);
}
- else // MI sagt: kein MDIFrame --> disablen
+ else // MI says: no MDIFrame --> disable
{
rSet.DisableItem(SID_RELOAD);
}
diff --git a/sd/source/ui/slidesorter/controller/SlsSlotManager.cxx b/sd/source/ui/slidesorter/controller/SlsSlotManager.cxx
index 4817f42e4e87..a3f2ba7e57f9 100644
--- a/sd/source/ui/slidesorter/controller/SlsSlotManager.cxx
+++ b/sd/source/ui/slidesorter/controller/SlsSlotManager.cxx
@@ -311,7 +311,7 @@ void SlotManager::FuPermanent (SfxRequest& rRequest)
pShell->SetOldFunction(pShell->GetCurrentFunction());
}
- //! das ist nur bis das ENUM-Slots sind
+ //! that's only until ENUM-Slots ?are
// Invalidate( SID_OBJECT_SELECT );
}
@@ -427,14 +427,14 @@ void SlotManager::ExecCtrl (SfxRequest& rRequest)
{
case SID_RELOAD:
{
- // Undo-Manager leeren
+ // empty Undo-Manager
mrSlideSorter.GetModel().GetDocument()->GetDocSh()->ClearUndoBuffer();
- // Normale Weiterleitung an ViewFrame zur Ausfuehrung
+ // normal forwarding to ViewFrame for execution
if (pViewShell != NULL)
pViewShell->GetViewFrame()->ExecuteSlot(rRequest);
- // Muss sofort beendet werden
+ // has to be finished right away
return;
}
@@ -486,7 +486,7 @@ void SlotManager::ExecCtrl (SfxRequest& rRequest)
void SlotManager::GetAttrState (SfxItemSet& rSet)
{
- // Iteratate over all items.
+ // Iterate over all items.
SfxWhichIter aIter (rSet);
sal_uInt16 nWhich = aIter.FirstWhich();
while (nWhich)
@@ -556,7 +556,7 @@ void SlotManager::GetMenuState (SfxItemSet& rSet)
}
else
{
- // check if the object is in edit, than its temporarely not empty
+ // check if the object is in edit, than its temporarily not empty
SdrTextObj* pTextObj = dynamic_cast< SdrTextObj* >( pObj );
if( pTextObj )
{
@@ -600,7 +600,7 @@ void SlotManager::GetMenuState (SfxItemSet& rSet)
rSet.DisableItem (SID_SUMMARY_PAGE);
}
- // Starten der Praesentation moeglich?
+ // starting of presentation possible?
if( SFX_ITEM_AVAILABLE == rSet.GetItemState( SID_PRESENTATION ) ||
SFX_ITEM_AVAILABLE == rSet.GetItemState( SID_REHEARSE_TIMINGS ) )
{
@@ -694,7 +694,7 @@ void SlotManager::GetClipboardState ( SfxItemSet& rSet)
if (rSet.GetItemState(SID_PASTE) == SFX_ITEM_AVAILABLE
|| rSet.GetItemState(SID_PASTE_SPECIAL) == SFX_ITEM_AVAILABLE)
{
- // Keine eigenen Clipboard-Daten?
+ // no own clipboard data?
if ( !pTransferClip || !pTransferClip->GetDocShell() )
{
rSet.DisableItem(SID_PASTE);
@@ -811,7 +811,7 @@ void SlotManager::GetClipboardState ( SfxItemSet& rSet)
void SlotManager::GetStatusBarState (SfxItemSet& rSet)
{
- // Seitenanzeige und Layout
+ // page view and layout
SdPage* pPage = NULL;
SdPage* pFirstPage = NULL;
sal_uInt16 nFirstPage;