https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=37762

--- Comment #50 from Jonathan Druart <[email protected]> ---
components/ILL/ISO18626MessageDisplay.vue
38                     {{ new Date(message.timestamp).toLocaleString() }}
Should certainly use format_date/$date (like everywhere else in .vue file)

Regarding the translatability patch, there are more to fix:
components/ILL/ProgressRequest.vue
7                 This request's status is
11             <p>Below are the possible actions in order to progress it.</p>
54             <p>This request has been completed. Nothing to do here.</p>

components/ILL/ISO18626MessageDisplay.vue
 13                 <th>Type</th>
 14                 <th>Information</th>
 15                 <th>Timestamp</th>
 16                 <th>Content</th>
 46                         &nbsp; View message

components/ILL/SupplyingResource.vue
 932                 { name: "Request details", pane: 1 },
 933                 { name: "ISO18626 Messages", pane: 1 },
 934                 { name: "Circulation information", pane: 2 },
 935                 { name: "Specified by the requesting agency", pane: 2 },

Not even talking about those ones that feel wrong:
32                     {{ message.type }}
35                     {{ getMessageData(message.content) }}

96                     message_data = "Reason: " + message_data;
99                 message_data = "Action: " + message_data;


Also caught this:
122                     placeholder: $__(
123                        
"http://localhost:8081/api/v1/contrib/iso18626/supplying_agency_message";
124                     ),


components/ModuleDashboard/Widgets/ILLRequests.vue (script part not needed)
16                     {{ visitOldILLModuleText }}
45         const visitOldILLModuleText = $__(
46             "Visit ILL requests (previously ILL Module)"
47         );
195             visitOldILLModuleText,

import statements use rel paths, should have used '@koha-vue'

-- 
You are receiving this mail because:
You are watching all bug changes.
_______________________________________________
Koha-bugs mailing list
[email protected]
https://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/

Reply via email to