diff options
Diffstat (limited to 'icon_browser.php')
| -rwxr-xr-x | icon_browser.php | 126 |
1 files changed, 96 insertions, 30 deletions
diff --git a/icon_browser.php b/icon_browser.php index 9c6bda9..68d5a5b 100755 --- a/icon_browser.php +++ b/icon_browser.php @@ -21,36 +21,102 @@ if( !$gBitUser->isRegistered() ) { } $iconUsage = [ - "dialog-ok" => "Success / Accept", - "document-open" => "Import", - "document-properties" => "Configuration", - "document-save-as" => "Export", - "edit-copy" => "Copy", - "edit-delete" => "Delete", - "go-down" => "Navigate down", - "go-home" => "Home", - "go-next" => "Navigate right / next", - "go-previous" => "Navigate left / previous", - "go-up" => "Navigate up", - "help-contents" => "Help", - "insert-object" => "Insert", - "mail-forward" => "Mail send", - "view-sort-ascending" => "All things sorting", - "view-sort-descending" => "All things sorting", - "window-close" => "Close window", - "accessories-text-editor" => "Edit", - "applications-accessories" => "Plugin", - "preferences-system" => "bitweaver administration", - "emblem-default" => "Current selection", - "emblem-downloads" => "Download", - "emblem-favorite" => "Favorite", - "emblem-readonly" => "Extra permissions set / Previously used as locked", - "emblem-shared" => "No permissions set or unlocked", - "x-office-document" => "Note", - "x-office-presentation" => "Slideshow", - "folder" => "Folder", - "dialog-error" => "Error", - "dialog-information" => "Information", + // Navigation + "go-next" => "Next / navigate right / sort indicator", + "go-previous" => "Previous / back / navigate left", + "go-home" => "Home", + "go-up" => "Move up / navigate up", + "go-down" => "Move down / navigate down", + "go-first" => "First page", + "go-last" => "Last page", + "view-sort-ascending" => "Sort", + "view-refresh" => "Refresh", + "zoom-in" => "Zoom in / magnify", + // Edit actions + "edit-delete" => "Delete / remove", + "document-properties" => "Edit item", + "list-add" => "Add / new item", + "list-remove" => "Remove item", + "edit-find" => "Search / find", + "edit-undo" => "Undo", + "edit-clear" => "Clear / recycle", + "edit-cut" => "Cut / leave", + "accessories-text-editor" => "Edit text / pencil", + "document-print" => "Print", + "document-save" => "Save", + // Files and content + "text-x-generic" => "File / list / document", + "image-x-generic" => "Image / picture", + "folder-open" => "Open folder", + "folder" => "Folder", + "insert-object" => "Insert object", + // Dialogs and status + "dialog-ok" => "Success / accepted", + "dialog-warning" => "Warning", + "dialog-error" => "Error", + "dialog-information" => "Information / announcement", + "dialog-cancel" => "Cancel", + "process-stop" => "Stop / cancel / disable", + "emblem-important" => "Required / flagged / asterisk", + // Communication + "internet-mail" => "Email / envelope / inbox", + "internet-group-chat" => "Comment / discussion", + "mail-attachment" => "Attachment / paperclip", + "network-transmit" => "Upload / send / RSS feed", + "network-receive" => "Download", + // Auth and permissions + "lock" => "Lock / key / permissions", + "emblem-readonly" => "Hidden / read-only", + "emblem-unreadable" => "Visible / show", + // Users + "user-desktop" => "User", + "user-home" => "User home", + "system-users" => "User group / users", + "system-log-out" => "Sign out", + "preferences-system-network-proxy" => "Telephone / contact", + // Emblems + "emblem-favorite" => "Bookmark / tag / favourite", + "emblem-shared" => "Shared / unlocked", + "emblem-symbolic-link" => "Link", + "emblem-downloads" => "Download emblem", + "emblem-photos" => "Photos emblem", + // Media + "camera-photo" => "Camera / photo", + "camera-video" => "Video / film", + "media-playback-pause" => "Pause", + "media-playback-stop" => "Stop", + "media-skip-backward" => "Skip to start", + // System + "preferences-system" => "Settings / administration", + "drive-harddisk" => "Hard drive / disk quota", + "package-x-generic" => "Package / shopping cart / box", + "help-browser" => "Help / documentation", + "config-language" => "Language / translate", + "applications-accessories" => "Plugin / layers", + "bookmark-new" => "Bookmark", + "appointment" => "Clock / time / history", + // Faces + "face-smile" => "Positive / happy", + "face-sad" => "Negative / sad", + // Weather + "weather-clear-night" => "Stop monitoring / night mode", + // Collapsed/expanded tree nodes + "collapsed" => "Collapsed tree node", + "expanded" => "Expanded tree node", + // App-specific (installer / admin) + "bitweaver" => "Bitweaver", + "adodb" => "ADOdb", + "smarty" => "Smarty", + "firebird" => "Firebird", + "php" => "PHP", + "pear" => "PEAR", + "mysql" => "MySQL", + "postgresql" => "PostgreSQL", + "oracle" => "Oracle", + "htmlpurifier" => "HTMLPurifier", + "google-favicon" => "Google", + "pdf" => "PDF", + "silhouette" => "Anonymous / silhouette user", ]; $gBitSmarty->assign( 'iconUsage', $iconUsage ); |
