+2001-08-23 Karl Eichwalder <ke@suse.de>
+
+ * po-mode.el (po-next-translated-entry): Actually search for
+ 'translated', not 'untranslated'.
+
2001-11-01 Karl Eichwalder <ke@suse.de>
* po-mode.el (po-msgfmt-version-check): Also accept pre-release
;; Translated entries.
(defun po-next-translated-entry ()
- "Find the next untranslated entry, wrapping around if necessary."
+ "Find the next translated entry, wrapping around if necessary."
(interactive)
(if (= po-translated-counter 0)
(error (_"There is no such entry"))
- (po-next-entry-with-regexp po-untranslated-regexp t)
+ (po-next-entry-with-regexp po-any-msgstr-regexp t)
(po-find-span-of-entry)
(while (not (eq po-entry-type 'translated))
(po-next-entry-with-regexp po-any-msgstr-regexp t)
(po-find-span-of-entry))))
(defun po-previous-translated-entry ()
- "Find the previous untranslated entry, wrapping around if necessary."
+ "Find the previous translated entry, wrapping around if necessary."
(interactive)
(if (= po-translated-counter 0)
(error (_"There is no such entry"))
(po-find-span-of-entry)
(while (not (eq po-entry-type 'translated))
(po-previous-entry-with-regexp po-untranslated-regexp t)
- (po-find-span-of-entry))))
+ (po-find-span-of-entry))))
;; Auto-selection feature.