Skip to content

Commit

Permalink
nicer arch display
Browse files Browse the repository at this point in the history
  • Loading branch information
ofirgalcon committed Jan 26, 2021
1 parent 5e70433 commit d6456fe
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion locales/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"signed_by": "Signed By",
"obtained_from": "Obtained From",
"last_modified": "Last Modified",
"runtime_environment": "Runtime Environment",
"runtime_environment": "Architecture",
"has64bit": "64-Bit",
"mac_app_store": "Mac App Store",
"identified_developer": "Identified Developer",
Expand Down
2 changes: 1 addition & 1 deletion views/applications_tab.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
<td><?php echo str_replace(array('unknown','mac_app_store','apple','identified_developer'), array('Unknown','Mac App Store','Apple','Identified Developer'), $item->obtained_from); ?></td>
<td><?php echo date("Y-m-d H:i:s", $item->last_modified); ?></td>
<td><?php echo str_replace(array('1','0'), array('Yes','No'), $item->has64bit); ?></td>
<td><?php echo $item->runtime_environment; ?></td>
<td><?php echo str_replace(array('arch_i64','arch_i32_i64','arch_i32','arch_arm_i64','arch_ios'), array('Intel','Intel','Intel','Universal','Silicon'), $item->runtime_environment); ?></td>
<td><?php echo $item->path; ?></td>
<td><?php echo $item->info; ?></td>
</tr>
Expand Down

0 comments on commit d6456fe

Please sign in to comment.