• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/gettext-0.17/gettext-tools/misc/

Lines Matching refs:translated

703 (defvar po-translated-counter)
805 ["Next translated" po-next-translated-entry
807 '(:help "Jump to next translated entry"))]
825 ["Previous translated" po-previous-translated-entry
827 '(:help "Jump to previous translated entry"))]
1104 (define-key po-mode-map "t" 'po-next-translated-entry)
1117 (define-key po-mode-map "T" 'po-previous-translated-entry)
1173 (make-local-variable 'po-translated-counter)
1235 (concat (format "%dt" po-translated-counter)
1248 ((eq po-entry-type 'translated) 'po-translated-counter)
1271 (setq po-translated-counter 0
1301 (t (setq po-translated-counter (1+ po-translated-counter))))
1310 (setq po-translated-counter (- po-translated-counter po-fuzzy-counter)))
1316 Position %d/%d; %d translated, %d fuzzy, %d untranslated, %d obsolete")
1317 position total po-translated-counter po-fuzzy-counter
1413 untranslated or translated."
1490 'translated))))
1734 (defun po-next-translated-entry ()
1735 "Find the next translated entry, wrapping around if necessary."
1737 (if (= po-translated-counter 0)
1741 (while (not (eq po-entry-type 'translated))
1745 (defun po-previous-translated-entry ()
1746 "Find the previous translated entry, wrapping around if necessary."
1748 (if (= po-translated-counter 0)
1752 (while (not (eq po-entry-type 'translated))
1762 Plain translated entries are always disregarded unless there are
1770 ;; All entries are plain translated. Next entry will do, or
1775 ;; If over a translated entry, look for an untranslated one first.
1777 (let ((goal (if (eq po-entry-type 'translated)
1989 (cond ((eq po-entry-type 'translated)
2283 (eq po-entry-type 'translated))