aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2012-03-30 02:42:36 -0700
committerfriendica <info@friendica.com>2012-03-30 02:42:36 -0700
commitbcc58016089c5e5c0e1e5e247d9253b4ac664c2c (patch)
tree9a354ce665410a71370526765d47f75bef47f8c8
parent6f761e9d59516447760806979c775a1c49353b33 (diff)
downloadvolse-hubzilla-bcc58016089c5e5c0e1e5e247d9253b4ac664c2c.tar.gz
volse-hubzilla-bcc58016089c5e5c0e1e5e247d9253b4ac664c2c.tar.bz2
volse-hubzilla-bcc58016089c5e5c0e1e5e247d9253b4ac664c2c.zip
rename "file as" to "save to folder"
-rwxr-xr-xinclude/contact_widgets.php2
-rwxr-xr-xinclude/conversation.php4
-rwxr-xr-xmod/filer.php2
3 files changed, 4 insertions, 4 deletions
diff --git a/include/contact_widgets.php b/include/contact_widgets.php
index 9d7085d20..1f70e536f 100755
--- a/include/contact_widgets.php
+++ b/include/contact_widgets.php
@@ -93,7 +93,7 @@ function fileas_widget($baseurl,$selected = '') {
}
return replace_macros(get_markup_template('fileas_widget.tpl'),array(
- '$title' => t('File Selections'),
+ '$title' => t('Saved Folders'),
'$desc' => '',
'$sel_all' => (($selected == '') ? 'selected' : ''),
'$all' => t('Everything'),
diff --git a/include/conversation.php b/include/conversation.php
index 402713b32..a9fb807ad 100755
--- a/include/conversation.php
+++ b/include/conversation.php
@@ -595,7 +595,7 @@ function conversation(&$a, $items, $mode, $update, $preview = false) {
'classtagger' => "",
);
}
- $filer = t("file as");
+ $filer = t("save to folder");
}
@@ -915,7 +915,7 @@ function status_editor($a,$x, $notes_cid = 0, $popup=false) {
'$vidurl' => t("Please enter a video link/URL:"),
'$audurl' => t("Please enter an audio link/URL:"),
'$term' => t('Tag term:'),
- '$fileas' => t('File as:'),
+ '$fileas' => t('Save to Folder:'),
'$whereareu' => t('Where are you right now?')
));
diff --git a/mod/filer.php b/mod/filer.php
index 82537848b..3b3a37931 100755
--- a/mod/filer.php
+++ b/mod/filer.php
@@ -25,7 +25,7 @@ function filer_content(&$a) {
$filetags = explode("][", trim($filetags,"[]"));
$tpl = get_markup_template("filer_dialog.tpl");
$o = replace_macros($tpl, array(
- '$field' => array('term', t("File as:"), '', '', $filetags, t('- select -')),
+ '$field' => array('term', t("Save to Folder:"), '', '', $filetags, t('- select -')),
'$submit' => t('Save'),
));