diff --git a/lang/en_us.php b/lang/en_us.php
index aa5ff07..1c466ea 100644
--- a/lang/en_us.php
+++ b/lang/en_us.php
@@ -84,5 +84,6 @@ define("STRINGS", [
"cloning list" => "Copying {olist} {nlist}",
"editing list" => "Editing {list}",
"addresses" => "Addresses",
- "theme" => "Theme"
+ "theme" => "Theme",
+ "format" => "Format",
]);
\ No newline at end of file
diff --git a/lib/getpubtable.php b/lib/getpubtable.php
index e43cf5c..4352310 100644
--- a/lib/getpubtable.php
+++ b/lib/getpubtable.php
@@ -107,7 +107,8 @@ $out['recordsFiltered'] = $recordsFiltered;
$usercache = [];
for ($i = 0; $i < count($pubs); $i++) {
if ($pubs[$i]["uid"] == $_SESSION['uid']) {
- $pubs[$i]["editbtn"] = ' ' . lang("edit", false) . '';
+ $pubs[$i]["editbtn"] = ' ' . lang("edit", false) . '';
+ $pubs[$i]["editbtn"] .= ' ' . lang("format", false) . '';
} else {
$pubs[$i]["editbtn"] = ' ' . lang("view", false) . '';
}