No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Tooltips.cs 1001B

12345678910111213141516171819
  1. using System.Collections;
  2. using System.Collections.Generic;
  3. using UnityEngine;
  4. namespace UnityEditor.U2D.PSD
  5. {
  6. static class Tooltips
  7. {
  8. public static readonly string importToggleToolTip = L10n.Tr("Toggle to import layer from Photoshop file.");
  9. public static readonly string collapseToggleTooltip = L10n.Tr("Toggle to merge a layer group into a single Sprite.");
  10. public static readonly string layerHiddenToolTip = L10n.Tr("The layer is hidden in the source file.");
  11. public static readonly string hiddenLayerNotImportWarning = L10n.Tr( "Layer will not be imported because hidden layers are excluded from import.");
  12. public static readonly string groupSeparatedToolTip = L10n.Tr("Layers Separated. Click to merge them.");
  13. public static readonly string groupMergedToolTip = L10n.Tr("Layers merged. Click to separate them.");
  14. public static readonly string groupMixedToolTip = L10n.Tr("Group contains child groups that are merged.");
  15. }
  16. }