Home | History | Annotate | Download | only in misc

Lines Matching refs:fuzzy

105 (defcustom po-auto-fuzzy-on-edit nil
106 "*Automatically mark entries fuzzy when being edited."
111 "*Automatically select some new entry while making an entry not fuzzy."
127 #, fuzzy
605 (defvar po-fuzzy-counter)
672 Moving around f F Fuzzy ?, h This help
678 TAB Remove fuzzy mark k K Kill to E Edit out full
679 DEL Fuzzy or fade out w W Copy to Q Forceful quit
709 ["Next fuzzy" po-next-fuzzy-entry
711 '(:help "Jump to next fuzzy entry"))]
729 ["Previous fuzzy" po-previous-fuzzy-entry
731 '(:help "Jump to previous fuzzy entry"))]
798 ["Remove fuzzy mark" po-unfuzzy
800 '(:help "Remove \"#, fuzzy\""))]
801 ["Fuzzy or fade out" po-fade-out-entry
803 '(:help "Set current entry fuzzy, or if already fuzzy delete it"))]
988 (define-key po-mode-map "f" 'po-next-fuzzy-entry)
1007 (define-key po-mode-map "F" 'po-previous-fuzzy-entry)
1066 (make-local-variable 'po-fuzzy-counter)
1128 (if (> po-fuzzy-counter 0)
1129 (format "+%df" po-fuzzy-counter))
1139 ((eq po-entry-type 'fuzzy) 'po-fuzzy-counter)
1157 (defvar po-fuzzy-regexp)
1164 po-fuzzy-counter 0
1196 ;; Make another pass just for the fuzzy entries, kind of kludgey.
1197 ;; FIXME: Counts will be wrong if untranslated entries are fuzzy, yet
1200 (while (re-search-forward po-fuzzy-regexp nil t)
1201 (setq po-fuzzy-counter (1+ po-fuzzy-counter)))
1202 (setq po-translated-counter (- po-translated-counter po-fuzzy-counter)))
1208 Position %d/%d; %d translated, %d fuzzy, %d untranslated, %d obsolete")
1209 position total po-translated-counter po-fuzzy-counter
1302 of type interpretation is: obsolete, fuzzy, untranslated or translated."
1361 (if (re-search-forward po-fuzzy-regexp po-start-of-msgid t)
1362 'fuzzy
1579 ;; Fuzzy entries.
1581 (defvar po-fuzzy-regexp "^#[,!] .*fuzzy"
1585 (defun po-next-fuzzy-entry ()
1586 "Find the next fuzzy entry, wrapping around if necessary."
1588 (po-next-entry-with-regexp po-fuzzy-regexp t))
1590 (defun po-previous-fuzzy-entry ()
1591 "Find the next fuzzy entry, wrapping around if necessary."
1593 (po-previous-entry-with-regexp po-fuzzy-regexp t))
1596 "Remove the fuzzy attribute for the current entry."
1599 (cond ((eq po-entry-type 'fuzzy)
1601 (po-delete-attribute "fuzzy")
1637 going from untranslated to fuzzy, and from fuzzy to obsolete.
1644 (= po-fuzzy-counter 0)
1657 ;; Find an untranslated entry, or wrap up for a fuzzy entry.
1665 (setq goal 'fuzzy)))
1666 ;; Find a fuzzy entry, or wrap up for an obsolete entry.
1667 (if (eq goal 'fuzzy)
1668 (if (and (> po-fuzzy-counter 0)
1669 (re-search-forward po-fuzzy-regexp nil t))
1862 "Mark an active entry as fuzzy; obsolete a fuzzy or untranslated entry;
1869 (po-add-attribute "fuzzy")
1873 ((or (eq po-entry-type 'fuzzy)
2168 po-auto-fuzzy-on-edit
2172 (po-add-attribute "fuzzy")
3274 (or (zerop po-fuzzy-counter)
3276 (format (_"%d entries are still fuzzy, include anyway? ")
3277 po-fuzzy-counter)))
3310 (> po-fuzzy-counter 0)
3339 (> po-fuzzy-counter 0)