• 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:fuzzy

119 (defcustom po-auto-fuzzy-on-edit nil
120 "*Automatically mark entries fuzzy when being edited."
125 "*Automatically select some new entry while making an entry not fuzzy."
141 #, fuzzy
704 (defvar po-fuzzy-counter)
777 TAB Remove fuzzy mark k K Kill to E Edit out full
808 ["Next fuzzy" po-next-fuzzy-entry
810 '(:help "Jump to next fuzzy entry"))]
828 ["Previous fuzzy" po-previous-fuzzy-entry
830 '(:help "Jump to previous fuzzy entry"))]
897 ["Remove fuzzy mark" po-unfuzzy
899 '(:help "Remove \"#, fuzzy\""))]
902 '(:help "Set current entry fuzzy, or if already fuzzy delete it"))]
1093 (define-key po-mode-map "f" 'po-next-fuzzy-entry)
1112 (define-key po-mode-map "F" 'po-previous-fuzzy-entry)
1174 (make-local-variable 'po-fuzzy-counter)
1236 (if (> po-fuzzy-counter 0)
1237 (format "+%df" po-fuzzy-counter))
1247 ((eq po-entry-type 'fuzzy) 'po-fuzzy-counter)
1265 (defvar po-fuzzy-regexp)
1272 po-fuzzy-counter 0
1304 ;; Make another pass just for the fuzzy entries, kind of kludgey.
1305 ;; FIXME: Counts will be wrong if untranslated entries are fuzzy, yet
1308 (while (re-search-forward po-fuzzy-regexp nil t)
1309 (setq po-fuzzy-counter (1+ po-fuzzy-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
1412 values. Decreasing priority of type interpretation is: obsolete, fuzzy,
1485 (if (re-search-forward po-fuzzy-regexp po-start-of-msgctxt t)
1486 'fuzzy
1705 (defvar po-fuzzy-regexp "^#, .*fuzzy"
1709 (defun po-next-fuzzy-entry ()
1710 "Find the next fuzzy entry, wrapping around if necessary."
1712 (po-next-entry-with-regexp po-fuzzy-regexp t))
1714 (defun po-previous-fuzzy-entry ()
1715 "Find the next fuzzy entry, wrapping around if necessary."
1717 (po-previous-entry-with-regexp po-fuzzy-regexp t))
1720 "Remove the fuzzy attribute for the current entry."
1723 (cond ((eq po-entry-type 'fuzzy)
1725 (po-delete-attribute "fuzzy")
1761 going from untranslated to fuzzy, and from fuzzy to obsolete.
1768 (= po-fuzzy-counter 0)
1781 ;; Find an untranslated entry, or wrap up for a fuzzy entry.
1789 (setq goal 'fuzzy)))
1790 ;; Find a fuzzy entry, or wrap up for an obsolete entry.
1791 (if (eq goal 'fuzzy)
1792 (if (and (> po-fuzzy-counter 0)
1793 (re-search-forward po-fuzzy-regexp nil t))
1984 "Mark an active entry as fuzzy; obsolete a fuzzy or untranslated entry;
1991 (po-add-attribute "fuzzy")
1995 ((or (eq po-entry-type 'fuzzy)
2282 po-auto-fuzzy-on-edit
2286 (po-add-attribute "fuzzy")
3392 (or (zerop po-fuzzy-counter)
3394 (format (_"%d entries are still fuzzy, include anyway? ")
3395 po-fuzzy-counter)))
3428 (> po-fuzzy-counter 0)
3457 (> po-fuzzy-counter 0)