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

690 ;; start of keyword lines are START-OF-MSGID and START-OF-MSGSTR.
936 ["Prefer keyword" (po-select-mark-and-mark '(nil)) t]
939 ["Mark with keyword" po-select-mark-and-mark t])
1027 (defvar po-msgstr-idx-keyword-regexp
1029 "Regexp matching an indexed msgstr keyword, whether obsolete or not.")
1037 ;; ("^\\(msgctxt \\|msgid \\|msgstr \\)?\"\\|\"$" . font-lock-keyword-face)
1041 . font-lock-keyword-face)
1061 ;; ("^\\(msgid\\|msgstr\\) *\"" nil keyword)
1062 ;; ("^\"\\|\"$" nil keyword))))
2466 STRING is the full quoted msgid field, including the 'msgid' keyword. When
2771 (defun po-mark-found-string (keyword)
2785 (apply po-mark-string-function start end keyword nil))
2806 keyword for subsequent commands, also added to possible completions."
2809 (let ((keyword (list (read-from-minibuffer (_"Keyword: ")))))
2810 (setq po-keywords (cons keyword (delete keyword po-keywords))))
2813 (keyword (completing-read (format (_"Mark with keywoard? [%s] ")
2816 (if (string-equal keyword "") (setq keyword default))
2817 (po-mark-found-string keyword))))
2846 (defun po-mark-unknown-string (start end keyword)
2876 ;; Check before string either for underline, or for keyword
2886 (let ((end-keyword (point)))
2889 (point) end-keyword))
2897 (defun po-mark-awk-string (start end keyword)
2900 (if (string-equal keyword "_")
2909 (insert keyword "("))))
2947 (defun po-mark-bash-string (start end keyword)
3007 ;; Check before string for keyword and opening parenthesis.
3014 (let ((end-keyword (point)))
3017 end-keyword))
3032 (defun po-mark-c-string (start end keyword)
3039 (insert keyword)
3040 (or (string-equal keyword "_") (insert " "))
3065 ;; Check before string for keyword and opening parenthesis.
3068 (let ((end-keyword (point)))
3072 end-keyword))
3083 (defun po-mark-emacs-lisp-string (start end keyword)
3090 (insert "(" keyword)
3091 (or (string-equal keyword "_") (insert " "))))
3126 ;; Isolate the keyword which precedes string.
3129 (let ((end-keyword (point)))
3132 end-keyword))
3206 (defun po-mark-python-string (start end keyword)
3210 (cond ((string-equal keyword ".")
3221 (insert keyword "(")))))