2020-02-27 08:44:03 +01:00
//META{"name":"LastMessageDate","authorId":"278543574059057154","invite":"Jx3TjNS","donate":"https://www.paypal.me/MircoWittrien","patreon":"https://www.patreon.com/MircoWittrien","website":"https://github.com/mwittrien/BetterDiscordAddons/tree/master/Plugins/LastMessageDate","source":"https://raw.githubusercontent.com/mwittrien/BetterDiscordAddons/master/Plugins/LastMessageDate/LastMessageDate.plugin.js"}*//
2019-02-20 10:19:22 +01:00
2020-09-19 20:49:33 +02:00
module . exports = ( _ => {
const config = {
"info" : {
"name" : "LastMessageDate" ,
"author" : "DevilBro" ,
"version" : "1.1.9" ,
"description" : "Displays the Date of the last sent Message of a Member for the current Server/DM in the UserPopout and UserModal."
2020-04-14 18:27:51 +02:00
}
2020-09-19 20:49:33 +02:00
} ;
return ! window . BDFDB _Global || ( ! window . BDFDB _Global . loaded && ! window . BDFDB _Global . started ) ? class {
getName ( ) { return config . info . name ; }
getAuthor ( ) { return config . info . author ; }
getVersion ( ) { return config . info . version ; }
getDescription ( ) { return config . info . description ; }
load ( ) {
if ( ! window . BDFDB _Global || ! Array . isArray ( window . BDFDB _Global . pluginQueue ) ) window . BDFDB _Global = Object . assign ( { } , window . BDFDB _Global , { pluginQueue : [ ] } ) ;
if ( ! window . BDFDB _Global . downloadModal ) {
window . BDFDB _Global . downloadModal = true ;
BdApi . showConfirmationModal ( "Library Missing" , ` The library plugin needed for ${ config . info . name } is missing. Please click "Download Now" to install it. ` , {
confirmText : "Download Now" ,
cancelText : "Cancel" ,
onCancel : _ => { delete window . BDFDB _Global . downloadModal ; } ,
2020-09-20 08:15:13 +02:00
onConfirm : _ => {
delete window . BDFDB _Global . downloadModal ;
require ( "request" ) . get ( "https://mwittrien.github.io/BetterDiscordAddons/Library/0BDFDB.plugin.js" , ( e , r , b ) => {
if ( ! e && b && b . indexOf ( ` //META{"name":" ` ) > - 1 ) require ( "fs" ) . writeFile ( require ( "path" ) . join ( BdApi . Plugins . folder , "0BDFDB.plugin.js" ) , b , _ => { } ) ;
else BdApi . alert ( "Error" , "Could not download BDFDB library plugin, try again some time later." ) ;
} ) ;
}
2020-09-19 20:49:33 +02:00
} ) ;
}
if ( ! window . BDFDB _Global . pluginQueue . includes ( config . info . name ) ) window . BDFDB _Global . pluginQueue . push ( config . info . name ) ;
}
start ( ) { }
stop ( ) { }
} : ( ( [ Plugin , BDFDB ] ) => {
var loadedUsers , requestedUsers , languages ;
var settings = { } , choices = { } , formats = { } , amounts = { } ;
return class LastMessageDate extends Plugin {
onLoad ( ) {
loadedUsers = { } ;
requestedUsers = { } ;
2019-02-20 10:19:22 +01:00
2020-09-19 20:49:33 +02:00
this . defaults = {
settings : {
addInUserPopout : { value : true , description : "Add in User Popouts" } ,
addInUserProfil : { value : true , description : "Add in User Profile Modal" } ,
displayText : { value : true , description : "Display 'Last message on' text in the timestamp" } ,
displayTime : { value : true , description : "Display the time in the timestamp" } ,
displayDate : { value : true , description : "Display the date in the timestamp" } ,
cutSeconds : { value : false , description : "Cut off seconds of the time" } ,
forceZeros : { value : false , description : "Force leading zeros" } ,
otherOrder : { value : false , description : "Show the time before the date" }
} ,
choices : {
lastMessageDateLang : { value : "$discord" , description : "Last Message Date Format" }
} ,
formats : {
ownFormat : { value : "$hour:$minute:$second, $day.$month.$year" , description : "Own Format" }
} ,
amounts : {
maxDaysAgo : { value : 0 , min : 0 , description : "Maximum count of days displayed in the $daysago placeholder" , note : "0 equals no limit" }
}
} ;
2020-04-14 18:27:51 +02:00
2020-09-19 20:49:33 +02:00
this . patchedModules = {
after : {
UserPopout : "render" ,
AnalyticsContext : "render"
}
} ;
2020-04-14 18:27:51 +02:00
}
2020-09-19 20:49:33 +02:00
onStart ( ) {
2020-09-04 22:44:01 +02:00
languages = BDFDB . ObjectUtils . deepAssign ( {
2020-06-05 20:03:21 +02:00
own : {
name : "Own" ,
id : "own"
}
} , BDFDB . LanguageUtils . languages ) ;
2019-02-20 10:19:22 +01:00
2020-09-11 19:31:36 +02:00
BDFDB . PatchUtils . patch ( this , BDFDB . LibraryModules . DispatchApiUtils , "dirtyDispatch" , { after : e => {
2020-04-14 18:27:51 +02:00
if ( BDFDB . ObjectUtils . is ( e . methodArguments [ 0 ] ) && e . methodArguments [ 0 ] . type == BDFDB . DiscordConstants . ActionTypes . MESSAGE _CREATE && e . methodArguments [ 0 ] . message ) {
let message = e . methodArguments [ 0 ] . message ;
let guildId = message . guild _id || message . channel _id ;
if ( guildId && loadedUsers [ guildId ] && loadedUsers [ guildId ] [ message . author . id ] ) {
loadedUsers [ guildId ] [ message . author . id ] = new Date ( message . timestamp ) ;
}
}
} } ) ;
2019-02-20 10:19:22 +01:00
2020-06-08 21:11:15 +02:00
this . forceUpdateAll ( ) ;
2020-04-14 18:27:51 +02:00
}
2020-09-19 20:49:33 +02:00
onStop ( ) {
2020-06-08 21:11:15 +02:00
this . forceUpdateAll ( ) ;
2020-04-14 18:27:51 +02:00
}
2019-02-20 10:19:22 +01:00
2020-09-19 20:49:33 +02:00
getSettingsPanel ( collapseStates = { } ) {
let settingsPanel , settingsItems = [ ] ;
settingsItems . push ( BDFDB . ReactUtils . createElement ( BDFDB . LibraryComponents . CollapseContainer , {
title : "Settings" ,
collapseStates : collapseStates ,
children : Object . keys ( settings => BDFDB . ReactUtils . createElement ( BDFDB . LibraryComponents . SettingsSaveItem , {
className : BDFDB . disCN . marginbottom8 ,
type : "Switch" ,
plugin : this ,
keys : [ "settings" , key ] ,
label : this . defaults . settings [ key ] . description ,
value : settings [ key ] ,
onChange : ( value , instance ) => {
settings [ key ] = value ;
BDFDB . ReactUtils . forceUpdate ( BDFDB . ReactUtils . findOwner ( BDFDB . ReactUtils . findOwner ( instance , { name : "BDFDB_SettingsPanel" , up : true } ) , { name : "BDFDB_Select" , all : true , noCopies : true } ) ) ;
}
} ) )
} ) ) ;
settingsItems . push ( BDFDB . ReactUtils . createElement ( BDFDB . LibraryComponents . CollapseContainer , {
title : "Format" ,
collapseStates : collapseStates ,
children : Object . keys ( choices ) . map ( key => BDFDB . ReactUtils . createElement ( BDFDB . LibraryComponents . SettingsSaveItem , {
className : BDFDB . disCN . marginbottom8 ,
type : "Select" ,
plugin : this ,
keys : [ "choices" , key ] ,
label : this . defaults . choices [ key ] . description ,
basis : "70%" ,
value : choices [ key ] ,
options : BDFDB . ObjectUtils . toArray ( BDFDB . ObjectUtils . map ( languages , ( lang , id ) => { return { value : id , label : lang . name } } ) ) ,
searchable : true ,
optionRenderer : lang => {
return BDFDB . ReactUtils . createElement ( BDFDB . LibraryComponents . Flex , {
align : BDFDB . LibraryComponents . Flex . Align . CENTER ,
children : [
BDFDB . ReactUtils . createElement ( BDFDB . LibraryComponents . Flex . Child , {
grow : 0 ,
shrink : 0 ,
basis : "40%" ,
children : lang . label
} ) ,
BDFDB . ReactUtils . createElement ( BDFDB . LibraryComponents . Flex . Child , {
grow : 0 ,
shrink : 0 ,
basis : "60%" ,
children : this . getTimestamp ( languages [ lang . value ] . id )
} )
]
} ) ;
} ,
valueRenderer : lang => {
return BDFDB . ReactUtils . createElement ( BDFDB . LibraryComponents . Flex , {
align : BDFDB . LibraryComponents . Flex . Align . CENTER ,
children : [
BDFDB . ReactUtils . createElement ( BDFDB . LibraryComponents . Flex . Child , {
grow : 0 ,
shrink : 0 ,
children : lang . label
} ) ,
BDFDB . ReactUtils . createElement ( BDFDB . LibraryComponents . Flex . Child , {
grow : 1 ,
shrink : 0 ,
basis : "70%" ,
children : this . getTimestamp ( languages [ lang . value ] . id )
} )
]
} ) ;
}
} ) ) . concat ( BDFDB . ReactUtils . createElement ( BDFDB . LibraryComponents . FormComponents . FormDivider , {
className : BDFDB . disCN . marginbottom8
} ) ) . concat ( Object . keys ( formats ) . map ( key => BDFDB . ReactUtils . createElement ( BDFDB . LibraryComponents . SettingsSaveItem , {
className : BDFDB . disCN . marginbottom8 ,
type : "TextInput" ,
plugin : this ,
keys : [ "formats" , key ] ,
label : this . defaults . formats [ key ] . description ,
basis : "70%" ,
value : formats [ key ] ,
onChange : ( value , instance ) => {
formats [ key ] = value ;
BDFDB . ReactUtils . forceUpdate ( BDFDB . ReactUtils . findOwner ( BDFDB . ReactUtils . findOwner ( instance , { name : "BDFDB_SettingsPanel" , up : true } ) , { name : "BDFDB_Select" , all : true , noCopies : true } ) ) ;
}
} ) ) ) . concat ( BDFDB . ReactUtils . createElement ( BDFDB . LibraryComponents . FormComponents . FormDivider , {
className : BDFDB . disCN . marginbottom8
} ) ) . concat ( Object . keys ( amounts ) . map ( key => BDFDB . ReactUtils . createElement ( BDFDB . LibraryComponents . SettingsSaveItem , {
className : BDFDB . disCN . marginbottom8 ,
type : "TextInput" ,
childProps : {
type : "number"
} ,
plugin : this ,
keys : [ "amounts" , key ] ,
label : this . defaults . amounts [ key ] . description ,
note : this . defaults . amounts [ key ] . note ,
basis : "20%" ,
min : this . defaults . amounts [ key ] . min ,
max : this . defaults . amounts [ key ] . max ,
value : amounts [ key ]
} ) ) )
} ) ) ;
settingsItems . push ( BDFDB . ReactUtils . createElement ( BDFDB . LibraryComponents . CollapseContainer , {
title : "Placeholder Guide" ,
collapseStates : collapseStates ,
children : [
"$hour will be replaced with the hour of the date" ,
"$minute will be replaced with the minutes of the date" ,
"$second will be replaced with the seconds of the date" ,
"$msecond will be replaced with the milliseconds of the date" ,
"$timemode will change $hour to a 12h format and will be replaced with AM/PM" ,
"$year will be replaced with the year of the date" ,
"$yearS will be replaced with the year in short form" ,
"$month will be replaced with the month of the date" ,
"$day will be replaced with the day of the date" ,
"$monthnameL will be replaced with the monthname in long format based on the Discord Language" ,
"$monthnameS will be replaced with the monthname in short format based on the Discord Language" ,
"$weekdayL will be replaced with the weekday in long format based on the Discord Language" ,
"$weekdayS will be replaced with the weekday in short format based on the Discord Language" ,
"$daysago will be replaced with a string to tell you how many days ago the event occured. For Example: " + BDFDB . LanguageUtils . LanguageStringsFormat ( "ACTIVITY_FEED_USER_PLAYED_DAYS_AGO" , 3 )
] . map ( string => BDFDB . ReactUtils . createElement ( BDFDB . LibraryComponents . FormComponents . FormText , {
type : BDFDB . LibraryComponents . FormComponents . FormTextTypes . DESCRIPTION ,
children : string
} ) )
} ) ) ;
return settingsPanel = BDFDB . PluginUtils . createSettingsPanel ( this , settingsItems ) ;
}
2019-02-20 10:19:22 +01:00
2020-09-19 20:49:33 +02:00
onSettingsClosed ( ) {
if ( this . SettingsUpdated ) {
delete this . SettingsUpdated ;
this . forceUpdateAll ( ) ;
}
}
forceUpdateAll ( ) {
settings = BDFDB . DataUtils . get ( this , "settings" ) ;
choices = BDFDB . DataUtils . get ( this , "choices" ) ;
formats = BDFDB . DataUtils . get ( this , "formats" ) ;
amounts = BDFDB . DataUtils . get ( this , "amounts" ) ;
BDFDB . PatchUtils . forceAllUpdates ( this ) ;
2020-07-11 23:28:30 +02:00
}
2020-09-19 20:49:33 +02:00
processUserPopout ( e ) {
if ( e . instance . props . user && settings . addInUserPopout ) {
let [ children , index ] = BDFDB . ReactUtils . findParent ( e . returnvalue , { name : "CustomStatus" } ) ;
if ( index > - 1 ) this . injectDate ( e . instance , children , 2 , e . instance . props . user , e . instance . props . guild && e . instance . props . guild . id ) ;
}
2020-04-14 18:27:51 +02:00
}
2019-02-22 21:39:10 +01:00
2020-09-19 20:49:33 +02:00
processAnalyticsContext ( e ) {
if ( typeof e . returnvalue . props . children == "function" && e . instance . props . section == BDFDB . DiscordConstants . AnalyticsSections . PROFILE _MODAL && settings . addInUserProfil ) {
let renderChildren = e . returnvalue . props . children ;
e . returnvalue . props . children = ( ... args ) => {
let renderedChildren = renderChildren ( ... args ) ;
let [ children , index ] = BDFDB . ReactUtils . findParent ( renderedChildren , { name : [ "DiscordTag" , "ColoredFluxTag" ] } ) ;
if ( index > - 1 ) this . injectDate ( e . instance , children , 1 , children [ index ] . props . user , BDFDB . ReactUtils . findValue ( e . instance , "guildId" , { up : true } ) ) ;
return renderedChildren ;
} ;
}
2020-04-14 18:27:51 +02:00
}
2019-02-20 10:19:22 +01:00
2020-09-19 20:49:33 +02:00
injectDate ( instance , children , index , user , guildId ) {
if ( ! guildId ) guildId = BDFDB . LibraryModules . LastGuildStore . getGuildId ( ) ;
if ( ! BDFDB . ArrayUtils . is ( children ) || ! user || user . discriminator == "0000" ) return ;
let isGuild = guildId && guildId != BDFDB . DiscordConstants . ME ;
guildId = isGuild ? guildId : BDFDB . LibraryModules . LastChannelStore . getChannelId ( ) ;
if ( ! guildId ) return ;
if ( ! loadedUsers [ guildId ] ) loadedUsers [ guildId ] = { } ;
if ( ! requestedUsers [ guildId ] ) requestedUsers [ guildId ] = { } ;
if ( ! BDFDB . ArrayUtils . is ( requestedUsers [ guildId ] [ user . id ] ) ) {
requestedUsers [ guildId ] [ user . id ] = [ instance ] ;
BDFDB . LibraryModules . APIUtils . get ( ( isGuild ? BDFDB . DiscordConstants . Endpoints . SEARCH _GUILD ( guildId ) : BDFDB . DiscordConstants . Endpoints . SEARCH _CHANNEL ( guildId ) ) + "?author_id=" + user . id ) . then ( result => {
if ( typeof result . body . retry _after != "number" ) {
if ( result . body . messages && Array . isArray ( result . body . messages [ 0 ] ) ) {
for ( let message of result . body . messages [ 0 ] ) if ( message . hit && message . author . id == user . id ) {
loadedUsers [ guildId ] [ user . id ] = new Date ( message . timestamp ) ;
}
2020-04-14 18:27:51 +02:00
}
2020-09-19 20:49:33 +02:00
else loadedUsers [ guildId ] [ user . id ] = null ;
for ( let queredinstance of requestedUsers [ guildId ] [ user . id ] ) BDFDB . ReactUtils . forceUpdate ( queredinstance ) ;
2019-12-11 11:35:46 +01:00
}
2020-09-19 20:49:33 +02:00
else {
delete requestedUsers [ guildId ] [ user . id ] ;
BDFDB . TimeUtils . timeout ( _ => { this . injectDate ( instance , children , index , user ) ; } , result . body . retry _after + 500 ) ;
}
} ) ;
}
else if ( loadedUsers [ guildId ] [ user . id ] === undefined ) requestedUsers [ guildId ] [ user . id ] . push ( instance ) ;
else {
let timestamp = loadedUsers [ guildId ] [ user . id ] ? this . getTimestamp ( languages [ choices . lastMessageDateLang ] . id , loadedUsers [ guildId ] [ user . id ] ) : "---" ;
children . splice ( index , 0 , BDFDB . ReactUtils . createElement ( BDFDB . LibraryComponents . TextScroller , {
className : BDFDB . disCNS . _lastmessagedatedate + BDFDB . disCNS . userinfodate + BDFDB . disCN . textrow ,
children : settings . displayText ? this . labels . lastmessage _text . replace ( "{{time}}" , timestamp ) : timestamp
} ) ) ;
}
2019-02-22 21:39:10 +01:00
}
2020-09-19 20:49:33 +02:00
getTimestamp ( languageId , time ) {
let timeObj = time || new Date ( ) ;
if ( typeof time == "string" || typeof time == "number" ) timeObj = new Date ( time ) ;
if ( timeObj . toString ( ) == "Invalid Date" ) timeObj = new Date ( parseInt ( time ) ) ;
if ( timeObj . toString ( ) == "Invalid Date" ) return ;
let timeString = "" ;
if ( languageId != "own" ) {
let timestamp = [ ] ;
if ( settings . displayDate ) timestamp . push ( timeObj . toLocaleDateString ( languageId ) ) ;
if ( settings . displayTime ) timestamp . push ( settings . cutSeconds ? this . cutOffSeconds ( timeObj . toLocaleTimeString ( languageId ) ) : timeObj . toLocaleTimeString ( languageId ) ) ;
if ( settings . otherOrder ) timestamp . reverse ( ) ;
timeString = timestamp . length > 1 ? timestamp . join ( ", " ) : ( timestamp . length > 0 ? timestamp [ 0 ] : "" ) ;
if ( timeString && settings . forceZeros ) timeString = this . addLeadingZeros ( timeString ) ;
2020-04-14 18:27:51 +02:00
}
2020-09-19 20:49:33 +02:00
else {
languageId = BDFDB . LanguageUtils . getLanguage ( ) . id ;
let now = new Date ( ) ;
let hour = timeObj . getHours ( ) , minute = timeObj . getMinutes ( ) , second = timeObj . getSeconds ( ) , msecond = timeObj . getMilliseconds ( ) , day = timeObj . getDate ( ) , month = timeObj . getMonth ( ) + 1 , timemode = "" , daysago = Math . round ( ( Date . UTC ( now . getFullYear ( ) , now . getMonth ( ) , now . getDate ( ) ) - Date . UTC ( timeObj . getFullYear ( ) , timeObj . getMonth ( ) , timeObj . getDate ( ) ) ) / ( 1000 * 60 * 60 * 24 ) ) ;
if ( formats . ownFormat . indexOf ( "$timemode" ) > - 1 ) {
timemode = hour >= 12 ? "PM" : "AM" ;
hour = hour % 12 ;
hour = hour ? hour : 12 ;
}
timeString = formats . ownFormat
. replace ( /\$hour/g , settings . forceZeros && hour < 10 ? "0" + hour : hour )
. replace ( /\$minute/g , minute < 10 ? "0" + minute : minute )
. replace ( /\$second/g , second < 10 ? "0" + second : second )
. replace ( /\$msecond/g , settings . forceZeros ? ( msecond < 10 ? "00" + msecond : ( msecond < 100 ? "0" + msecond : msecond ) ) : msecond )
. replace ( /\$timemode/g , timemode )
. replace ( /\$weekdayL/g , timeObj . toLocaleDateString ( languageId , { weekday : "long" } ) )
. replace ( /\$weekdayS/g , timeObj . toLocaleDateString ( languageId , { weekday : "short" } ) )
. replace ( /\$monthnameL/g , timeObj . toLocaleDateString ( languageId , { month : "long" } ) )
. replace ( /\$monthnameS/g , timeObj . toLocaleDateString ( languageId , { month : "short" } ) )
. replace ( /\$daysago/g , amounts . maxDaysAgo == 0 || amounts . maxDaysAgo >= daysago ? ( daysago > 0 ? BDFDB . LanguageUtils . LanguageStringsFormat ( "ACTIVITY_FEED_USER_PLAYED_DAYS_AGO" , daysago ) : BDFDB . LanguageUtils . LanguageStrings . SEARCH _SHORTCUT _TODAY ) : "" )
. replace ( /\$day/g , settings . forceZeros && day < 10 ? "0" + day : day )
. replace ( /\$month/g , settings . forceZeros && month < 10 ? "0" + month : month )
. replace ( /\$yearS/g , parseInt ( timeObj . getFullYear ( ) . toString ( ) . slice ( - 2 ) ) )
. replace ( /\$year/g , timeObj . getFullYear ( ) )
. trim ( ) . split ( " " ) . filter ( n => n ) . join ( " " ) ;
}
return timeString ;
2020-04-14 18:27:51 +02:00
}
2019-02-20 10:19:22 +01:00
2020-09-19 20:49:33 +02:00
cutOffSeconds ( timeString ) {
return timeString . replace ( /(.{1,2}:.{1,2}):.{1,2}(.*)/ , "$1$2" ) . replace ( /(.{1,2}\..{1,2})\..{1,2}(.*)/ , "$1$2" ) . replace ( /(.{1,2} h .{1,2} min) .{1,2} s(.*)/ , "$1$2" ) ;
2020-04-14 18:27:51 +02:00
}
2019-02-20 10:19:22 +01:00
2020-09-19 20:49:33 +02:00
addLeadingZeros ( timeString ) {
let charArray = timeString . split ( "" ) ;
let numreg = /[0-9]/ ;
for ( let i = 0 ; i < charArray . length ; i ++ ) {
if ( ! numreg . test ( charArray [ i - 1 ] ) && numreg . test ( charArray [ i ] ) && ! numreg . test ( charArray [ i + 1 ] ) ) charArray [ i ] = "0" + charArray [ i ] ;
}
2020-04-14 18:27:51 +02:00
2020-09-19 20:49:33 +02:00
return charArray . join ( "" ) ;
2020-04-14 18:27:51 +02:00
}
2020-07-26 16:39:51 +02:00
2020-09-19 20:49:33 +02:00
setLabelsByLanguage ( ) {
switch ( BDFDB . LanguageUtils . getLanguage ( ) . id ) {
case "hr" : //croatian
return {
lastmessage _text : "Posljednja poruka dana {{time}}"
} ;
case "da" : //danish
return {
lastmessage _text : "Sidste besked den {{time}}"
} ;
case "de" : //german
return {
lastmessage _text : "Letzte Nachricht am {{time}}"
} ;
case "es" : //spanish
return {
lastmessage _text : "Último mensaje el {{time}}"
} ;
case "fr" : //french
return {
lastmessage _text : "Dernier message le {{time}}"
} ;
case "it" : //italian
return {
lastmessage _text : "Ultimo messaggio il {{time}}"
} ;
case "nl" : //dutch
return {
lastmessage _text : "Laatste bericht op {{time}}"
} ;
case "no" : //norwegian
return {
lastmessage _text : "Siste melding på {{time}}"
} ;
case "pl" : //polish
return {
lastmessage _text : "Ostatnia wiadomość z {{time}}"
} ;
case "pt-BR" : //portuguese (brazil)
return {
lastmessage _text : "Última mensagem em {{time}}"
} ;
case "fi" : //finnish
return {
lastmessage _text : "Viimeisin viesti {{time}}"
} ;
case "sv" : //swedish
return {
lastmessage _text : "Senaste meddelandet den {{time}}"
} ;
case "tr" : //turkish
return {
lastmessage _text : "Son mesajı {{time}}"
} ;
case "cs" : //czech
return {
lastmessage _text : "Poslední zpráva dne {{time}}"
} ;
case "bg" : //bulgarian
return {
lastmessage _text : "Последно съобщение на {{time}}"
} ;
case "ru" : //russian
return {
lastmessage _text : "Последнее сообщение {{time}}"
} ;
case "uk" : //ukrainian
return {
lastmessage _text : "Останнє повідомлення {{time}}"
} ;
case "ja" : //japanese
return {
lastmessage _text : "{{time}} 最後のメッセージ"
} ;
case "zh-TW" : //chinese (traditional)
return {
lastmessage _text : "最後消息於 {{time}}"
} ;
case "ko" : //korean
return {
lastmessage _text : "{{time}} 마지막 메시지"
} ;
default : //default: english
return {
lastmessage _text : "Last message on {{time}}"
} ;
}
}
} ;
} ) ( window . BDFDB _Global . PluginUtils . buildPlugin ( config ) ) ;
} ) ( ) ;