"how do you do")); $c = t('Test string 3'); $d = t("Special\ncharacters"); $e = t('Special\ncharacters'); $f = t("Embedded $variable"); $g = t('Embedded $variable'); $h = t("more \$special characters"); $i = t('even more \$special characters'); $j = t("Mixed 'quote' \"marks\""); $k = t('Mixed "quote" \'marks\''); $l = t('This is some repeating text'); $m = t("This is some repeating text"); $n = t(embedded_function_call()); $o = format_plural($days, "one day", "@count days"); $p = format_plural(embedded_function_call($count), "one day", "@count days"); function embedded_function_call($dummy) { return 12; } function potxcli_perm() { return array("access potx data", 'administer potx data'); } function potxcli_help($section = 'default') { watchdog('help', t('Help called')); return t('This is some help'); } function potxcli_node_types() { return array("extractor-cooltype", "extractor-evencooler"); }