Advertisement
Guest User

Untitled

a guest
Sep 18th, 2019
145
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. export default{
  2.   globals: {
  3.     licenseStatuses: {
  4.       allowed: "Allowed",
  5.       notAllowed: "Forbidden",
  6.       notSpecified: "Not specified"
  7.     },
  8.     statusStatuses: {
  9.       hasConfig: "Has config",
  10.       noConfig: "No config"
  11.     }
  12.   },
  13.   moduleTemplate: {
  14.     awn:{
  15.       checkMKFoldersWarning:(path) =>{return `
  16.         Profile not found - reseted to "Default".
  17.         <br>
  18.         Wondedraft INI reseted to default as well.
  19.         <br>
  20.          <br>
  21.         Attempted to load directory:
  22.         <br>
  23.         <b>${path}</b>
  24.         `
  25.       },
  26.       updateProfileIniWDWarning: `
  27.         <strong>Mythkeeper could not load the Wonderdraft configuration file (config.ini):</strong>
  28.         <br>
  29.         1. Please check settings if the Wonderdraft user folder path is set properly.
  30.         <br>
  31.         2. If your path is set properly, then please check if the config file exists in the directory.
  32.         <br>
  33.         3. If it doesn't, start Wonderdraft once to generate it.`,
  34.      updateProfileIniWDSuccess: (path) =>{return `
  35.        Profile successfully set.
  36.        <br>
  37.        Currently used directory:
  38.        <br>
  39.        <b>${path}</b>`
  40.      }
  41.    }
  42.  },
  43.  assetMiniature: {
  44.    placeholders: {
  45.      folderSize: "Calculating...",
  46.      assetVersion: "N/A"
  47.    },
  48.    actions: {
  49.      backupAsset: "Backup asset",
  50.      deleteAsset: "Delete asset",
  51.      deleteAssetBackup: "Delete backup of the asset",
  52.      filterByAuthor: "Filter by author & distributor:",
  53.      filterByCommercialUse: "Filter by commercial use:",
  54.      filterByDistributor: "Filter by author & distributor:",
  55.      filterByLicense: "Filter by license:",
  56.      filterByTag: "Filter by tag:",
  57.      openGallery: "Open asset showcase gallery.",
  58.      restoreAssetBackup: "Restore asset from a backup"
  59.    },
  60.    titles: {
  61.      author: "Author:",
  62.      authorAndDistributor: "Author & Distributor:",
  63.      commercialUseTitle: "Commercial use:",
  64.      description: "Description:",
  65.      distributor: "Distributor:",
  66.      license: "License & Use:",
  67.      tags: "Tags:"
  68.    },
  69.    smallIconActions: {
  70.      commentary: "Read the commentary containing important details on the license:",
  71.      commercialURL: "Obtain proper commercial use license at following address:",
  72.      donateUrlAuthor: "Consider donating to the author at following address:",
  73.      donateUrlDistributor: "Consider donating to the distributor at following address:",
  74.      licenseOffline: "Read license offline by opening a following file:",
  75.      licenseOnline: "Read license online at following address:",
  76.      "licenseUnknown:": "Try looking up the following license on Google:",
  77.      openUrlAuthor: "Visit author's website:",
  78.      openUrlDistributor: "Visit distributor's website:",
  79.      sendEmailAuthor: "Send the author an email to:",
  80.      sendEmailDistributor: "Send the distributor an email to:"
  81.    },
  82.    overlayTexts: {
  83.      deleteAsset: {
  84.        title: "Delete asset: ",
  85.        contents: `
  86.          <b>You are about to delete and asset that isn't backup up!</b>
  87.           <br>
  88.           <br>
  89.           <b>How do you wish to proceed?</b>`,
  90.         actions: {
  91.           close: "Close",
  92.           backupAndDelete: "Backup & Delete",
  93.           delete: "Delete"
  94.         }
  95.       },
  96.       backupAsset: {
  97.         title: "Backup asset: ",
  98.         contents: (currentVersion, backupVersion) =>{return`
  99.           <b>The asset seems to be backup up already.</b>
  100.           <br>
  101.           <br>
  102.           Active asset version: <b>${currentVersion}</b>
  103.           <br>
  104.           Backup asset version: <b>${backupVersion}</b>
  105.           <br>
  106.           <br>
  107.           <br>
  108.           <b>Proceed?</b>`},
  109.         actions: {
  110.           close: "Close",
  111.           overwrite: "Overwrite old version",
  112.         }
  113.       },
  114.       deleteBackupAsset: {
  115.         title: "Delete backup of asset: ",
  116.         contents: `
  117.           Mythkeeper is about to delete a backup of an asset.
  118.           <br>
  119.           The asset will still be recoverable by using the "Restore a previously deleted asset" in the top bar.
  120.           <br>
  121.           Unless "Safe Delete" is disabled in the settings.
  122.           <br>        
  123.           <br>
  124.           <b>Proceed with deletion?</b>`,
  125.         actions: {
  126.           close: "Close",
  127.           deleteBackup: "Delete backup"
  128.         }
  129.       }
  130.     },
  131.     taskTexts: {
  132.       deleteAsset: "Deleting",
  133.       deleteBackupAsset: "Deleting backup",
  134.       restoreBackupAsset: "Restoring",
  135.       backupAsset: "Backing up",
  136.  
  137.     },
  138.     awn:{
  139.       success: {
  140.         assetDeleteBackup: (assetTitle) => {return `Backup of asset <b>${assetTitle}</b> has been successfully deleted.`},
  141.         assetRecover: (assetTitle) => {return `Asset <b>${(assetTitle)}</b> has been successfully recovered.`},
  142.         assetBackup: (assetTitle) => {return `Asset <b>${assetTitle}</b> has been successfully backed up.`},
  143.         assetDelete: (assetTitle) => {return `Asset <b>${assetTitle}</b> has been successfully deleted.`},
  144.       }
  145.     }
  146.   }
  147. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement