You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Translators: For a shape within a Powerpoint Slide, this is the distance in points from the shape's left edge to the slide's left edge
648
-
onSlideList.append(_("{distance:.3g} points from left slide edge").format(distance=leftDistance))
679
+
onSlideList.append(ngettext(
680
+
# Translators: For a shape within a Powerpoint Slide, this is the distance in points from the shape's
681
+
# left edge to the slide's left edge
682
+
"{distance:.3g} point from left slide edge",
683
+
"{distance:.3g} points from left slide edge",
684
+
leftDistance,
685
+
).format(distance=leftDistance))
649
686
else:
650
-
# Translators: For a shape too far off the left edge of a Powerpoint Slide, this is the distance in points from the shape's left edge (off the slide) to the slide's left edge (where the slide starts)
651
-
offSlideList.append(_("Off left slide edge by {distance:.3g} points").format(distance=0-leftDistance))
687
+
offSlideList.append(ngettext(
688
+
# Translators: For a shape too far off the left edge of a Powerpoint Slide, this is the distance in
689
+
# points from the shape's left edge (off the slide) to the slide's left edge (where the slide starts)
690
+
"Off left slide edge by {distance:.3g} point",
691
+
"Off left slide edge by {distance:.3g} points",
692
+
-leftDistance,
693
+
).format(distance=-leftDistance))
652
694
iftop:
653
695
iftopDistance>=0:
654
-
# Translators: For a shape within a Powerpoint Slide, this is the distance in points from the shape's top edge to the slide's top edge
655
-
onSlideList.append(_("{distance:.3g} points from top slide edge").format(distance=topDistance))
696
+
onSlideList.append(ngettext(
697
+
# Translators: For a shape within a Powerpoint Slide, this is the distance in points from the shape's
698
+
# top edge to the slide's top edge
699
+
"{distance:.3g} point from top slide edge",
700
+
"{distance:.3g} points from top slide edge",
701
+
topDistance,
702
+
).format(distance=topDistance))
656
703
else:
657
-
# Translators: For a shape too far off the top edge of a Powerpoint Slide, this is the distance in points from the shape's top edge (off the slide) to the slide's top edge (where the slide starts)
658
-
offSlideList.append(_("Off top slide edge by {distance:.3g} points").format(distance=0-topDistance))
704
+
offSlideList.append(ngettext(
705
+
# Translators: For a shape too far off the top edge of a Powerpoint Slide, this is the distance in
706
+
# points from the shape's top edge (off the slide) to the slide's top edge (where the slide starts)
707
+
"Off top slide edge by {distance:.3g} point",
708
+
"Off top slide edge by {distance:.3g} points",
709
+
-topDistance,
710
+
).format(distance=-topDistance))
659
711
ifright:
660
712
ifrightDistance>=0:
661
-
# Translators: For a shape within a Powerpoint Slide, this is the distance in points from the shape's right edge to the slide's right edge
662
-
onSlideList.append(_("{distance:.3g} points from right slide edge").format(distance=rightDistance))
713
+
onSlideList.append(ngettext(
714
+
# Translators: For a shape within a Powerpoint Slide, this is the distance in points from the shape's
715
+
# right edge to the slide's right edge
716
+
"{distance:.3g} point from right slide edge",
717
+
"{distance:.3g} points from right slide edge",
718
+
rightDistance,
719
+
).format(distance=rightDistance))
663
720
else:
664
-
# Translators: For a shape too far off the right edge of a Powerpoint Slide, this is the distance in points from the shape's right edge (off the slide) to the slide's right edge (where the slide starts)
665
-
offSlideList.append(_("Off right slide edge by {distance:.3g} points").format(distance=0-rightDistance))
721
+
offSlideList.append(ngettext(
722
+
# Translators: For a shape too far off the right edge of a Powerpoint Slide, this is the distance in
723
+
# points from the shape's right edge (off the slide) to the slide's right edge (where the slide starts)
724
+
"Off right slide edge by {distance:.3g} point",
725
+
"Off right slide edge by {distance:.3g} points",
726
+
-rightDistance,
727
+
).format(distance=-rightDistance))
666
728
ifbottom:
667
729
ifbottomDistance>=0:
668
-
# Translators: For a shape within a Powerpoint Slide, this is the distance in points from the shape's bottom edge to the slide's bottom edge
669
-
onSlideList.append(_("{distance:.3g} points from bottom slide edge").format(distance=bottomDistance))
730
+
onSlideList.append(ngettext(
731
+
# Translators: For a shape within a Powerpoint Slide, this is the distance in points from the shape's
732
+
# bottom edge to the slide's bottom edge
733
+
"{distance:.3g} point from bottom slide edge",
734
+
"{distance:.3g} points from bottom slide edge",
735
+
bottomDistance,
736
+
).format(distance=bottomDistance))
670
737
else:
671
-
# Translators: For a shape too far off the bottom edge of a Powerpoint Slide, this is the distance in points from the shape's bottom edge (off the slide) to the slide's bottom edge (where the slide starts)
672
-
offSlideList.append(_("Off bottom slide edge by {distance:.3g} points").format(distance=0-bottomDistance))
738
+
offSlideList.append(ngettext(
739
+
# Translators: For a shape too far off the bottom edge of a Powerpoint Slide, this is the distance in
740
+
# points from the shape's bottom edge (off the slide) to the slide's bottom edge (where the slide starts)
# Translators: If the number of characters on the clipboard is greater than about 1000, it reports this message and gives number of characters on the clipboard.
3460
-
# Example output: The clipboard contains a large portion of text. It is 2300 characters long.
3461
-
ui.message(_("The clipboard contains a large portion of text. It is %s characters long") %len(text))
3460
+
ui.message(ngettext(
3461
+
# Translators: If the number of characters on the clipboard is greater than about 1000, it reports this message and gives number of characters on the clipboard.
3462
+
# Example output: The clipboard contains a large portion of text. It is 2300 characters long.
3463
+
"The clipboard contains a large portion of text. It is %s character long",
3464
+
"The clipboard contains a large portion of text. It is %s characters long",
0 commit comments