mirror of
https://github.com/friendica/friendica
synced 2024-11-20 08:23:41 +00:00
rename "file as" to "save to folder"
This commit is contained in:
parent
6f761e9d59
commit
bcc5801608
3 changed files with 4 additions and 4 deletions
|
@ -93,7 +93,7 @@ function fileas_widget($baseurl,$selected = '') {
|
||||||
}
|
}
|
||||||
|
|
||||||
return replace_macros(get_markup_template('fileas_widget.tpl'),array(
|
return replace_macros(get_markup_template('fileas_widget.tpl'),array(
|
||||||
'$title' => t('File Selections'),
|
'$title' => t('Saved Folders'),
|
||||||
'$desc' => '',
|
'$desc' => '',
|
||||||
'$sel_all' => (($selected == '') ? 'selected' : ''),
|
'$sel_all' => (($selected == '') ? 'selected' : ''),
|
||||||
'$all' => t('Everything'),
|
'$all' => t('Everything'),
|
||||||
|
|
|
@ -595,7 +595,7 @@ function conversation(&$a, $items, $mode, $update, $preview = false) {
|
||||||
'classtagger' => "",
|
'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:"),
|
'$vidurl' => t("Please enter a video link/URL:"),
|
||||||
'$audurl' => t("Please enter an audio link/URL:"),
|
'$audurl' => t("Please enter an audio link/URL:"),
|
||||||
'$term' => t('Tag term:'),
|
'$term' => t('Tag term:'),
|
||||||
'$fileas' => t('File as:'),
|
'$fileas' => t('Save to Folder:'),
|
||||||
'$whereareu' => t('Where are you right now?')
|
'$whereareu' => t('Where are you right now?')
|
||||||
));
|
));
|
||||||
|
|
||||||
|
|
|
@ -25,7 +25,7 @@ function filer_content(&$a) {
|
||||||
$filetags = explode("][", trim($filetags,"[]"));
|
$filetags = explode("][", trim($filetags,"[]"));
|
||||||
$tpl = get_markup_template("filer_dialog.tpl");
|
$tpl = get_markup_template("filer_dialog.tpl");
|
||||||
$o = replace_macros($tpl, array(
|
$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'),
|
'$submit' => t('Save'),
|
||||||
));
|
));
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue