Posted by Rob Loach on September 19, 2008 at 5:06pm
10 followers
Issue Summary
This patch adds much needed pirate-isms into Drupal, yar. So far it only includes two changes....
- Replaces instances of "you" with "yar".
- Replaces "Administer" with "Administarrrrr, avast".
Here is a screenshot. I believe there is much more we can improve with bringing Pirate into Drupal core. Ideas and patches welcome.............
| Attachment | Size | Status | Test result | Operations |
|---|---|---|---|---|
| eye.patch | 502.36 KB | Idle | Failed: Failed to apply patch. | View details | Re-test |
| eyepatch.png | 72.49 KB | Ignored: Check issue status. | None | None |
Comments
#1
Thanks for taking the initiative on this much needed feature Rob. After reviewing the patch I have a few comments:
Other than that, this is looking great.
#2
How could the patch ever be named more eloquently? Yarrrrrr!
#3
Lol, matey! :)
#4
Postponed to next year ... ;-)
#5
I was too excited to wait another day. And October 15th is coming soon!
#6
The last submitted patch failed testing.
#7
We have removed msot of those words from the interface, why not come up with new names for the categories for Configratuon & Modules?
#8
* the installer feels much more seafarin'
* we now have arrrrticles
* form_set_error adds ", ye scurvy dog!"
* That's captain, ye lubber, not "administrator."
#9
The last submitted patch failed testing.
#10
Failed to apply? Try this one, ye scurvy lubber.
#11
Avast!
#12
The last submitted patch failed testing.
#13
Sorry, to late for Drupal 7 - lets make this more awsome so it can get into Drupal 8.
#14
I really hope the patch will not really get in Drupal 8.
#15
/me thinks kiamlaluno lost his sense of humor.
#16
Avast, ye scurvy lubbers! Drupal 8? Get out the grog and pour it down Dries until he commits it to 7! Yarr!
#17
Arrr, horrible issue be needed t' fixed. A pence for an old man o'de sea?
#18
Please have another time to joke.
#19
#20
Guys. Put the following into http://drupal.org/project/pirate
<?php
function pirate_element_info_alter(&$types) {
foreach ($types as $type => &$info) {
if ($type != 'ajax') {
$info['#post_render'][] = 'pirate_element_post_render';
}
}
}
function pirate_element_post_render($string, $element) {
$string = strtr($string, array(
'you' => 'yarr',
// ...
));
return $string;
}
?>
#21
See #559084: Release Drupal 7 version of Pirate