Code Monkey home page Code Monkey logo

lazypo's Introduction

LazyPO

Automate the creation of .pot and .po files

#v0.1 Parse all .tscn/.gd file in your project (except in addon) and add them to .pot godot generator in project setting

How to use

  • Install the addon
  • You can set which folder will be scanned and which will be ignored (the addon scan sub folder too)

image

  • Click on "Project->Tool->Auto POT"

image

lazypo's People

Contributors

aureliencaille avatar

Watchers

 avatar

lazypo's Issues

Use array instead of a bunch of different strings

I noticed you're using a bunch of different strings instead of an array in the settings, and in the code you say it's not possible to do an array of directory strings in the settings, but it is possible:

func _create_settings() -> void:
        add_dir_array_setting(DIRS_TO_PARSE+DIR_TO_PARSE, ["res://"])
        add_dir_array_setting(DIRS_TO_EXCLUDE + DIR_TO_EXCLUDE, ["res://addons/"])

	ProjectSettings.save()

func add_dir_array_setting(setting_name : String, base_value) -> void:
        # I moved the check if the setting already exists here, for the directory selection work
        # even if the setting already exists we need to add the property info to it every time.
	if not ProjectSettings.has_setting(setting_name):
		ProjectSettings.set_setting(setting_name, base_value)
		ProjectSettings.set_initial_value(setting_name, base_value)
		ProjectSettings.set_as_basic(setting_name, true)
	ProjectSettings.add_property_info({
			"name" = setting_name,
			"type" = TYPE_ARRAY,
			"hint" = PROPERTY_HINT_ARRAY_TYPE,
			"hint_string" = ("%s/%s:" % [TYPE_STRING, PROPERTY_HINT_DIR]),
			"usage" = PROPERTY_USAGE_DEFAULT
		})

Here's how it looks in use in the project settings:

image

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.